this makes perfect sense... I changed the code to:

     WebRequest authRequest = WebRequest.Create(authHandler);
            if (this.factory.Proxy != null)
            {
                authRequest.Proxy = this.factory.Proxy;
            }
            WebResponse authResponse = null;

as i never like setting things on object if i don't have anything to set
them to (if .NET has/will introduce a way to set default proxies, not doing
this would hurt you...).

And that is checked in. Thanks

Frank Mantek

On 11/29/06, GDuncan411 <[EMAIL PROTECTED]> wrote:
>
>
> Looks like the function QueryAuthToken in gauthrequest.cs isn't using
> the proxy.
>
> Change this;
>             WebRequest authRequest = WebRequest.Create(authHandler);
> //Line 365
>             WebResponse authResponse = null;
>
> to this;
>             WebRequest authRequest = WebRequest.Create(authHandler);
> //Line 365
>             authRequest.Proxy = this.factory.Proxy; //new
>             WebResponse authResponse = null;
>
> and then it seems to authenticate through the proxy...
>
> Does that make sense? Or am I smoking dope?
>
>
> >
>


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Google Data API" group.
To post to this group, send email to google-help-dataapi@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to