Problems using web services & ISA Server

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mike Malter

    Problems using web services & ISA Server

    I have a standalone Windows Server 2003 running IIS, SQL Server and ISA
    Server.

    We've managed to successfully disable socket pooling, got vpn working and
    have published a web site.

    The box is designed to call web services on a series of servers scattered
    throughout the United States and pull detailed activity records and then
    aggregate and report. The problem is that we get the following error
    message whenever we try to hit any of our servers: "The underlying
    connection was closed: Unable to connect to the remote server."

    I've nosed around a bit and thought it might have something to do with the
    way IE was configured. We messed around with the web.config file to make
    sure that the proxy was not using the system default, which didn't help. We
    have to use the proxy because we can't get out otherwise.

    Has anyone had any experiences with successfully running a web site and web
    services on a box using ISA Server?

    Any help would be greatly appreciated.

    Thanks.

    Mike Malter


  • Mike Malter

    #2
    Re: Problems using web services & ISA Server - forgot to mention we are running ISA 2000 sp2.

    Forgot to mention we are running ISA Server 2000.

    "Mike Malter" <mikemalter@new sgroup.nospam> wrote in message
    news:%23M2M$izL FHA.2888@TK2MSF TNGP12.phx.gbl. ..[color=blue]
    >I have a standalone Windows Server 2003 running IIS, SQL Server and ISA
    >Server.
    >
    > We've managed to successfully disable socket pooling, got vpn working and
    > have published a web site.
    >
    > The box is designed to call web services on a series of servers scattered
    > throughout the United States and pull detailed activity records and then
    > aggregate and report. The problem is that we get the following error
    > message whenever we try to hit any of our servers: "The underlying
    > connection was closed: Unable to connect to the remote server."
    >
    > I've nosed around a bit and thought it might have something to do with the
    > way IE was configured. We messed around with the web.config file to make
    > sure that the proxy was not using the system default, which didn't help.
    > We have to use the proxy because we can't get out otherwise.
    >
    > Has anyone had any experiences with successfully running a web site and
    > web services on a box using ISA Server?
    >
    > Any help would be greatly appreciated.
    >
    > Thanks.
    >
    > Mike Malter
    >[/color]


    Comment

    • [MSFT]

      #3
      Re: Problems using web services &amp; ISA Server - forgot to mention we are running ISA 2000 sp2.

      Hello Mike,

      To make a web service crossing a firewall, we have to set is Proxy
      property. For example:

      IWebProxy proxyObject = new WebProxy("http://proxyserver:80" , true);
      math.Proxy = proxyObject;

      Also, to test the proxy, can you access other web pages on the same server
      in IE?

      Luke

      Comment

      • Mike Malter

        #4
        Re: Problems using web services &amp; ISA Server - forgot to mention we are running ISA 2000 sp2.

        Luke,

        Thanks for jumping in but actually this is not ultimately what solved the
        problem. I finally had to open a case and use one of my tech support
        incidents with the ISA Server group.

        The solution was to create allow packet filters for port 80 and 433. The
        reason is that nothing can get out on an ISA box unless there is a packet
        filter for it. For clients not on the box, there is NAT, proxy or the
        firewall service itself but the problem arises when you are on the actual
        ISA box itself and try to do something.

        Thank you for your willingness to help.

        Mike

        "[MSFT]" <lukezhan@onlin e.microsoft.com > wrote in message
        news:uOpSyN3LFH A.1140@TK2MSFTN GXA02.phx.gbl.. .[color=blue]
        > Hello Mike,
        >
        > To make a web service crossing a firewall, we have to set is Proxy
        > property. For example:
        >
        > IWebProxy proxyObject = new WebProxy("http://proxyserver:80" , true);
        > math.Proxy = proxyObject;
        >
        > Also, to test the proxy, can you access other web pages on the same server
        > in IE?
        >
        > Luke[/color]


        Comment

        • [MSFT]

          #5
          Re: Problems using web services &amp; ISA Server - forgot to mention we are running ISA 2000 sp2.

          HI Mike,

          Thank you for the clarify. I really appreciated it.

          Luke

          Comment

          Working...