Re: SoapException

Tech-Archive recommends: Fix windows errors by optimizing your registry



The problem is not what I thought... It appears to be a null reference
exception.

Calling Program

if (txnDataSet == null)
MessageBox.Show("null going in");
else
returnValue == ss.PutUserData(txnDataSet);



Web Service

public String PutUserData(DataSet txnDataSet)
{
if (txnDataSet == null)
return "Data Set is null ";
}


There Web Service gets called (therefore the DataSet was not null going
into the call) and get the "Data Set is null" message from the Web
Service..... Huh?
}

--
Message posted via http://www.dotnetmonster.com
.