problem in web service generation

manish132000

New member
Joined
Oct 29, 2008
Messages
1
Programming Experience
Beginner
Hello friends

The middleware system has given us a WSDL and wanted us to develop a web service based on that structure.

Their WSDL has a method called GetCustomerDetail and the Request message looks Like

VB.NET:
Customer
      Customer number
      Customer Name
      Customer Address
But when I generated a service based on the provided WSDL, the method name ( GetCustomerDetail) comes as a top node of the request message ; so , my request message looks like

VB.NET:
GetCustomerDetail
      Customer
          Customer number
          Customer Name
          Customer Address

Because of the extra top level node "GetCustomerDetail" which is a method is causing the failure to send a message to the middleware.

I am very new in working on the web service side , so , couldnt get the direction to work on .

Thanks for your time and help.
Manish
 
Last edited by a moderator:
Back
Top