[Unity3d]socket通訊 切換到web版本時報錯SecurityException解決辦法

今天苦戰了一天,就跟一個Unity切換到web平臺的socket通訊出錯苦苦糾纏了一天,問了好多大牛,但他們的回覆都是我沒搞過web平臺下的通訊或者我只專研於pc或者移動平臺。看來沒辦法了,只能本身硬着頭皮往下探究了,貌似以前flash開發就是這樣,凡事碰到要跟服務器通訊的都會出現老大難的權限不足的錯誤。 html

具體錯誤以下: web

SecurityException: Unable to connect, as no valid crossdomain policy was found
System.Net.Sockets.Socket.Connect_internal (IntPtr sock, System.Net.SocketAddress sa, System.Int32& error, Boolean requireSocketPolicyFile)
System.Net.Sockets.Socket.Connect (System.Net.EndPoint remoteEP, Boolean requireSocketPolicy)
System.Net.Sockets.Socket.Connect (System.Net.EndPoint remoteEP)
System.Net.Sockets.UdpClient.DoConnect (System.Net.IPEndPoint endPoint)
System.Net.Sockets.UdpClient.Connect (System.Net.IPEndPoint endPoint)
安全

System.Net.Sockets.UdpClient.Connect (System.String hostname, Int32 port) 服務器

這印象太深入了,搞得我快吐血了,但這時終於搞定了,真欣慰。

以前我寫過一篇有關於www訪問web服務器的相同的問題,但那個稍微好解決一點,只要參考着官方文檔就能解決了,我在這以前也有解決過該類問題的博客,官方的文檔是:http://docs.unity3d.com/Documentation/Manual/SecuritySandbox.html,雖然全是英文,但學搞IT的看不了英文還真的很蛋疼,誰叫老美IT發達的呢,但願何時,互聯網上技術先進的博客或者論壇都是中文的,固然有點想固然了,若是真有那麼一天不知道是何時呢?!只能期待,下面迴歸正題。 dom

我建立的服務器是C#的控制檯程序,在項目工程文件裏面添加如下crossdomain.xml文件,而後打開843的端口,切記這個必須打開,否則就會報錯,客戶端是經過這個端口來查找配置文件的。而後在運行unity切換到web平臺就不會報錯了。 socket

怎麼打開843端口呢? 工具

解決辦法:咱們在unity的安裝目錄下找到一個sockpol.exe的這個一個工具,具體路徑是在「...\Unity\Editor\Data\Tools\SocketPolicyServer「路徑下有sockpol.exe和它的源碼。若是你的服務器端是Windows平臺的話,直接Copy一個sockpol.exe到服務器端,在CMD中執行
sockpol.exe --all
便可爲服務器端配置好Security SandBox安全策略。
測試

運行了以後咱們會看到Hit Return to stop the server,而後若是有一我的鏈接上的話就會提示 ui

incoming connection this

got policy request,sending response

若是作到這一步 恭喜你能鏈接了。

測試地址:http://114.92.230.107/aspnet_client/system_web/chat/newchat.html

還有一個問題就是端口衍射的問題,要綁定外網IP和內網服務器的端口,否則的話外網仍是不能使用聊天功能的,只能看到頁面而已!

源碼之後有空再上傳,這時困了,睡覺覺!




源碼:

Server端:

ChatClient:

