views:

1377

answers:

1

I am 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 via SOAP. I read w3school and have some example code running. I want to know is there a site/server i can send SOAP commands for the purpose of learning? then i would need to send those commands to myself and do stuff with it.

ATM i dont have a WSDL file and i am not sure that is required. I do have an xsd file.

Where can i find tutorials to do the above or learn how to do the above?

+1  A: 

Hopefully you are using PHP5, you didn't state, and php should be in the tags if you are using it, but, here is a nice tutorial for php soap server.

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

For the client, you may want to just start with the manual, once you get the server working, here. http://us.php.net/manual/en/ref.soap.php

The most important part of the manual for me is the commented parts as there is where I find the most useful information.

Just start with writing a simple webservice, then you can start on the client part, since you will have a server you can test against, where you can put in logging and see what is going on.

James Black