Hello, Im migrating a project to AppEngine and i want to get the packet 
from several devices . Before in a centos server , i had a java service 
that open socket and listen for udp packet and store it in bd . 
there are not to much information about it  only that socket it is for paid 
app , can not be a listen socket .
i read it using a net.DatagramSocket like :
socket = new DatagramSocket(port);
byte[] data= new byte[300];
DatagramPacket packet= new DatagramPacket(data, data.length);
socket.receive(packet);

Can you please suggest me a alternative to read the device packets in 
Appengine.?
Thanks a lot.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/3497dbd6-93fc-4784-9a8f-3a5511739bb2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to