Skip to content Skip to sidebar Skip to footer

Google Cloud Messaging Gcm Through Proxy

I am having trouble sending a message to a device through the company proxy. I have done the GCM tutorial on the google site and have successfully registered a device on the google

Solution 1:

Alright, I finally have it working. In my comment I mentioned that I had succeeded in sending out the message, but the emulator was not recieving it. I had forgotten to follow my own earlier advice and run the emulator from the command line with the proxy parameters set like so:

emulator.exe -avd avd22google -http-proxy proxy.company.com:8080 -debug-proxy

So to summarise, my initial problem was that I had registered the emulator on the with GCM and with my local server, but the when I clicked send message I was getting a timeout.

I initially thought it was the firewall so I did some research and set up the proxy in tomcats catalina.properties file. This made no difference.

I used the "Charles" web proxy debugger software to see where the message was attempting to be sent to and it came up with https://android.googleapis.com:443

So I initially I added the following to my catalina.properties file:

https.proxyHost=proxy.company.com  
https.proxyPort=443

It still did not work. A colleague of mine told me that our company proxy handles all types of requests through port 8080, so I changed the the poort line to:

https.proxyPort=8080

This allowed the message to be sent out. But then the message was not getting through to the emulator and I was receiving the following error in LogCat.

[GTalkConnection.12] doConnect: caught XMPPError connecting to mtalk.google.com:5228.: -- caused by: java.net.SocketException: The operation timed out

Then I remembered that you need to start the emulator with the command line to get it to use the proxy. Once I did this a flood of messages appeared on my emulator!

So I finally have it working end to end. It's taken me about a week to get GCM fully working within my company firewall, so hopefully this post can help some other poor sod doing this in the future.

cheers

Bill

Post a Comment for "Google Cloud Messaging Gcm Through Proxy"