v1.2.5.28-beta
Pre-release
Pre-release
Added Owin transport (WampSharp.Owin). Usage:
using Owin;
using WampSharp.Binding;
using WampSharp.Owin;
using WampSharp.V2;
[assembly: OwinStartup(typeof(Startup))]
namespace WebApplication1
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
WampHost host = new WampHost();
host.RegisterTransport(new OwinWebSocketTransport(app),
new JTokenJsonBinding());
host.Open();
}
}
}