2 messages in com.googlegroups.bloggerdevRe: _COMPlusExceptionCode = -532459699
FromSent OnAttachments
Ani19 Sep 2007 01:20 
Jeff Scudder21 Sep 2007 14:00 
Subject:Re: _COMPlusExceptionCode = -532459699
From:Jeff Scudder (j.@google.com)
Date:09/21/2007 02:00:55 PM
List:com.googlegroups.bloggerdev

On Sep 19, 1:20 am, Ani <anku@gmail.com> wrote:

When I create a new blog using these API's, I got the error "_COMPlusExceptionCode = -532459699" at the following line--->

AtomEntry createdEntry = service.Insert(FURI, newPost);

where FURI is

Uri FURI; FURI = new Uri("http://www.blogger.com/feeds/" + blogID+ "/ posts/default");

Please, also anyone tell me what i use in place of blogID above and what is the type of "blogID".

Thanks.

Please send me the solution on the following email-- "anku@india.com"

ThanXXXXXXXXXXXXXXXXXX

The blogID is a string and it looks something like "7682659670455539811". I tracked down the blogID number for a blog using the instructions provided here:

http://code.google.com/apis/blogger/developers_guide_protocol.html#GettingBlogs

I looked at the list of my blogs and found the entry representing the blog I wanted. Within that entry found a link element that contained the blog id. For example, see:

<link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='http://www.blogger.com/feeds/blogID/posts/default'> </link>

The href in the above link element should contain the full URL you need to send an entry to in order to create a new post.

-Jeff