realbasic-nug.de
[Top] [All Lists]

SoapMethod

To: <realbasic-nug dot de at lists dot realsoftware dot com>
Subject: SoapMethod
From: Markus Schnell <markus dot schnell at schnell-media dot de>
Date: Tue, 18 Jan 2005 23:00:36 +0100
Delivered-to: realbasic-nug dot de at lists dot realsoftware dot com
Hallo;

Kann man in der soapMethod eine Header hinzufügen?


Ist jetzt:
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xmlns:xsd="http://www.w3.org/2001/XMLSchema";
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
  <soap:Body>
    <GetData xmlns="http://server.webservices/"; />
  </soap:Body>
</soap:Envelope>

Soll aber:
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xmlns:xsd="http://www.w3.org/2001/XMLSchema";
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
  <soap:Header>
    <ServiceAuthHeader xmlns="http://server.webservices/";>
      <Username>string</Username>
      <Password>string</Password>
    </ServiceAuthHeader>
  </soap:Header>
  <soap:Body>
    <GetData xmlns="http://server.webservices/"; />
  </soap:Body>
</soap:Envelope>


Danke
Markus 


<Prev in Thread] Current Thread [Next in Thread>
  • SoapMethod, Markus Schnell <=