Reputation: 41
I am creating a server for my android app that utilizes Google Cloud Messaging for the network play. Should I be creating a Java Web service for the server, or is there something more efficient? Is it possible to create a C# web service instead?
Upvotes: 0
Views: 222
Reputation: 597
Web Services are not restricted by any language, You can have it in any language, be it C# or Java or PHP
Eventually the web service would be recieveing HTTP requests from your Android device with parameters like a GCM registration id of the device, you can send other parameters also. The web service would likely insert those into a database.
So, it doesn't matter which language is the service written in. It should accept the parameters and process them accordingly.
Hope this helps.
Upvotes: 1