System.ComponentModel

System.ComponentModel

am 30.08.2007 15:50:01 von Shahin

Hi,
one of my client using a electronic web publication, to publish thier web
site, we hosting thier web site and the application on our web site.

some time when they click on the publish boten they get this error:
Exception Details: System.ComponentModel.Win32Exception: Access is denied

, when we restart the server they can publish the site.
so I look at the the code and when click the publish this would execut:

private Sub IndexEPD(st as integer)
if st = 0 then
Dim myProcess As New Process()
myProcess =
System.Diagnostics.Process.Start(Request.PhysicalApplication Path &
"cc21Siebold\ccIndexer.exe",Request.PhysicalApplicationPath &
"cc21Siebold\EPub.indexerprofile -autostart -autoshutdown")
myProcess.waitForExit
Response.Status = "200 OK"
Response.Write("OK")
myProcess =
System.Diagnostics.Process.Start(Request.PhysicalApplication Path &
"cc21Siebold\ccIndexer.exe",Request.PhysicalApplicationPath &
"cc21Siebold\EPubEvents.indexerprofile -autostart -autoshutdown")
myProcess.waitForExit
Response.Status = "200 OK"
Response.Write("OK")
else
Response.Status = "200 OK"
Response.Write("10")
end if
end sub

I can run the executebals indevitualy without an problem, but not from web
browser on the internet (except when I restart the server).

the server is a windows 2003 DC. I did search the net and I could find some
artical tha said it is right issue, but why when the server is restarted they
can publish the web site? and I cannot find any thing in the event view.

Any Idea how to solve this issue?

Re: System.ComponentModel

am 30.08.2007 17:36:31 von Jon Paal

if the code runs after the server is restarted, then it is likely a server side issue.

check the server logs and also try posting problem to a server newsgroup.

good luck...


"Shahin" wrote in message news:605FABD0-75BD-4F90-B2D7-952E09139309@microsoft.com...
> Hi,
> one of my client using a electronic web publication, to publish thier web
> site, we hosting thier web site and the application on our web site.
>
> some time when they click on the publish boten they get this error:
> Exception Details: System.ComponentModel.Win32Exception: Access is denied
>
> , when we restart the server they can publish the site.
> so I look at the the code and when click the publish this would execut:
>
> private Sub IndexEPD(st as integer)
> if st = 0 then
> Dim myProcess As New Process()
> myProcess =
> System.Diagnostics.Process.Start(Request.PhysicalApplication Path &
> "cc21Siebold\ccIndexer.exe",Request.PhysicalApplicationPath &
> "cc21Siebold\EPub.indexerprofile -autostart -autoshutdown")
> myProcess.waitForExit
> Response.Status = "200 OK"
> Response.Write("OK")
> myProcess =
> System.Diagnostics.Process.Start(Request.PhysicalApplication Path &
> "cc21Siebold\ccIndexer.exe",Request.PhysicalApplicationPath &
> "cc21Siebold\EPubEvents.indexerprofile -autostart -autoshutdown")
> myProcess.waitForExit
> Response.Status = "200 OK"
> Response.Write("OK")
> else
> Response.Status = "200 OK"
> Response.Write("10")
> end if
> end sub
>
> I can run the executebals indevitualy without an problem, but not from web
> browser on the internet (except when I restart the server).
>
> the server is a windows 2003 DC. I did search the net and I could find some
> artical tha said it is right issue, but why when the server is restarted they
> can publish the web site? and I cannot find any thing in the event view.
>
> Any Idea how to solve this issue?
>

Re: System.ComponentModel

am 31.08.2007 09:26:01 von Shahin

Hi Jon,

Thanks for reply,

I cannot find nothing in logs of the server as wel !


"Jon Paal [MSMD]" wrote:

> if the code runs after the server is restarted, then it is likely a server side issue.
>
> check the server logs and also try posting problem to a server newsgroup.
>
> good luck...
>
>
> "Shahin" wrote in message news:605FABD0-75BD-4F90-B2D7-952E09139309@microsoft.com...
> > Hi,
> > one of my client using a electronic web publication, to publish thier web
> > site, we hosting thier web site and the application on our web site.
> >
> > some time when they click on the publish boten they get this error:
> > Exception Details: System.ComponentModel.Win32Exception: Access is denied
> >
> > , when we restart the server they can publish the site.
> > so I look at the the code and when click the publish this would execut:
> >
> > private Sub IndexEPD(st as integer)
> > if st = 0 then
> > Dim myProcess As New Process()
> > myProcess =
> > System.Diagnostics.Process.Start(Request.PhysicalApplication Path &
> > "cc21Siebold\ccIndexer.exe",Request.PhysicalApplicationPath &
> > "cc21Siebold\EPub.indexerprofile -autostart -autoshutdown")
> > myProcess.waitForExit
> > Response.Status = "200 OK"
> > Response.Write("OK")
> > myProcess =
> > System.Diagnostics.Process.Start(Request.PhysicalApplication Path &
> > "cc21Siebold\ccIndexer.exe",Request.PhysicalApplicationPath &
> > "cc21Siebold\EPubEvents.indexerprofile -autostart -autoshutdown")
> > myProcess.waitForExit
> > Response.Status = "200 OK"
> > Response.Write("OK")
> > else
> > Response.Status = "200 OK"
> > Response.Write("10")
> > end if
> > end sub
> >
> > I can run the executebals indevitualy without an problem, but not from web
> > browser on the internet (except when I restart the server).
> >
> > the server is a windows 2003 DC. I did search the net and I could find some
> > artical tha said it is right issue, but why when the server is restarted they
> > can publish the web site? and I cannot find any thing in the event view.
> >
> > Any Idea how to solve this issue?
> >
>
>
>