Hi, I created 2 Web Services and both works good when i start them, but when in a web service make a call to the other ws, it fails....

Here is a simple test code that always returns "-5"
PHP Code:
try
    {
        
FreePass.FreePass ws2 = new FreePass.FreePass();
        
int resp ws2.GetRoleId("Administrator");
        return 
resp;
    }
    catch
    {
        return -
5;
    } 
The web reference to the FreePass ws is already added..

Thanks