Note that there are some explanatory texts on larger screens.

plurals
  1. POBiztalk Composite Operations Service
    primarykey
    data
    text
    <p>I need to consume a Biztalk service that contains some composite operations. Essentially, one of my entities is in the form </p> <pre><code>&lt;?xml version="1.0" encoding="utf-16"?&gt; &lt;xs:schema xmlns:b="http://schemas.microsoft.com/BizTalk/2003" xmlns="http://HRMApplication.Schemas.Customer" targetNamespace="http://HRMApplication.Schemas.Customer" xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt; &lt;xs:element name="Customer"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:element name="CustomerCode" type="xs:string" /&gt; &lt;xs:element name="Name" type="xs:string" /&gt; &lt;xs:element name="Active" type="xs:int" /&gt; &lt;xs:element name="SubNumber" type="xs:string" /&gt; &lt;xs:element name="CustomerAccountNumber" type="xs:string" /&gt; &lt;xs:element name="AccountBranchCode" type="xs:string" /&gt; &lt;xs:element name="BranchLocationCode" type="xs:string" /&gt; &lt;xs:element name="Attention" type="xs:string" /&gt; &lt;xs:element minOccurs="0" maxOccurs="unbounded" name="Addresses"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:element name="Street1" type="xs:string" /&gt; &lt;xs:element name="Street2" type="xs:string" /&gt; &lt;xs:element name="City" type="xs:string" /&gt; &lt;xs:element name="State" type="xs:string" /&gt; &lt;xs:element name="Zip" type="xs:string" /&gt; &lt;xs:element name="Country" type="xs:string" /&gt; &lt;xs:element name="Description" type="xs:string" /&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;xs:element minOccurs="0" maxOccurs="unbounded" name="PhoneNumbers"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:element name="PhoneNumber" type="xs:string" /&gt; &lt;xs:element name="PhoneType" type="xs:string" /&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;/xs:schema&gt; </code></pre> <p>On the client side, I need to create a proxy for my service, and then create requests passing in customer objects and then displaying the response from the server in c#. How do I go about doing this in code please? Essentially, I am looking for code sample to help start me off of how to handle this sort of scenario given that when I generate a proxy using the ADD SERVICE REFERENCE option in visual studio, I get a proxy that requires I create a request object and then expect a response object. </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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