I have a .Net web application that needs to interact with a Java-based system via SOAP.
I have not worked with web services other than some basic WCF and would appreciate any guidance on this.
Basically, I was thinking about creating a WCF proxy client to connect to the SOAP web services. The system is a 3rd party Java-based system that provides a SOAP interface.
The sample code provided used wsdl to generate the proxy, but isn't that before the times of WCF?
UsernameToken aToken = new UsernameToken("root", "root", PasswordOption.SendPlainText);
MetadataService.MetadataService aMetadataService = new MetadataService.MetadataService();
SoapContext aContext = aMetadataService.RequestSoapContext;
aContext.Security.Tokens.Add(aToken);
String aXmp = aMetadataService.s_getXmpFromRecordID(wAssetId.Text);
Any suggestions? Thank you!