Jump to content

Help to Deploy IIS 7


cristianotestai

Recommended Posts

Hi,

 

I need help to deploy my app on my IIS 7.0.

My app is in the directory: c:\inetpub\wwwroot\markbook

 

I set the Application Pool as instructed on the website of UniGui.

Also the user IIS_USRS is with full permission to access the directory.

ext-3-3-0 folder is also located in wwwroot\markbook

 

Attached are two images related to the problem, the principle refers to the Web.config file.

I never realized deploy to IIS, so sorry for simple questions.

 

Tks.

post-17-0-63462400-1310163003_thumb.jpg

post-17-0-93950100-1310163013_thumb.jpg

Link to comment
Share on other sites

What is the URL you use to access your ISAPI app?

 

Farshad..

 

Is ok now the loading login page, but occours the AV below, in log file:

 

MbWebServer: 00000B2C: 14:55:01:EFCreateError : Cannot create file "c:\windows\system32\inetsrv\iphist.dat". Access is denied

MbWebServer: 00000B2C: 14:55:05:EAccessViolation : Access violation at address 020DB88D in module 'MbWebServer.dll'. Write of address 0000000C

 

 

but, i did not find the file in the inetsrv directory.. any idea?

 

Tks again..

Link to comment
Share on other sites

Farshad..

 

Is ok now the loading login page, but occours the AV below, in log file:

 

MbWebServer: 00000B2C: 14:55:01:EFCreateError : Cannot create file "c:\windows\system32\inetsrv\iphist.dat". Access is denied

MbWebServer: 00000B2C: 14:55:05:EAccessViolation : Access violation at address 020DB88D in module 'MbWebServer.dll'. Write of address 0000000C

 

 

but, i did not find the file in the inetsrv directory.. any idea?

 

Tks again..

 

 

I'm sorry.. I shared and gave full permission to the users IIS_USRS and IUSR accounts, and the AV occours..

Link to comment
Share on other sites

AV still occurs?

 

Yes Farshad,

 

I do not know why he tries to create this file iphist.dat.

In my local machine, creating a Stand Alone Server to load the app it creates this file in the same directory of the app.

In the production server (IIS 7.0), when I run the action(login button), occours the AV, where he can not create this file iphist.dat(inetsrv directory).

Link to comment
Share on other sites

  • Administrators

Yes Farshad,

 

I do not know why he tries to create this file iphist.dat.

In my local machine, creating a Stand Alone Server to load the app it creates this file in the same directory of the app.

In the production server (IIS 7.0), when I run the action(login button), occours the AV, where he can not create this file iphist.dat(inetsrv directory).

 

One of the components you use creates it. uniGUI doesn't create such a file.

 

There is a problem with credentials here. You must carefully check access rights. You can also try giving full access to everyone for that folder.

Link to comment
Share on other sites

One of the components you use creates it. uniGUI doesn't create such a file.

 

There is a problem with credentials here. You must carefully check access rights. You can also try giving full access to everyone for that folder.

 

Farshad,

 

I found what is creating that file. It was the code below one of my classes:

 

var

tIpObj: TIdIPWatch;

begin

inherited;

tIpObj: TIdIPWatch.Create = (nil) / / create file iphist.dat

try

IP: = tIpObj.LocalIP;

finally

tIpObj.Free;

end;

end;

 

I will not use it and now is ok!

Tks for help friend.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...