Windows Phone 8 and LAN communication Client-Server-Client - windows-phone-8

I want to make Client(WP8 device) -> Server(Windows 8 Desktop device) -> Client(WP8 device) connection. By this conn I wanna send data from one phone to another phone. What should I use? TcpClient in Net.Sockets is not supported by WP 8 as well as UdpClient.

Did you have a look at this Communications for windows phone
And maybe this might help as well How to create and use a TCP socket client app for Windows Phone

Related

How can I force Windows Phone 8 to renew the wifi DHCP lease?

My DCHP server have a long TLL of the leases. We were forced to change the DNS IP in the network, and we are not able to force Windows Phone 8.1 (Lumia 730) to get a new lease.
Does anybody knows a way to do this?

In Windows Phone 8.1, Is it possible to read mac address of device

In Windows Phone 8.1, Is it possible to read mac address of device.
I want to build a app which search the all available network and connect to the preconfigured(in app) network.
and also turn on the WiFi using C#
The Windows Phone OS does not give access to programmatically join networks, this has to be an action initiated by the end user, it is possible however to enumerate the current network connections whic does allow some information about the adaptor, but apparently not the physical (MAC) address...

How to bypass proxy for local address in windows phone?

i want to test the web app which i am developing in windows phone 8.1. Web app is in my local network (10...*). I connected the phone with the network using WiFi proxy.
In Android and iOS i am able to bypass the proxy for my local address, In windows phone i am not able to bypass the proxy in windows phone.
is anyone bypassed the proxy in windows Phone? Thanks in advance for any help.

Windows Phone 8 Ntlm\Kerberos authentication?

Is it possible to authenticate with a server that uses Ntlm\Kerberos authentication from a Windows Phone 8 app ?
is there any workaround for this, even If I will have to send some hard coded tokens in the headers ?

Windows Phone 8 App communicating with a Bluetooth device

I have a task to communicate with a Bluetooth device (which is not Low Energy - BLE) from a Windows Phone 8 App and latter from Surface App.
I came across this link http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj207007(v=vs.105).aspx which does mention about Bluetooth integration, however it doesn't clearly says if this is for only BLE devices or not?
Please can someone point me to a code sample which I can use to interface (send and receive) data from Bluetooth device. Esp, a RFCOMM e.g., if possible
Really appreciate.
The following example shows how to create a Bluetooth RFCOMM socket connection to connect your app to a device:
Windows Phone 8 Networking Samples
Basically, you have to create a socket connection with a paired Bluetooth device:
PeerFinder.AlternateIdentities["Bluetooth:PAIRED"] = "";
var available_devices = await PeerFinder.FindAllPeersAsync();
if (available_devices.Count > 0)
{
PeerInformation pi= // Select the device
}
StreamSocket socket = new StreamSocket();
await socket.ConnectAsync(pi.HostName, "1");
This example was shown in Build 2012 conference. You will find the video of the presentation here:
Windows Phone 8: Networking, Bluetooth, and NFC Proximity for Developers (Build 2012)