Re: [android-developers] Re: Sending data continuously over NFC in mode P2P

2011-04-28 Thread Michael Roland
Hallo Azahara, > thanks for your answer. So that means Android 2.3.3 does not provide > the possibility to send many messages per connection established, > however internally it uses a more complex scheme to communicate in p2p > mode that is not available yet?. Right. Actually it is "internally i

[android-developers] Re: Sending data continuously over NFC in mode P2P

2011-04-26 Thread azahara
Hi Michael, thanks for your answer. So that means Android 2.3.3 does not provide the possibility to send many messages per connection established, however internally it uses a more complex scheme to communicate in p2p mode that is not available yet?. Do you know if there exists any alternative to

[android-developers] Re: Sending data continuously over NFC in mode P2P

2011-04-25 Thread Michael Roland
Hallo Azahara, > Does anybody know why should I have to tap many > times the phones in order to send continuously data in p2p mode?. This is because the current Android NFC API does not provide any furhter P2P (LLCP) communication features. Internally, Android already uses more sophisticated LLCP

[android-developers] Re: Sending data from android apps to TCP IP

2011-03-24 Thread Wall-E
I looked at DataOutputStream and the only difference I saw was that the doc said that it sends the data in big-endian format. I'm not sure if OutputStream is big-endian or little-endian, I think it's little-endian. DataOutputStream is inherited from OutputStream so they should have the same funct

[android-developers] Re: Sending data from android apps to TCP IP

2011-03-23 Thread Honest
HI, Thanks for your reply. do you think there is any difference in OutputStream and DataOutputStream ? On Mar 24, 4:56 am, Wall-E wrote: > Sorry, I failed to include that the out variable is an OutputStream > object. So, > > OutputStream out; > > is what I'm using. > > On Mar 23, 3:23 am, Honest

[android-developers] Re: Sending data from android apps to TCP IP

2011-03-23 Thread Wall-E
Sorry, I failed to include that the out variable is an OutputStream object. So, OutputStream out; is what I'm using. On Mar 23, 3:23 am, Honest wrote: > Hello, > > I am able to connect to TCP IP netwrok but even if i am sending some > byte array but yet i am not seeing any output on Server cons

[android-developers] Re: Sending data from android apps to TCP IP

2011-03-23 Thread Wall-E
This is the code I use to do what you're trying to do, I'm not sure about the usage of DataOutputStream as that's the main difference I see in terms of setting up my socket and your setup. private boolean connect(String ip, String port) { try { InetAddress serverAddr =

[android-developers] Re: Sending data to android dev phone using 3G connection

2009-08-12 Thread Jack Ha
Your phone is most likely behind a NAT when it is on 3G. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA, I

[android-developers] Re: Sending data to android dev phone using 3G connection

2009-08-12 Thread Shanjaq
I, too, would like to know how to connect to my IP address over the 3G network. Are they running a Great Firewall? On Aug 3, 2:55 pm, Pushkar Sachdeva wrote: > I have a server application listening on port 5001 on an anroid dev > phone. The client application running on my laptop tries to sen

[android-developers] Re: sending data

2009-02-15 Thread Mark Murphy
XXL wrote: > is it possible to send data to external sources.. like a remote sql > server or a remote website? Yes, though you may find using HTTP to publish to a Web service to be easiest. > is there somewhere an example of how to do it? Android includes the standard Java HttpUrlConnection cla

[android-developers] Re: sending data from one program to another

2008-10-23 Thread ena
could u plz tell me .How to directly access every part of each others using android:sharedUserId?? On Oct 22, 7:01 am, hackbod <[EMAIL PROTECTED]> wrote: > Starting activities (and getting results from them), sending > broadcasts, binding to services, and publishing content providers are > the m

[android-developers] Re: sending data from one program to another

2008-10-21 Thread hackbod
Starting activities (and getting results from them), sending broadcasts, binding to services, and publishing content providers are the main ones. You can make a SQLite database world readable/writeable, or use android:sharedUserId to have the two apps run under the same uid (and so able directly

[android-developers] Re: sending data from one program to another

2008-10-21 Thread Eric Mill
This is a good question. Is there a standard way for programs to send messages to each other? Can they touch each others' SQLite databases, at least? -- Eric On Oct 19, 5:00 am, roshan <[EMAIL PROTECTED]> wrote: > I wanna know a possible way of sending data from one android > application to an