Hottest Free Downloads - DownloadPipe.com Over 197,000 downloads! Bookmark Now!
DownloadPipe.com - New Downloads Every Minute
 SEARCH:
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

How does WZC use the connection manager?

 
   PDA (Home) -> Pocket PC - DevNet RSS
Next:  Remote Desktop Connection..  
Author Message
indiekiduk

External


Since: May 14, 2006
Posts: 2



(Msg. 1) Posted: Sun May 14, 2006 9:12 pm
Post subject: How does WZC use the connection manager?
Archived from groups: microsoft>public>pocketpc>developer>networking (more info?)

In WM5 if I disable WZC and then use Ndisuio to connect to a wireless
network, even though I connect and get an IP address, can ping web
sites, I still cannot use pocket explorer to surf the web. The
connection manager complains that no connection is available. This used
to work in PPC 2003 with no other steps required. So something has
changed. I reckon that when WZC connects to a network it calls
ConnMgrEstablishConnection in Cellcore.dll to notify it that the wifi
connection is available, and then I am assuming that it changes the
icon in the task tray to the 2 arrows. I have tried calling
ConnMgrEstablishConnection as follows but to no avail:

CONNMGR_CONNECTIONINFO info = new
CONNMGR_CONNECTIONINFO();
info.cbSize = sizeof(CONNMGR_CONNECTIONINFO);
info.dwParams = 1;
info.dwPriority = 0x08000;
info.bDisabled = false;
info.bExclusive = false;
info.dwFlags = 0;
info.guidDestNet = new
Guid("436EF144-B4FB-4863-A041-8F905A62C572");
uint code = ConnMgrEstablishConnection(info, new
IntPtr());

Does anyone have any info on how I can get pocket explorer to recognise
my manually made wifi connection?
Back to top
Login to vote
set

External


Since: Apr 25, 2006
Posts: 8



(Msg. 2) Posted: Thu Jun 01, 2006 8:11 pm
Post subject: Re: How does WZC use the connection manager? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I have the same problem and fixed it with some registry "hacks" after
observing registry changes during regular connection via WZC.
I didn't find a way to do this more elegantly Sad

Note that TIACXWLN1 = your Wi-Fi device name & "yourap" = AP SSID you
connected to.


CRegKey key;
CString val;

OSVERSIONINFO osVer;

GetVersionEx(&osVer);
if (osVer.dwMajorVersion < 5)
{
key.Create(HKEY_LOCAL_MACHINE,
_T("SOFTWARE\\Microsoft\\ConnMgr\\Providers\\{EF097F4C-DC4B-4c98-8FF6-AEF805DC0E8E}\\HTTP-{ADB0B001-10B5-3F39-27C6-9742E785FCD4}"));

val = "{18AD9FBD-F716-ACB6-FD8A-1965DB95B814}";

key.SetValue(val.GetBuffer(0), _T("SrcId"));
val.ReleaseBuffer();
}
else
{
key.Create(HKEY_LOCAL_MACHINE,
_T("Comm\\ConnMgr\\Providers\\{EF097F4C-DC4B-4c98-8FF6-AEF805DC0E8E}\\HTTP-{ADB0B001-10B5-3F39-27C6-9742E785FCD4}"));

val = "{ADB0B001-10B5-3F39-27C6-9742E785FCD4}";

key.SetValue(val.GetBuffer(0), _T("SrcId"));
val.ReleaseBuffer();

key.Close();

key.Create(HKEY_LOCAL_MACHINE,
_T("Comm\\ConnMgr\\Providers\\{f792e23c-dc19-4668-9be4-f8688b4c18d6}\\TIACXWLN1"));

val = _T("TIACXWLN1");
key.SetValue(val.GetBuffer(0), _T("Adapter"));
val.ReleaseBuffer();

key.SetValue(1, _T("AlwaysOn"));

val = _T("{DC427712-CE2D-D5D9-C2CD-8A8B1FF6C4CF}");
key.SetValue(val.GetBuffer(0), _T("ConnectionGUID"));
val.ReleaseBuffer();

val = _T("{ADB0B001-10B5-3F39-27C6-9742E785FCD4}");
key.SetValue(val.GetBuffer(0), _T("DestId"));
val.ReleaseBuffer();

key.SetValue(0xffffffff, _T("Secure"));

key.SetValue((DWORD) 0, _T("SecureLevel"));

key.Close();

key.Create(HKEY_LOCAL_MACHINE,
_T("Comm\\ConnMgr\\Providers\\{f792e23c-dc19-4668-9be4-f8688b4c18d6}\\TIACXWLN1\\{g942c53d-dc19-4668-9be4-f8791b4c18d6}\\Default"));

val = _T("yourap");
key.SetValue(val.GetBuffer(0), _T("Default"));
val.ReleaseBuffer();
}

