开发者

How can I view the generated WSDL for a wcf function

开发者 https://www.devze.com 2023-01-30 08:09 出处:网络
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 matc

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 o开发者_Python百科f 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?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消