Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to connect to SharePoint 2007 server page library which is under domain.a.com from console application and move the content to SharePoint 2010 server which is domain.b.com page library using Object Model.

string sourceURL = "http://mysite-stage.com/en/home/professionals";

string tragetURL = "http://yoursite.com/en/home/professionals";

I have domain, username and password on both the servers setup.

Any idea how to achieve this.

share|improve this question
I never did this kind of stuff, but my guess would be that you need to build two applications for that. One for extracting the data on sharepoint 2007 and writing to your file system and one to upload the content on the destination url. I say this because you need to have access to both the SharePoint 2007 and 2010 context, but again, I never tried it. – Alexandre Machado Nov 14 '12 at 20:07
Thanks a lot for your solution has worked for me. – SharePoint Support Nov 20 '12 at 17:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.