WCF - There was no endpoint listening at net.tcp://myserver:9000/SearchQueryService/Querier.svc that could accept the message.
I have the net.tcp protocol enabled on the IIS application
Windows firewall is off
The net.tcp binding is set to port 9000 for the entire IIS application.
My web.config is very standard:
<system.serviceMode...
I have a self-hosted (console app for the time being) WCF application that needs to be hosted on a machine that is separate from the clients - So there is no security link via a Windows Domain between the server and clients.
What options are there for using Message-level security with this set-up? A colleague has told me that the commun...
I have done a fair amount of searches, but couldn't find any thing regarding this topic.
We have a telnet server that does data processing. Logging in telnet has overhead (time), so what I want to do is have a service (WCF) that spawns n number connections and act as the broker between applications/requests and the server.
All of th...
I need to add a .svc file to WCF Service Library I have added to a solution (This doesn't have the .svc file). If I specify this file through ad new item (eg test.svc), this is an installer file not the WCF file.
How can I add this file to my project?
Thanks
...
It is well-known how to create a "contract first" WCF service where the first step is to define the ServiceContracts and DataContracts.
How should one approach WCF development if one has the "schema first". In other words, an XSD schema has been independently developed. The service may not deviate from the schema that is already defined...
I have troubles injecting a WCF ServiceClient to a Controller's constructor using StructureMap.
I followed Phil Haack's example on DI in ASP.NET MVC
The WCF service I have is called LogService. It implements ILogService.
The StructureMap.config looks like this:
<?xml version="1.0" encoding="utf-8" ?>
<StructureMap>
<Assembly Name="Ya...
I'm experimenting with WCF RESTful web services and I'm having a problem with Auto-Implemented properties.
I have a class called DeviceDescriptor, defined as follows:
public class DeviceDescriptor
{
public string DeviceId { get; set; }
public string DisplayName { get; set; }
}
I have a RESTful WCF service that is supposed to ...
Hi.
I need to consume a WCF service based on a (preferably single) wsdl file.
The environment is VS-2008 (sp1), and I will be using a customized "Add Service Reference" macro to generate an error handling proxy. I want to be able to do this, by supplying a WSDL file that I get from the service provider (I do not want to supply a host ...
Background
I have a BLL DLL that uses NHibernate. I share the same BLL between a client application and the WCF service (even though the client runs on another machine).
I can successfully use either SqlServerCe or SqlServer driver with the BLL with the client application but can only use the SqlServer driver for the WCF.
If I change...
The WCF service is deployed on different machine.
Im able to get the http://MyServer/MYService.svc/jsdebug file by giving
<identity>
<dns value="ServerName and the portnumber"/>
And I'm able to invoke the service method using javascript.
After invoking the MyMethod.
I get this error in the javascript --> The server ...
How can I receive a message from one client and Callback to all Clients connected to the Host to send that message?
...
Hello everyone I am trying to consume a remote svc webservice. I created the proxy class using svcutil.exe and after i added that class to my console application it yields an error "An unsecured error or incorrectly secured fault was received from the other party. See the inner fault exception for the fault code and detail. Exception Mes...
Can I get RESTful WCF services working in my sharepoint site?
...
I'm implementing a server component that needs to expose a web-service interface, but there is no application need for it to run with ASP.NET on IIS. Is there a straightforward way to implement Web Services in .NET without ASP.NET/IIS? (I'm using .NET 3.5 / C# 3.0)
...
I am using WCF to access some web services and I'm trying to determine which one of a handful is the most efficient. I enabled message logging to try and get some more info about how well they function but for some reason the .svclog file doesn't seem to be generating, I'm stumped. as far as i can tell everything is set up, ive enabled m...
I've got a WCF service, hosted in IIS, which is built in Visual Studio. The WCF service library references a few other assemblies, which are part of the same Visual Studio solution.
I deploy all the assemblies to the GAC, then start a service client, and see it fail trying to resolve one of the referenced client assemblies. I've added ...
Hi all,
I've a created a simple WCF REST service which I intend to consume from an iPhone application.
The service works fine but now I'd like to secure it.
In my test enviornment (IIS on Windows 7) I already setup a self signed certificate using makecert.exe.
I also overridden the validate() method so I can use a custom username & pa...
I am new to web service,
The database access should be through Web Services using ADO.NET to access stored procedures.
any ideas ?
...
Hi.
I have a stylistic question, really.
I am wondering which is the best, fastest, most "iterative" way
to generate client HTML?
The road I am currently traveling is to use WCF (or a DLL) to
expose a method that can be called depending on the page being
loaded:
private AuthClient auth = null;
PageLoad {
auth = new AuthClient...
Hi,
I have be wrestling with this one for some time.
I have an class Dog
This has the properties Height, Weight, Sex and Breed.
I know traditionally the way to handle the fact that you cannot change the Sex and Breed after creation is to make them read only propeties and have them set through the constructor.
This falls over though ...