Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
7answers
14k views

Run WCF ServiceHost with multiple contracts

Running a ServiceHost with a single contract is working fine like this: servicehost = new ServiceHost(typeof(MyService1)); servicehost.AddServiceEndpoint(typeof(IMyService1), new NetTcpBinding(), ...
4
votes
2answers
384 views

Can I automatically host all services in app.config when using SelfHosting?

I'm writing an application which needs to host several WCF services. One of the strengths of WCF is the ability to configure services without having to recompile, by specifying settings in the ...
4
votes
3answers
852 views

Does a WCF self hosted service handle more or less load than the IIS hosted option?

Does the hosting option affects the amount of requests a WCF service can handle?
3
votes
2answers
163 views

Self-hosted site based on HttpListener — how to handle authentication?

If you are building a self-hosted web page around HttpListener, how can you handle authentication in a secure way? I don't want to use Basic Authentication because it passes credentials as clear text. ...
3
votes
3answers
7k views

WCF Self Host Service - Endpoints in C#

My first few attempts at creating a self hosted service. Trying to make something up which will accept a query string and return some text but have have a few issues: All the documentation talks ...
3
votes
3answers
1k views

Can WCF RIA Services be self hosted?

I know WCF can be self hosted. how about WCF RIA Services? Thanks!
3
votes
3answers
456 views

How Expensive are ???-Hosted WCF Services?

A co-worker and I are having a discussion about WFC services when the topic of "cost" comes up. The question is this: Given that an IIS-hosted WCF service and a Windows-Service-hosted WCF service do ...
3
votes
2answers
3k views

Want to host WCF Webservice as Windows Service as against to Hosting in IIS

I want to expose few web services but thinking of hosting those as Windows Service as against hosting in IIS. Is it a good practice? If yes? How do I make it secured? I want to authenticate the ...
2
votes
2answers
80 views

Trying to self-host, I get error - wcf service host cannot find any service metadata .. please check if metadata is enabled

I am new to WCF and I've read answers to questions with titles similar to my error but I still cannot see what is wrong. Following some other tutorials I decided to put my contract and my service in ...
2
votes
2answers
72 views

LDAP Groups and Git Source Code Hosting

We want to host our own repositories in our Company. We need LDAP support especially with Groups. So I want that User from Group A can't access Projects of Group B. Not even Read it, if it is not ...
2
votes
1answer
712 views

Specify a Singleton service in a WCF self hosted service

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 ...
2
votes
2answers
559 views

A SelfHosted WCF Service over Basic HTTP Binding doesn't support more than 1000 concurrent requests

I have self hosted a WCF Service over BasicHttpBinding consumed by an ASMX Client. I'm simulating a concurrent user load of 1200 users. The service method takes a string parameter and returns a ...
2
votes
2answers
401 views

Workflow Service host not publishing Metadata

Still hacking away with extreme persistence at WF services hosted outside of IIS. I'm now having issues with my WF service publishing metadata. Can someone take a look at my code and see what step I'm ...
2
votes
1answer
894 views

What are the benefits for several servicehosts? Does one ServiceHost support several simultaneous connections on one endpoint?

I'm thinking of self-hosting my WCF service instead of using IIS. A big question for me is whether I need to instantiate multiple servicehosts as IIS does or one wil be enough. Do muptiple ...
2
votes
2answers
479 views

Synchronization problems with Monitor class in WCF service

I have a self-hosted WCF service and I'm having the following problem: 15 minutes after creating the instance of the service TryEnter calls in operation contract methods constantly return false, but ...
2
votes
3answers
4k views

WCF self-hosted service with transport security (Authentication failed because the remote party has closed the transport stream.)

I have a self-hosted service that I want to add transport security to. I've set WSHttpBinding.SecurityMode to Transport and the ClientCredentialType to HttpClientCredentialType.None. I've created a ...
1
vote
1answer
30 views

Howto serve DNS in a LAN in order to share a local Web app?

When I develop new Webapps I generally edit /etc/hosts and add the name of my new project say "greptweet" to the right of 127.0.0.1 localhost.localdomain and then goto http://greptweet which is ...
1
vote
1answer
90 views

Using MVC routing engine from a self hosted dll (outside asp.net)?

I'm using WCF Web API to create a self-hosted/InProcess REST Service (HttpServiceHost) that the client app will use. All the examples for the web api use ASP.Net routing engine. Would it be possible ...
1
vote
1answer
145 views

.NET WCF RIA + Services; Can I have it all?

What I'd like to have is "regular" WCF service calls responding on my root URL as well as the regular RIA stuff. Seems simple, but is turning out to be a bit of a pain. The RIA stuff works including ...
1
vote
1answer
74 views

How do I _properly_ serve an XAP file from a self-hosted WCF service?

I have myself a self-hosted WCF server setup, which serves a clientaccesspolicy.xml and an index.htm which is just points to my xap (accessible via app.xap). I'm currently serving them via the ...
1
vote
4answers
541 views

Which build of Cassini should I choose for production? There are 8 public builds from 5 different authors

I found several versions of an IIS-free Cassini webserver built by Microsoft. I'd use it but I'm unsure of which one is best, since there are many forks/builds: the original dmitryr's v3 (with ...
1
vote
1answer
542 views

Porting WCF from self-hosting to IIS/AppFabric hosting

I have a WCF that has a TCP, HTTP and Mex binding in a self-hosted file, and everything works great. However, and I want to migrate it over to AppFabric, and keep the same bindings, but I'm having a ...
1
vote
2answers
122 views

How do C self-hosts itself?

Anyone knows the complete chain of operations from .c source code to finally an executable .exe? I've downloaded the source of gcc,and found its c-parser.y is also written in c: extdef: fndef ...
1
vote
1answer
855 views

WCF Service behind firewall - how to set up port forwarding?

I'm just getting into WCF programming. I've set up a self-hosted test web service on my work computer, which is behind a firewall; it's at http://localhost:8000/MyTestService. I can access the ...
1
vote
1answer
638 views

Self hosting WCF inside WPF

Thanks to Kent Boogart's answer everything is right now. Thank you very much for all answers! Hello, I need to self host a WCF service inside WPF gui. I'm using ServiceHost. But I still can't ...
1
vote
1answer
290 views

Simple self-hosted website monitoring

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 :)). At the ...
1
vote
1answer
1k views

