SOAP WSDL Generate Code

OrganisationServiceWsHttpEndpoint / Search

ASP AutoIt C C (Unicode) C++ C++ (Unicode) C# DataFlex Delphi Foxpro Go Java Node.js Objective-C Perl PHP Extension PowerBuilder Powershell PureBasic Python CkPython Ruby SQL Server Swift TCL VB.NET VB6 VBScript Xojo
Chilkat.Xml xml = new Chilkat.Xml();
xml.Tag = "soap:Envelope";
xml.AddAttribute("xmlns:tra","http://training.gov.au/services/12/");
xml.AddAttribute("xmlns:soap","http://www.w3.org/2003/05/soap-envelope");
xml.AddAttribute("xmlns:arr","http://schemas.microsoft.com/2003/10/Serialization/Arrays");
xml.UpdateChildContent("soap:Header","");
xml.UpdateChildContentInt("soap:Body|tra:Search|tra:request|tra:PageNumber",1042);
xml.UpdateChildContentInt("soap:Body|tra:Search|tra:request|tra:PageSize",1042);
xml.UpdateChildContent("soap:Body|tra:Search|tra:request|tra:ClassificationFilters|tra:ClassificationFilter|tra:Scheme","string");
xml.UpdateChildContent("soap:Body|tra:Search|tra:request|tra:ClassificationFilters|tra:ClassificationFilter|tra:Values|arr:string","string");
xml.UpdateChildContent("soap:Body|tra:Search|tra:request|tra:CurrentNamesOnly","true");
xml.UpdateChildContent("soap:Body|tra:Search|tra:request|tra:ExcludeNotRtos","true");
xml.UpdateChildContent("soap:Body|tra:Search|tra:request|tra:ExcludeRtoWithoutActiveRegistration","true");
xml.UpdateChildContent("soap:Body|tra:Search|tra:request|tra:Filter","string");
xml.UpdateChildContent("soap:Body|tra:Search|tra:request|tra:IncludeCode","true");
xml.UpdateChildContent("soap:Body|tra:Search|tra:request|tra:IncludeLegacyData","true");
xml.UpdateChildContent("soap:Body|tra:Search|tra:request|tra:RegistrationManagers|arr:string","string");

// In a SOAP HTTP request, including the XML declaration (<?xml version="1.0" encoding="UTF-8"?>) in the XML body is generally not required. 
xml.EmitXmlDecl = false;
string soapRequestBody = xml.GetXml();

string endpoint = "https://ws.staging.training.gov.au/Deewr.Tga.WebServices/OrganisationServiceV12.svc/Organisation12";
string soapAction = "http://training.gov.au/services/12/IOrganisationService/Search";
//  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
string contentType = "text/xml";

Chilkat.Http http = new Chilkat.Http();

http.ClearHeaders();
http.SetRequestHeader("Content-Type",contentType);
http.SetRequestHeader("SOAPAction",soapAction);

Chilkat.HttpResponse resp = http.PostXml(endpoint,soapRequestBody,"utf-8");
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    Debug.WriteLine("Failed to send SOAP request.");
    return;
}

// Get the XML response body.
Chilkat.Xml responseXml = new Chilkat.Xml();
resp.GetBodyXml(responseXml);

int statusCode = resp.StatusCode;
Debug.WriteLine("response status code: " + Convert.ToString(statusCode));

// If the status code does not indicate succcess, then show the response XML,
// which probably contains error information.
if (statusCode != 200) {
    Debug.WriteLine(responseXml.GetXml());
    return;
}

Debug.WriteLine(responseXml.GetXml());

// Parse the successful SOAP response XML.

// This is a sample of the response XML, but the namespace prefixes will be different.
// We can parse the result using "*" for the namespace prefixes (see below).

int Count = responseXml.GetChildIntValue("*:Body|*:SearchResponse|*:SearchResult|*:Count");
int PageNumber = responseXml.GetChildIntValue("*:Body|*:SearchResponse|*:SearchResult|*:PageNumber");
int PageSize = responseXml.GetChildIntValue("*:Body|*:SearchResponse|*:SearchResult|*:PageSize");
string Code = responseXml.GetChildContent("*:Body|*:SearchResponse|*:SearchResult|*:Results|*:OrganisationSearchResultItem|*:Code");
string DataManagerCode = responseXml.GetChildContent("*:Body|*:SearchResponse|*:SearchResult|*:Results|*:OrganisationSearchResultItem|*:DataManagerCode");
string HasActiveRegistration = responseXml.GetChildContent("*:Body|*:SearchResponse|*:SearchResult|*:Results|*:OrganisationSearchResultItem|*:HasActiveRegistration");
string IsLegacyData = responseXml.GetChildContent("*:Body|*:SearchResponse|*:SearchResult|*:Results|*:OrganisationSearchResultItem|*:IsLegacyData");
string LegalPersonName = responseXml.GetChildContent("*:Body|*:SearchResponse|*:SearchResult|*:Results|*:OrganisationSearchResultItem|*:LegalPersonName");
string RegistrationStatus = responseXml.GetChildContent("*:Body|*:SearchResponse|*:SearchResult|*:Results|*:OrganisationSearchResultItem|*:RegistrationStatus");
string TradingName = responseXml.GetChildContent("*:Body|*:SearchResponse|*:SearchResult|*:Results|*:OrganisationSearchResultItem|*:TradingName");
string DateTime = responseXml.GetChildContent("*:Body|*:SearchResponse|*:SearchResult|*:Results|*:OrganisationSearchResultItem|*:UpdatedDate|*:DateTime");
int OffsetMinutes = responseXml.GetChildIntValue("*:Body|*:SearchResponse|*:SearchResult|*:Results|*:OrganisationSearchResultItem|*:UpdatedDate|*:OffsetMinutes");
Request XML
<soap:Envelope xmlns:tra="http://training.gov.au/services/12/" xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <soap:Header/>
    <soap:Body>
        <tra:Search>
            <tra:request>
                <tra:PageNumber>1042</tra:PageNumber>
                <tra:PageSize>1042</tra:PageSize>
                <tra:ClassificationFilters>
                    <tra:ClassificationFilter>
                        <tra:Scheme>string</tra:Scheme>
                        <tra:Values>
                            <arr:string>string</arr:string>
                        </tra:Values>
                    </tra:ClassificationFilter>
                </tra:ClassificationFilters>
                <tra:CurrentNamesOnly>true</tra:CurrentNamesOnly>
                <tra:ExcludeNotRtos>true</tra:ExcludeNotRtos>
                <tra:ExcludeRtoWithoutActiveRegistration>true</tra:ExcludeRtoWithoutActiveRegistration>
                <tra:Filter>string</tra:Filter>
                <tra:IncludeCode>true</tra:IncludeCode>
                <tra:IncludeLegacyData>true</tra:IncludeLegacyData>
                <tra:RegistrationManagers>
                    <arr:string>string</arr:string>
                </tra:RegistrationManagers>
            </tra:request>
        </tra:Search>
    </soap:Body>
</soap:Envelope>
Response XML
<soap:Envelope xmlns:sys="http://schemas.datacontract.org/2004/07/System" xmlns:tra="http://training.gov.au/services/12/" xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
    <soap:Header/>
    <soap:Body>
        <tra:SearchResponse>
            <tra:SearchResult>
                <tra:Count>1042</tra:Count>
                <tra:PageNumber>1042</tra:PageNumber>
                <tra:PageSize>1042</tra:PageSize>
                <tra:Results>
                    <tra:OrganisationSearchResultItem>
                        <tra:Code>string</tra:Code>
                        <tra:DataManagerCode>string</tra:DataManagerCode>
                        <tra:HasActiveRegistration>true</tra:HasActiveRegistration>
                        <tra:IsLegacyData>true</tra:IsLegacyData>
                        <tra:LegalPersonName>string</tra:LegalPersonName>
                        <tra:RegistrationStatus>string</tra:RegistrationStatus>
                        <tra:TradingName>string</tra:TradingName>
                        <tra:UpdatedDate>
                            <sys:DateTime>dateTime</sys:DateTime>
                            <sys:OffsetMinutes>442</sys:OffsetMinutes>
                        </tra:UpdatedDate>
                    </tra:OrganisationSearchResultItem>
                </tra:Results>
            </tra:SearchResult>
        </tra:SearchResponse>
    </soap:Body>
</soap:Envelope>