problem with null parameters passed from XMLHTTP in javascript to C# Webservice with SOAP

problem with null parameters passed from XMLHTTP in javascript to C# Webservice with SOAP

am 24.08.2007 11:15:47 von mbaskey

Hello, I have encountered some strange behaviour when using the
XMLHTTP Request object in Javascript to return xml from a C#
Webservice Method. I create a SOAP envelope and send it off to the
Webservice, which I have debug points in, which when hit I can see
that all the parameters are coming thru as null. I can't figure out
why this is, any experts out there would be a great help.

Here is my Javascript:

function showMsga()
{
if(window.ActiveXObject) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e) {
try {
req = new ActiveXObject("Microsoft.XMLHTTP"); }
catch(e) {
req = false;
}
}
}
else if(window.XmlHttpRequest) {
try {
req = new XmlHttpRequest();
}
catch(e) {
req = false;
}
}

var wer = window.location;

if(req) {
var strEnvelope = "
\n"+ " +
" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"" + " xmlns:soap=
\"http://schemas.xmlsoap.org/soap/envelope/\">\n" +
"\n" +
"\n" +
"3083\n" +
"1045\n" +
"
" + "
" + "
";

req.onreadystatechange = GetMessage;
req.open("POST","http://"+window.location.hostname+"/MyServi ce/
Service.asmx",true);
req.setrequestheader("Content-type", "text/xml");
req.setRequestHeader("SOAPAction","https://freedom.org/MyMet hod");
req.send(strEnvelope);
}
}

here is the C# for the WebService method

[WebMethod]
public string MyMethod(string tpid, string poid)
{
int userID = Users2.GetUserID();

DataProvider dp = DataProvider.Instance();

if(Convert.ToInt32(poid)>0)
{
return dp.GetPostDetail(Convert.ToInt32(poid), userID);
}
else
{
return dp.GetTopicDetail(Convert.ToInt32(tpid), userID);
}
}

originally the method took integers but I switched them to strings in
the hope they would work,
any and all comments and hints are greatly appreciated.

Thanks,
Matt

Re: problem with null parameters passed from XMLHTTP in javascript to C# Webservice with SOAP

am 24.08.2007 19:42:44 von unknown

Please don't cross-post.

--
John Saunders [MVP]

Re: problem with null parameters passed from XMLHTTP in javascript to C# Webservice with SOAP

am 24.08.2007 21:20:58 von reb01501

John Saunders [MVP] wrote:
> Please don't cross-post.

I'd rather he crosspost (as he did) than multipost. Perhaps you forgot to
type " ... to so many unrelated newsgroups."
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Re: problem with null parameters passed from XMLHTTP in javascriptto C# Webservice with SOAP

am 24.08.2007 22:29:35 von Randy Webb

Bob Barrows [MVP] said the following on 8/24/2007 3:20 PM:
> John Saunders [MVP] wrote:
>> Please don't cross-post.
>
> I'd rather he crosspost (as he did) than multipost. Perhaps you forgot to
> type " ... to so many unrelated newsgroups."

What is truly ironic is that he did what he asked not be done.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/