[csharp]  view plain copy print ? 在CODE上查看代碼片 派生到個人代碼片
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Collections;  
  6. using System.Net.Sockets;  
  7.   
  8. namespace TestServer  
  9. {  
  10.     class ChatClient  
  11.     {  
  12.         public static Hashtable ALLClients = new Hashtable(); // 客戶列表  
  13.   
  14.         private TcpClient _client;  // 客戶端實體  
  15.         public string _clientIP;   // 客戶端IP  
  16.         private string _clientNick; // 客戶端暱稱  
  17.   
  18.         private byte[] data;        // 消息數據  
  19.   
  20.         private bool ReceiveNick = true;  
  21.   
  22.         public ChatClient(TcpClient client)  
  23.         {  
  24.             this._client = client;  
  25.   
  26.             this._clientIP = client.Client.RemoteEndPoint.ToString();  
  27.   
  28.             // 把當前客戶端實例添加到客戶列表當中  
  29.             ALLClients.Add(this._clientIP, this);  
  30.   
  31.             data = new byte[this._client.ReceiveBufferSize];  
  32.   
  33.             // 從服務端獲取消息  
  34.             client.GetStream().BeginRead(data, 0, System.Convert.ToInt32(this._client.ReceiveBufferSize), ReceiveMessage, null);  
  35.         }  
  36.   
  37.         // 從客戶端獲取消息  
  38.         public void ReceiveMessage(IAsyncResult ar)  
  39.         {  
  40.             int bytesRead;  
  41.   
  42.             try  
  43.             {  
  44.                 lock (this._client.GetStream())  
  45.                 {  
  46.                     bytesRead = this._client.GetStream().EndRead(ar);  
  47.                 }  
  48.   
  49.                 if (bytesRead < 1)  
  50.                 {  
  51.                     ALLClients.Remove(this._clientIP);  
  52.   
  53.                     Broadcast(this._clientNick + " has left the chat");  
  54.   
  55.                     return;  
  56.                 }  
  57.                 else  
  58.                 {  
  59.                     string messageReceived = System.Text.Encoding.ASCII.GetString(data, 0, bytesRead);  
  60.   
  61.                     if (ReceiveNick)  
  62.                     {  
  63.                         this._clientNick = messageReceived;  
  64.   
  65.                         Broadcast(this._clientNick + " has joined the chat.");  
  66.   
  67.                         //this.sendMessage("hello");  
  68.   
  69.                         ReceiveNick = false;  
  70.                     }  
  71.                     else  
  72.                     {  
  73.                         Broadcast(this._clientNick + ">" + messageReceived);  
  74.   
  75.                     }  
  76.                 }  
  77.   
  78.                 lock (this._client.GetStream())  
  79.                 {  
  80.                     this._client.GetStream().BeginRead(data, 0, System.Convert.ToInt32(this._client.ReceiveBufferSize), ReceiveMessage, null);  
  81.                 }  
  82.             }  
  83.             catch (Exception ex)  
  84.             {  
  85.                 ALLClients.Remove(this._clientIP);  
  86.   
  87.                 Broadcast(this._clientNick + " has left the chat.");  
  88.             }  
  89.         }  
  90.   
  91.         // 向客戶端發送消息  
  92.         public void sendMessage(string message)  
  93.         {  
  94.             try  
  95.             {  
  96.                 System.Net.Sockets.NetworkStream ns;  
  97.   
  98.                 lock (this._client.GetStream())  
  99.                 {  
  100.                     ns = this._client.GetStream();  
  101.                 }  
  102.   
  103.                 // 對信息進行編碼  
  104.                 byte[] bytesToSend = System.Text.Encoding.ASCII.GetBytes(message);  
  105.   
  106.                 ns.Write(bytesToSend, 0, bytesToSend.Length);  
  107.                 ns.Flush();  
  108.             }  
  109.             catch (Exception ex)  
  110.             {  
  111.   
  112.             }  
  113.         }  
  114.   
  115.         // 向客戶端廣播消息  
  116.         public void Broadcast(string message)  
  117.         {  
  118.             Console.WriteLine(message);  
  119.   
  120.             foreach (DictionaryEntry c in ALLClients)  
  121.             {  
  122.                 ((ChatClient)(c.Value)).sendMessage(message + Environment.NewLine);  
  123.             }  
  124.         }  
  125.   
  126.     }  
  127. }  

Program:

[csharp]  view plain copy print ? 在CODE上查看代碼片 派生到個人代碼片
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Net.Sockets;  
  6. using TestServer;  
  7.   
  8. namespace ConsoleApplication1  
  9. {  
  10.     class Program  
  11.     {  
  12.         //設置鏈接端口  
  13.         const int portNo = 5001;  
  14.         static void Main(string[] args)  
  15.         {  
  16.             // 初始化服務器IP  
  17.             System.Net.IPAddress localAdd = System.Net.IPAddress.Parse("114.92.245.173");  
  18.   
  19.             // 建立TCP偵聽器  
  20.             TcpListener listener = new TcpListener(localAdd, portNo);  
  21.   
  22.             //開始啓動監聽  
  23.             listener.Start();  
  24.   
  25.             // 顯示服務器啓動信息  
  26.             Console.WriteLine("Server is starting...\n");  
  27.   
  28.             // 循環接受客戶端的鏈接請求  
  29.             while (true)  
  30.             {  
  31.                 ChatClient user = new ChatClient(listener.AcceptTcpClient());  
  32.   
  33.                 // 顯示鏈接客戶端的IP與端口  
  34.                 Console.WriteLine(user._clientIP + " is joined...\n");  
  35.             }  
  36.         }  
  37.     }  
  38. }  

