Http web server: corrupt data Exception

I have an application that’s about 9gig in size and this apps. is highly used by users everyday and the db size is growing bigger. At any point of this I can’t really troubleshoot why this couple of weeks we are having ‘http web server: corrupt data Exception’ when try to save and exit from the application(form) other applications are working fine on the same dir.

Anyone experienced the same problem? I have load fixup dbname.nsf, load compact dbname.nsf, and even load updall dbname.nsf but all are hopeless, when i do a new copy to a member server then it works!. I wanna know why when installed this application on the domino application server and we have problem.

I have surfed the net to findout the solution but I can’t get any good findings, anyone could help me to solve this problem.

wanna get rid of this strange problem, hopefully ibm could help.

Subject: Re: http web server: corrupt data Exception

Typically a web-generated “corrupt data exception” is encountered when the design of a form has changed on the backend and then out-of-date data is posted to it. For example:

  1. Designer creates Form “A”

  2. Web user opens doc using Form “A” (or creates doc using Form “A”) and begins editing

  3. Designer changes fields, datatypes, etc. on Form “A”

  4. Web user submits document from step #2. ← This generates the “Corrupt Data Exception” error.

If you’re just getting this out-of-the-blue, then I would say you’ve got a corrupt form. Try replacing the database with a new copy of itself.

Subject: http web server: corrupt data Exception

I started getting this problem, and other problems when I upgrade to 6.5.1. Previous to that my forms worked perfectly.

I had a button on the form which had the formula:

@If(

@Command([FileSave]);

  @Command([FileCloseWindow]);

“”

)

This formula worked perfectly until 6.5.1. I had to replace the above code with:

document.forms[0].submit();

and that fixed it.

Beware though that if you have rich text fields on the form you may need extra javascript to handle the parsing of the text in those rich text fields.

Regards,

Alex

AGE Computer Consultancy