I want to post an SOAP envelope via windows
I am searching for a tool that 开发者_开发技巧sends an SOAP message to a server and works in windows.
No soapUI or WebServiceStudio. Something simple like curl
As a SOAP message is only an XML file, wget should be what you are looking for. It can be used like this:
wget http://yourserver/endpoint --post-file=your_message.xml
You can download it from here
精彩评论