tags:

views:

524

answers:

3

OK I am new to working with SHarePoint Services and have an issue that I am trying to overcome. Where I work, I have implemented a Crystal reports Scheduler that outputs the reports to a shared folder. What I am trying to accomplish now is finding a way that I can point the output of the scheduler to the document library. I was hoping that I could find it like any other shared folder.

+2  A: 

1) On your box hosting sharepoint, turn on the WebClient Service.

2) Goto the library you wish to upload to, drop down on actions-> open in windows explorer

3) The path you see can be converted to a UNC path, where you can use it like any other shared folder.

3a) To convert, it should look like \\servername\Shared Documents
3b) This unc can be mapped as a shared folder like any other physical networked folders.

4) Happy Uploading!

Jason Watts
What is the subsite is that the name of the 'team site'?
Where do I find the subsite name?
sorry I see your directions now I will give it a try
Ok so i see \\servername\shared documents do I add the doclib to this?
I must be missing something
See my edit above
Jason Watts
ok now I am getting an error that access is denied when I attempt to add a file to the directory. I am in the administrators group am I doing something else wrong or do I need to add permissions somewhere
Is the access denied when adding a file to the -file share- or the document library while it's open in "open in windows explorer" mode?
Jason Watts
I figured it out thank you so much for your help jason I am sure I will be back
Awesome, good luck!
Jason Watts
A: 

If you want to upload the file in your code (not manually) without mounting a WebDAV share, you can also HTTP-PUT it to the desired URL, for example http://myserver/sites/mysite/mysubsite/mylist/myfolder/foo.doc

ndn
OK I am trying to do this first without code the same way that I can navigate to any shared drive. I followed Jason's directions yesterday and got it to work for the default site, but when I created another site, there is now a port number in the path and I seem to be having issues with this.
Ryan, are you using a DNS server?
Jason Watts