Re: ASP App Hangs. ALL FIXED!
From: Richard Gutery (rgutery_at_mentorits.com)
Date: 01/09/05
- Next message: Séverine Donnay: "Re: CreateTextFile deny on IIS"
- Previous message: Richard Gutery: "Re: ASP App Hangs."
- In reply to: Richard Gutery: "ASP App Hangs."
- Next in thread: Stefan Berglund: "Re: ASP App Hangs. ALL FIXED!"
- Reply: Stefan Berglund: "Re: ASP App Hangs. ALL FIXED!"
- Messages sorted by: [ date ] [ thread ]
Date: Sun, 9 Jan 2005 12:21:34 -0700
Problem solved! It was actually a reply from Bob Barrows that got me going
on this - thanks Bob.
It seems that when you disable Script Blocking in NAV (actually SYM
Systemworks 2005) and you reboot after a Live Update, Systemworks will reset
any options that you've turned off to the values chosen at "Install Time".
For NAV Corporate Edition on a Server, script blocking is enabled
automatically for all Managed Clients and when the client logs in the NAV
client manager re-enables what ever features you've configured for "Managed
Clients"!
I guess the "Rule of thumb would be": Always double check NAV settings after
Live Updates or nAV Corp Edition Updates to managed clients.
I disables Script Blocking and all is well.
R.
"Richard Gutery" <rgutery@mentorits.com> wrote in message
news:OamsAvm9EHA.2452@TK2MSFTNGP14.phx.gbl...
> G'day. Slight problem that has me perplexed.
>
> We have an ASP app running on Win2K IIS 5.1, devloped on WinXPpro.
>
> Up until the other day, the app worked without problems.
>
> Now, the app hangs on an FSO request. I've inlcuded the relevant code
> below for referrence.
>
> Basically, the code will check to see if a dir exists (CALLOUT 1), then
> checks Write permissions by trying to create
> a test.txt file (CALLOUT 2), then deletes the file created in CALLOUT 3.
> The uploadsDirVar points to another disk
> volume and has the correct permissions (NTFS) assigned and have not
> changed (see CALLOUT 3 below):
>
> This code is thisASP file called from the site's Default.asp.
>
> CODE SNIPPET START:
> Dim fso, fileName, testFile, streamTest
>
> (CALLOUT 1)
> ' TestEnvironment is a function that simply returns a string with an error
> or is = to "" if no error.
> TestEnvironment = ""
> Set fso = Server.CreateObject("Scripting.FileSystemObject")
> if not fso.FolderExists(uploadsDirVar) then
> 'Folder does not exist
> TestEnvironment = "ERROR NO: 900 (Account Error [f] )! Contact the
> Office for Assistance."
> exit function
> end if
>
> ' The next series try to Create and Delete a dummy file. If we cannot,
> then we have a Permissions error
> fileName = uploadsDirVar & "\test.txt"
> on error resume next
>
> (CALLOUT 2 - THIS IS WHERE THE APP HANGS UNTIL!)
> Set testFile = fso.CreateTextFile(fileName, true)
>
> (from here on out, everything works fine).
> If Err.Number<>0 then
> ' No Write Permissions
> TestEnvironment = "ERROR NO: 901 (Account Error [w] )! Contact the
> Office for Assistance"
> exit function
> end if
>
> (CALLOUT 3)
> Err.Clear
> ' This works, so the NTFS perms are good to go!
> testFile.Close fso.DeleteFile(fileName)
> CODE SNIPPET END:
>
> The dir exists and nothing has changed in terms of permissions, dir
> locations or Code. No errors are returned from the Browser, Server or App.
> It just hangs. Nothing in the Event Logs (Auditing turned on and shows no
> errors either).
>
> If I terminate the app (via the browser) I cannot use the app again.What I
> mean to say is that when I try to connect to the app via default.asp,
> everything just hangs.
>
> If we debug the app and comment out the lines at CALLOUT 2 (between the If
> and Endif) all works fine.if I create test.txt in Explorer, comment out
> CALLOUT 2 and execute the app, CALLOUT 3 will delete the file, so we know
> that IUSR_machine has the correct permissions which suggest that the
> server, app and code are all good.
>
> Any Ideas???
>
> Richard
>
>
>
- Next message: Séverine Donnay: "Re: CreateTextFile deny on IIS"
- Previous message: Richard Gutery: "Re: ASP App Hangs."
- In reply to: Richard Gutery: "ASP App Hangs."
- Next in thread: Stefan Berglund: "Re: ASP App Hangs. ALL FIXED!"
- Reply: Stefan Berglund: "Re: ASP App Hangs. ALL FIXED!"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|