> Let us say we have an class X with a method doIt that have
> a signature int doIt(int custNumber) the class X is marked for
[quoted text clipped - 5 lines]
> logged in a database. The full soap envelope and soap body
> is stored in the database as string.
> Assuming the webservice offers the creation of an order.
> The webservice client requests the webservice and let say the creation
[quoted text clipped - 7 lines]
> And my problem is: What must I do request the webservice with this raw
> XML ?
> I think it must be possible to request the webservice with raw XML
> because a SOAP::Lite client I wrote in perl is able to do it.
You could use HttpURLConnection to do a POST of the raw
XML (I think you need to set one or two HTTP headers, but you
can sniff those with TCPMon).
Arne