key.Close();


<indiekiduk.RemoveThis@gmail.com> wrote in message
news:1147666369.302651.133110@j33g2000cwa.googlegroups.com...
> In WM5 if I disable WZC and then use Ndisuio to connect to a wireless
> network, even though I connect and get an IP address, can ping web
> sites, I still cannot use pocket explorer to surf the web. The
> connection manager complains that no connection is available. This used
> to work in PPC 2003 with no other steps required. So something has
> changed. I reckon that when WZC connects to a network it calls
> ConnMgrEstablishConnection in Cellcore.dll to notify it that the wifi
> connection is available, and then I am assuming that it changes the
> icon in the task tray to the 2 arrows. I have tried calling
> ConnMgrEstablishConnection as follows but to no avail:
>
> CONNMGR_CONNECTIONINFO info = new
> CONNMGR_CONNECTIONINFO();
> info.cbSize = sizeof(CONNMGR_CONNECTIONINFO);
> info.dwParams = 1;
> info.dwPriority = 0x08000;
> info.bDisabled = false;
> info.bExclusive = false;
> info.dwFlags = 0;
> info.guidDestNet = new
> Guid("436EF144-B4FB-4863-A041-8F905A62C572");
> uint code = ConnMgrEstablishConnection(info, new
> IntPtr());
>
> Does anyone have any info on how I can get pocket explorer to recognise
> my manually made wifi connection?
>
Back to top
Login to vote
raj.rr7

External


Since: Feb 21, 2006
Posts: 4



(Msg. 3) Posted: Mon Jun 05, 2006 6:07 am
Post subject: Re: How does WZC use the connection manager? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi set,

I used the same hack to make IE work after stopping WZC. I have some
weired kind of problem on SPRIN 6700. Once i connect through VPN i load
a VA with lowest metric value. I create the entry for VA in
HKEY_LOCAL_MACHINE\Comm\ConnMgr\Providers\{f792e23c-dc19-4668-9be4-f8688b4c18d6}\VA.
And delete the original adapter entry that is TIACXWLN1. But when i try
to open a web-site using IE its not working. However the same logic
works fine on Imate K-Jam. Guide me if you have any idea or information
reagrding such problem or way of working of connmgr registry. The docs
for connmgr are hopeless.

Thanks in advance
Rajat

