Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using curl like this:

curl -s -F "uploaded_file=@/path_to_file;type=text/html" -F output=soap12 http://localhost/w3c-markup-validator/check >text.xml && xsltproc script/guilbep_soap_w3c.xsl text.xml

xsltproc is fast; but curl is not.

does it come from the fact that w3c-markup-validator is local? or from w3c-markup-validator itself? Or from curl and I can do something?

I would like to test more than 6000 xhtml.. and if I have to wait 2 sec between each .. more than 1 hour.. I can wait.. but I don't like it.

Thanks!!

share|improve this question

1 Answer

up vote 0 down vote accepted

I believe that it is quite probably that the 2 second delay is because you transfer the file over http. Is it possible to run the validator locally, without sending it to a webserver?

share|improve this answer
the validator is on my local apache2 server. you mean like an executable? I think it's this one: /usr/lib/cgi-bin/check but how do I use it with curl? thanks. – Pierre Guilbert Nov 9 '09 at 15:00
I think it's another question so I'll ask elsewhere :) thanks again. – Pierre Guilbert Nov 9 '09 at 15:03
Yes, I meant running it like an executable instead and if you would use the executable you wouldn't use curl. – adamse Nov 9 '09 at 15:19
Yes I am starting to understand it, it's a cgi script in perl. – Pierre Guilbert Nov 9 '09 at 15:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.