in reply to Net:SSLeay headers

make_headers(Content-Type => 'text/xml', SOAPAction => ""http://bwcg.h +k/Services"")

Are you sure this is the code you're using? (it doesn't even compile)  Maybe you could try

make_headers('Content-Type' => 'text/xml', SOAPAction => '"http://bwcg +.hk/Services"');

Or, try specifying the double quotes as %22 (URI encoding), or " (entity encoding).  This is just a guess, though — from the top of my head, I can't tell what's expected in an HTTP/SOAP header...

Update: just checked it: there doesn't seem to be any general problem with double quotes in HTTP headers — though I'm not sure what further processing the SOAP backend is applying to the value...

Replies are listed 'Best First'.
Re^2: Net:SSLeay headers
by pshieh (Initiate) on Oct 29, 2008 at 16:59 UTC
    Thank you very much, %22 works.