Open Web Interface for .NET

learn more… | top users | synonyms

0
votes
0answers
12 views

signalR self-host CORS not working in IE 10 (degrades to longpolling)

I have a self-hosted Windows Service, running on a windows 7 box alias http://windows7box:8080 (not the intranet web server that serves the web page) that continuously broadcasts data. It is based ...
0
votes
2answers
30 views

Can you build an ASP.NET Web API on top of OWIN?

Well the title basically sums it up, I'm wondering if I can create an OWIN pipeline to my ASP.NET Web API. I want to do this so I can apply a base security layer that I can apply to all of my API ...
0
votes
1answer
47 views

Self hosted OWIN and urlacl

I've created a self hosted Nancy/SignalR application self-hosted in OWIN using Microsoft.Owin.Host.HttpListener and Microsoft.Owin.Hosting Things work perfectly fine locally but as soon as I try to ...
0
votes
1answer
57 views

Self hosted cross site connection issue with SignalR and Mono and Owin

I'm about ready to pull my hair out over this problem because all the guides show the same one or two solutions, which seem to be working for everyone but myself. I'm using SignalR in a Mono ...
0
votes
1answer
42 views

signalR Groups.Remove doesn't work

I have a self-hosted application akin to a scenario wherein I have a method that continuously broadcasts to groups (whether somebody has "joined" or not). Something like: var aTimer = new ...
2
votes
1answer
40 views

NancyFx not reaching module using Owin Hosting

I am trying to create a really simple NancyFx project using OWIN hosting. Nancy appears to be running because I get the 404 that comes with Nancy by default, but none of my modules are ever reached. ...
0
votes
0answers
29 views

How does OWIN work?

I'm reading the OWIN 1.0 spec at http://owin.org/spec/owin-1.0.0.html and just can't wrap my head around how it works. I've downloaded Katana source, but that's huge and didn't help any. I'm familiar ...
0
votes
1answer
118 views

SignalR self-host: Windows firewall settings?

I have a SignalR self-hosted server application. Whether run as a console application or as a Windows Service, it accepts traffic under all usual firewall rules required in our environment except for ...
0
votes
1answer
356 views

Signalr Owin simple example javascript client not being called

I have a 5.3.0 version of signalr self hosting that is being upgraded to a newer version of signalr. Using https://github.com/SignalR/SignalR/wiki/Self-host example i have created a simple example, ...
1
vote
1answer
40 views

Pass a parameter to OWIN host

I'm self-hosting ASP.NET Web API and SignalR using OWIN. I start the server (on a console app) with this code: using (WebApplication.Start<Startup>(url)) { Console.WriteLine("Running..."); ...
0
votes
0answers
65 views

Best way to get Owin properties for System.Web hosted application

I want to retrieve a property from an Owin IAppBuilder instance from my Global.asax. The only way I could figure out to do this is by using MapOwinPath with a path I don't care about simply to take ...
0
votes
1answer
150 views

SignalR: Connect JS client on SSL page to SelfHost not using SSL

I am working on an application to perform context synchronization between multiple web hosted applications using SignalR. The client machine instantiates a host using the SignalR Owin host and the ...
0
votes
2answers
200 views

Are these usages of OWIN possible?

Is it possible to write a simple custom Console Application that includes a owin library that can host a Asp.Net Web Application directly (without katana.exe, like CassiniDev's library)? Is it ...
0
votes
0answers
50 views

Kayak server Image link create?

I use Kayak for small project. My problem is i can not create the image link from raw image. <img id="imagereg" src="http://localhost:8080/image.jpg" alt="image" border="0" > The image.jpg ...
2
votes
1answer
1k views

Unable to run an asp.net 4.5 app on xsp on Mono 3

I've build Mono 3.0.2 from source (tarball), and built XSP from both the latest tarball and the latest on Github, but I'm unable to run a relatively simple asp.net app using .net 4.5 because it sees ...