CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 2003
    Location
    Argentina....
    Posts
    118

    Angry Web Service to Web Service Error

    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
    My history: QB->VB->TC++->VB->VC++->VC#

  2. #2
    Join Date
    Sep 2003
    Location
    Argentina....
    Posts
    118

    Cool Re: Web Service to Web Service Error

    I did it!... There were permition problems....

    Thanks..
    My history: QB->VB->TC++->VB->VC++->VC#

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured