Questions tagged [service-not-available]

20 questions
23
votes
6 answers

Google Cloud Messaging - GCM - SERVICE_NOT_AVAILABLE

I am trying, to implement the new GCM, I am following Google get stated : http://developer.android.com/guide/google/gcm/gs.html I getting stuck at getting my device registration ID ! My app keep trying to connect with Google server, Here my error…
17
votes
5 answers

java.io.IOException: SERVICE_NOT_AVAILABLE in GCM Client

I want to implement an gcm client into an existing android app. So, by following this tutorial I wrote following code: public class RegisterForGCMAsyncTask extends AbstractSecureOperationTask { ... @Override protected Boolean…
16
votes
9 answers

GCM SERVICE_NOT_AVAILABLE on Android 2.2

I am getting the error "SERVICE_NOT_AVAILABLE" on my GoogleCloudMessaging.register() call on a Android 2.2 device. I am writing an app that uses GoogleCloudMessaging using the new Google Play Services. I implemented it using the guidelines provided…
12
votes
3 answers

Android GCM SERVICE_NOT_AVAILABLE

I was trying to set this example: https://code.google.com/p/gcm/source/browse/#git%2Fgcm-client up and running. The GoogleAPI project has been successfully created, according to the guide: http://developer.android.com/google/gcm/gs.html However, I…
5
votes
1 answer

Reverse Geocoding - Service Not available - Restart device not solving definitively - criticize my manual inverse geocoding

From times to times I meet the Service Not Available Exceptions in my application. Most of the time, there is no problem. But sometimes it happens. (The app is still under development) Only way to solve it is to restart the handset. Relevant…
3
votes
0 answers

GCM SERVICE_NOT_AVAILABE only on cellular network

Me and my friend are developing an Android app and implemented everything necessary for GCM. On my device (Nexus 4) the registration and receiving of messages work fine over WiFi and cellular network. But if my friend tries to register his device…
1
vote
1 answer

SERVICE_NOT_AVAILABLE error while using c2dm

I am trying to get C2DM to work, I'm following the ChrometoPhone example here When my emulator tries to register to C2DM, I get SERVICE_NOT_AVAILABLE. I have checked that the emulator has a gmail account set up and the same account is being passed…
Abhishek Chanda
  • 2,308
  • 5
  • 26
  • 55
1
vote
3 answers

Service now announcement 500 (Internal Server Error)

In service now I'm getting this error on the console for each request can anyone tell me what exactly the problem is and how can I get rid of this... here is the error: https://ven01234.service-now.com/api/now/sp/announcement 500 (Internal Server…
1
vote
1 answer

When will Azure (US West) support small VM websites?

I'm currently unable to create a small dedicated website. I'm getting this error: Not enough available reserved instance servers to satisfy this request. Anyone from Azure able to comment on when we can expect this size to be available in the US…
Paul Fryer
  • 8,728
  • 12
  • 56
  • 90
1
vote
1 answer

GoogleCloudMessaging.register - SERVICE_NOT_AVAILABLE error

Following is my code snippet protected String doInBackground(Void... params) { if(GooglePlayServicesUtil.isGooglePlayServicesAvailable(context) == ConnectionResult.SUCCESS){ GoogleCloudMessaging gcm_instance =…
0
votes
1 answer

C2DM SERVICE_NOT_AVAILABLE Error on registration

Here is my code: // begin the registration process status.setText("Registering..."); HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost("register.php"); SharedPreferences settings =…
Qasim
  • 1,598
  • 4
  • 24
  • 50
0
votes
1 answer

The kubernetes "AVAILABLE" column indicates "0", but the former steps(in Kubernetes guide) are OK

I need to deploy some docker images, and manage them with the Kubernetes. I followed the tutorial"Interactive Tutorial - Deploying an App"(https://kubernetes.io/docs/tutorials/kubernetes-basics/deploy-app/deploy-interactive/). But after I typing the…
0
votes
1 answer

custom application form as write mode for normal users in service now

In serviceNow, how to change custom application form as write mode for normal users after i used extended my table from task table
Aravind
  • 21
  • 1
  • 4
0
votes
1 answer

Camel and source/target system availabilites strategy

I am new to Camel and am looking for patterns or strategies to manage the availability of a target system in a Camel route. For example, say I want: - to read input data from an file server - process the data (data -> targetData) - to send the…
Gilles
  • 337
  • 1
  • 15
0
votes
2 answers

SignalR: Check if server is available

I have a C# server and a C# client using SignalR to communicate. Both are WPF applications. On my client I have a button for logging in at the server. I want to disable the login button if the server is not available. Is there any way I can check if…
Mighty Badaboom
  • 5,609
  • 5
  • 27
  • 47
1
2