Read/Write file over an Intranet

veetian

New member
Joined
May 28, 2003
Messages
3
Hello All,

Im stuck at a bottleneck, here is the scenario:

The project Im handling needs to let users from a particular user group to be able to directly access (Read/Write) documents in one of the servers.

Ive written the code and can work perfectly fine on my local pc, but when it comes to user testing, they were prompted to enter the network password and even after entering it, they were only able to open it as Read-Only documents.


Ive tried to check the virtual directorys properties and security settings, I have set the user group to have full control over the directory, but to no vain...

Here is the client-side script:
<script language="VBSCRIPT">
set oWord = CreateObject("Word.Basic")
oWord.FileOpen(mypath)
oWord.AppShow()
</script>


Anyone has any idea whats going on?
 
Ive ran into the issue where users on the network connecting to another machine (XP or 2000 Pro) were prompted for their network password.

I added the user in the Local users and groups from the Manage screen and they were able to access w/o the network password prompt.
 
Back
Top