Link to home
Start Free TrialLog in
Avatar of Mike Conyers
Mike Conyers

asked on

How to use SOAP using a VB.net desktop application

We need to write a vb.net application that sends the attached xml to an API. The idea is that the product stock level is set. The top part of the file is the request and the bottom is the response. This is the soap example given to us by the ecommerce platform. The app is not a web app but a desktop based piece of software and we just need to now how to send this using SOAP in vb.net. Any help along with examples would be greatly appreciated.
Avatar of ste5an
ste5an
Flag of Germany image

If it is really a SOAP API, then you just need to add a service reference to your project and enter the service end-point (WSDL address).

User generated image
Avatar of Mike Conyers
Mike Conyers

ASKER

Thank you for this. This worked and I could see the API functions which is great. How do I now call these and send the xml command as per the file sent over?
ASKER CERTIFIED SOLUTION
Avatar of ste5an
ste5an
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Really helpful and fast response. Thank you for taking the time to help. I really appreciate it.