cancel
Showing results for 
Search instead for 
Did you mean: 

What's the best approach to automatically upload file to Sharepoint?

Former Member
0 Kudos

Hi xMII experts,

Does anyone have experience on how to automatically upload the file Sharepoint(Windows Sharepoint Services) ? I tried to google but only find the below solutions:

--Create a .Net application.Write the Webservice reference in the code.

http://www.sharepointblogs.com/ssa/archive/2006/11/30/wsuploadservice-web-service-for-uploading-docu...

--Create a Java application with the Webservice reference.

http://www.eggheadcafe.com/software/aspnet/31499846/uploading-files-to-a-docu.aspx

My intention is to minimize the program or coding effort, which can't be satisfied by the above two ways.

Looking forward to your responses

Best Regards

Terrance Liang

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello Terrance,

You want to do this using the MII? or you want to create an interface in the MII to exchange files between servers?

Let me know your idea.

Regards,

Danilo

Answers (2)

Answers (2)

Former Member
0 Kudos

Thank you all !

Former Member
0 Kudos

Terrence, I would recommend creating either a .NET web service or a .NET HttpHandler that invokes the Sharepoint API, and call those services from MII's Business Logic Services using either Web Service Action or the HTTP Post action. Personally, I think the HTTP Post action would be easier, since you won't need to encode the file in some unusual way to enable it to be transferred via a web service.