set wrote:
> I have the same problem and fixed it with some registry "hacks" after
> observing registry changes during regular connection via WZC.
> I didn't find a way to do this more elegantly Sad
>
> Note that TIACXWLN1 = your Wi-Fi device name & "yourap" = AP SSID you
> connected to.
>
>
> CRegKey key;
> CString val;
>
> OSVERSIONINFO osVer;
>
> GetVersionEx(&osVer);
> if (osVer.dwMajorVersion < 5)
> {
> key.Create(HKEY_LOCAL_MACHINE,
> _T("SOFTWARE\\Microsoft\\ConnMgr\\Providers\\{EF097F4C-DC4B-4c98-8FF6-AEF805DC0E8E}\\HTTP-{ADB0B001-10B5-3F39-27C6-9742E785FCD4}"));
>
> val = "{18AD9FBD-F716-ACB6-FD8A-1965DB95B814}";
>
> key.SetValue(val.GetBuffer(0), _T("SrcId"));
> val.ReleaseBuffer();
> }
> else
> {
> key.Create(HKEY_LOCAL_MACHINE,
> _T("Comm\\ConnMgr\\Providers\\{EF097F4C-DC4B-4c98-8FF6-AEF805DC0E8E}\\HTTP-{ADB0B001-10B5-3F39-27C6-9742E785FCD4}"));
>
> val = "{ADB0B001-10B5-3F39-27C6-9742E785FCD4}";
>
> key.SetValue(val.GetBuffer(0), _T("SrcId"));
> val.ReleaseBuffer();
>
> key.Close();
>
> key.Create(HKEY_LOCAL_MACHINE,
> _T("Comm\\ConnMgr\\Providers\\{f792e23c-dc19-4668-9be4-f8688b4c18d6}\\TIACXWLN1"));
>
> val = _T("TIACXWLN1");
> key.SetValue(val.GetBuffer(0), _T("Adapter"));
> val.ReleaseBuffer();
>
> key.SetValue(1, _T("AlwaysOn"));
>
> val = _T("{DC427712-CE2D-D5D9-C2CD-8A8B1FF6C4CF}");
> key.SetValue(val.GetBuffer(0), _T("ConnectionGUID"));
> val.ReleaseBuffer();
>
> val = _T("{ADB0B001-10B5-3F39-27C6-9742E785FCD4}");
> key.SetValue(val.GetBuffer(0), _T("DestId"));
> val.ReleaseBuffer();
>
> key.SetValue(0xffffffff, _T("Secure"));
>
> key.SetValue((DWORD) 0, _T("SecureLevel"));
>
> key.Close();
>
> key.Create(HKEY_LOCAL_MACHINE,
> _T("Comm\\ConnMgr\\Providers\\{f792e23c-dc19-4668-9be4-f8688b4c18d6}\\TIACXWLN1\\{g942c53d-dc19-4668-9be4-f8791b4c18d6}\\Default"));
>
> val = _T("yourap");
> key.SetValue(val.GetBuffer(0), _T("Default"));
> val.ReleaseBuffer();
> }
>
> key.Close();
>
>
> <indiekiduk RemoveThis @gmail.com> wrote in message
> news:1147666369.302651.133110@j33g2000cwa.googlegroups.com...
> > In WM5 if I disable WZC and then use Ndisuio to connect to a wireless
> > network, even though I connect and get an IP address, can ping web
> > sites, I still cannot use pocket explorer to surf the web. The
> > connection manager complains that no connection is available. This used
> > to work in PPC 2003 with no other steps required. So something has
> > changed. I reckon that when WZC connects to a network it calls
> > ConnMgrEstablishConnection in Cellcore.dll to notify it that the wifi
> > connection is available, and then I am assuming that it changes the
> > icon in the task tray to the 2 arrows. I have tried calling
> > ConnMgrEstablishConnection as follows but to no avail:
> >
> > CONNMGR_CONNECTIONINFO info = new
> > CONNMGR_CONNECTIONINFO();
> > info.cbSize = sizeof(CONNMGR_CONNECTIONINFO);
> > info.dwParams = 1;
> > info.dwPriority = 0x08000;
> > info.bDisabled = false;
> > info.bExclusive = false;
> > info.dwFlags = 0;
> > info.guidDestNet = new
> > Guid("436EF144-B4FB-4863-A041-8F905A62C572");
> > uint code = ConnMgrEstablishConnection(info, new
> > IntPtr());
> >
> > Does anyone have any info on how I can get pocket explorer to recognise
> > my manually made wifi connection?
> >
Back to top
Login to vote
Will

External


Since: Jun 07, 2006
Posts: 1



(Msg. 4) Posted: Wed Jun 07, 2006 6:29 pm
Post subject: Re: How does WZC use the connection manager? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I'm developing smartphone based on microsoft Magneto and meet the same
problem, too.
I want to try to use your registry "hacks" method to solve this problem.
Can you please give me more information about how to implement registry
"hacks"?
You mention observe registry changes to tell if WZC make a connection.
Can you please tell me which registry you observed to know connection
information?

Thanks very much!


"raj.rr7@gmail.com" wrote:

