self-hosting Questions
9
Solved
I am trying to use the ASP.NET Web API Self-Host option with Windows authentication so I can determine the logged on user and ultimately accept or reject the user based on their identity. Here is m...
Holmann asked 5/3, 2012 at 17:52
2
Solved
How do you make a Web API self host bind on all network interfaces?
I have the below code currently. Unfortunately, it binds only on localhost. So access to this server from other than localhost ...
Ciapha asked 27/10, 2014 at 22:38
1
Solved
I have an Asp.Net Owin Self Hosted WebApi application.
The application can be installed as a windows service in production environment.
Currently I'm running and accessing the service via url http...
Operation asked 7/4, 2017 at 7:2
2
I'm using attribute routing from ASP.NET 5 RC, included in the Visual Studio 2013 RC release.
I'd like for the root path, /, to lead to the canonical /Home/Index path, but I can't find a way to do...
Diaphane asked 26/9, 2013 at 4:13
5
I'm looking for a simple self hosted website monitoring tool.
It should be somthing similar to watchmouse.com or pimgdom.com, with a nice UI, colorful charts and so on (Customers like that :)...
Kierstenkieselguhr asked 15/8, 2010 at 9:56
3
Solved
I have a simple project which uses Microsoft.AspNet.WebApi.OwinSelfHost. It is a Owin self hosted WebApi 2 project.The project is pretty much similar to:-
https://github.com/attilah/AngularJSAuthe...
Summerlin asked 5/3, 2015 at 11:15
2
Solved
I have a sample web API hosted in an OWIN process (self hosted, not in IIS). I get a JWT token in my controller and I want to be able to retreive it in another part of the application, a class that...
Zincography asked 18/12, 2014 at 15:16
3
Solved
Is it possible to self host asp.net mvc inside another application ie. console, windows forms, service etc etc.
I'd like to build an app that offers a web interface to control it and I'd like to u...
Pingpingpong asked 30/4, 2012 at 5:38
2
Solved
My application uses self-hosting feature of ASP.NET Web API. NuGet package name I use is Microsoft.AspNet.WebApi.SelfHost. I used following example as a base.
Following code works for me to launch...
Bon asked 9/9, 2013 at 21:35
2
I am writing an application that exposes a service via WCF. The service is self-hosted (console app) and needs to use a Singleton instance. I am trying to figure out how to specify singleton in the...
Rumba asked 20/3, 2011 at 23:10
8
Solved
Running a ServiceHost with a single contract is working fine like this:
servicehost = new ServiceHost(typeof(MyService1));
servicehost.AddServiceEndpoint(typeof(IMyService1), new NetTcpBinding(), ...
Rotarian asked 2/12, 2008 at 16:4
1
I was under the impression that we could actually run a console app on a live server that would listen and serve data (web pages if it were for that purpose). This way, we won't have to host our we...
Katti asked 17/12, 2015 at 21:39
2
Solved
There are multiple question I have around self-hosting
Self Hosting Nuget
There are 2 nuget which provide self hosting : Microsoft.AspNet.WebApi.OwinSelfHost and Microsoft.AspNet.WebApi.SelfHost,...
Splenectomy asked 12/11, 2014 at 8:54
2
Solved
I need to run my application which provides some ASP.NET Web API services on both IIS and .NET CLR self host modes.
I developed my ASP.NET Web API services based on OWIN and it is working fine on b...
Appendectomy asked 5/10, 2014 at 8:44
2
Solved
I want to use SignalR selfhosted with Owin.
What are the differences between these two packages:
Microsoft ASP.NET SignalR OWIN
and
Microsoft ASP.NET SignalR Self Host
When to use one or oth...
Manos asked 29/1, 2016 at 17:9
2
I have Windows service that listens for https requests on an end user's machine, is there an accepted way of creating or distributing the private key in this circumstance? Should I be packaging a r...
Kandis asked 14/1, 2016 at 14:2
1
Solved
I'm about to create a self-hosted Web API application, and somewhere I need to URL Decode the input. But I truly don't want to add a reference to System.Web.dll, because AMAIK, it's a heavy DLL and...
Keelby asked 23/1, 2016 at 13:52
1
Solved
I got an issue when setting up HTTPs for a self host Owin console application. The browser always shows a connection reset error.
I've tried creating certificates manually according to this link h...
Burgener asked 20/11, 2015 at 6:58
3
I have to decide between Bitbucket and GitLab for repository hosting (yes, they have to be private). I've used Bitbucket in the past, but now I've discovered GitLab and I find the idea of hav...
Iceskate asked 16/11, 2015 at 16:43
0
I've got SignalR running successfully in a self-hosted process (currently a WinForm host). Clients can connect with their browsers and interact perfectly. The problem comes when I need to restart t...
Intertexture asked 5/11, 2015 at 3:30
2
Solved
I have a very simple Web Api v2.2 self hosted in OWIN
public class StartUp
{
public void Configuration(IAppBuilder appBuilder, IConfigReader configReader)
{
var container = new Container();
c...
Aggression asked 30/10, 2014 at 12:21
2
Solved
I'm trying to create a Windows service with OWIN self hosted WebAPI with Ninject . I got it to work but I had to add a reference to system.web, which seems wrong. Without a reference to system.web ...
Pigg asked 5/9, 2014 at 15:13
3
Solved
I have this configuration in my app.config:
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="myBehavior">...
Crinite asked 25/12, 2012 at 18:2
1
Solved
I have a console application SERVER that hosts WebApi controllers using OWIN self-hosting, and runs under a custom account named "ServiceTest1".
In the same machine I have another console applicat...
Thin asked 18/8, 2015 at 19:6
1
Solved
I'm trying to self host an OWIN pipeline in a WinForms application. The pipeline is hosting up both static files and Web Api v2 content. The implementation is working great locally, but I'm not sur...
Benjy asked 20/7, 2015 at 15:36
© 2022 - 2024 — McMap. All rights reserved.