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.

Read More

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

Related posts

Leave a Reply

1 comment

  1. 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