Hello,
I made a String with XML in it...This String is transmitted to a SOAP server which don't recognize letters between " ". So this server doesn't know what action I want to do...It gives me an error ! Any idea?
String msg= "<?xml version=\"1.0\" encoding=\"ISO-8859-2\"?>"; msg+="<AuthentificationRequest action="">; msg+="<LoginCredentials>"; msg+="<SalesRegion>" + SalesRegion + "</SalesRegion>"; msg+="<AccountNumber>" + AccountNumber + "</AccountNumber>"; msg+="<UserName>" + UserName + "</UserName>"; msg+="<UserPassword>" + UserPassword + "</UserPassword>"; msg+="</LoginCredentials>"; msg+="</AuthentificationRequest>";
Thank you !
Bruno.
|