post data to url of soap server using wordpress
I am new to wordpress.
I want to post data to some url which of soap server.
for this can i use wp_remote_post method?
If开发者_运维百科 no then tell me what is the way to do this?
please help me...
Thanks in advance
No, you cannot use wp_remote_post to communicate with a soap server. This just makes a post request to a url. If you want to communicate with SOAP you have to create a SOAP object, make sure it conforms to the WSDL service and make calls through it. This sounds like it is far over your head. You should read some tutorials on SOAP and PHP.
http://devzone.zend.com/article/689
精彩评论