Tagged Questions
0
votes
0answers
8 views
Android device sends ARP request, no response
Some background:
I'm part of a team that's developing an Android game for a college course.
I am the person in charge of networking, and my aim is to have a game running in "client mode" submit input ...
-2
votes
0answers
21 views
Sending data set via Socket - Android
How can I send data set from the server to an Android device using Socket? I wanted to use something like this:
CachedRowSet pytania = new CachedRowSetImpl();
wyniki2 = ...
-3
votes
0answers
29 views
Android Java: new socket crashing app [closed]
I'm getting the following error and have no idea what is causing it ?
05-20 10:58:59.425: I/System.out(26617): Network connection available
05-20 10:58:59.430: D/AndroidRuntime(26617): Shutting ...
1
vote
2answers
33 views
readline() doesn't read from socket
s = new Socket(InetAddress.getByName(address), port);
Thread.sleep(250);
DataOutputStream outToServer = new DataOutputStream(s.getOutputStream());
BufferedReader inFromServer = new ...
-2
votes
1answer
32 views
Android send data via socket [closed]
I would like to send a simple date through tcp. I working with threads, but I dont know why but when i try to run my code that is stop imediatelly here is that. I have already set the permissons as ...
-1
votes
0answers
18 views
Getting problems with client-server updates (LAG)
Hi folks I'm new here and it will be hard to explain myself any way I'll try.
I have been a developing games/android app/ desktop and web applications by 2 years now I'm still a bachelor student so ...
1
vote
1answer
44 views
What is the mistake in converting a byte array to bitmap in android? (the byte array is sent from a c/c++ server, android beeing the client)
I'm developing an android app that sends it's accelerometer and gravity sensor data to a c/c++ server which uses openGL library to make a 3D shape rotate on the screen. I want to send back to the ...
0
votes
2answers
27 views
Socket.connect doesn't throw exception in Android
If I put a nonsense url no exception is thrown and none of the rest of my code is executed not even the rest of the asynctask that called the method that connects.
try {
...
0
votes
1answer
16 views
Android TCP Client/Server not passing messages properly (Only first received)
I have created two android applications, a client and a server, utilizing TCP to communicate across devices. On the server, I have this code to listen for TCP communication:
private class StartServer ...
0
votes
0answers
15 views
android maps failing after vpn connection
I seem to have bumped into an interesting problem that I hope someone else has seen before. I am working on a VPN app and one of the features is a map showing your ip-address location both before and ...
0
votes
1answer
26 views
Trying to send xml in utf-8 over socket in Android
I have an Android app that sends xml files to a server. If I set the encoding of the xml header to utf-8 it all works until there is a weird character like a japanese symbol for example, in this case ...
0
votes
1answer
37 views
Android - Send an image through socket programming
I am implementing a socket application where one phone will be a client and the other will be a server. The program is able to send strings using print writer just fine from the client to the sever ...
-2
votes
0answers
24 views
android string to byte via client socket [closed]
I've a trouble with sending bytes via client socket. When i use this c# code it works:
String message = ">V:1,C:14,L:" + (((int)renk.R * 100) / 255).ToString() + ...
0
votes
0answers
36 views
Communication between client (android emulator) and server (app on pc) via java.net.Socket
I'm writing an simple client-server application, but I have a problem with connecting the client, which is the AVD and server - simple app on PC. When first starts the avd it works ok but when I close ...
0
votes
0answers
11 views
Doubts regarding receiving port based SMS using Socket connection in Android
I am trying to receive port based SMS with the below piece of code.
serverSocket = new ServerSocket(SERVERPORT);
Socket client = serverSocket.accept();
try {
...
0
votes
0answers
39 views
Cannot get text value from BufferedReader [closed]
I have created an Android TCP server as well as a client. Both can communicate fine (in the sense that sent messages are registering).
Below, is the code I use to send a message from the client to ...
0
votes
2answers
18 views
Android: Socket-Connection causes lags and a lot of GC action
This is a Thread with a Socket-connection.
The Server sends random int numbers to this socket (every 10 ms).
The Problem is, that after a while the are huge lags of receiving the data and LogCat ...
0
votes
1answer
49 views
Socket Timeout Issue: android client reading data from pc server
I'm new to android, java and socket programming so of course I'm trying to merge all three!
I'm creating a desktop based java server which will simply send a short string to an android app(client).
...
0
votes
1answer
68 views
Start two threads in the same time but avoid using join after, this is for android program
i have two threads starting at the same time in my android program for downloading some packets.
ServerIP = WifiServer;
Thread thread22 = new Thread (new CallDownloader(fileToReceive, ServerIP, ...
1
vote
2answers
76 views
Why does my Android application drain battery?
I've written a simple application that displays some text and a little bit of graphics on screen. I'm using a Nexus 7, this is for an installation, and as such needs to be on continuously as much as ...
0
votes
1answer
34 views
Existing TCP socket class throw NetworkOnMainThreadException when updated to new API [duplicate]
I have inherited an Android application and am updating it for the latest API.
I am getting the NetworkOnMainThreadException when I create the socket. I have read a number of solutions that say to use ...
0
votes
1answer
48 views
sending file over tcp between android and pc
I want to establish a communication between 2 android devices. with a server to client (through a server) methodology. So generally I was thinking sending the file to a server (pc) then fetch the file ...
4
votes
1answer
54 views
Listing of the Network Devices in Android
Similar or the same Question has been answered here
I am creating an Android App, which sends a broadcast message to the network and prepares a list of devices responding back.
Now What I did:
I ...
0
votes
2answers
60 views
TCP - Android client + Java Server
I've implemented a Java TCP server running on my PC which will accept incoming messages sent from an Android device running the client, also implemented. The server just receives the messages from the ...
1
vote
1answer
33 views
Android - Listen to devices over Socket and Create their List
I am sending a broadcast message to the devices in network from my android phone and waiting for them to reply.
There are n number of devices in the network.
Now I need to create a list of the ...
1
vote
1answer
42 views
Android - ObjectInputStream keeps on reading the previous value even with .reset()
I'm building an application for sending files between two Android phones, now i have a ListActivity that retrieves the sdcard and lists the files, when the ListActivity first starts on the two devices ...
0
votes
2answers
39 views
android.os.NetworkOnMainThreadException with a AsyncTask [duplicate]
I'm trying to connect a socket with Android. I know that you can't open network-connections from MainThread. I have created an AsyncTask to do it. I have created and private class inside of the main ...
0
votes
2answers
92 views
Send data through Wifi from C# to Java
I'm trying to communicate a Windows (C#) software with an Android (Java) application. But Windows is throwing me the following error:
No connection could be made because the target machine actively ...
0
votes
1answer
57 views
Desktop server and android client local connection
i try to connect my windows desktop java server from android client. I'm working cross-platform. Desktop server and desktop client working fine with same code, but desktop server and android client ...
0
votes
1answer
39 views
Checking for escape character(0x1B,\033) while reading from socket
Ok, so I'm designing an Android MUD client as part of my school project. I'm having an issue, however, while implementing ANSI color parsing. I read in the data on a byte-by-byte basis. I've tried ...
0
votes
0answers
17 views
Android Bluetooth Connection without Scan
I'm currently working an appliction where i have.
A server : my Computer.
And a Client : my Android Device
I've already built a version of my program using http connection, but now, I want to ...
0
votes
1answer
46 views
Android : Thread does not start
I try to build an application to control a drone PARROT.
For this i create a socket between the drone and the device and i put this in a thread.
At first the thread correctly ran and the drone took ...
0
votes
0answers
38 views
Socket constructor is not creating new object? [duplicate]
I'm trying to connect a remote server, so i'm writing client side... But when i attempt to create Socket object with host and portnumber, it's not getting created and second attempt to use it crashes ...
0
votes
0answers
18 views
Communication between emulators through sockets in android
I am trying to communicate between two emulators through socket but server not able respond to the client's call.Can anybody tell me what i am doing wrong?
I am sending msg from client and displaying ...
-2
votes
1answer
36 views
TCP Socket on Android can't be opened [closed]
I'm trying to build a TCP Socket connection to a server in Android.
After creating the socket the code is running into a null exception.
I've already tried to run the code in a Java-Application and ...
0
votes
0answers
42 views
Communication between Android emulator and Fedora 18 VM
I have problem interconnecting an Android emulator with a Fedora 18 running on a virutal machine. Both run on the same host and I'm trying to create a socket connection between these.
I'read several ...
0
votes
0answers
31 views
Some events are not dispatched when app runs in background
My Android app running on Adobe AIR and coded in AS3 has a TIMER event which fires once every second to connect a TCP socket (class flash.net.Socket) and send a request.
A packet sniffer confirms ...
0
votes
2answers
34 views
Android client socket doesn't send data after some time
I'm developing an Android real-time-data app that sends data (floats and ints) to a server on the local subnet via a TCP socket. The problem I'm facing is that after sending some data simultaneously ...
-2
votes
0answers
33 views
Closing client socket for reusing its reference variable again [closed]
I realize simple client connection with server doing it in a thread.
In this thread im invoking method connected - for connection or reconnection (after error).
Thread Thread_NET;
Socket socket;
...
2
votes
1answer
140 views
Android BluetoothSocket::connect() throws an exception
I can not initiate the bluetooth connection between Java server(using bluecove 2.1.1 on Windows 7 x64, external bluetooth dongle) and Android client(OS version 2.3.6).
Device discovery works ...
5
votes
2answers
468 views
Chat application - which tech is better to implement chat app in Android
*I have to make an android application which is basically a chat application.*In this chat app the user can interact with single user as well in a group that means Group chat is also there. I am using ...
-2
votes
4answers
65 views
How do you make sure your pakcet is delivered to right client using public ip address [closed]
So private IP addresses are
192.168.00 ~ 192.168.255.255 or 10.0.0.0 or 172.16.0.0 ~ 172.31.255.255
If I accepted a client to my serversocket, I can get the client's remoteIp address by using ...
0
votes
1answer
101 views
java EC2 serversocket keeps get stuck at port already in use exception
I'm currently working / almost finished building the beta version of my communication application. I'm running my server on EC2 instance but somehow the server application keeps get stuck at "Port ...
1
vote
2answers
214 views
Running java server application 24/7 and secrets behind all those famous online live apps
I'm currently building an application that is about VOIP / random chatting, which is similar to skype or chatroullet. My question is extension to this
Running Java Server Application 24/7 (NOT on ...
0
votes
1answer
553 views
Are there any source codes or tutorial on softphone / voip [closed]
i'm looking forward to build a VOIP application using java. I'm familiar with using TCP/IP and understood very well about how i can use TCP/IP to create instant messaging program. But I want to move ...
1
vote
0answers
683 views
Android emulator(client) to phone(server) socket connection
i'm currently attempting to connect emulator(client) and phone(server) through TCP/IP socket connection. But somehow it never works, but it works fine if i try to connect emulator (as client / server) ...
0
votes
1answer
63 views
What kind of sockets or methodology out there in network programming to create voip or online games
i'm currently learning about sockets with using java. I'm learning about TCP sockets and UDP sockets including multicast sockets. And i'm just wondering, what other kind of sockets or networking ...
0
votes
2answers
238 views
which type of ip address is suitable for wifi based socket program
i'm currently building an app on android using TPC/IP socket connection. I'm getting ip address about wifi connection through using following codes:
This bit of code will allow me to get serverIp ...
2
votes
3answers
1k views
HTTP Vs Vanilla sockets for uploading large binary file (50-200 MB) from Android device over a single hop Wi-Fi Network
Is there a substantial overhead of using HTTP over plain sockets (Java on Android) to send a large (50-200 MB) file [file is on the SD card] from an Android device to a Linux server over a Wi-Fi ...
6
votes
3answers
3k views
SSL Client on Android
I'm currently writing a client part for Android (2.2) and a server using SSL. I managed to exchange messages between the server and a normal client, but Android doesn't seem to be too happy about self ...

