Hallo an alle die mir helfen möchten,
ich muss ganz ehrlich gestehen, dass ich nicht viel Ahnung von PHP habe nun aber gezwungernder Maßen eine Application schreiben soll.
Also nun zu meinem Problem:
- Grundsätzlich soll ich einen Datenbankabfrage an einen Server richten. Diese Anfrage soll mittels XML erfolgen.
Ich habe auch eine Schnittstellenbeschreibung bekommen wo vieles nützliches drin steht:
1. Compose the XML: Create the XML string for the request, providing values for all required input arguments and any optional input arguments the function needs. For details, see "Using the XML Data Format."
2. Add the security information: Insert the API user name and password into the HTTP header for the request.
Each function call made by an application must be authenticated. The user name and password discussed above must be specified for function calls. This is done with the header field label "X-AUCTIONWORKS-API-VALIDATE" in the HTTP header. Use a semicolon to separate the user name and password values.
3. Send the request: Using the HTTP transport protocol, send the XML request string to the Marketworks platform.
4. Parse the result: using a custom or commercial XML parser, retrieve the values from the function's result set.
---------------
Ok nun ich möchte gern diese XML- Struktur versenden
Sample GetUser HTTP request string:
<?xml version="1.0"?>
<Request>
<UserName>smartuser</UserName>
<Password>password</Password>
<Command>GetUser</Command>
</Request>
an diese Adresse:
http://api.marketworks.com/api/apiCall.asp
----------
User und Password, die in Pkt. zwei beschrieben sind, sind nicht die gleichen wie in dem XML Konstrukt
Ich hoffe ich habe den Grundstein für eine erfolgreiche Hilfe gelegt und vertraue nun vollkomm in eure Fähigkeiten....achso natürlich habe ich auch schon lauter Recherchen durchgeführt und denke SOAP sollte der richtige weg sein....habe auch das Tutorial hier zu SOAP gemacht....hat mich aber nicht wirklich weitergebracht.
würde mich sehr über ein paar Code-Beispiele freuen
ich muss ganz ehrlich gestehen, dass ich nicht viel Ahnung von PHP habe nun aber gezwungernder Maßen eine Application schreiben soll.
Also nun zu meinem Problem:
- Grundsätzlich soll ich einen Datenbankabfrage an einen Server richten. Diese Anfrage soll mittels XML erfolgen.
Ich habe auch eine Schnittstellenbeschreibung bekommen wo vieles nützliches drin steht:
1. Compose the XML: Create the XML string for the request, providing values for all required input arguments and any optional input arguments the function needs. For details, see "Using the XML Data Format."
2. Add the security information: Insert the API user name and password into the HTTP header for the request.
Each function call made by an application must be authenticated. The user name and password discussed above must be specified for function calls. This is done with the header field label "X-AUCTIONWORKS-API-VALIDATE" in the HTTP header. Use a semicolon to separate the user name and password values.
3. Send the request: Using the HTTP transport protocol, send the XML request string to the Marketworks platform.
4. Parse the result: using a custom or commercial XML parser, retrieve the values from the function's result set.
---------------
Ok nun ich möchte gern diese XML- Struktur versenden
Sample GetUser HTTP request string:
<?xml version="1.0"?>
<Request>
<UserName>smartuser</UserName>
<Password>password</Password>
<Command>GetUser</Command>
</Request>
an diese Adresse:
http://api.marketworks.com/api/apiCall.asp
----------
User und Password, die in Pkt. zwei beschrieben sind, sind nicht die gleichen wie in dem XML Konstrukt
Ich hoffe ich habe den Grundstein für eine erfolgreiche Hilfe gelegt und vertraue nun vollkomm in eure Fähigkeiten....achso natürlich habe ich auch schon lauter Recherchen durchgeführt und denke SOAP sollte der richtige weg sein....habe auch das Tutorial hier zu SOAP gemacht....hat mich aber nicht wirklich weitergebracht.
würde mich sehr über ein paar Code-Beispiele freuen