[Google-Docs-Data-APIs] Delete folder in .net application

2008-12-18 Thread CianoIT
Hi guys, i write a function for delete a folder by id, this function not work's and return this error: Execution of request failed: http://docs.google.com/feeds/folders/private/full/folder:8163a121-3764-47e5-bfce-a36e642e7396 ---> System.Net.WebException: Errore del server remoto: (400) Richiesta

Re: .NET Moving folder into a folder

2008-12-13 Thread CianoIT
"http://docs.google.com/feeds/documents/ > private/full/folder%3A" + idFolder); > and > myService.EntrySend(myfeeduri, movefolder, GDataRequestType.Insert); > > Eric > > On Dec 11, 12:58 am, CianoIT wrote: > > > Hi Guys, > &g

.NET Moving folder into a folder

2008-12-11 Thread CianoIT
Hi Guys, i write a small routine for moving a folder into a folder. The function is: public void SpostaCartella(string idFolder, string idDestinationFolder) { // create a feed uri string strUri = "http://docs.google.com/feeds/folder

Re: Create a folder with c# (.net)

2008-12-05 Thread CianoIT
Do you have a standalone application or web application? i have a standalone application with frameworks 2.0 my complete code is: myService = new DocumentsService("SessionGoogleDocsSync"); myService.setUserCredentials(_username, _password); public void CreateFolder(string nomecartella) {

Re: Create a folder with c# (.net)

2008-12-05 Thread CianoIT
wow! It's work! Ben, you're the best! thanks Alessandro On 4 Dic, 19:21, Ben <[EMAIL PROTECTED]> wrote: > The feed URI should be "http://docs.google.com/feeds/documents/private/ > full". > > On Dec 4, 12:14 pm, CianoIT <[EMAIL PROTECTED]> wrote: >

Re: Create a folder with c# (.net)

2008-12-04 Thread CianoIT
lder"; > >             AtomEntry folder = new AtomEntry(); >             folder.Categories.Add( category ); >             folder.Title = new AtomTextConstruct > ( AtomTextConstructElementType.Title, theName); >             theGoogleService.EntrySend( theFeedUri, folder, > G

Re: Create a folder with c# (.net)

2008-12-04 Thread CianoIT
thanks Ben, but don't work... Alessandro On 4 Dic, 17:18, Ben <[EMAIL PROTECTED]> wrote: > Try setting categoria.Label = "folder". > > --Ben > > On Dec 4, 9:23 am, CianoIT <[EMAIL PROTECTED]> wrote: > > > Hi, > > i need c

Create a folder with c# (.net)

2008-12-04 Thread CianoIT
Hi, i need create a folder with C#, how make this? i try this: AtomEntry entry = new AtomEntry(); AtomCategory categoria = new AtomCategory(); categoria.Term = "http://schemas.google.com/docs/2007#folder";; categoria.Scheme = "http://schemas.google.com/g/2005#kind";; entry.Categories.Add(categor