The webservicehost tag has no wiki summary.
0
votes
0answers
27 views
WebServiceHost connection aging, i.e. how to close incoming connections to WebServiceHost
My service runs in multiple worker role instances in Azure. I use WebServiceHost to listen for incoming client requests. I try to close some of the incoming connections after upgrade/restart of an ...
1
vote
1answer
84 views
How to implement WebServiceHost Authentication?
I'm aware that the authentication on the webservicehost class does not adhere fully to authentication standards (returns 403 forbidden rather than prompting for another set of credentials when the ...
0
votes
0answers
58 views
Self-hosted webservice (using WebServiceHost) unstable; dies with no error messages
I am using the WebServiceHost in several applications to create/host a webservice without the use of a full-blown webserver (IIS/apache etc).
This works well, sort of. In the previous applications I ...
0
votes
2answers
56 views
Convert WebServiceHost to WCF Service Application
I have a working console application where all the adresses and configuration are in a config file. But when I try to move this code to a WCF Service Application i get all kinds of errors.
class ...
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 ...
0
votes
2answers
69 views
Hosting service for PHP REST API and scheduled service
I have implemented REST API using PHP. This API access to MySQL Database.
I was looking for hosting services but I'm not sure where to start, majority of this type of services is referring to Web ...
0
votes
2answers
482 views
Getting a POST endpoint to work in self-hosted (WebServiceHost) C# webservice?
So, I have been messing around with webservices for a while now, and I keep getting back to some basics, that I never seem to get right.
Question 1:
When using a WebServiceHost in .NET/C#, you can ...
0
votes
1answer
448 views
Is it possible to instantiate a WebServiceHost via an instance of the sevice type, without a parameterless constructor?
I am trying to create self-hosted System.ServiceModel.Web.WebServiceHost (.NET 4), however I am running into an issue with the constructor. There are three options:
WebServiceHost() a parameterless ...
0
votes
1answer
442 views
ChannelFactory with WebHttpBinding always POSTs while executing a ServiceContract OperationContract
I have a service that is hosted via WebServiceHost and I need to delegate some of the calls to other REST services on the web.
I built a ClientBase concrete class to handle this. The flow looks like ...
1
vote
1answer
159 views
WebServiceHost inside VSTO addin
I'm about developing an application level VSTO addin that consists, among others, of a UI with an embedded Webbrowser control and a simple REST-style service, based upon WCF's WebServiceHost. The ...
3
votes
2answers
3k views
How to override WebServiceHostFactory MaxReceivedMessageSize?
There are a lot of similar questions out there, but I have tried every solution in every one of them to no avail.
We have a web service that initialises with WebServiceHostFactory, but if any more ...
2
votes
1answer
103 views
IoC Containers, WCF & ServiceHostFactories
I have been reading about IoC lately, and I think it would definitely come in handy in the WCF web-service I am developing. However, it seems that Ninject, StructureMap and Spring.Net (I only did ...
1
vote
3answers
476 views
How do I get the WSDL/description so that I can add WebReference in another project?
I know how to add a WebReference in Visual Studio, easy enough.
I also know how to create a normal ASP.NET Web Service project, but thats not what I am doing here.
So, the WebService I have running ...