English 中文(简体)
我能否向网络服务发出一个SOAP信息,而不必使用诸如“gsoap”等工具箱,并取得同样的结果,或者是否有必要使用“gsoap”?
原标题:Can I send a SOAP message to a web service without using tool kits like gsoap and get the same result, or is it necessary to use gsoap?
  • 时间:2012-05-04 08:46:12
  •  标签:
  • soap

我指的是,如果我知道我想要发出的信息的形式,那么我能否以人工的方式发出信息,作为在吉卜赛人大饥荒中的一种扼杀手段,而不使用肥皂,取得同样的预期结果?

最佳回答

在人工操作方面没有任何问题。 只要你使用正确的头盔和电文,它甚至会使用光电网。

问题回答

SOAP is an application layer protocol. So, it will make no difference if you use a tool or just create and connect a Tcp/Ip socket to the web service endpoint. As long as you put the right xml with the soap envelope, headers and body it will work well.





相关问题
Python SOAP server / client

I have a problem with Python and SOAP. I need to create a web service based on SOAP in Python. I read that I can use libraries like soaplib, suds and ZSI. I created a Hello World web service with ...

HTTP POST and complex structures

I m trying to send a complex HTTP POST request to a web service. The web service was created using VS2008, in which you can set VS to create HTTP POST and GET interfaces alongside the SOAP one. Now ...

XML-RPC Standard and XML Data Type

I was looking at XML-RPC for a project. And correct me if I m wrong, but it seems like XML-RPC has no XML datatype. Are you supposed to pass as a string? or something else? Am I missing something? ...

Most appropriate API for URL shortening service

I ve just finished an online service for shortening URLs (in php5 with Zend Framework); you can enter an URL and you get an short URL (like tinyurl and such sites). I m thinking about the API for ...

What is the best solution for creating a SOAP Server in PHP?

I need some advice on which library is the best choice when it comes to creating SOAP servers (and eventually SOAP clients) in PHP. I know there is built-in functions for this, but is that really the ...

Logging all Soap request and responses in PHP

Does anyone know how to log all request and responses with the builtin SoapClient in PHP? I could in fact manually log everything with SoapClient::__getLastRequest() and SoapClient::__getLastResponse()...

热门标签