Click here to Skip to main content
16,008,750 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Mail from SITE Pin
Sarvesvara (BVKS) Dasa25-Nov-02 2:42
Sarvesvara (BVKS) Dasa25-Nov-02 2:42 
GeneralRe: Mail from SITE Pin
Vasudevan Deepak Kumar25-Nov-02 3:07
Vasudevan Deepak Kumar25-Nov-02 3:07 
GeneralRe: Mail from SITE Pin
Sarvesvara (BVKS) Dasa25-Nov-02 19:23
Sarvesvara (BVKS) Dasa25-Nov-02 19:23 
GeneralNeed help with IIS/ASP Pin
JazzyJack23-Nov-02 1:01
JazzyJack23-Nov-02 1:01 
GeneralRe: Need help with IIS/ASP Pin
Roger Wright23-Nov-02 6:39
professionalRoger Wright23-Nov-02 6:39 
GeneralRe: Need help with IIS/ASP Pin
JazzyJack24-Nov-02 1:15
JazzyJack24-Nov-02 1:15 
GeneralRe: Need help with IIS/ASP Pin
Roger Wright24-Nov-02 16:53
professionalRoger Wright24-Nov-02 16:53 
GeneralIIS failed to release resources? classical ASP+COM Pin
devvvy22-Nov-02 21:30
devvvy22-Nov-02 21:30 
hi, i have created a COM server which is invoked from an ASP page (obj = CreateInstance(....) ).

I've two problems:

(1) IIS doesnt release my dll (ie. my in-process COM server) even after I shut down the server??

(2) IIS doesnt release the resources that COM server created earlier. More specifically, my COM server write to a disc file. No problem when the first request comes in coz the disc file has not been "locked" yet. But seems like the IIS server somehow lock the file and failed to release it.

Code in my in process server as follows:

FILE * fileA = NULL;
FILE * fileB = NULL;

fileA = fopen ("C:\logA.txt","w+"); //WARNING: warning C4129: 'l' : unrecognized character escape sequence. Note that the application will still compile with no Error. u just dont get the file at the desired location.
fileB = fopen ("C:/logB.txt","w+"); //This should work as intended.

if(fileA==NULL)
{
//Error handling.

}
else
{
fprintf(fileA, "Testing");
}

if(fileB==NULL)
{
//Error handling.

}
else
{
fprintf(fileB, "Testing");
}


fclose(fileA);
fclose(fileB);

Thanks!

norm
Generalasp and sql server database project Pin
benj222-Nov-02 10:06
benj222-Nov-02 10:06 
Generalasp securing .zip,.doc,.pdf files Pin
dmanoharan22-Nov-02 6:26
dmanoharan22-Nov-02 6:26 
GeneralRe: asp securing .zip,.doc,.pdf files Pin
Not Active22-Nov-02 8:10
mentorNot Active22-Nov-02 8:10 
GeneralRe: asp securing .zip,.doc,.pdf files Pin
dmanoharan22-Nov-02 11:08
dmanoharan22-Nov-02 11:08 
GeneralRe: asp securing .zip,.doc,.pdf files Pin
Said Zaghloul22-Nov-02 12:21
Said Zaghloul22-Nov-02 12:21 
Generalindexserver.asp and VPath empty Pin
Patrice Wendling22-Nov-02 5:28
Patrice Wendling22-Nov-02 5:28 
GeneralHelp on a project Pin
Harween22-Nov-02 4:32
sussHarween22-Nov-02 4:32 
GeneralRe: Help on a project Pin
Megan Forbes22-Nov-02 4:47
Megan Forbes22-Nov-02 4:47 
GeneralRe: Help on a project Pin
Anonymous22-Nov-02 4:55
Anonymous22-Nov-02 4:55 
GeneralRe: Help on a project Pin
Harween22-Nov-02 4:56
sussHarween22-Nov-02 4:56 
GeneralRe: Help on a project Pin
Megan Forbes22-Nov-02 5:34
Megan Forbes22-Nov-02 5:34 
GeneralRe: Help on a project Pin
Not Active22-Nov-02 5:13
mentorNot Active22-Nov-02 5:13 
GeneralRe: Help on a project Pin
Megan Forbes22-Nov-02 5:35
Megan Forbes22-Nov-02 5:35 
GeneralRe: Help on a project Pin
Harween22-Nov-02 5:43
sussHarween22-Nov-02 5:43 
GeneralRe: Help on a project Pin
Ray Cassick22-Nov-02 10:27
Ray Cassick22-Nov-02 10:27 
GeneralRun programs from a webpage Pin
kakuni21-Nov-02 5:02
kakuni21-Nov-02 5:02 
GeneralRe: Run programs from a webpage Pin
Jon Newman21-Nov-02 5:29
Jon Newman21-Nov-02 5:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.