user251291
user251291

Reputation:

Asp.net mvc and google api

I created an asp.net mvc application that utilizes Google's analytic's API. The application was working for a short period, it then stopped working. By stopped working it is unable to make a connection to google. This problem occurs at my work environment. I tried the application at home and it works fine. I think my organization is blocking the application connection. I created a console version of the web app and it works fine.

Do web apps and console app make different external server requests?

How do I diagnosis the problem so I can make a request to the help desk as to what ports they are blocking.

thanks,

Upvotes: 1

Views: 367

Answers (2)

user251291
user251291

Reputation:

thanks for the help guys. I managed to route the api calls through a proxy server. Application worked fine after that. Here is a link to using a proxy with the api.

http://code.google.com/apis/gdata/articles/proxy_setup.html

Upvotes: 2

pollirrata
pollirrata

Reputation: 5286

Try using Fiddler, is a HTTP proxy that maybe can five you the information that you need. Other option would be mabye using Wireshark, for scanning too, but I'm not sure about it cause I never used it.

You need to install the tools on the client that is making the requests to Google

I hope this helps

Upvotes: 1

Related Questions