Self hosted WCF ServiceHost/WebServiceHost Concurrency/Peformance Design Options (.NET 3.5)

So I'll be providing a few functions via a self hosted (in a WindowsService) WebServiceHost (not sure how to process HTTP GET/POST with ServiceHost), one of which may be called a large amount of the ...
1
vote
2answers
711 views

ServiceHost's conflict on address when unit tested

I have a small WCF hosting engine that I am writing that will dynamically create ServiceHosts based on the .config file. The general idea is to allow us to remove existing services, as well as add new ...
1
vote
2answers
1k views

Connecting Silverlight app to Self hosted WCF service

I've created a WCF service that is running on 192.168.0.199:87. The service works without a issue. However when I create a silverlight app to consume this service on my dev pc in VS I am getting the ...
0
votes
0answers
30 views

How many users per CPU core to keep my website fast? [closed]

I'm building a social network type of website, and I am going to be setting up hosting servers for it to run on, I'm just wondering what the number of users per CPU core is recommended to keep my ...
0
votes
1answer
76 views

Impersonation using a self-hosted WCF WebServiceHost gets 'An operations error occurred.' error

So I have been banging my head on this one. I have a self hosted WCF service: var webServiceHost = new WebServiceHost(helloWorld); webServiceHost.Authorization.ImpersonateCallerForAllOperations = ...
0
votes
1answer
54 views

SugarCRM community faststack version - share running a WP Platform together

My machine already installed SugarCRM Community FastStack version. I already open port 80, ppl outside the network able to access to the CRM, without any problem. This is the link from outsider ...
0
votes
0answers
98 views

How do I register routes for a WCF REST service self-hosted in a Windows Service?

I've done my fair amount of searching and came up with 0 examples of registering routes for a self-hosted WCF service. All samples and tutorials assume IIS hosting with route registration via ...
0
votes
1answer
51 views

