I am having a problem when passing a data to a webservice. The web service has three instance variables 2 of type int and one of type string. When I pass data to the web service the int varibles get set to 0 and the string variable is set to the correct data.
ex.
string temp = "Thanks"
int x = 6
int z = 7
when passed to web service
temp = "Thanks"
x = 0
z = 0
THanks
ex.
string temp = "Thanks"
int x = 6
int z = 7
when passed to web service
temp = "Thanks"
x = 0
z = 0
THanks