SOAP WSDL Generate Code

FinaInvoiceB2GBinding / getReceiverListJT

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 = "soapenv:Envelope";
xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/");
xml.AddAttribute("xmlns","http://fina.hr/eracun/b2g/invoicewebservicecomponents/v0.1");
xml.AddAttribute("xmlns:v0","http://fina.hr/eracun/b2g/sync/GetReceiverListJT/v0.1");
xml.AddAttribute("xmlns:b2gEracImpl","http://fina.hr/eracun/b2g/ws/erp/v0.1");
xml.UpdateChildContent("soapenv:Header","");
xml.UpdateChildContent("soapenv:Body|v0:GetReceiverListMsg|HeaderSupplier|MessageID","string");
xml.UpdateChildContent("soapenv:Body|v0:GetReceiverListMsg|HeaderSupplier|SupplierID","string");
xml.UpdateChildContent("soapenv:Body|v0:GetReceiverListMsg|HeaderSupplier|AdditionalSupplierID","string");
xml.UpdateChildContentInt("soapenv:Body|v0:GetReceiverListMsg|HeaderSupplier|MessageType",123);
xml.UpdateChildContent("soapenv:Body|v0:GetReceiverListMsg|HeaderSupplier|MessageAttributes","string");
xml.UpdateChildContent("soapenv:Body|v0:GetReceiverListMsg|v0:Data|v0:ReceiverList|Filter","");

// 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://prez.fina.hr/B2GFinaInvoiceWebService/services/B2GFinaInvoiceWebService";
string soapAction = "http://fina.hr/eracun/b2g/GetReceiverListJT";
//  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).

string Envelope_xmlns = responseXml.GetAttrValue("xmlns");
string MessageID = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|MessageAck|MessageID");
string MessageAckID = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|MessageAck|MessageAckID");
int MessageType = responseXml.GetChildIntValue("*:Body|*:GetReceiverListAckMsg|MessageAck|MessageType");
string AckStatus = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|MessageAck|AckStatus");
int AckStatusCode = responseXml.GetChildIntValue("*:Body|*:GetReceiverListAckMsg|MessageAck|AckStatusCode");
string AckStatusText = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|MessageAck|AckStatusText");
string RegistrationName = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:RegistrationName");
string ISOCode = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:ISOCode");
string CompanyID = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:CompanyID");
string StreetName = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|PostalAddress|StreetName");
string BuildingNumber = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|PostalAddress|BuildingNumber");
string PostalCode = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|PostalAddress|PostalCode");
string CityName = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|PostalAddress|CityName");
string Country = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|PostalAddress|Country");
string AddressLine = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|PostalAddress|AddressLine");
string EndpointID = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|*:EndpointID");
string EndpointIDSchemeID = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|*:EndpointIDSchemeID");
string PartyIdentificationID = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|*:PartyIdentificationID");
string PartyIdentificationIDSchemeID = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|*:PartyIdentificationIDSchemeID");
string BusinessBranchName = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|*:BusinessBranchName");
string InformationProvider = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|*:InformationProvider");
StreetName = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|PostalAddress|StreetName");
BuildingNumber = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|PostalAddress|BuildingNumber");
PostalCode = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|PostalAddress|PostalCode");
CityName = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|PostalAddress|CityName");
Country = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|PostalAddress|Country");
AddressLine = responseXml.GetChildContent("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|PostalAddress|AddressLine");
int Activity = responseXml.GetChildIntValue("*:Body|*:GetReceiverListAckMsg|*:ReceiverList|*:Receiver|*:BusinessBranch|*:Activity");
Request XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://fina.hr/eracun/b2g/invoicewebservicecomponents/v0.1" xmlns:v0="http://fina.hr/eracun/b2g/sync/GetReceiverListJT/v0.1" xmlns:b2gEracImpl="http://fina.hr/eracun/b2g/ws/erp/v0.1">
    <soapenv:Header/>
    <soapenv:Body>
        <v0:GetReceiverListMsg>
            <HeaderSupplier>
                <MessageID>string</MessageID>
                <SupplierID>string</SupplierID>
                <AdditionalSupplierID>string</AdditionalSupplierID>
                <MessageType>123</MessageType>
                <MessageAttributes>string</MessageAttributes>
            </HeaderSupplier>
            <v0:Data>
                <v0:ReceiverList>
                    <Filter/>
                </v0:ReceiverList>
            </v0:Data>
        </v0:GetReceiverListMsg>
    </soapenv:Body>
</soapenv:Envelope>
Response XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://fina.hr/eracun/b2g/invoicewebservicecomponents/v0.1" xmlns:v0="http://fina.hr/eracun/b2g/sync/GetReceiverListJT/v0.1" xmlns:b2gEracImpl="http://fina.hr/eracun/b2g/ws/erp/v0.1">
    <soapenv:Header/>
    <soapenv:Body>
        <v0:GetReceiverListAckMsg>
            <MessageAck>
                <MessageID>string</MessageID>
                <MessageAckID>string</MessageAckID>
                <MessageType>123</MessageType>
                <AckStatus>ACCEPTED</AckStatus>
                <AckStatusCode>1042</AckStatusCode>
                <AckStatusText>string</AckStatusText>
            </MessageAck>
            <v0:ReceiverList>
                <v0:Receiver>
                    <v0:RegistrationName>string</v0:RegistrationName>
                    <v0:ISOCode>string</v0:ISOCode>
                    <v0:CompanyID>string</v0:CompanyID>
                    <PostalAddress>
                        <StreetName>string</StreetName>
                        <BuildingNumber>string</BuildingNumber>
                        <PostalCode>string</PostalCode>
                        <CityName>string</CityName>
                        <Country>string</Country>
                        <AddressLine>string</AddressLine>
                    </PostalAddress>
                    <v0:BusinessBranch>
                        <v0:EndpointID>string</v0:EndpointID>
                        <v0:EndpointIDSchemeID>string</v0:EndpointIDSchemeID>
                        <v0:PartyIdentificationID>string</v0:PartyIdentificationID>
                        <v0:PartyIdentificationIDSchemeID>string</v0:PartyIdentificationIDSchemeID>
                        <v0:BusinessBranchName>string</v0:BusinessBranchName>
                        <v0:InformationProvider>string</v0:InformationProvider>
                        <PostalAddress>
                            <StreetName>string</StreetName>
                            <BuildingNumber>string</BuildingNumber>
                            <PostalCode>string</PostalCode>
                            <CityName>string</CityName>
                            <Country>string</Country>
                            <AddressLine>string</AddressLine>
                        </PostalAddress>
                        <v0:Activity>123</v0:Activity>
                    </v0:BusinessBranch>
                </v0:Receiver>
            </v0:ReceiverList>
        </v0:GetReceiverListAckMsg>
    </soapenv:Body>
</soapenv:Envelope>