vote up 1 vote down star

I need to launch curl for a test. I need to send XML which has " / and other crazy things. Whats the quickest way to do it? I tried

curl -k -d '<xs:element name="Login"/>' https://thewebsite.com/page.exe

with no luck.

flag

70% accept rate
2  
You really, really should read the SOAP::Lite documentation. – Manni Oct 2 at 13:29

3 Answers

vote up 0 vote down check

Backslash escape it.

\"
link|flag
hmm, i tried in a batch file with no luck. I didnt think bash would allow it. It echos properly. – An employee Oct 2 at 13:22
1  
This didn't work for you but you accepted it as an answer? – brian d foy Oct 2 at 16:03
brian d foy: in batch file. I didnt think to try on a bash. It does work in bash – An employee Oct 2 at 16:23
vote up 3 vote down

In Perl, use the list form of system:

system curl 
    => qw(-k -d '<xs:element name="Login"/>' https://thewebsite.com/page.exe);

Or, better yet, use WWW::Curl (see also the libcurl documentation).

link|flag
vote up 2 vote down

The use of 'qw' to quote parameters given in one of the answers here is not correct, qw will explictly escape and pass the single quotes around the xs tag, where as in the OP's example, they wouldn't

You could use...

system('curl', '-k', '-d', '<xs:element name="Login"/>', 
       'https://thewebsite.com/page.exe');

Which should be what you're after. I'd try to use the module though.

link|flag

Your Answer

Get an OpenID
or

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