vote up 0 vote down star

I try to use the cell core connection manager with c# in order to force my application to browse through the WAP gateway (using its GUID) although the default connection is internet. I see that the WAP connection opens but then all actual requests go through the internet and I end up with 2 open connections. Any hint?

flag

63% accept rate

1 Answer

vote up 1 vote down

You can do that by using Connection Manager. There is a .NET wrapper in OpenNetCF Smart Device Framework. Documentation here. You need to use the Connect method that connects to a specific network, using its GUid.

link|flag
But that's exactly what I'm doing, using the connection manager to connect to a specific network using its GUID – Zamel Mar 11 at 6:51
Could you post the code that you are using to make the requests? – kgiannakakis Mar 11 at 7:37
IntPtr connHandle = IntPtr.Zero; ConnMgrStatus stat; Guid wapguid = new Guid("{bla-bla}"); ConnMgrConnectionInfo info = new ConnMgrConnectionInfo(wapguid, ConnMgrPriority.UserInteractive, ConnMgrProxy.Http); ConnectionManager.ConnMgrEstablishConnectionSync(info, ref connHandle, 20000, ref stat); – Zamel Mar 12 at 8:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.