TCP Connection To Send And Receive Java / Android With Server
Mar 24, 2012
I have searched everywhere to find an answer for this question: I have a TCP client on my android application that sends an message to the server which is written in Visual Basic .NET Framework 4. Now i want to send an message from my server to the phone over 3g, it works on wifi and 3g..
[Code]...
View 2 Replies
ADVERTISEMENT
Apr 22, 2010
I am sending data to my server (MyServer.com) from microcontroller device using socket connection, I want to receive data using Socket and store in access database need a tracker for this work
View 3 Replies
Jun 7, 2010
How can I send and recieve serialized objects over a TCP connection with size and data type values in the header (within array(0) and array(1) values)?I know how to serialize and send the object using BinaryFormatter.Serialize.I dont know how to take the recieved data and put it into an array of bytes().Also - on the receiving end I dont know the size of the object sent therefore I dont know when to stop reading the data stream so I cant use: Dim Obj As ClassName = DirectCast(BinaryFormatter.Deserialize(Stream), ClassName).
View 1 Replies
Feb 15, 2011
We are developing an Android Application (Java) that reads an image, encode the bytes in base64 to send them over HTTP (via GET) to a WebService written in VB.NET.On .NET side, they are using this :
Dim Pix As Image
Pix = Image.FromFile("C:UsersPublicPicturesSample PicturesTree.jpg")
Dim ms As New MemoryStream[code]....
How can I pass the correct string to them to correctly decode the image from Java encoding (unsigned) to .NET decoding (signed)?
View 1 Replies
Dec 21, 2011
i'm using the following algorithm to encrypt and decrypt a string in VB.NET and wanted to do that same method in Android also.
Encryption:
Private Function decryptStr(ByVal key As String, ByVal enc As String) As String
Try
DES.Key = Hash.ComputeHash(System.Text.ASCIIEncoding.ASCII.GetBytes(key))
[Code]....
View 1 Replies
Jan 25, 2012
Is there a Java equivalent - specifically on Android - for VB.NET's Static keyword? For those not familiar with VB.NET, take the following code snippet...
Sub MyFunc()
Static myvar As Integer = 0
myvar += 1
[code].....
View 2 Replies
Sep 13, 2009
How do i make a messager in vb that should be able to send and receive messages from the server?
View 2 Replies
Jan 21, 2009
Instead of the send message text box and message display text box, I have replaced it with RichTextBox for text formatting (bold/italics/underline/font/color). The problem I am facing is when I format the text and click on send, then the text displayed on the message display box (txtMessageHistory) is unformatted. [Code] Rest of the code of client is related to formatting of the rich text boxes that is not relevant to my problem. I just need to transfer the formatted text from client to server and then back to the client the same way and display the message with text formatting.
View 13 Replies
Sep 21, 2011
In our project we've decided to put an exam generator using vb.net and after generate you can send it to client computer/students. *server computer/teacher will the one who will use exam generator and send it to the client computer/student*student will recieve it and then send it back again to the server computer/teacher*teachers will going to generate an exam depends on the type of exam, so i think im going to make it a wizard type environment
View 14 Replies
Nov 4, 2011
I found similar forum thread [URL], but he don't have answers. How I can conncect | send | recive data using tcp connection with specific internet service (not web).
View 1 Replies
Apr 22, 2012
I have an android application that is creating a JSONArray with:
List<String[]> sqlist = MySQLiteHelper.selectAll();
JSONArray jsArray = new JSONArray(sqlist);
Which is calling
public static List<String[]> selectAll()
{
List<String[]> list = new ArrayList<String[]>();
Cursor cursor = db.query(TABLE_BREADCRUMBS, new String[]
[Code]....
View 1 Replies
Apr 19, 2012
I'm writing it again, i'm developing an app in which user click a picture through image and image will be stored in sdcard then I have choose the picture from image view and send that picture to the server. I have convert my image into the byte array and then encoded it in Base64 string format but when i try to send that image to the server it give me an error of soap fault. Here's the my code of android device:
public void doneImage(){
ByteArrayOutputStream out = new ByteArrayOutputStream();
bitmap.compress(CompressFormat.JPEG, 100, out);
[code].....
View 1 Replies
Jul 25, 2009
Since a few months I want to learn how to receive and send packets. Since WinSock doesn't work I think it'll be quite hard to get an easy way to do it.
I want to be able to send and get packets as a client. (TCP) I know that I need System.Net.Sockets, and that's quite everything...
View 5 Replies
Jan 11, 2009
I was going over the Screen Saver Tutorial for VB Express 2005 and i Noticed How the Screen Saver app excepts params at startup... and depending on the startup param it will display the screen saver or the options form... lets say that i want to start up a screen saver from my program, how would i send it to the screen saver to display the options form the param is "/p" or something.
View 2 Replies
Mar 11, 2010
I have a program that is meant to send and receive pictures. There are two parts, client and server, the server sending pictures, and client receiving.the server needs to send it across the internet, then the client needs to receive and show the image in a picture box.
View 1 Replies
Jun 18, 2009
how i send and recive sms through GSM like mobils using the AT command. vb.net have any api or control for it
View 1 Replies
Dec 19, 2010
I need to send and receive a large image between programs running on different machines within the same network.
I've looked at using upd however ran into problems with the size of the packets and
(after breaking the image into smaller pieces to get past this problem) the number of packets needing to be processed all at once - and ultimately packet loss.
I've also thought of sending the image by storing it in a common file folder and receiving it by using file watcher as a trigger. However, this just adds further complexities in setup where common folders don't already exist.
Assuming I'm barking up the right tree looking at tcp, can someone point me to/provide an example of how to send an image file using it (vb.net would be ideal). Also, are there practical limits to tcp package sizes?
View 2 Replies
Feb 29, 2012
I have these following lines to send bytes using socket
Dim server As New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
Dim myIp As IPAddress = IPAddress.Parse("myIP")
Dim ip As New IPEndPoint(myIp, Int32.Parse("myPort"))
[Code]....
As in the code, I am supposed to retrieved "Halo". Instead I keep receiving sth like "[]".
View 1 Replies
Jan 24, 2011
I'm using asynchronous to send/receive from a website I want to block the BeginGetRequestStream method which I have done, using
Code:
WaitEvent.WaitOne(1000 * 20, false);
the problem is that it blocks the UI, which I thought it did not so it basically works like GetRequestStream which does block the UI.
View 3 Replies
Apr 12, 2008
Do you know how to create a program to send and receive sms and call from PC from and or to any devices?
View 1 Replies
Jun 2, 2011
I have created an application which listens for strings being sent to my pc from a remote unit. I now need to add the function of sending strings back to the remote unit on a button press. I've searched for ages to find a solution but I'm not knowledgeable enough yet with vb.net to solve this solution.
I'm getting the error with the line opensock2 = New IO.StreamWriter(client.GetStream) saying its not connected. So I seem to need to pass the connection from the background worker to the button click, or have it somewhere else in the code to make it accessible. [Code]
View 3 Replies
May 30, 2009
as above how to do that man? I will also want to extract the information to be sent from the database. An example of what i am going to do is something like this:
Reference:[URL]..
View 8 Replies
Mar 14, 2010
I didn't found any performance counter that would monitor an process's/thread's network bandwidth and not just that of an ethernet card.
So I could see how much bytes did an application receive and send.
Did I miss something or is there another way?
View 4 Replies
Feb 21, 2011
I want to send image from server to client via .net Sockets and assign it to a picturebox. but I got problem in receiving data, it's 'Server' side code:
[Code]...
View 7 Replies
Oct 23, 2010
[code]...
Now i need to do a few hundred/thousand requests all at the same time or atleast over a short period. I am assuning i need to do this asynchronously. I have looked all over the net and tested various ways to communicate asynchronously and am pretty stumped. None of the examples out there seem to explain how i receive the xml return as a string ("which i will write to file or db")
Does anyone have any working code to do such a process?
View 1 Replies
Dec 3, 2008
I'm completely new to sockets etc.I'm trying to create an app that'll allow someone to send short information messages to several other people with the same app, using the internet and sockets(?)I've tried using code from online, but I'm getting no where.
View 4 Replies
Jan 24, 2008
I am trying to send and receive data through a USB port on my computer to an external microcontroller.
I built most of the code using the "serial class" but then i read that this would not work with a USB port.
How would I go about communicating with this USB port on my computer?
View 5 Replies
Apr 27, 2006
How Can send And receive File with SerialPort in vb.net 2005 i use this sample code for sending string , and now i will know how can send any File by serialport click here there are no sample code in microsoft site i Use "Virtual Serial Ports Driver XP " to Test my sample how can use the Zmodem , Ymodem ,Xmodem , etc in vb.net by serialport ?
View 5 Replies
Sep 24, 2008
How can send and receive SMS through VB.NET windows Application...
View 2 Replies
Aug 18, 2010
i want vb.net code to send or receive sms to mobile phone-GSM modem
View 1 Replies