The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
26 views

Calling selfhosted WCF service from Windows Phone 8 Emulator

My selfhosted WCF wervice works fine with any browser on the domain, and also with a WinForm client. In a Windows Phone 8 app I can create Service References OK. Trying to consume the service from ...
2
votes
1answer
31 views

Using ServiceStack Mini Profiler in self-hosted console application

Is it possible to use ServiceStack Mini Profiler in self-hosted console application? If it is, where should I put profiler enable/disable code? In ASP.NET hosted ServiceStack it's usually in ...
0
votes
1answer
46 views

Standalone git binary on server with repository viewer

I have a server from my company. On this server is git not installed (and it will not be in the near future). (On many free server hosting sites, git is also not installed) Is there a way to use a ...
2
votes
1answer
46 views

Nancy Views Internal Server Error

I'm hosting Nancy in my Console Application, and when I try to call a view(for example "Login.html") the page gives me error 500. This is the code: public sealed class LoginModule : NancyModule { ...
1
vote
1answer
103 views

No controller is found by Web API although controller exists

I created one solution with two projects: one is a class library with a Self Host Web API (created with the help of http://www.asp.net/web-api/overview/hosting-aspnet-web-api/self-host-a-web-api), the ...
2
votes
1answer
95 views

servicestack self-hosted service uses chunked encoding - is unbuffered?

I am trying to learn ServiceStack with the hello world examples and self-hosted example. I am making requests for JSON content. I have noticed the following in the response headers: Basic service ...
1
vote
1answer
58 views

WCF REST Self-Hosted 400 Bad Request

I'm having a problem with a self-host WCF REST service. When I try to issue a GET via browser or Fiddler, I get a 400 Bad Request. Tracing is reporting an inner exception of XmlException "The body ...
5
votes
2answers
384 views

How to get gzip compression working in WCF 4.5

WCF 4.5 supports GZIP without third party libraries or handwritten extensions. I got it working via TCP Binding, but cannot find a way to get it working via HTTP Binding. my wcf - Service is self ...
0
votes
0answers
112 views

Redmine LDAP authentication fails for some users

Redmine 1.3.3 is running on a CentOs Linux release 6.0 server and LDAP authentication is used for users to login. The address of the server hosting Redmine has been changed and now all users who had ...
0
votes
1answer
43 views

WCF Service in Windows Form Application

I'm newbie in WCF. I have some questions need to be answered. Can I use WCF to make a simple chat application from a client to a client (via WCF Service) ? I have tried follow many examples, And i ...
0
votes
1answer
236 views

Return JSON from self-hosted WCF 4.5 service?

How do I get JSON from a self-hosted WCF 4.5 service? I'm using Fiddler2 to send requests with "Content-Type: application/json" (also tried "Content-Type: application/javascript") but I keep getting ...
0
votes
1answer
74 views

Self-hosted WCF Data service authentication

I have self-hosted WCF Data service set up in similar way to this - http://blogs.msdn.com/b/writingdata_services/archive/2011/01/24/self-hosting-a-wcf-data-service.aspx How does one add Windows ...
0
votes
2answers
170 views

Trying to get the user-agent from request in asp.net web api self host

I'm trying to get the user-agent in a web api self host and I'm either doing it wrong, or the web api itself is altering the user agent string. I've tried using several methods to the get the string ...
0
votes
0answers
92 views

SignalR Self hosting xUnit

I am writing a xUnit test in order to check connect/disconnect capabilities of SignalR 1.0.1. The goal is to test the counting mechanism of connected clients which is used in the production code. ...
0
votes
3answers
142 views

Communication between two WCF Services in selfhosting Server

In a selfhosting service as described in this MSDN article there are two servies. Now I want to call one from the other. One does some database related stuff and the other provides some work. I want ...
1
vote
2answers
234 views

WebAPI SelfHost site

Is it possible to setup WebAPI to Self Host like Nancy. Such that it hosts an /api/... section serving up json and xml responses and hosts a /content/... section serving up *.jpg and ...
0
votes
2answers
169 views

Self-Hosting WCF and System.ServiceModel.FaultException

I have a simple WCF Service Library Project (call this Project W) with a handful of DLLs in directory X. I set the startup directory of W to X, all methods work correctly using WcfServiceHost in ...
0
votes
0answers
148 views

Can Selfhosted WebApi with PushStreamContent handle multiple requests?

I'm using HttpSelfHostServer to host my WebApi. I return a PushStreamContent like this public HttpResponseMessage Get(HttpRequestMessage request) { var response = ...
0
votes
0answers
26 views

Recovering from hanging WebServiceHost

My application has a service endpoint listening, using WebServiceHost. During debug it sometimes hang, so I can't restart the listening because the port/service appear to be in use. If I netstat I ...
2
votes
2answers
617 views

Web Api with Web-Hosting and Self-Hosting

Is there a best practice for supporting self- and web-hosting (at the same time)? There are many problems I had to solve. Under self-hosting autofac does not work properly, because ...
1
vote
1answer
135 views

Unable to connect to self-hosted WCF service over HTTPS

I am unable to connect to my self-hosted WCF service running with WebHttp+HTTPS bindings. For various reasons, I configure the service entirely in code rather than using a config file, and I ...
2
votes
1answer
95 views

WCF local only NamedPipe

Here's a simple example of my problem. I'm writing an application that self hosts a WCF service for communication only within the user's session. When multiple users run this application concurrently ...
1
vote
1answer
80 views

Bad request, zero length response: where is the WCF log, where to investigate?

I have a WCF self hosted service, which is called by an AJAX JavaScript. In some cases the response is Bad Request and the response length is 0. What I've done so far: Inspecting req/resp with ...
0
votes
2answers
189 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
2answers
131 views

Consume self-hosted WCF with ajax on same machine

I need help, pls…or, at least, a direction… I have a very peculiar scenario for WCF…I need to self-host a service (no IIS permitted) and consume it through a HTML page using jQuery ajax … (no IIS ...
1
vote
2answers
187 views

Is selfhosting appropriate for small web projects in both Nancy and ServiceStack?

Both Nancy and ServiceStack have ability to self-hosting. I want to use one of this frameworks to build a web service with Linux and Mono. I am expecting few concurrent connections. Unfortunately Mono ...
0
votes
0answers
90 views

Self hosted HTTPS WCF service breaks IIS site using SSL

I've got a self-hosted service (Windows Service) running on my server. When it starts however, it seems to block an existing SSL site set up in IIS. Meaning, when the service is not running, my SSL ...
1
vote
2answers
198 views

Self-hosted WCF Service with SSL on XP SP3

I've seen about 1000 posts on StackOverflow, blogs, and other sites, but none have been able to shed light on the problem I'm having. Setup: WCF self-hosted service (NOT IIS) using .NET Framework ...
1
vote
1answer
140 views

[play framework 1.2.5]'play start' does not work properly (windows XP)

When I start my play application with following command in production mode. play start 'path to application' -Dprecompiled=true following output comes on command prompt:- C:\Documents and ...
8
votes
1answer
425 views

Using WebAPI in LINQPad?

When I tried to use the Selfhosted WebAPI in LINQPad, I just kept getting the same error that a controller for the class didn't exist. Do I have to create separate assemblies for the WebAPI ...
0
votes
1answer
190 views

Can't Access WCF REST service from any other machine on my local area network

None of any similar questions have helped me. I am sure experts here would.. My problem is I am hosting a WCF Rest service and I can only access it locally. Any other computer on the LAN won't be ...
4
votes
2answers
214 views

Reading WCF behavior elements from config file programmticlally when exposing self-hosted service

I have this configuration in my app.config: </binding> </basicHttpBinding> </bindings> <behaviors> <serviceBehaviors> <behavior ...
1
vote
1answer
131 views

WCF Service works in debug but not as Windows Service

I have a WCF service that is a self hosted Windows Service. When debugging with the WCF Test Client the service works great. I use Javascript with simple ajax requests that return JSON. Although when ...
0
votes
1answer
416 views

Web API Self hosting from a test assembly

I'm currently evaluating WebAPI and NancyFx for a new project about to start. I've managed to get Nancy to self host from a test assembly (by itself it uses asp.net hosting). Is there any way to do ...
0
votes
2answers
140 views

C# HttpSelfHostServer can I regain control of Controller construction?

Due to limitations on the server side I need to build a self hosting web service in .NET... I'm currently looking at HttpSelfHostServer but I'm very un-cool with it's magical construction of the ...
0
votes
1answer
68 views

Google maps on a self hosted website

I've a small self-hosted website hosted on my home server via no-ip.com, wonder if it's legit/possible to use Google maps on it and what would be the viable options if not?
1
vote
1answer
418 views

ASP.NET WebAPI Self Hosting on Azure: feature loss by avoiding IIS?

ASP.NET WebAPI's can either hosted within IIS (as a web role) or be self hosted (as a worker role) var server = new HttpSelfHostServer(config); server.OpenAsync().Wait(); The above reminded me of ...
2
votes
1answer
127 views

Consume a HTTP POST from a self hosted service

I have a self hosted service that needs to listen for upload notifications coming from a BITS server (they are a simple HTTP POST request with custom headers). If I was not self hosting my service and ...
0
votes
1answer
76 views

Max amount of sessions on my WCF service?

I have a WCF service running InstanceContextMode = PerCall, ConcurrencyMode = Multiple, TCP and is hosted in Selfhost(Windows Service) and IIS7/IIS8. The throttling is set to this : ...
0
votes
1answer
37 views

Safe and secure options to store videos on my server [closed]

I am working on a project which deals with quite a many sensitive/personal audio-video files. The audio files are hardly 5-10 min long.I want to store them all privately. They should be accessible to ...
2
votes
1answer
309 views

Wcf Dynamic Hosting using reflection

My goal is to create a host application able to parse multiple assemblies, detect the contracts and host the services. In order to load a service, we usually need to hardcode the servicehost ...
1
vote
0answers
901 views

To call a Self Hosted WCF service from another Net.Tcp WCF service running on IIS 7

I have a NetTcp Self Hosting service running on my client machine, and there is another NetTcp service running on IIS on the server. I am trying to consume the self hosted service from the service in ...
0
votes
2answers
100 views

Ideal specs for home dedicated webserver [closed]

Im decided to create a home based dedicated webserver to host a website for a small group. What would be the minimum specs i should consider? would a dual-core desktop with 2GB RAM enough?
0
votes
1answer
104 views

Wcf self hosting over basicHttp and browsing

Hej, I feel like a complete idiot but I don't seem to find an answer. I'm selfhosting a WCF service in a console application. This is working like a charm, I've done it a million times :) Consuming ...
1
vote
1answer
95 views

IIS or selfhost for this service?

Hi, I have a complexed layered WCF service, it is really containing 4 different services where 3 is using regular BasicHTTPBinding and the last one netTCPBinding. Here is som facs : Loading data ...
2
votes
1answer
259 views

Upload large files example with self hosted Nancy

Can someone post an example on how to upload a large file (eg. 50MB) using NancyFx running in self-hosting mode. The file is expected to be sent from a webpage (method=post; ...
0
votes
0answers
90 views

Download a File from a self hosted web service

Normally my web service application is hosted in an IIS. Beside calling my web service functionality, it is possible to download a file from the file system. For example the address ...
2
votes
4answers
156 views

Visual feedback for a self-hosting WCF service

I have a windows service that is hosting a WCF service on a server. I am using InstanceContextMode.PerSession attribute. The services function well per my requirements. I would now like to implement ...
1
vote
3answers
1k views

Multiple instances of a self hosted WCF service

We have a "worker" service running from console application in c#, for development we were always running a single instance of this service, which fetches chunks of data and performs some ...
2
votes
2answers
257 views

WebApi Per-Request Storage for Self Hosting Mode

When hosting WebApi is IIS, you have access to HttpContext and can use the items collection to store objects for a single HTTP request. When self hosting, you no longer have a HttpContext, so what ...

1 2 3