Xamarin PCL(Android
)未与SignalR Hub
建立联系,但UWP
和WinPhone
可以连接到中心。 SignalR
是否支持(Android
)?
我使用Vs2015和SignalR.Client(2.1.0)nuget,Microsoft.Net.Http(2.2.29)nuget,newtonsoft.Json(9.0.1)nuget,Microsoft.Bcl& Build on PCL project
我看到,Android总是断开连接,但其他项目可以连接到signalR hub。我分享了下面的代码。 WinPhone和UWP连接集线器但不是android。当模拟器加载项目时,没有错误消息。
非常感谢
//Server:
using Microsoft.AspNet.SignalR;
using Microsoft.Owin.Cors;
using Microsoft.Owin.Hosting;
using Owin;
...
class Startup
{
public void Configuration(IAppBuilder app)
{
app.UseCors(CorsOptions.AllowAll);
app.MapSignalR();
}
}
public class MyHub : Hub
{
public void Send(string name, string message)
{
Clients.All.addMessage(name, message);
}
public override Task OnConnected()
{
Program.MainForm.WriteToConsole("Client connected: " + Context.ConnectionId);
return base.OnConnected();
}
public override Task OnDisconnected()
{
Program.MainForm.WriteToConsole("Client disconnected: " + Context.ConnectionId);
return base.OnDisconnected();
}
}
//Starting Methot on WinForm
private IDisposable SignalR { get; set; }
private void ButtonStart_Click(object sender, EventArgs e)
{
SignalR = WebApp.Start("http://localhost:8080");
}
//On PCL code
//HomePage.xaml
<StackLayout>
<Entry x:Name="MainEntry"/>
<Button x:Name="btnSend" Clicked="Button_OnClicked" Text="Send Entry"/>
<Label x:Name="MainLabel"/>
<ListView x:Name="MainListview"/>
</StackLayout>
//HomePage.xaml.cs
using Microsoft.AspNet.SignalR.Client;
...
{
private String UserName { get; set; }
private IHubProxy HubProxy { get; set; }
const string ServerURI = "http://localhost:8080";
private HubConnection connection { get; set; }
public HomePage()
{
InitializeComponent();
Device.BeginInvokeOnMainThread(() => ConnectAsync());
}
private async Task ConnectAsync()
{
connection = new HubConnection(ServerURI);
HubProxy = connection.CreateHubProxy("MyHub");
HubProxy.On<string, string>("AddMessage", (name, message) =>MainLabel.Text+= String.Format("{0}: {1}" + Environment.NewLine, name, message));
await connection.Start();
}
private void Button_OnClicked(object sende, EventArgs e)
{
HubProxy.Invoke("Send", UserName, MainEntry.Text);
}
}
答案 0 :(得分:1)
这可能是因为Xamarin Android客户端在模拟器中运行,因此使用localhost的URL无法正常工作。
您需要配置对IIS Express的远程访问并向Windows防火墙添加例外。有关使用WCF的Xamarin演练包括a useful section describing how to do just that.
可能还有其他步骤让signalR正常工作,希望这会有所帮助。