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?

[919 byte] By [ppatidar2001a] at [2007-11-26 17:39:25]
# 1
How do I interprest the schema or use wsdl to process incoming message? You read the message from queue, use SOAP API to get body (XML?) and use normal XML api to parse the data.
FindTaxServicea at 2007-7-9 0:07:34 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
You might want to look at the JMS plug-in to JAX-WS (https://jms-ws-transport.dev.java.net/) at a minimum it should give you an idea on how to pull the message of of the queue and convert it to something you can use.
dkohlerta at 2007-7-9 0:07:34 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...