> Hi set,
>
> I used the same hack to make IE work after stopping WZC. I have some
> weired kind of problem on SPRIN 6700. Once i connect through VPN i load
> a VA with lowest metric value. I create the entry for VA in
> HKEY_LOCAL_MACHINE\Comm\ConnMgr\Providers\{f792e23c-dc19-4668-9be4-f8688b4c18d6}\VA.
> And delete the original adapter entry that is TIACXWLN1. But when i try
> to open a web-site using IE its not working. However the same logic
> works fine on Imate K-Jam. Guide me if you have any idea or information
> reagrding such problem or way of working of connmgr registry. The docs
> for connmgr are hopeless.
>
> Thanks in advance
> Rajat
>
> set wrote:
> > I have the same problem and fixed it with some registry "hacks" after
> > observing registry changes during regular connection via WZC.
> > I didn't find a way to do this more elegantly Sad
> >
> > Note that TIACXWLN1 = your Wi-Fi device name & "yourap" = AP SSID you
> > connected to.
> >
> >
> > CRegKey key;
> > CString val;
> >
> > OSVERSIONINFO osVer;
> >
> > GetVersionEx(&osVer);
> > if (osVer.dwMajorVersion < 5)
> > {
> > key.Create(HKEY_LOCAL_MACHINE,
> > _T("SOFTWARE\\Microsoft\\ConnMgr\\Providers\\{EF097F4C-DC4B-4c98-8FF6-AEF805DC0E8E}\\HTTP-{ADB0B001-10B5-3F39-27C6-9742E785FCD4}"));
> >
> > val = "{18AD9FBD-F716-ACB6-FD8A-1965DB95B814}";
> >
> > key.SetValue(val.GetBuffer(0), _T("SrcId"));
> > val.ReleaseBuffer();
> > }
> > else
> > {
> > key.Create(HKEY_LOCAL_MACHINE,
> > _T("Comm\\ConnMgr\\Providers\\{EF097F4C-DC4B-4c98-8FF6-AEF805DC0E8E}\\HTTP-{ADB0B001-10B5-3F39-27C6-9742E785FCD4}"));
> >
> > val = "{ADB0B001-10B5-3F39-27C6-9742E785FCD4}";
> >
> > key.SetValue(val.GetBuffer(0), _T("SrcId"));
> > val.ReleaseBuffer();
> >
> > key.Close();
> >
> > key.Create(HKEY_LOCAL_MACHINE,
> > _T("Comm\\ConnMgr\\Providers\\{f792e23c-dc19-4668-9be4-f8688b4c18d6}\\TIACXWLN1"));
> >
> > val = _T("TIACXWLN1");
> > key.SetValue(val.GetBuffer(0), _T("Adapter"));
> > val.ReleaseBuffer();
> >
> > key.SetValue(1, _T("AlwaysOn"));
> >
> > val = _T("{DC427712-CE2D-D5D9-C2CD-8A8B1FF6C4CF}");
> > key.SetValue(val.GetBuffer(0), _T("ConnectionGUID"));
> > val.ReleaseBuffer();
> >
> > val = _T("{ADB0B001-10B5-3F39-27C6-9742E785FCD4}");
> > key.SetValue(val.GetBuffer(0), _T("DestId"));
> > val.ReleaseBuffer();
> >
> > key.SetValue(0xffffffff, _T("Secure"));
> >
> > key.SetValue((DWORD) 0, _T("SecureLevel"));
> >
> > key.Close();
> >
> > key.Create(HKEY_LOCAL_MACHINE,
> > _T("Comm\\ConnMgr\\Providers\\{f792e23c-dc19-4668-9be4-f8688b4c18d6}\\TIACXWLN1\\{g942c53d-dc19-4668-9be4-f8791b4c18d6}\\Default"));
> >
> > val = _T("yourap");
> > key.SetValue(val.GetBuffer(0), _T("Default"));
> > val.ReleaseBuffer();
> > }
> >
> > key.Close();
> >
> >
> > <indiekiduk DeleteThis @gmail.com> wrote in message
> > news:1147666369.302651.133110@j33g2000cwa.googlegroups.com...
> > > In WM5 if I disable WZC and then use Ndisuio to connect to a wireless
> > > network, even though I connect and get an IP address, can ping web
> > > sites, I still cannot use pocket explorer to surf the web. The
> > > connection manager complains that no connection is available. This used
> > > to work in PPC 2003 with no other steps required. So something has
> > > changed. I reckon that when WZC connects to a network it calls
> > > ConnMgrEstablishConnection in Cellcore.dll to notify it that the wifi
> > > connection is available, and then I am assuming that it changes the
> > > icon in the task tray to the 2 arrows. I have tried calling
> > > ConnMgrEstablishConnection as follows but to no avail:
> > >
> > > CONNMGR_CONNECTIONINFO info = new
> > > CONNMGR_CONNECTIONINFO();
> > > info.cbSize = sizeof(CONNMGR_CONNECTIONINFO);
> > > info.dwParams = 1;
> > > info.dwPriority = 0x08000;
> > > info.bDisabled = false;
> > > info.bExclusive = false;
> > > info.dwFlags = 0;
> > > info.guidDestNet = new
> > > Guid("436EF144-B4FB-4863-A041-8F905A62C572");
> > > uint code = ConnMgrEstablishConnection(info, new
> > > IntPtr());
> > >
> > > Does anyone have any info on how I can get pocket explorer to recognise
> > > my manually made wifi connection?
> > >
>
>
Back to top
Login to vote
indiekiduk