Client端:

[csharp]  view plain copy print ? 在CODE上查看代碼片 派生到個人代碼片
  1. using UnityEngine;  
  2. using System.Collections;  
  3.   
  4. using System;  
  5. using System.Collections.Generic;  
  6. using System.ComponentModel;  
  7. using System.Text;  
  8. using System.Net.Sockets;  
  9.   
  10. public class ClientHandler : MonoBehaviour  
  11. {  
  12.     //端口號  
  13.     const int portNo = 50001;  
  14.     private TcpClient _client; //當前socket客戶端  
  15.     byte[] data;  
  16.   
  17.     // Use this for initialization  
  18.     void Start()  
  19.     {  
  20.   
  21.     }  
  22.   
  23.     // Update is called once per frame  
  24.     void Update()  
  25.     {  
  26.   
  27.     }  
  28.   
  29.     //名字  
  30.     public string nickName = "";  
  31.     //信息  
  32.     public string message = "";  
  33.     //要發送的消息  
  34.     public string sendMsg = "";  
  35.   
  36.     void OnGUI()  
  37.     {  
  38.         //用戶名  
  39.         nickName = GUI.TextField(new Rect(10, 10, 100, 20), nickName);  
  40.         //聊天消息  
  41.         message = GUI.TextArea(new Rect(10, 40, 300, 200), message);  
  42.         //發送的消息  
  43.         sendMsg = GUI.TextField(new Rect(10, 250, 210, 20), sendMsg);  
  44.   
  45.         if (GUI.Button(new Rect(120, 10, 150, 20), "填寫用戶名以後鏈接"))  
  46.         {  
  47.             //建立一個新的鏈接  
  48.             this._client = new TcpClient();  
  49.             this._client.Connect("114.92.245.173", portNo);  
  50.             if(this._client.Connected)  
  51.             {  
  52.                 Debug.Log("登錄成功");  
  53.             }  
  54.             //接受多大的字節數據  
  55.             data = new byte[this._client.ReceiveBufferSize];  
  56.   
  57.             //發送用戶名  
  58.             SendMessage(nickName);  
  59.               
  60.             this._client.GetStream().BeginRead(data, 0, System.Convert.ToInt32(this._client.ReceiveBufferSize), ReceiveMessage, null);  
  61.         };  
  62.   
  63.         if (GUI.Button(new Rect(230, 250, 80, 20), "發送"))  
  64.         {  
  65.             SendMessage(sendMsg);  
  66.             sendMsg = "";  
  67.         };  
  68.     }  
  69.   
  70.     //發送消息(ASCII碼)  
  71.     public void SendMessage(string message)  
  72.     {  
  73.         try  
  74.         {  
  75.             //建立流  
  76.             NetworkStream ns = this._client.GetStream();  
  77.   
  78.             byte[] data = System.Text.Encoding.ASCII.GetBytes(message);  
  79.   
  80.             ns.Write(data, 0, data.Length);   
  81.             ns.Flush();  
  82.         }  
  83.         catch (Exception ex)  
  84.         {  
  85.             //MessageBox.Show(ex.ToString());  
  86.         }  
  87.     }  
  88.   
  89.     //接受消息  
  90.     public void ReceiveMessage(IAsyncResult ar)  
  91.     {  
  92.         try  
  93.         {  
  94.             int bytesRead;  
  95.   
  96.             bytesRead = this._client.GetStream().EndRead(ar);  
  97.               
  98.             //若是沒有信息則返回  
  99.             if (bytesRead < 1)  
  100.             {  
  101.                 return;  
  102.             }  
  103.             else  
  104.             {  
  105.   
  106.                 Debug.Log(System.Text.Encoding.ASCII.GetString(data, 0, bytesRead));  
  107.                 //message是不斷的加的,而後顯示到中間的框中  
  108.                 message += System.Text.Encoding.ASCII.GetString(data, 0, bytesRead);  
  109.             }  
  110.               
  111.             //開始讀取接收到的信息保存到data中  
  112.             this._client.GetStream().BeginRead(data, 0, System.Convert.ToInt32(this._client.ReceiveBufferSize), ReceiveMessage, null);  
  113.   
  114.         }  
  115.         catch (Exception ex)  
  116.         {  
  117.   
  118.         }  
  119.           
  120.     }  
  121. }  

效果:



項目源文件:

http://download.csdn.net/detail/s10141303/6618107

相關文章
相關標籤/搜索