Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a WCF service. I built from an xsd file from another department. All it generated was classes, which I inturn modified to match our "standards". I need to see if the wsdl for that function matches the xsd, well actually the wsdl for one of the inputs, matches what they gave us.

http://localhost:26535/EDeliveryOrderSvc.svc?wsdl

shows the wsdl for the entire service. the section for my function:

    <wsdl:operation name="CreateOrUpdateOSSOrdersFromEntityInput">
      <soap:operation soapAction="http://[redacted]/EDeliveryOrderSvc/CreateOrUpdateOSSOrdersFromEntityInput" style="document" /> 
 <wsdl:input>
  <soap:body use="literal" /> 
  </wsdl:input>
 <wsdl:output>
  <soap:body use="literal" /> 
  </wsdl:output>
  </wsdl:operation>

doesn't tell me anything about the input parameters. Am I missing something simple?

share|improve this question

1 Answer

up vote 2 down vote accepted

You should see a line in the wsdl that says:

http://localhost:26535/EDeliveryOrderSvc.svc?xsd=xsd2

or some such, go there to see the schema info.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.