X-Post: Cannot set Application object in IIS6.0, but could in IIS5

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

    X-Post: Cannot set Application object in IIS6.0, but could in IIS5

    Hi,

    We have pretty simple ASP (not ASP.Net) application, which has been running
    fine on IIS4 and IIS5. It has now been moved to a sever running in the DMZ
    and managed by a 3rd party. The server is Win2003 and IIS 6.0

    Within the Globe.asa file, have an Application_OnS tart SubRoutine (Visual
    Basic) and it bombs out on the first line

    Application("cn Security_Connec tionString") = "connectionProp erties"

    With the error

    Server object error 'ASP 0177 : 800401f3'
    Server.CreateOb ject failed
    Globe.asa, line 25

    Any ideas would be appreciated

    I've posted this is several places.

    Al


  • joker

    #2
    Re: X-Post: Cannot set Application object in IIS6.0, but could inIIS5

    You might try http://www.aspfaq.com/show.asp?id=2134

    Al wrote:
    [color=blue]
    > Hi,
    >
    > We have pretty simple ASP (not ASP.Net) application, which has been running
    > fine on IIS4 and IIS5. It has now been moved to a sever running in the DMZ
    > and managed by a 3rd party. The server is Win2003 and IIS 6.0
    >
    > Within the Globe.asa file, have an Application_OnS tart SubRoutine (Visual
    > Basic) and it bombs out on the first line
    >
    > Application("cn Security_Connec tionString") = "connectionProp erties"
    >
    > With the error
    >
    > Server object error 'ASP 0177 : 800401f3'
    > Server.CreateOb ject failed
    > Globe.asa, line 25
    >
    > Any ideas would be appreciated
    >
    > I've posted this is several places.
    >
    > Al
    >
    >[/color]

    Comment

    • joker

      #3
      Re: X-Post: Cannot set Application object in IIS6.0, but could in

      The only other suggestion I have is for you to check out the following
      articles over at the following link.



      Please note that it ends with "&numDays=&InCC =on" (without the quotes of
      course).

      Al wrote:
      [color=blue]
      > Yeah, seen that in the KB, but mty problem is that the line is setting a
      > value in the ASP Application object, and setting it from a constant string.
      >
      > Do I need to install ansd/or register ASP ???
      >
      > Al
      >
      >
      > "joker" wrote:
      >
      >[color=green]
      >>You might try http://www.aspfaq.com/show.asp?id=2134
      >>
      >>Al wrote:
      >>
      >>[color=darkred]
      >>>Hi,
      >>>
      >>>We have pretty simple ASP (not ASP.Net) application, which has been running
      >>>fine on IIS4 and IIS5. It has now been moved to a sever running in the DMZ
      >>>and managed by a 3rd party. The server is Win2003 and IIS 6.0
      >>>
      >>>Within the Globe.asa file, have an Application_OnS tart SubRoutine (Visual
      >>>Basic) and it bombs out on the first line
      >>>
      >>>Application( "cnSecurity_Con nectionString") = "connectionProp erties"
      >>>
      >>>With the error
      >>>
      >>>Server object error 'ASP 0177 : 800401f3'
      >>>Server.Creat eObject failed
      >>>Globe.asa, line 25
      >>>
      >>>Any ideas would be appreciated
      >>>
      >>>I've posted this is several places.
      >>>
      >>>Al
      >>>
      >>>[/color]
      >>
      >>[/color][/color]

      Comment

      • joker

        #4
        Re: X-Post: Cannot set Application object in IIS6.0, but could in

        You might also try reading 294271 INFO: ASP Error Codes.

        The section about "ASP 0117 Missing close of script tag"

        So you might have a <% without a corresponding %>

        Al wrote:
        [color=blue]
        > Yeah, seen that in the KB, but mty problem is that the line is setting a
        > value in the ASP Application object, and setting it from a constant string.
        >
        > Do I need to install ansd/or register ASP ???
        >
        > Al
        >
        >
        > "joker" wrote:
        >
        >[color=green]
        >>You might try http://www.aspfaq.com/show.asp?id=2134
        >>
        >>Al wrote:
        >>
        >>[color=darkred]
        >>>Hi,
        >>>
        >>>We have pretty simple ASP (not ASP.Net) application, which has been running
        >>>fine on IIS4 and IIS5. It has now been moved to a sever running in the DMZ
        >>>and managed by a 3rd party. The server is Win2003 and IIS 6.0
        >>>
        >>>Within the Globe.asa file, have an Application_OnS tart SubRoutine (Visual
        >>>Basic) and it bombs out on the first line
        >>>
        >>>Application( "cnSecurity_Con nectionString") = "connectionProp erties"
        >>>
        >>>With the error
        >>>
        >>>Server object error 'ASP 0177 : 800401f3'
        >>>Server.Creat eObject failed
        >>>Globe.asa, line 25
        >>>
        >>>Any ideas would be appreciated
        >>>
        >>>I've posted this is several places.
        >>>
        >>>Al
        >>>
        >>>[/color]
        >>
        >>[/color][/color]

        Comment

        • Jeff Dillon

          #5
          Re: X-Post: Cannot set Application object in IIS6.0, but could in IIS5

          Do you have a Server.CreateOb ject in your global.asa? The error messages
          states that this is the problem, not setting the application variable.

          Jeff

          "Al" <Al@discussions .microsoft.com> wrote in message
          news:91A4EB91-F73F-450A-A448-5BA4428295BC@mi crosoft.com...[color=blue]
          > Hi,
          >
          > We have pretty simple ASP (not ASP.Net) application, which has been[/color]
          running[color=blue]
          > fine on IIS4 and IIS5. It has now been moved to a sever running in the DMZ
          > and managed by a 3rd party. The server is Win2003 and IIS 6.0
          >
          > Within the Globe.asa file, have an Application_OnS tart SubRoutine (Visual
          > Basic) and it bombs out on the first line
          >
          > Application("cn Security_Connec tionString") = "connectionProp erties"
          >
          > With the error
          >
          > Server object error 'ASP 0177 : 800401f3'
          > Server.CreateOb ject failed
          > Globe.asa, line 25
          >
          > Any ideas would be appreciated
          >
          > I've posted this is several places.
          >
          > Al
          >
          >[/color]


          Comment

          Working...