Problem understanding web service architecture
I am part of a big project where multiple parties are developing the components. My applicaiton receive data from another application currently as flat file. After implementaiton of this project that applicaiton will send data through message queue. Data received will be SOAP/JMS data. Sending applicaiton has a webservice that will send these SOAP messages in Message queue. We have to insert data into a table. We dont need to send the reply to web service.
I have been told that I will have to use wsdl provided by sending webservice to interpret the schema of message
I know how to read messages from message queue using MDB but not able to understand how to use wsdl to interpret schema? I used wscompile to generate java code from wsdl but those are small classes and have information about calling web service(I think). How do I interprest the schema or use wsdl to process incoming message?

