I already have the machine.config <processmodel username set to SYSTEM and I
recall that was what I had to originally do to make this work. One thing
with the XP security release - that probably has something to do with it.
"Scott Allen" <scott@nospam.odetocode.com> wrote in message
news:9v9221p24fln6flljvmnp45abo7nle7jjl@4ax.com...
> I'd check to see if there is a permissions issue. The ASPNET account
> typically can't get to network resources.
>
> --
> Scott
>
http://www.OdeToCode.com/blogs/scott/ >
> On Sat, 26 Feb 2005 17:27:02 -0800, "G Dean Blake" <gb@nospam.com>
> wrote:
>
>>the following code has a valid string in
>>Session("ScannedInvoicedDirectory")
>>which is \\Machine1\c\InvoiceScans. In fact I can put that string into
>>file
>>explorer and it scans to the directory on the other machine sucessfully.
>>but rootdi.exists is false. This code used to work. What could be wrong?
>>
>>Thanks,
>>G
>>
>> Dim rootdi As DirectoryInfo = New
>>DirectoryInfo(Session("ScannedInvoicesDirectory"))
>> If Not rootdi.Exists Then
>> lblError.Text = "Scanned Directory" &
>>Session("ScannedInvoicesDirectory") & "does not exist"
>> Exit Sub
>> End If
>>
>