| Your Name | Jerry Shelley |
| Response to | NotesEmbeddedObject & ExtractFile |
| Parent Details | Hello
I currently have a web application with a file upload control on it.
Basically, when the user submits the form, the file attachment is detached to a predefined folder on the server using NotesEmbeddedObject & ExtractFile.
We have 3 servers in the cluster and I want to extract the file to the same location on the other servers.
I can extract the file to the server the user is currently working on with:
Call Object.ExtractFile("/domino/notesdata/import/" + ItemName)
I'm not sure how I would reference to the other servers ? I've tried inserting the server IP address in front of the above but fails. I'm assuming this is because its not the full server path, how can I find out the correct server path ?
Thanks
P |
| Subject | Re: NotesEmbeddedObject & ExtractFile |
Details
| (Assuming we're talking Windows) How about having a disk mapping on all 3 servers to a shared folder on the one server.
E.g. map H: drive to Server1's "/domino/notesdata/import/"
Then you could use
Call Object.ExtractFile("H:" + ItemName)
That is assuming your server admins will allow the mapping of a drive on their precious operating system. |
 |  |