I have received few WSDLs and XSD defining a service that I need to consume for one of my project.
Now here is a similar structure:
*XSD_EMPDetails.xsd* - Define few of the EmployerDetails
*XSD_EMP.xsd* - has imported EmployerDetails xsd and some more attributes. (xsd import)
EMP.wsdl - imports XSD_EMP.xsd (xsd import)
EMPServcie.wsdl - imports EMP.wsdl. (wsdl import)
Now I need to consume EMPService.wsdl to call service. Not sure how to use XSD and how it works internally. Please provide me any reference or any help on this topic.
Note: Currently we are working on 2.0 with ASMX. Cannot use WCF.