J
Julia
Hi,
I have a windows application which create a singleton remote object
And a net application which call the remote object
both on the same machine(windows 2000,iis 5.0)
here is the code in the webapplication:
try
{
MyServer server = new MyServer();
server.Update(this.Request.Params["Password"],this.Request.Params);
this.Response.Write(GetRefreshScript());
}
catch(Exception ex)
{
Response.Write("There was an error updaing the server ,please\r\n" +
"Make sure it is running and then try again");
Response.Write(ex.Message);
Response.Write(ex.StackTrace);
}
-It appears that there is no exception but the server doesn't get called!!!
-the server doesnot throw custom exceptions
-It is working fine on our development machines
-The web.config is the same as my devlopment web.config.
Thanks in advance.
I have a windows application which create a singleton remote object
And a net application which call the remote object
both on the same machine(windows 2000,iis 5.0)
here is the code in the webapplication:
try
{
MyServer server = new MyServer();
server.Update(this.Request.Params["Password"],this.Request.Params);
this.Response.Write(GetRefreshScript());
}
catch(Exception ex)
{
Response.Write("There was an error updaing the server ,please\r\n" +
"Make sure it is running and then try again");
Response.Write(ex.Message);
Response.Write(ex.StackTrace);
}
-It appears that there is no exception but the server doesn't get called!!!
-the server doesnot throw custom exceptions
-It is working fine on our development machines
-The web.config is the same as my devlopment web.config.
Thanks in advance.