I have a wcf web service and want to deploy that to my sharepoint solution.
in IIS I have created a virtual directory that points to the webservice in C:\Inetpub\wwwroot\wss\VirtualDirectories\80_wcf. the web service was copied across from the 12 hive to this directory.
is there a nicer way of just deploying the web service and not hav...
I am completely new to WCF. I was pretty sure it was going to work like regular web services - and I'm also pretty sure I was doing that wrong too, but now I want to make sure I'm doing it right.
Our ASP.Net app connects to the WCF service across the internet. I have impletemented basic security and using SSL. It is working, but slower ...
I am using WCF to send some Linq objects across the wire. I want to log message size either using Message logging or tracing. I don't however want, or have the ability to use the config file to set this up. I am struggling to figure out how to do this programatically. I don't care if this happens at the host of client. I control both.
D...
I intermittently get the following exception in my .Net WCF Service.
"The HTTP service located at http://MyServer/TestWCF/MyService.svc is too busy."
Am I missing something here?
Am using basic http binding and have enabled WCF throttling.
<basicHttpBinding>
<binding name="BasicHttpBinding_MyService" maxReceivedMessageSize="21...
I have a standalone (non-IIS) WCF service that - besides the services - provides some simple HTML pages via a WebServiceHost.
When I enter http://localhost:1234/SomeRandomWords as an URL into the browser I get a default error page that says
Dienst
Es wurde kein Endpunkt gefunden
(Translated to english: Service / Endpoint not found)
...
Analysing log files I've noticed that ~1% of service calls ended with TimeoutException on the Silverlight client side.
The services (wcf) are quite simple and do not perform long computations.
According the log all calls to the services are always processed in less that 1 sec (even when TimeoutException is occurred on the client!), so it...
More WCF woes... :)
All my workflows implement the same 3 methods. After a lot of copy and paste, I decided to make them inherit from the same interface:
[ServiceContract(Namespace = "http://schema.company.com/messages/")]
public interface IBasicContract<TRequest, TResponse>
where TRequest : class
where TResponse : class
{
[Opera...
I'm looking for any beyond basic resources that can help me to be proficient with WCF.
I found Microsoft Virtual Labs that are pretty good but I'm looking for more. I'd really appreciate if you point me to more resources.
Thanks a lot.
...
how can i add IOperationBehavior programmatically when running on iis ?
not on custom wcf host.
thanks
Ali TAKAVCI
...
Im trying to consume a Service with an WCF Console Application. But the only thing i get as a Response is "The remote server returned an unexpected response: (400) Bad Request."
The Service is configurated with the following options:
<services>
<service name="TryOut.BasicService" behaviorConfiguration="NicksBasicBehavior">
<host>...
<system.serviceModel>
<services>
<service name="SUR.Core.Service.Implementation.SURDirectoryService" behaviorConfiguration="DefaultServiceBehavior">
<host>
<baseAddresses>
<add baseAddress="net.tcp://127.0.0.1:8731/ISURDirectoryService"/>
</baseAddresses>
</host>
<endpoint...
I have a WCF Service hosted in IIS/ASP.NET that accepts HTTP Post (not form post) of serialized objects.
If the client sends malformed requests (eg they're not serializing the object correctly) I'd like to log the message sent up.
We're already using ELMAH to capture unhandled exceptions, so simply attaching the post data would be t...
I've created a WCF service and added it to an existing Silverlight application that I am working on.
When I run the silverlight application in debug mode it fails when I reference the WCF web service.
Unrecognized element '' in service reference configuration. Note that only a subset of the Windows Communication Foundation configu...
Hi there,
i have a few questions about the below config file:
<system.serviceModel>
<bindings />
<services>
<service behaviorConfiguration="WcfReporting.Service1Behavior"
name="WcfReporting.Service1">
<endpoint address=""
binding="basicHttpBinding" bindingConfiguration=""
cont...
I have created a WCF application (the one with .svc file). When I build this project, only bunch of DLLs are created but to be able to host it in IIS, I have to use publish option (right click the project and publish). This generates DLLs, copies app.config and .svc file. This bunch now can be hosted in IIS.
I want Visual studio to publ...
Hello everyone,
i'm investigating Nhibernate, jquery and WCF at the same time for a in-house project, and i was wondering why i couldn't have "clean" data classes.
From what i've read, a very good point in the nhibernate world is that my business class won't be linked to the framework.
I won't have
<SaveInTable("Thingie")> _
Public C...
I have exposed my REST API service using WCF Service Library and started by console application. when I try to consume the service from client ( another console application), I am getting "Bad Request" exception.
please see the code below :-
[ServiceContract(Namespace = "http://www.test.com/Enrollment")]
public interface IEnrollService...
All,
I have a WCF web service (let's called service "B") hosted under IIS using a service account (VM, Windows 2003 SP2). The service exposes an endpoint that use WSHttpBinding with the default values except for maxReceivedMessageSize, maxBufferPoolSize, maxBufferSize and some of the time outs that have been increased.
The web service...
I need to implement Integrated Windows Authentication for a WCF service hosted on IIS 6.0 (Windows Server 2003) without certificates. The requirement is to simply authenticate Windows Credentials of users within a particular Active Directory group when they hit the service. The Framework version being used is 3.0.
WCF Configuration:
Th...
I am calling a WCF Service using AJAX.NET and wanted to know if the following is possible.
e.g at the moment I have something like the following
AJAX.NET call in Page..
ITeaMaker.MakeCupOfTea(onMakeCupOfTeaSuccess, onMakeCupOfTeaError);
WCF..
public Tea MakeCupOfTea()
{
FillKettle();
BoilKettle();
PutInTeaBag();
PourWa...