Re: GCM Programming Mobile Development by peter_budo [GCM: Getting Started](http://developer.android.com/guide/google/gcm/gs.html) GCM Programming Software Development by *sharath* … Here](http://android.amolgupta.in/2012/07/google-cloud-messaging-gcm-tutorial.html#comment-form) Using this i am able to… GCM Programming Mobile Development by skliz … a simple instant messaging application like whatsapp. I discovered the GCM cloud push system from google. I used it to do… I have a production Instant Messaging app that is using GCM. Does this mean that my users must add a google… GCM Programming Mobile Development by *sharath* Can anyone give a simple example for GCM server and how to use it. Thanks in advance GCM Programming Mobile Development by k99rs Hi, I am trying to import the package com.google.android.gms.gcm.GoogleCloudMessaging into my project. I get an error saying the cannot resolve symbol. Can you please help me. Thanks in advanced. Slow API response Hardware and Software Networking by Dani …=REMOVED" ["HTTP_X_SSL_CIPHER"]=> string(76) "AES128-GCM-SHA256 TLSv1.2 Kx=RSA Au=RSA Enc=AESGCM(128… Re: Can my own Server communicate with mobile Application directly Programming Web Development by TomH.PG … also. You could also tie in the Google Cloud Messaging (GCM) service: http://developer.android.com/google… Re: How to check new events in server without refresh ? Programming Web Development by diafol Is this your server or somebody else's? How about websockets? gcm: https://developers.google.com/cloud-messaging/chrome/client maybe? Comet ? Re: How to check new events in server without refresh ? Programming Web Development by phoenix254 can i use gcm for chat like fb ? Re: Website Push Notifications - Best Use Cases? Digital Media Digital Marketing by hello_5 … an API call to a respective browser cloud manager – like GCM, APNs, etc. The cloud manager validates and delivers the message… Re: GCM Programming Mobile Development by k99rs I got it solve. I had to make a reference to the google-play-services.jar Re: Slow API response Hardware and Software Networking by Dani This is what curl_getinfo() spit out for the above request: array(26) { ["url"]=> string(33) "https://www.dazah.com/welcome/foo" ["content_type"]=> string(24) "text/html; charset=UTF-8" ["http_code"]=> int(200) ["header_size"… Re: Slow API response Hardware and Software Networking by cereal Hi Dani! You can see the response header and the request flow by adding: curl_setopt($ch, CURLOPT_HEADER, TRUE); curl_setopt($ch, CURLOPT_VERBOSE, TRUE); > I'm passying in Connection: keep-alive headers but they are not showing up in the $_SERVER dump. It probably happens because you're submitting the headers as an … Re: Slow API response Hardware and Software Networking by rubberman Also, a lot of web sites use multiple servers behind a "load balancer", most of which such as F5 devices, are round-robin and it is entirely possible for one request to get passed to a server under low-load, but the next to a server that is grinding away on other jobs. We certainly had this issue at Nokia with our proxy servers. You might… Re: Slow API response Hardware and Software Networking by rubberman BTW, what version of PHP are you using for this project? And did you install as a package, or build it from source? Re: Slow API response Hardware and Software Networking by Dani > It probably happens because you're submitting the headers as an indexed array Well that's ridiculously counter-intuitive! Still didn't fix the problem though, I'm afraid. > Also, a lot of web sites use multiple servers behind a "load balancer", most of which such as F5 devices, are round-robin and it is entirely possible for… Re: Slow API response Hardware and Software Networking by rproffitt I'm probably way off but do try using IP address instead of domain name. This one dogged a friends testing for months. Again, just something I've run into.