External


Since: Jun 22, 2006
Posts: 7



(Msg. 5) Posted: Thu Jun 22, 2006 6:17 am
Post subject: Re: How does WZC use the connection manager? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi Will, if you look this thread up on Google groups you will see the
registry key and code is posted in the 1st reply here:
http://groups.google.co.uk/group/microsoft.public.pocketpc.developer.n...orking/

Will wrote:
> I'm developing smartphone based on microsoft Magneto and meet the same
> problem, too.
> I want to try to use your registry "hacks" method to solve this problem.
> Can you please give me more information about how to implement registry
> "hacks"?
> You mention observe registry changes to tell if WZC make a connection.
> Can you please tell me which registry you observed to know connection
> information?
>
> Thanks very much!
>
>
> "raj.rr7@gmail.com" wrote:
>
> > Hi set,
> >
> > I used the same hack to make IE work after stopping WZC. I have some
> > weired kind of problem on SPRIN 6700. Once i connect through VPN i load
> > a VA with lowest metric value. I create the entry for VA in
> > HKEY_LOCAL_MACHINE\Comm\ConnMgr\Providers\{f792e23c-dc19-4668-9be4-f8688b4c18d6}\VA.
> > And delete the original adapter entry that is TIACXWLN1. But when i try
> > to open a web-site using IE its not working. However the same logic
> > works fine on Imate K-Jam. Guide me if you have any idea or information
> > reagrding such problem or way of working of connmgr registry. The docs
> > for connmgr are hopeless.
> >
> > Thanks in advance
> > Rajat
> >
> > set wrote:
> > > I have the same problem and fixed it with some registry "hacks" after
> > > observing registry changes during regular connection via WZC.
> > > I didn't find a way to do this more elegantly Sad
> > >
> > > Note that TIACXWLN1 = your Wi-Fi device name & "yourap" = AP SSID you
> > > connected to.
> > >
> > >
> > > CRegKey key;
> > > CString val;
> > >
> > > OSVERSIONINFO osVer;
> > >
> > > GetVersionEx(&osVer);
> > > if (osVer.dwMajorVersion < 5)
> > > {
> > > key.Create(HKEY_LOCAL_MACHINE,
> > > _T("SOFTWARE\\Microsoft\\ConnMgr\\Providers\\{EF097F4C-DC4B-4c98-8FF6-AEF805DC0E8E}\\HTTP-{ADB0B001-10B5-3F39-27C6-9742E785FCD4}"));
> > >
> > > val = "{18AD9FBD-F716-ACB6-FD8A-1965DB95B814}";
> > >
> > > key.SetValue(val.GetBuffer(0), _T("SrcId"));
> > > val.ReleaseBuffer();
> > > }
> > > else
> > > {
> > > key.Create(HKEY_LOCAL_MACHINE,
> > > _T("Comm\\ConnMgr\\Providers\\{EF097F4C-DC4B-4c98-8FF6-AEF805DC0E8E}\\HTTP-{ADB0B001-10B5-3F39-27C6-9742E785FCD4}"));
> > >
> > > val = "{ADB0B001-10B5-3F39-27C6-9742E785FCD4}";
> > >
> > > key.SetValue(val.GetBuffer(0), _T("SrcId"));
> > > val.ReleaseBuffer();
> > >
> > > key.Close();
> > >
> > > key.Create(HKEY_LOCAL_MACHINE,
> > > _T("Comm\\ConnMgr\\Providers\\{f792e23c-dc19-4668-9be4-f8688b4c18d6}\\TIACXWLN1"));
> > >
> > > val = _T("TIACXWLN1");
> > > key.SetValue(val.GetBuffer(0), _T("Adapter"));
> > > val.ReleaseBuffer();
> > >
> > > key.SetValue(1, _T("AlwaysOn"));
> > >
> > > val = _T("{DC427712-CE2D-D5D9-C2CD-8A8B1FF6C4CF}");
> > > key.SetValue(val.GetBuffer(0), _T("ConnectionGUID"));
> > > val.ReleaseBuffer();
> > >
> > > val = _T("{ADB0B001-10B5-3F39-27C6-9742E785FCD4}");
> > > key.SetValue(val.GetBuffer(0), _T("DestId"));
> > > val.ReleaseBuffer();
> > >
> > > key.SetValue(0xffffffff, _T("Secure"));
> > >
> > > key.SetValue((DWORD) 0, _T("SecureLevel"));
> > >
> > > key.Close();
> > >
> > > key.Create(HKEY_LOCAL_MACHINE,
> > > _T("Comm\\ConnMgr\\Providers\\{f792e23c-dc19-4668-9be4-f8688b4c18d6}\\TIACXWLN1\\{g942c53d-dc19-4668-9be4-f8791b4c18d6}\\Default"));
> > >
> > > val = _T("yourap");
> > > key.SetValue(val.GetBuffer(0), _T("Default"));
> > > val.ReleaseBuffer();
> > > }
> > >
> > > key.Close();
> > >
> > >
> > > <indiekiduk DeleteThis @gmail.com> wrote in message
> > > news:1147666369.302651.133110@j33g2000cwa.googlegroups.com...
> > > > In WM5 if I disable WZC and then use Ndisuio to connect to a wireless
> > > > network, even though I connect and get an IP address, can ping web
> > > > sites, I still cannot use pocket explorer to surf the web. The
> > > > connection manager complains that no connection is available. This used
> > > > to work in PPC 2003 with no other steps required. So something has
> > > > changed. I reckon that when WZC connects to a network it calls
> > > > ConnMgrEstablishConnection in Cellcore.dll to notify it that the wifi
> > > > connection is available, and then I am assuming that it changes the
> > > > icon in the task tray to the 2 arrows. I have tried calling
> > > > ConnMgrEstablishConnection as follows but to no avail:
> > > >
> > > > CONNMGR_CONNECTIONINFO info = new
> > > > CONNMGR_CONNECTIONINFO();
> > > > info.cbSize = sizeof(CONNMGR_CONNECTIONINFO);
> > > > info.dwParams = 1;
> > > > info.dwPriority = 0x08000;
> > > > info.bDisabled = false;
> > > > info.bExclusive = false;
> > > > info.dwFlags = 0;
> > > > info.guidDestNet = new
> > > > Guid("436EF144-B4FB-4863-A041-8F905A62C572");
> > > > uint code = ConnMgrEstablishConnection(info, new
> > > > IntPtr());
> > > >
> > > > Does anyone have any info on how I can get pocket explorer to recognise
> > > > my manually made wifi connection?
> > > >
> >
> >
Back to top
Login to vote
Display posts from previous:   
Related Topics:
pIE and Connection Manager Interface prioritization - I have a question on how the Connection Manager prioritizes interfaces. In specific I am trying to solve a browsing problem on pIE on Windows Mobile 5.0 device. I have multiple interfaces active, all connecting to the internet. When I attempt to brows...

