Rank: Member Groups: Member
Joined: 10/17/2008 Posts: 20
|
Hi There,
I am unable to upload the files when I set the TempFileLocation to \\ServerName\e$\Temp\ ( I am getting a message that says Failed to Initialize transfer. Please verify whether folder specified by the Ajaxuploader's TempFile Location exists and is writable by ASP.Net Worker process.)
And the same path did worked when I used the project which comes with the EOWeb_2008_44_Setup.exe I have updated the TempFileLocation to \\ServerName\e$\Temp\ and it did uploaded (So the folder has all necessary permission to write the files) But in the Testing Application it gives the above error.
Also If I update the TempFileLocation to C:\Test\ then it is working fine.
And I am able to Upload the file using FileInput control to the same Path so the folder do have all the necessary Permission.
so am i missing any setting?
<eo:AJAXUploader ID="AJAXUploader1" runat="server" Width="400px" TempFileLocation="\\ServerName\E$\Temp\" Rows="3" MaxDataSize="100000" AllowedExtension=".tif|.pdf|.doc|.jpeg" OnFileUploaded="AJAXUploader_FileUploaded" > </eo:AJAXUploader>
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Depending on how your web applications are configured, different projects/applications can have different security context, which means the folder might have enough permission in the security context associated to our demo project that comes with build 44, but does not have enough permission in the security context associated to your application.
As an easy test, you can try to place a button in your form, then inside that button's handler, try to create a file at "\\ServerName\e$\Temp\", if that succeeds, then something is wrong with the uploader. Otherwise it would still be a permission issue.
Thanks
|