oHELLOWORLD

Cette méthode permet de faire récupérer la chaîne « HelloWorld » si vos identifiants sont corrects.



Exemple d’appel (c#) : Namebay.Soap.Domain est le nom de la référence au web service

commande

Namebay.Soap.Domain.Domain L_oDomain = new soap.namebay.com.Namebay.Soap.Domain.Domain();

// Authentification
L_oDomain.AuthenticationHeaderValue = new soap.namebay.com.Namebay.Soap.Domain.AuthenticationHeader();
L_oDomain.AuthenticationHeaderValue.sLogin = "YourLogin";
L_oDomain.AuthenticationHeaderValue.sPassword = "YourPassword";


réponse

Namebay.Soap.Domain.ApiResponse L_oApiResponse = L_oDomain.oHelloWorld(out response)

//Description du code de retour.
L_oApiResponse.sMessage;

//Code de l’erreur
L_oApiResponse.iReturnCode;