Connection Manager - access to localhost - Pocket Inbox - I am using a HP 6300 GPRS / WiFi PPC 2003 SE. I have a micro smtp / pop3 server that runs on the unit. PocketInbox is configured to use pop3 as a transport, using 127.0.0.1 as the addresses When pocket inbox attempts to connect to the smpt / pop3..

Connection Manager issue in Windows Mobile 5.0 PPC - Hi, I am working on a PPC device, which supports GPRS and WiFi connectivity. With both GPRS and WiFi connected, I run my application on WiFi. Later, when I disconnect GPRS externally, my application stops returning a data connection failure. Note: I....

Windows mobile 2003 DUN connection to RAS Server via BT (M.. - Hello, Can anyone tell me why: 1) Windows mobile 2003 (Intermec device) DUN connection to RAS Server via BT (Motorola/Nextel) modem authentication/connection never completes? note: Phone shows "data call setup" and below is corresponding f...

Verizon XV6700 PPC Wireless Manager issue - Hi All, In Verizon XV6700, a Windows Mobile 5.0 PPC device, can I have both CDMA and Wi-Fi radios ON at the same time? If this is possible, then, when I disconnect CDMA, will it effect my Wi-Fi connection in any way? Is there a way to connect and..
       PDA (Home) -> Pocket PC - DevNet All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum
Categories:
 Windows Forums
 Game Forums
 Linux Forums
 Mac Forums
  PDA Forums
 Mobile Forums
  Top  |  Store  |  RSS Feeds RSS  |  Data Feeds  |  Advertise  |  Submit  |  Bookmark  |  Newsletter  |  Contact