Android Development Project, JAVA Programming

Assignment Help:
Task

I have an Android mobile app project that I''m trying to get profiles to transfer by connecting to a server at 23.23.175.213 port 1337. I have to send a json string to the server and receive a json string back with everyone that is connected to the server. Here is a more detailed description on how the server works:

First, when you first connect to the server, the server will assign a socket address to you (see https://en.wikipedia.org/wiki/Socket_address). In other words, the server will detect your IP address and your port number, and it will combine these two to create and assign a socket address to you (e.g. 123.456.789.0:567). The server maintains these sockets addresses inside an array, so the server knows who is connected. When you disconnect, the server will remove your socket address from the array. Pretty simple.

Second, the server is a stream server that looks for complete JSON objects in its input stream (it is not an HTTP server). So how does the server know that a complete JSON object has arrived? Simply by looking for two }} termination characters in the input stream. So for when a client first connects, it will ask the server to broadcast (you will see what broadcast means in a minute) the following JSON object:

{
"to": "broadcast",
"type": "1",
"payload": {
"name": "Bob",
"photo": "MyPhotoInBase64GoesHere",
"message": "I like iOS!",
"status": "enabled"
}
}

The server will recognize the ending }} characters and will parse the JSON object as follows:

The to field. The to field must contain either a socket address or a broadcast string. If it contains a socket address, the server will forward whatever you include in your payload string to that socket address (I will tell you how you get socket addresses from the server in a minute). If the to field contains a broadcast string, the server will forward whatever you include in your payload to every socket address but yours (this is what broadcast means).
The type field. This field exists for platform implementation. iOS clients use this field to determine what to do with each JSON object coming from the server. For example, when an iOS client receives a JSON object from the server of type 7, it knows it''s a response from a current chat session with another client, so it will consume whatever text is included in the payload field. In this example the type is 1, and for iOS clients this means essentially that a new client is connecting and broadcasting its profile information, included in the payload.
The payload field. This field contains whatever information you want to forward to a socket address. So again, in the previous JSON object I am broadcasting my first name, my photo in Base64, a brief message, and an enabled status.

Lastly, once the server has successfully parsed your JSON object, it will purge the payload from your JSON object and create a new JSON object that is forwarded to a specific socket address or to every socket address (broadcast), depending on what you requested in the to field. Using the previous JSON object as an example, the server will broadcast my first name, photo, etc. to every socket address. Suppose there is only 1 other connected socket address that exists as 111.222.333.0:444 (remember, the server maintains these addresses for all connected clients). The server will then create and send a new JSON object to 111.222.333.0:444 as:

{
"from": "123.456.789.0:567",
"type": "1",
"payload": {
"name": "Bob",
"photo": "MyPhotoInBase64GoesHere",
"message": "I like iOS!",
"status": "enabled"
}
}



Specific Requirements

Most of the code needs to be modified in AndroidClient.java. The code needs to connect to the server address of 23.23.175.213 port 1337. outputJSON contains the JSON that is needed to send details about your profile to the server. The method outputstrwr.write() is suppose to write that json string to the server. The images when received or sent need to converted to or converted from base 64 format. THE DATA SHOULD BE RECIEVED AND SENT IN BYTES NOT STRINGS.


The client uses the method getBytesFromInputStream() to receive bytes/profile data from the server. When the Android client receives json from the server is parses it the json it gets the base 64 string, profile name string, and tagline string to display in the listview by adding those strings to a hashmap in the refreshViewModels() method and it also converts the json string Profile objects using Google gson. The profile objects are stored in a hashmap called posMap. When the user clicks on a listview item it gets the profile from the posMap and calls the callProfileActivity() method which in turn sends the data to the ViewProfileActivity. This should display the profile details including the image which would require you to convert from base64 to bitmap. If there are any other questions please don''t be afraid to ask. The app needs to be test using two devices to make sure it works. For an example, device #1''s name is Ryan and device #2''s name is Paul, Ryan should show up in the listivew with the Name, Tagline, and Profile Pic on Paul''s device and Paul should show up in the listivew with the Name, Tagline, and Profile Pic on Ryan''s device.

Related Discussions:- Android Development Project

Tasks with the classes Currency, In this assignment you work on a set of ta...

In this assignment you work on a set of tasks with the classes Currency, Money and Bank. Money and Currency You have been given a template for the Currency and Money classes (Lab1.

Algorithms, COMPSCI220S2C2012 Assignment 1 due 8 August 8:30 pm This assign...

COMPSCI220S2C2012 Assignment 1 due 8 August 8:30 pm This assignment introduces you to an example of applied algorithm analysis and shows you why, sometimes, compromises in an algor

Heap and Stack memory allocation in java, Each time an object is started in...

Each time an object is started in Java it goes into the area of memory named as heap. The primitive variables like double and int are allocated in the stack, if they are local inst

Explain about java sdk, Java SDK is not so comfortable with people used to ...

Java SDK is not so comfortable with people used to command line interpreter. IDEs contain compilers, editors, debugging facilities, drag and drop methods, etc. This compiler strive

Assingment, hi i want to get my assingment done

hi i want to get my assingment done

Program implement class which have main string method, Implement the Money ...

Implement the Money class discussed in class. This class should represent a dollar and cents amount with 0-99 cents and the cents being the same sign as the dollars. The class shou

Application for software tracking system, Talent agencies like ICM, CAA and...

Talent agencies like ICM, CAA and Paradigm represent writers, directors and actors (among other talent).  These agencies take in hundreds of millions of dollars a year collecting 1

How trojan horses or worms affect a computer system, How Trojan Horses or W...

How Trojan Horses or Worms affect a computer system? What guidelines should be adopted to troubleshoot along with malicious software? Trojan horses are stand-alone programs. Th

Develop tennis draw software, Project Description: We need to develop so...

Project Description: We need to develop software that has a database of players with the ability to delete and add players at will, once captured there can be a draw to set them

Maintenance and administration activities, Maintenance and Administration a...

Maintenance and Administration activities: Name                        : e-Commerce OS and Soft wares    : Websphere 6.0, IHS, Unix, Weblogic 8.1   Maintenance an

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd