Hello people!
Im new to c# and im having some trouble writting a c# client to web services call.
Im using visual studio 2005, as it is for PDA (windows mobile 6).
The problem is that i add the web reference and the VS creates all the code, but when i call one of its methods, nothing happens...
Let me be more specific: My server was written in python and run on a console. With python i can output a string to the console every time a request arives. When i call from c#, it doesnt even do that...
I writted 2 other clients, for the same server, using python and php and both run fine...
CODE
ws = new Usuario(); //my web service
string id_usuario = "";
try
{
id_usuario = ws.autentica(this.usuario, this.senha); // the call it self
}
catch (Exception e)
{
id_usuario = e.Message; //never enter the exception part
return;
}
and here id_usuario is still ""......
I thank you in advance for your answers!
Tiago Becker