Note that there are some explanatory texts on larger screens.

plurals
  1. POHow do I consume this web service in a .NET app?
    text
    copied!<p>I'm pushing the bounds of what one should ask of others with this one, but I'm totally stuck, so here goes...</p> <p>This is my first web service. Not only that, it's my companies first web service - nobody I work with has ever written or consumed anything like this one. I know these things are not complicated, but for a first kick at the can, this is killing me because the API is so large.</p> <p>WSDL is here: <a href="https://fast.uspspostalone.com/USPSMLXMLWeb/services/UspsMailXmlMailingServices/wsdl/UspsMailXmlMailing70.wsdl" rel="nofollow noreferrer">https://fast.uspspostalone.com/USPSMLXMLWeb/services/UspsMailXmlMailingServices/wsdl/UspsMailXmlMailing70.wsdl</a></p> <p>I need to get a "FullServiceNixieDetail". Should be an XML doc. The documentation provided by USPS says I need to invoke FullServiceNixieDetailQueryRequest, and I will get back a FullServiceNixieDetailQueryResponse, which contains a FullServiceNixieDetail.</p> <p>I cannot for the life of me get anything that seems to work. The code I currently have is:</p> <pre><code>Imports USPSACSProcessor.UPSPMailXML Dim c As New UspsMailXmlMailingServiceClient Dim request As New FullServiceNixieDetailQueryRequest Dim response As FullServiceNixieDetailQueryResponse 'Assume I populate the Request object correctly here response = c.FullServiceNixieDetailQuery(request) </code></pre> <p>But my response object has no FullServiceNixieDetail. Just a bunch of summary properties like TotalMessageCount etc.</p> <p>How do I get my FullServiceNixieDetail XML?</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload