Networking in objective c Client And Server in Iphone App [closed] - objective-c

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i would like make a simple application on iphone had a client and server
the app should let me send update from client to server and send update from server to client
the Question is... what should i read about to learn the major and important thing to start doing this application.

Check out gamekit. Connecting to the game network will allow your apps to talk to each other sending small data packets back and forth.
http://imagineric.ericd.net/2011/04/20/ios-gamekit-iphone-to-iphone-communication/
or you can use a TCP socket setup and communicate that way.
http://www.raywenderlich.com/3932/how-to-create-a-socket-based-iphone-app-and-server
If the ios devices are on the same network it can work from one to the other.
If they are on other networks you will need a central server.

Related

I want to develop a socket based chatting app in Titanium compatible with Android, iPhone and Blackberry [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to develop a socket based chatting app in Titanium compatible with Android, iPhone and Blackberry.
Please give me suggestion about it
If you want a "socket based chatting app", then you've already made decisions about the implementation, and so you really just need to know the interface for implementing it. Try reading the fantastic manual, it is very detailed on how to use sockets.
http://docs.appcelerator.com/titanium/3.0/#!/api/Titanium.Network.Socket.TCP
You'll need to roll your own server side to accept the socket connections, and your own protocol for the communications. Or adhere to an existing protocol.
Or you can use the existing, working Ti.Cloud sample I created. It is the Titanium specific version of what Hini linked at nodeacs.cloud.appcelerator.com --
https://github.com/appcelerator-modules/ti.cloud/tree/master/commonjs/example/windows/chats
You can use Titanium along with Node ACS to create the application.
Here is a sample chat application tutorial. I hope it helps you.
http://nodeacs.cloud.appcelerator.com/guides/quickstart

Developing Mediaplayer for windows 8 phone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am newbie to windows-8 phone development.
My first assignment is to develop mediaplayer for windows 8 phone.
can anyone guide me how should I proceed?
The requirement for mediaplayer is as follows.
Mediaplayer should have ability to stream the music from server.
We need to cache last played music-track by mediaplayer.
functionality like playnext,playprev,playlist etc..
Waiting for your reply.
what you have is a basic exercise in coding.
Take a nice long read through the Media Overview for Windows Phone. http://msdn.microsoft.com/en-us/library/ff402550(VS.92).aspx . You'll have to implement your cache, probably in isolated storage. The playnext, playprevious you'll have to do as well.
Work through some of the basic tutorials up at genapp in the phone section for some free training. http://bit.ly/30tolaunch .

Use TV remote over HDMI as a control GUI [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to connect a linux PC with HDMI output to my (Samsung) TV.
This allows to show a screen on the TV.
How can I use the TV's remote as an input device, sent over HDMI to control the PC?
Or in other words, can I make a simple user interface which is shown on the TV and is controlled with the remote control?
I mainly imagine using the 4 arrow-buttons and the OK to navigate and choose stuff.
Any links to doc or libraries (Java preferred) are welcome.
The protocol used to send the remote control signals is called CEC. In order to make use of it you will need hardware which supports it, and have drivers for that hardware.
Lacking any more specific information about the hardware you are using, I suggest starting at this page about CEC support on the Raspberry Pi

iPad application with remote database [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How can we implement iPad application that retrieve or store data from remote data source(Mysql). Are there any classes associate to achieve our requirement
If you are retrieving a remote database, then I would recommend creating a wrapper for your DB using a server-side language like PHP to serve the request from your application, just like it serves an AJAX client request.
In your iOS, you have to create a NSURL instance and request your PHP application for data. Now, for returning the data you can use your own format or standards like JSON or XML. There are numerous public JSON/XML parsers available for iOS!
How do you want to handle the delay of using a radio connection? You might want to consider using a json connection and a server application instead

Web service: Ruby on Rails versus WCF [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I would like to setup a web service, to be accessed via a mobile device. The main purpose of the server is data storage. I would like to know some of your opinions on the advantages\disadvantages between RoR and WCF for building the server-side of the web service.
I think you're looking at this the wrong way. What does the web service do?
The fact that it's a web service a mobile device talks to is itself not a big deal. Lots of stuff exists to do that. WCF is pretty good at it. I don't know anything about RoR but it probably is too.
So once the mobile device makes a request, what's going to happen on the server? Who is building it, and what languages/frameworks do they already know? What if any infrastructure is already in place?
If you can answer those questions, I think the answer to your question will become more apparent. :)