L
Lord
Hi!, I´m at the moment begining with web services, and I have a problem:
I´ve already made a class which implementates a chess engine. Now it´s
in a dll, and i´ve proved with a standard c# proyect : it works fine.
Now, I put it in a webmethod:
[WebMethod]
public string HelloWorld()
{
motor.MotorAjedrez game=new motor.MotorAjedrez(1);
game.PiensaOrdenador();
return "Hola a todos";
}
and when I try to see if it works fine with the internet explorer, it
newer shows the "hola a todos" message. Obviously, if I comment the
invocation of the method PiensaOrdenador(), it shows the message.
And the code game.PiensaOrdenador() in a c# proyect works fine.
The "error message" I get is : Server Aplication not available
(Aplicación de Servidor No Disponible).
After reading the event register system, it said:
aspnet_wp.exe (PID: 3016) was recibled because it seems to be blocked.
It didn´t send for the pengind application in the last 180 seconds
Has anyone any idea?.
Thanks
I´ve already made a class which implementates a chess engine. Now it´s
in a dll, and i´ve proved with a standard c# proyect : it works fine.
Now, I put it in a webmethod:
[WebMethod]
public string HelloWorld()
{
motor.MotorAjedrez game=new motor.MotorAjedrez(1);
game.PiensaOrdenador();
return "Hola a todos";
}
and when I try to see if it works fine with the internet explorer, it
newer shows the "hola a todos" message. Obviously, if I comment the
invocation of the method PiensaOrdenador(), it shows the message.
And the code game.PiensaOrdenador() in a c# proyect works fine.
The "error message" I get is : Server Aplication not available
(Aplicación de Servidor No Disponible).
After reading the event register system, it said:
aspnet_wp.exe (PID: 3016) was recibled because it seems to be blocked.
It didn´t send for the pengind application in the last 180 seconds
Has anyone any idea?.
Thanks