Link to home
Start Free TrialLog in
Avatar of MrKevorkian
MrKevorkian

asked on

serialized object is losing values

hi i have an aspx 2.0 page calling a webservice

that i call in the following fashion:


SearchResultsVO searchResultsVO = null;
SearchParameterVO searchParameterVO = new SearchParameterVO("abc", 123);
SchemeSearchProxy proxy = new SchemeSearchProxy(); //instanciate the wsdl generated proxy
proxy.Url = serviceURL; // give the proxy a url of the service
searchResultsVO = proxy.GetSchemeSummary(searchParameterVO);


i can step through this into the webservice "GetSchemeSummary" method.

But once into the webservice.GetSchemeSummary - my object "searchParameterVO" has lost its values.

But the second before i call the web method it is fully populated with values.

does anyone have any ideas please?

ps my searchParameterVO object is [serializable]
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

That is a great question, and I don't have a specific answer, but I do have questions:

1) Is this your web service?

2) Do you have any service packs installed?

3) Is this a simple, "Hello World" kind of web service, or is this a simple part of a complex web service?
ASKER CERTIFIED SOLUTION
Avatar of MrKevorkian
MrKevorkian

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial