0

如何强制我的 Windows Mobile 6.5 应用程序始终使用手机 WIFI 适配器,即使手机通过 USB 连接到 PC。

这可以在代码中完成吗?我尝试使用连接管理器 API,但无法弄清楚如何选择特定的网络适配器。

编辑:这是我尝试使用的代码(在网络上的某个地方找到),但在 Connect() 中,我无法弄清楚如何添加特定的适配器,只有当它应该连接到互联网或工作网络时。

namespace Model
{
    using System;
    using System.Text;
    using System.Runtime.InteropServices;

    public class ConnectionManager : IDisposable
    {
        #region Consts
        private const int RAS_MaxEntryName = 20;
        #endregion

        #region structs
        private class ConnectionInfo
        {
            public int cbSize = 0x40; // structure size
            public int dwParams = 0;
            public int dwFlags = 0; // flags of connection settings
            public int dwPriority = 0; // connection priority
            public int bExclusive = 0;
            public int bDisabled = 0;
            public Guid guidDestNet = Guid.Empty; // Connection GUID
            public IntPtr hWnd = IntPtr.Zero;
            public int uMsg = 0;
            public int lParam = 0;
            public int ulMaxCost = 0;
            public int ulMinRcvBw = 0;
            public int ulMaxConnLatency = 0;
        }

        [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
        private struct RasConn
        {
            public int dwSize;
            public IntPtr hRasconn;
            [MarshalAs(UnmanagedType.ByValTStr, SizeConst = RAS_MaxEntryName + 1)]
            public string szEntryName;
        }
        #endregion

        #region P/Invoke
        [DllImport("cellcore.dll")]
        private static extern int ConnMgrEstablishConnection(
            ConnectionInfo connInfo,
            out IntPtr connection
            );

        [DllImport("coredll.dll", CharSet = CharSet.Auto)]
        private static extern uint RasEnumConnections(
            [In, Out]RasConn[] lpRasconn,   // buffer to receive connections data
            ref int lpcb,          // size in bytes of buffer
            out int lpcConnections // number of connections written to buffer
            );

        [DllImport("coredll.dll")]
        private static extern uint RasHangUp(
            IntPtr hRasConn
            );
        #endregion

        public ConnectionManager()
        {

        }

        public bool Connect()
        {
            ConnectionInfo connInfo_ = new ConnectionInfo();
            connInfo_.cbSize = Marshal.SizeOf(connInfo_);
            connInfo_.dwFlags = 0;
            connInfo_.dwParams = 0x1;
            connInfo_.guidDestNet = new Guid("436EF144-B4FB-4863-A041-8F905A62C572");
            connInfo_.dwPriority = 0x08000;
            connInfo_.bExclusive = 0;
            connInfo_.bDisabled = 0;
            connInfo_.hWnd = IntPtr.Zero;
            connInfo_.lParam = 0;

            IntPtr conn_ = IntPtr.Zero; //we dont need to save it because it aint work
            return ConnMgrEstablishConnection(connInfo_, out conn_) == 0;
        }

        //using ras to disconnect
        public static void Disconnect()
        {
            RasConn[] rconn_ = new RasConn[1]; //as a rule 1 connection is enough
            int out_ = Marshal.SizeOf(typeof(RasConn));
            int cout_ = 1;

            rconn_[0].dwSize = out_;
            rconn_[0].szEntryName = null;


            RasEnumConnections(rconn_, ref out_, out cout_);

            if (cout_ > 0)
            {
                RasHangUp(rconn_[0].hRasconn);
                System.Threading.Thread.Sleep(3000); //msdn says that we should do that
            }
        }

        public void Dispose()
        {
            ConnectionManager.Disconnect();
        }
    }
}
4

1 回答 1

0

我不确定,但我假设您可以使用配置和指定桌面通道连接(ActiveSync/WMDC)(也称为 DTPT)来处理此问题,将其指定为不安全,并将 WiFi/LAN 连接指定为安全(http://msdn.microsoft。 com/en-us/library/aa455851.aspx)。这应该可行,因为 connMgr 首先使用“安全”连接。停止:我刚刚阅读了链接站点上的注释:“注意桌面直通 (DTPT) 连接不支持将 Secure 的值设置为 false。DTPT 旨在用作安全连接。”。所以这种方法对于 DTPT 来说是没有选择的。

另一种方法是将 DTPT 连接指定为“工作”连接,而(我假设)您的连接请求是针对“互联网”连接的。配置示例:http: //msdn.microsoft.com/en-us/library/ms890844.aspx。ActiveSync/WMDC 中还有一个连接设置来指定 DTPT 的“目标”:自动/Internet/Work。您是否尝试将其设置为工作?

可能您也可以简单地删除 DTPT 连接以供连接管理器使用:http: //msdn.microsoft.com/en-us/library/aa456184.aspx

要使用 wap 配置,您需要 DMProcessConfigXML API:http: //msdn.microsoft.com/en-us/library/ee497867%28v=winembedded.60%29.aspx。这里有一个 .net 示例:如何使用 DMProcessConfigXML 来配置我的 Windows Mobile 设备?

为了提供更多帮助,我需要设备连接设置的 RapiConfig 转储。

于 2013-09-13T04:01:23.550 回答