What hosting method can be used for a WCF service to prevent multiple service start?

I'm developing a Client-Server Application which moderate Wireless Access Point. I want change Server Application to a service with WCF. What hosting method can be used? Service should run one time. ...
0
votes
1answer
262 views

Self Hosting netTcpBinding Service in Application_Start

Heres the background -- I want to self-host a WCF service implementing netTcpBinding and it has to be compatible with Windows Server 2003 / IIS6. I am trying to see if its possible to self-host ...
0
votes
0answers
99 views

Self-hosted WCF within Windows Service

I would like to know, if I need to generate client proxy for self-hosted WCF within Windows Form? Basically what I'm trying to do is, post Html form to WCF operation. I have checked WCFClientTest to ...
0
votes
0answers
64 views

What self hosted image hosting php scripts exist that provide an upload API similar to Imgur?

Would like to use the iPhone app Picup with a webapp to upload photos onto our own server, rather than use the default imgur
0
votes
0answers
164 views

WCF Self Hosting timeout

I have a Unity based C# WPF application that has a Module that communicates to a WCF based project within the same solution. The WCF dll works if i use the WCF test host make it an active service, ...
0
votes
1answer
116 views

Sessions in self-hosted WCF services

prompt please how can I use session in self hosted WCF? I need to implement ASP.NET like sessions (client identification and possibly data sharing). Is there any native way to do so in WCF or I have ...
0
votes
0answers
64 views

Activation service for a WCF selfhosting

I have a self hosting NT service and I can host services running in their own app domain with remote management etc. My issue is that my WCF self hosting NT service reads each service config file ...
0
votes
2answers
71 views

Self-hosted javascript editor using `for … in`?

I am thinking of one thing, since for(var i in obj) can pretty much enumerate anything inside a DOM or javascript object, so are there any selfhosted javascript editor that use for ... in to offer ...
0
votes
2answers
340 views

How to throw FaultException from self hosting wcf service?

I'm planning to host the service in windows service, but I'm thinking about the problem described in the title. Anyone had similar issue? Thanks Update The problem is that when you throw an ...
0
votes
1answer
436 views

Self hosting RIA Services in WPF executable & Referencing SL RIA Class Library

I want to use a RIA Services in WPF (Please hear me out before voting to close this :)). I learned about being able to use RIA Services for other clients. Also looked at the sample progam (the famous ...
0
votes
2answers
325 views

Starting self hosted WCF services on demand

Is it possible to start self hosted WCF services on demand? I see two options to accomplish this: Insert a listener in the self hosted WCF's web server and spin up a service host when a request for ...
0
votes
2answers
492 views

Locally Hosted WCF service - I don't want clients to have to authenticate

I have a self-hosted WCF service that is hosted by a desktop application. I can successfully connect to the service locally on my PC, but I can't use the service remotely, at least without providing ...
0
votes
2answers
198 views

Hosting WCF Services in Multiple Windows Services in the Same Process

I am building a windows service to host a WCF service, and I am using : var ServicesToRun = new ServiceBase[] { new Service_1_Host() }; ServiceBase.Run(ServicesToRun); My question is: ...
0
votes
1answer
604 views

Using web.config in a Self-Hosted c# WCF console app (setting MaxStringContentLength server side)

I have a simple self hosted WCF Console windows app, and I can connect fine from my client. I have a problem though sending large XML strings through to the server. I get the following error: ...
0
votes
2answers
216 views

WCF duplex communication

I need to re-write an existing client-server application. The existing application communicate using socket, I have to convert it into WCF. At server side I need to Monitor connected clients ...
0
votes
1answer
977 views

Self-hosted WCF service has HttpContext.Current == null despite the fact that AspnetCompability allowed

I'm using self-hosted (programmatically hosted) WCF-service in Web Application. I placed the [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] attribute ...
0
votes
1answer
244 views

RIA DomainService Hosting

i have an application, in which i have an EntityModel. i have a DomainService which talks to this EntityModel. i am using simple LinqToEntitiesDomainService for this application, not .svc extension ...

1 2