Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
331 views

How can I get my android emulator use my computer's VPN interface?

My company requires VPN to connect to our dev systems and for the first time I'm trying to work on an android app from home. Turns out the emulator doesn't want to use the VPN interface so even ...
2
votes
4answers
150 views

Not able to receive network related events

I have registered to ConnectivityManager.CONNECTIVITY_ACTION broad cast receiver, for receiving network state events, but my 'onReceive' function is not getting called when i turn on or off my wifi ...
1
vote
3answers
63 views

How can I see if a machine tried to connect to my (linux) server or not? [closed]

I am trying to connect to a linux server which has several listening ports, and my connections are failing (According to my client) because the "host is down" ... however, I know the host is up. So ...
0
votes
1answer
52 views

How to check network provider name in iOS programming?

I need to check whether device has been connected properly to "My-Wifi" network or not. If it is connected then I will send some data to server otherwise not. Right now I am just checking with the ...
0
votes
0answers
9 views

Connecting two emulators in Android 4.0 in one PC

I had this code working up to Android 2.3.3. I can connect between two emulators and send a file from client to server. But I can't do the same using Android 4.0. Does Android 4.0 support network ...
0
votes
1answer
30 views

android webview on no connection error

I am trying to show a custom error of no connection, but its not working below is the code and in the manifest.xml i have provided network status. Connection() is checking the network status in the ...
0
votes
1answer
47 views

Monitor when a device disconnects my wifi network

I am working on a simple hobby project that checks when users connect/disconnect from my wifi network. What works: I have a Python script running on Mac OS 10.6 that basically tails the system log ...
0
votes
1answer
22 views

Network Connection closing

Please help me decode the following. I have a problem in the network, unable to figure out where it is. Follow is the decode summary we got from the capture by running the OPNET software. I think ...
0
votes
0answers
65 views

c# .NET - Setting DNS Server Search Order on Network Adapter - Access Denied

I have written the following code (C# .NET 2.0) which is supposed to set the DNS settings on an active network adapter. internal bool SetDns(int index, string dns1, string dns2) { var ...
0
votes
3answers
40 views

Is it possible to determine what jack on a switch a computer is connected to?

Is it possible to determine programmatically what jack on a network switch a computer is connected to?
0
votes
0answers
28 views

Weird unidentified connection beside regular wireless connection in windows 7 [closed]

Every time I connect to a wireless network, the Network and Sharing Center shows that there is actually 2 connections that windows is connected to. Name of one of them is the name of the wireless ...
0
votes
0answers
146 views

How do you get the mac address of the active network interface?

To get the active network type, one must use the ConnectivityManager together with the NetworkInfo class. However, by using the NetworkInfo class, I can only determine if the active network is ...
0
votes
2answers
212 views

Android, how can i encapsulate an AsyncTask class with network connections

Im starting with android (3 days ago) and i cant get the solution for what i want. So, i read a lot of threads here about asyncTask and now im sure i got confused. First of all, this is my first ...
0
votes
2answers
228 views

How do I show a custom dialog when there is no Internet connection?

I want to show a custom dialog in a webview app when there is no connection to the Internet. How can I check the Internet connection and after that call a dialog?