SOAP tutorial php sending and receiving messages

I'm having trouble with my project and I think you guys can give me a hint (I'm a newbie and the prj manager is in a meeting).

I need to send and receive messages over SOAP. I am reading w3school and running some sample code. I want to know if there is a site / server that I can send SOAP commands for training? then I will need to send these commands to myself and do everything with it.

ATM I don't have a WSDL file and I'm not sure if this is necessary. I have an xsd file.

Where can I find tutorials to accomplish the above or find out how to do it?

+2


source to share


2 answers


Hopefully you are using PHP5, you did not specify and php should be in tags if you are using it, but here is a good tutorial for php soap server.

http://www.lornajane.net/posts/2008/PHP5-Soap-Server

For the client, you can just start with the manual once you get the server running here. http://us.php.net/manual/en/ref.soap.php



The most important part of the guide for me is the commented parts, as this is where I find the most useful information.

Just start by writing a simple web service, then you can start from the client side, since you will have a server that you can test with, where you can write a log and see what happens.

+1


source


Some more links for SOAP and WSDL ..



http://extrimity.in/content/soap-and-wsdl-php-best-tutorial-zend-framework

0


source







All Articles