Android :: Modem To Router Connection
Feb 26, 2010
Is there a way to use an Android as a simple pc type connection to a modem. With any cheap A$$ computer with a modem I can dial back to my router (it has a modem in the console port) with hyperterminal and log into it. Is there a way to do this while out with my G1 Android?
View 2 Replies
Feb 26, 2010
I was just wondering if there's any way to use my Android's 3G network on my iPod touch.
So I connect my iPod touch to my Android, and use the Android internet like that?
View 12 Replies
View Related
Aug 26, 2010
I have been using wi-fi for some time now and now when I connect to my router, I cannot get any data connection. For example, if I am using last.FM and I turn on my wi-fi, I get an error that the app can no longer connect to the last.FM servers. If I turn off wi-fi, it starts working immediately. Same thing with the Internet.
View 22 Replies
View Related
Aug 1, 2009
There appears to be an issue with my Hero-router WiFi connection. Has anyone had similar experiences or have any advice? My Hero can generally see my home wireless router and report a good signal, though the visibility can drop out (when my other devices are still happily connected). It can also see my neighbors' networks, so it isn't a range issue.
For the most part, the Hero just doesn't seem to want to connect. If I reboot the router it will connect briefly for a couple of secs. I've tried altering a few of the router broadcast settings, trying b-only/ g-only/ b+g, but this hasn't helped (n isn't available, but I understand the Hero to be g anyway). I haven't yet been to another WiFi area, to check if it will connect to other networks. My suspicion is it is a specific compatibility issue with my router (Zoom).
View 4 Replies
View Related
Aug 10, 2010
I have a factory unlocked HTC Desire with the official 2.2 froyo firmware installed. When I turn on the wifi using the inbuilt HTC wifi widget, it takes about 10-15 seconds before the phone connects to my wifi router and the wifi icon is shown in the notification bar. I am using a Dlink dir-655 router. The settings that I have on the router are as follows:-
wireless mode: 802.11g only
encryption: wpa2 personal AES
mac filtering on (phone's mac address has been added to the list)
SSID is hidden
Other devices such as my laptop and nintendo wii connect to the wifi router within seconds.
View 12 Replies
View Related
Jul 16, 2010
I have a DIR-655 and just got my Droid X. It will not maintain a connection to it. I tried all the obvious things... Forced it to G only, tried using the guest zone with different encryption.
View 32 Replies
View Related
Mar 13, 2010
I'm trying to use my hero as a mode on my new macbook but it doesn't seem to work It wasn't a problem on my old laptop but mac and android dont seem to work very well together. I found this thread which explains it but I don't really understand it? Caught in a Web HTC Hero USB Tether on Mac OS X.
View 7 Replies
View Related
Feb 13, 2012
I am trying to use a ZTE AC2726 modem with Android 4 (Zenithink C91 and Ainol Novo 7 Elf). I can enter the APN settings but not save them on both tablets.
View 3 Replies
View Related
Feb 24, 2010
I am trying to use a USB GPRS (SIM5218A) modem in eclair, I am wondering how to send the AT commands to the modem. I saw some old emails here in the list showing how to use pppd with chat (exec /system/usr/bin/chat -v); Unfortunately I am unable to find chat in eclair. Is there a better way to perform this?
View 2 Replies
View Related
Apr 17, 2009
I am trying to develop an application that would need to AT commands that are not yet defined in the RIL. I saw from the ril.h file, that hook requests are available :
It can be invoked on the Java side from com.android.internal.telephony.Phone.invokeOemRilRequestStrings() com.android.internal.telephony.Phone.invokeOemRilRequestRaw()
But from the application side, this package is not visible (com.android.internal.telephony)
Is there anyone who bypassed this issue or is there any other way to send specific AT command to the RIL from an application?
View 5 Replies
View Related
Jan 2, 2012
I want to the procedure to simulate the modem crash in android mobiles
View 3 Replies
View Related
Jun 27, 2010
Is there any possible way to use my touch slide as a modem through t-mobile?
View 1 Replies
View Related
Oct 12, 2010
I've got an HTC Desire which has a Mobile Hotspot App on it - so I can connect my laptop to the WiFi signal generated by my phone.I have "Unlimited Internet" with a fair-usage cap of 1GB. (such a farce, that use of the word unlimited, why don't they just say 1GB?)However, the terms and conditions explicitly disallow using the phone as a modem.My question is, can they tell, and if so, how? Surely the HTTP/HTTPS requests being sent out by the phone are exactly the same, regardless of whether it's coming from the phone or the laptop?If they aren't (perhaps some ID which says this is a phone as apposed to a different ID which will be sent by the laptop's browser), is there a way to make it look as if the requests being sent are coming from the phone?
View 2 Replies
View Related
Oct 14, 2009
I'm using ThreadSafeClientConnManager to manage a pool of client connections, because my application has several threads, which are simultaneously connecting to a webserver.
Abstract sample code:
CODE:..............
Now lets say on of this threads is downloading a large file, but then the user of my application is switching to another activity/screen. Therefor the file is needless and I'd like to abort this download connection.
In ThreadSafeClientConnManager I found this method: public ClientConnectionRequest requestConnection (HttpRoute route, Object state) Returns a new ClientConnectionRequest, from which a ManagedClientConnection can be obtained or the request can be aborted.
So far I've been using:
CODE:.........
Now from what I understand, I've to use:
httpclient.getConnectionManager().requestConnection(HttpRoute route, Object state);
And that's the point where I'm stuck. I assume that for the route I can just use new HttpRoute(new HttpHost("10.0.0.1")) or whatever my server is, but what to put in for Object state?
And second, as soon as I've the ClientConnectionManager I can call getConnection(long timeout, TimeUnit tunit). But then from there, how I do I execute my HttpGet httpRequest = new HttpGet(URL_TO_FILE); as I did before with HttpResponse response = (HttpResponse) httpclient.execute(httpRequest);?
I've been gone through the documentation and tried out quite a few different things, but I wasn't able to obtain a working solution. Therefor any suggestions and/or code examples are more than welcome.
View 1 Replies
View Related
May 12, 2010
Whenever a application needs internet and connection fails, I get a message dialog
Connection failed
This application requires network access. Enable mobile network or Wi-Fi to download data.
and two buttons, Settings, Cancel.
How do I detect there is no internet connection?
How do I popup a same dialog in my application?
View 3 Replies
View Related
Oct 27, 2010
I'm coding a very basic FTP client on top of my application and I have 2 activities. The first one is the file explorer and the second one is the image viewer. Once I click on the image filename on the explorer, I want to pass the connection to the other activity to handle extra stuff. Basically, I want to keep the same org.apache.commons.net.ftp.FTPClient object (which handles the connection) alive in-between the 2 activities. I know I can't pass an object inside an intent so I don't know what my best bets are.
View 1 Replies
View Related
Jul 23, 2010
What's the technical term for being able to have voice connection and data connection simultaneously? Like AT&T was promoting heavily for a while.Apparently, the new T-Mobile Vibrant has this capability. A friend got one and was accessing the web while talking to me, double jealous now.I have benn lusting after the Verizon version, Fascinate, and wondering if there is any chance it will as well.
View 2 Replies
View Related
Sep 2, 2010
I am making an IM application for Android. The application consists of a server and client, both residing on the android. At startup, the applications register with a webserver. If a client wants to send an IM to a server behind a NAT router, how this be done? I heard of stun4j and jstun but found nowhere an example of their usage in android.
View 2 Replies
View Related
Jun 21, 2010
I am looking at purchasing a wireless router so when I am home, my phone will connect, giving me better signal (my signal at my house is not the best). I will be connecting 2 mytouch3g slides to it. I am completely clueless as to what kind of router do I need. What should I be looking for in a router? Is there a specific type so I can have 2 phones linked to it?
View 3 Replies
View Related
Oct 28, 2010
Looking to see if it is possible to Telnet/SSH into a router to configure it using my Evo4g.
How would I go about doing it?
Could i use Connectbot? Do i just plug the USB cable into the router? Or do i need some USB -> RJ45 cord to plug into the Console or F/A ports?
View 6 Replies
View Related
Oct 4, 2010
I'm having with the wi-fi on android. As many of us know, android has no native support for proxies, unfortunately my school's network uses a proxy server to access the internet. I have a wireless router connected to the network so i can have wireless on my laptop and such. What I was wondering was, can I use the router to allow my android phone to access the internet as well? I reckon it's just a matter of forwarding the right ports to the phone but I'm not sure which ports are in use. I'm using a htc desire and a d-link dir-600 router.
View 4 Replies
View Related
Dec 2, 2009
Is there an app that lets you turn your android device into a mifi? I already have tethering but I want to share a connection with friends if they need it. ...
View 6 Replies
View Related
May 1, 2010
I wanna turn the phone into a wifi router. i wanna get the incredible. if this app existed, i would not hesitate to go and buy the phone. if this app exists or if it is ever coming out?
View 3 Replies
View Related
Jun 8, 2010
Ok I have searched around and cant find anything, any help? Whenever I plug my phone into the computer it gives me the option to use phone as a modem. I didn't want to download any apps, cuz they all seem to cost money.
View 28 Replies
View Related
Jul 1, 2010
I've had a G1 for the past 18 months and have just upgraded to a Xperia X10, only problem is I don't have a note of my wep/wpa key for the dodgy router at work, I know I keyed it into my old G1 (which I still have) but can't find a way to display it in clear text.
View 6 Replies
View Related
Jun 5, 2009
I've been trying to set up torrent fu on my computer for the past 2 hours. I have everything downloaded, things just wont connect, can anyone help me who has done this before, I have a Linuxes router which I've read might be a problem?
View 26 Replies
View Related
Dec 26, 2009
i used android 1.5 and its not rooted. my pc can detect it but when i try to make it as modem, my pc ask for driver.
View 3 Replies
View Related
Nov 14, 2010
how can i get a 3g signal at work without a wireless router.At my work, i do not get no 3g signal on my phone. Also my job does not allow wireless routers/ wifiIn my work room we have plenty of computers with internet connections there anyway i can get a 3g signal connecting my phone to the computers with internet connection?y old windows phone. i was able to connect it with a usb cable and i was able to get 3g.Any advice will be appreciated.I really need 3g on my phone at work. REALLY BAD NEED IT.Is there anyway i can get a 3g signal connecting my phone to the computers with internet connection?
View 27 Replies
View Related
Mar 8, 2010
Is it possible to tether the android to a wireless router? Which will enable wireless internet access to my PS3 and Laptop? I am using at&t service with the at&t wireless router. I would like to replace the at&t service with the android Verizon internet access and tether it to the At&t Wireless router.
View 4 Replies
View Related
Sep 2, 2010
I am making an IM application for Android. The application consists of a server and client, both residing on the android. At startup, the applications register with a webserver. If a client wants to send an IM to a server behind a NAT router, how this be done? I heard of stun4j and jstun but found nowhere an example of their usage in android.
View 3 Replies
View Related