I am using Visual Basic to dynamically create a Visio diagram. It is called from a web application.
The web app makes the call to the .aspx file, which does its work and then writes the file to the web app through Response.Binary Write.
The problem is this: there could be multiple users on the web app, and the VB app is currently confusing the web app with simultaneous use. That is, if two users both make a call to the VB app, the VB app doesn't separate the output, so one user gets a binary file (unreadable by Visio) with both users' contents, and the other user gets a blank Visio file.
Can I use anything in the Response.AddHea der to distinguish the output so the Java code for the app can pick the correct output?
The web app makes the call to the .aspx file, which does its work and then writes the file to the web app through Response.Binary Write.
The problem is this: there could be multiple users on the web app, and the VB app is currently confusing the web app with simultaneous use. That is, if two users both make a call to the VB app, the VB app doesn't separate the output, so one user gets a binary file (unreadable by Visio) with both users' contents, and the other user gets a blank Visio file.
Can I use anything in the Response.AddHea der to distinguish the output so the Java code for the app can pick the correct output?
Comment