3 messages in com.googlegroups.bloggerdevRe: Error while accessing blog feed d...
FromSent OnAttachments
Emersion01 Feb 2008 05:31 
Jeff Scudder07 Feb 2008 09:49 
Emersion08 Feb 2008 21:08 
Subject:Re: Error while accessing blog feed due to proxy server..
From:Emersion (emer@gmail.com)
Date:02/08/2008 09:08:18 PM
List:com.googlegroups.bloggerdev

Thanks Jeff for your interest ...and reply as well

On Feb 7, 10:49 pm, Jeff Scudder <j.@google.com> wrote:

On Feb 1, 5:31 am, Emersion <emer@gmail.com> wrote:

Hello Friends

I am working on Bloggeer API.

my machine uses proxy server to connect internet.

when I am executing C# code

-----------------------code-------------------------- FeedQuery qry = new FeedQuery(); Service blogService = new Service("blogger", "ReadBlogs"); qry.Uri = new Uri(blogUrl); AtomFeed atmFeed = blogService.Query(qry);

-----------------------------------------------------------

I am getting erro as follows

--------------------------------error-------------------------------

ERROR Cache Access Denied

--------------------------------------------------------------------------------

While trying to retrieve the URL:www.google.com:443

The following error was encountered:

Cache Access Denied.

Sorry, you are not currently allowed to request:

www.google.com:443fromthiscache until you have authenticated yourself.

--------------------------------error ends here-------------------------------

what i should do can I use port 80 instead of 443??

Using port 80 would probably be a step in the right direction. I can't be sure that this will help, because I don't know how your proxy is set up. There is an article on using the client libraries with proxies that might be helpful:

http://code.google.com/support/bin/answer.py?answer=71349

Happy coding,

Thanks..