如何从POSTMAN调用WCF服务方法

bkhjykvo  于 2023-03-23  发布在  Postman
关注(0)|答案(4)|浏览(798)

我正在尝试使用WCF终结点调用服务。WCF服务托管在Windows服务上,
这就是配置。

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.diagnostics>  
    <sources>
      <source name="System.ServiceModel" propagateActivity="true" switchValue="All">
        <listeners>
          <add name="xmlTraceListener" />
        </listeners>
      </source>
      <source name="System.ServiceModel.MessageLogging" switchValue="All">
        <listeners>
          <add name="xmlTraceListener" />
        </listeners>
      </source>
    </sources>
    <sharedListeners>
      <add name="xmlTraceListener"
           type="System.Diagnostics.XmlWriterTraceListener"
           initializeData="C:\logwcf\Service.svclog" />
    </sharedListeners>
  </system.diagnostics>
  <system.web>
    <httpRuntime executionTimeout="90" />
  </system.web>
  <startup useLegacyV2RuntimeActivationPolicy="True">
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
  </startup>
  <system.serviceModel>
  <diagnostics>
        <messageLogging logEntireMessage="true" 
                        logMalformedMessages="true" 
                        logMessagesAtServiceLevel="true" 
                        logMessagesAtTransportLevel="true">
          <filters>
            <clear/>
          </filters>
        </messageLogging>
      </diagnostics>
    <bindings>
      <basicHttpBinding>
        <binding name="BasicHttpBinding_Hostware" closeTimeout="00:10:30" openTimeout="00:10:30" receiveTimeout="00:10:30" sendTimeout="00:10:30" allowCookies="false" bypassProxyOnLocal="false" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" textEncoding="utf-8" transferMode="Streamed" useDefaultWebProxy="true" messageEncoding="Text">
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
          <security mode="None">
            <transport clientCredentialType="None" proxyCredentialType="None"/>
          </security>
        </binding>
      </basicHttpBinding>
    </bindings>
    <services>
      <service name="xx.ServicioDistribucion.AnalisisDatos.Servicios.CuentasCobrar" behaviorConfiguration="behaviorDistribucion">
        <endpoint address="" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_Hostware" contract="xx.ServicioDistribucion.AnalisisDatos.Interfaces.ICuentasCobrar">
          <identity>
            <dns value="localhost"/>
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
        <host>
          <baseAddresses>
            <add baseAddress="http://xx.143.46.82:8733/xx.ServicioDistribucion.AnalisisDatos.Servicios.CuentasCobrar/"/>
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="behaviorDistribucion">
          <serviceThrottling maxConcurrentSessions="10000"/>
          <!-- To avoid disclosing metadata information, 
          set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="True"/>
          <!-- To receive exception details in faults for debugging purposes, 
          set the value below to true.  Set to false before deployment 
          to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="true"/>
<!--<dataContractSerializer maxItemsInObjectGraph="2147483646"/>-->
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <protocolMapping>
      <add binding="basicHttpsBinding" scheme="https"/>
    </protocolMapping>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
  </system.serviceModel>
</configuration>

我们尝试使用POSTMAN调用服务,如下所示:
这是原始的身体:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
   <soapenv:Header/>
   <soapenv:Body>
      <tem:ProcesarListaCuentasCobrarCIA100/>
   </soapenv:Body>
</soapenv:Envelope>

但是,我们得到的回应是

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Body>
        <s:Fault>
            <faultcode xmlns:a="http://schemas.microsoft.com/ws/2005/05/addressing/none">a:DestinationUnreachable</faultcode>
            <faultstring xml:lang="es-CO">The message with To 'http://xx.143.46.82:8733/xxServicioDistribucion.AnalisisDatos.Servicios.CuentasCobrar/ProcesarListaCuentasCobrarCIA100/' cannot be processed at the receiver, due to an AddressFilter mismatch at the EndpointDispatcher.  Check that the sender and receiver's EndpointAddresses agree.</faultstring>
        </s:Fault>
    </s:Body>
</s:Envelope>

内容类型heater是text/xml。
我们尝试使用POST

plicqrtu

plicqrtu1#

1.运行WCF。例如https://learn.microsoft.com/en-us/dotnet/framework/wcf/getting-started-tutorial x1c 0d1x
1.打开wsdl并找到Action

1.您还可以在WCF测试客户端

x 1c 3d 1x中找到Action
1.在PostMan URL中-来自wsdl -http://localhost:8000/GettingStarted/CalculatorService/
标题-
内容类型:文本/xml
SOAPAction:http://Microsoft.ServiceModel.Samples/ICalculator/Add x1c4d 1x 4.从WCF测试客户端添加body。对我来说body是

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> 
  <s:Body>
    <Add xmlns="http://Microsoft.ServiceModel.Samples">
      <n1>1</n1>
      <n2>1</n2>
    </Add>
  </s:Body>
</s:Envelope>

在下拉菜单中选择- xml

发送

mum43rcc

mum43rcc2#

IIRC当您对WCF服务器进行SOAP调用时,除了主体内容之外,还必须设置HTTP头。
我以前的SOAP调用具有如下形式的头:

SOAPAction: http://domain/EndPoint

您可能需要检查一下,如果您有一个工作的客户端,请使用Fiddler捕获流量。charset=utf-8”,我似乎记得有些服务器对POST的内容类型很挑剔。

ibps3vxo

ibps3vxo3#

我发现在Postman中让WCF调用工作的最简单方法如下...
1.)打开Fiddler并在本地调试WCF项目,Visual Studio WCF测试客户端将打开。
2.)在WCF测试客户端中,调用一个对服务方法的调用以获得响应。
3.)点击Fiddler中的请求。
4.)在fiddler中单击“RAW”选项卡以查看请求,并复制请求标头中的信封标记。
它应该看起来像

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><YourMethodName xmlns="http://yourserver.com/serviceName/v1.0"/></s:Body></s:Envelope>

5.)在Postman中创建一个新的请求,打开BODY选项卡,选择'raw'单选按钮。
6.)将内容类型下拉设置为“XML”。
7.)将上面的信封标签粘贴到Postman中的BODY字段中。
8.)将Postman中的URL设置为Fiddler中发出的任何请求,它将成为Fiddler中请求的第一行,类似于http://server/yourservice.svc
9.)将Postman中的请求类型更改为POST
10.)切换到Postman中的HEADERS选项卡,添加一个CONTENT-TYPE标题,值为'text/html'
11.)在Fiddler请求中,您将看到一个SOAPAction标头,请复制此标头中的URL
12.)在Postman的HEADERS选项卡中,添加一个'SOAPAction'头,并将URL头粘贴到此值中。
13.)运行您的服务!

奖金

如果您想从Postman调用一个远程WCF服务(您不能在本地运行),请调试您的本地项目,这样WCF测试客户端就会打开。
1.)右键单击WCF测试客户端中的“我的服务项目”树节点,然后单击“添加服务”。
2.)输入您的服务URL
3.)调用它的一个方法,就像你做一个本地服务一样,然后在Fiddler中跟踪并按照上面的步骤添加到Postman中。

56lgkhnf

56lgkhnf4#

来自wcftestlient:
1.将XML标签中的XML复制到postman的body/row中,类型为XML。确保从body中删除标题。
1.将soapaction添加到具有SOAP操作名称的头选项卡。

相关问题