Tagged Questions
0
votes
1answer
15 views
Multiple request body parameters error in WCF client
I'm still new to WCF, so I'm not sure what I'm missing here.
I have a desktop application that needs to call a WCF service. Ideally the WCF service should be able to be called through a browser or ...
1
vote
0answers
18 views
Caching WCF Method .NET 3.5
I am facing a issue and was wondering if there is any solution to overcome this. The application is a WCF Service developed in .NET 3.5.
Let's say it has 5 functions: A, B, C, D and E.
Now, if I ...
0
votes
1answer
56 views
System.ServiceModel.ServiceHost.AddServiceEndpoint constructor causes the Exception to be thrown
I have a piece of code that caused an Exception. The exception was only thrown once and the scenario cannot be replicated. But I still want to make sense of this error.
Here is the code:
1 Dim myHost ...
0
votes
1answer
47 views
WCF's ServiceHost constructor in .NET 3.5
I have an application that uses WCF and is build against .NET 3.5.
I can't make sense of the following call:
Dim myHost As ServiceHost = New ServiceHost(New ClientService())
where ClientService ...
0
votes
1answer
67 views
Create MessageHeader without serializing XML Content
I'm trying to add a timestamp to the headers of my request to a 3th party Java webservice that looks like :
<wsu:Timestamp ...
0
votes
2answers
114 views
how to implement caching in WCF REST web service in .net 3.5
I've created a custom WCF Rest web service in a sharepoint site which uses .net 3.5 only not 4
, I found that Question , marc_s talked about REST Starter Kit but I found that it's no longer supported ...
0
votes
0answers
143 views
Using same UriTemplate attribute for POST and GET operations WCF REST C#
I am getting a "Method not allowed." error from my WCF service when invoking a GET operation. I know why this is happening but can't understand why it is not allowed. I guess I might be doing ...
0
votes
2answers
111 views
Configure ASP.Net client for 3th party webservice secured with certificate & signature
I'm trying to create a client for a 3th party webservice from scratch.
I have a working solution in soapUI which uses a certificate with signatures like in the image below.
I'm very new to SOA ...
-1
votes
1answer
55 views
UNC FileShare Authentication for WCF Web Service?
We have a WCF Service which will Upload and Download Documents to and from FileShare respectively.
The client application will pass a FileShareLocation and FileName inthe request.
But we are getting ...
8
votes
4answers
359 views
WCF Binding to HTTPS
I understand that there are many posts about this, and I've been through all of them that came up on my search and implemented everything that was mentioned. I have a WCF web service that works on my ...
0
votes
0answers
88 views
WCF issue while deploying on IIS 7
We are hosting WCF services and using .Net 3.5 framework. Everything was working ok on Visual Studio server. But trying to deploy on IIS 7, we get the following error:
The CLR type ...
0
votes
0answers
34 views
How to set service parameters to be the same on client and server?
I have version mismatch between client and WCF service on server.
How can I set service parameters to be the same on client and server? I know I should set message version, address and encoding, but ...
1
vote
1answer
186 views
WCF - Error: The message version of the outgoing message (Soap12 (http://www.w3.org/2003/05/soap-envelope)
1) I have WCF service deployed on local IIS 5.1:
Interface:
[OperationContract(Action = Service.RequestAction, ReplyAction = Service.ReplyAction)]
Message SetData(Message requestXml);
...
0
votes
1answer
181 views
WCF restful service, server did not provide a meaningful reply
I am creating a restful service using WCF, I keep getting the error:
The server did not provide a meaningful reply; this might be caused by a contract mismatch, a premature session shutdown or an ...
0
votes
2answers
57 views
What is the best way to process XML sent to WCF 3.5
I have to develop a WCF application in 3.5. The input will be sent in the form of XML and the response would be sent in the form of XML as well. A ASP.NET application will be consuming the WCF and ...
0
votes
0answers
84 views
EmitDefaultValue=false doesn't work for WCF consumed by ASP.NET
I have developed a WCF application in .NET 3.5 and a particular DataMember having EmitDefaultValue=false is still getting returned inspite of null value.
I had developed a similar WCF application ...
2
votes
1answer
135 views
How to implement .NET code library as a service layer - sharing same BL/CRUD between several applications
Setting: I'm developing an intranet tool set for my department, the main point of which is to centrally manage data quality and accessibility, but also to automate and scale some partial-processes.
...
0
votes
0answers
212 views
Show Progress Bar for task of one Process in another Process
I have a system with the following components:
Process A - A console app that acts as a service - Services clients through WCF
Process B - A console app that acts as a service - Services clients ...
0
votes
1answer
134 views
Total Async in Web Applications for ASP.NET 3.5
I've been informing myself about the async capabilities of .net 3.5
Ive found a very good article on this : http://msdn.microsoft.com/en-us/magazine/cc163725.aspx
Now, the thing is, all these methods ...
0
votes
1answer
204 views
How to call an asmx service which needs authorization from WCF in .NET 3.5
How can I call an asmx service which needs windows identity authorization from WCF in .NET 3.5? We are limited to .NET 3.5 framework. I have the credentials, but not sure how to implement this in C# ...
0
votes
0answers
127 views
C# WCF service without authentication => Messagesecurityexception 403
I am currently installing an application on a Win2k8 server who is registered in an AD domain.
I have two WCF service running.
If I use IP on my binding configuration, the communication is OK. But ...
3
votes
0answers
60 views
How to get endpoint address in UserNamePasswordValidator in .NET 3.5?
I need to acccess endpoint address in custom UserNamePasswordValidator in .NET 3.5.
I am settting
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
and
...
0
votes
3answers
127 views
New function added in WCF service is not reflecting on adding the web reference
I am trying to add a web reference to a WCF service. On browsing to that service through the project explorer, the new function added to that service is not getting listed.
This is my code in the ...
1
vote
1answer
34 views
Can I remove the serviceModel tag from my .config file?
My app.config contains the following tags
<system.serviceModel>
<bindings />
<client />
</system.serviceModel>
When I remove them the application works on machines ...
0
votes
1answer
232 views
Consume Json WCF service with .Net 3.5 client
I'm having some issues accessing a WCF Web service that returns Json. Usign the WCF Test Client, I figured what config to use but this config is for .Net 4.0 and my client app is in .Net 3.5 (with no ...
0
votes
1answer
167 views
WCF over Named Pipes throws exception in .NET4, works in 3.5
I'm trying to run this example derived from this blog entry on
WCF Tutorial - Basic Interprocess Communication
If I run the server code in .NET4, it throws the following exception:
First-chance ...
0
votes
1answer
168 views
wcf configuration issues (error)
Configuration of WCF has been a bane recently. I have the following configuration:
<system.serviceModel>
<!-- Set up Custom Behaviors -->
<behaviors>
...
0
votes
1answer
370 views
How can I bypass the maximum nametable character count quota (16384) with my custom binding?
I am recieving the below CommunicationException from a WCF service call. I understand that according to this answer, I need to set the TextMessageEncodingBindingElement.ReaderQuotas object, but it ...
0
votes
1answer
267 views
Converting .asmx to WCF
I'm developing a .NET 3.5 webservice using .asmx pages, but the fact that i cant use optional parameters in the GET and POST requests is making me think
in switch my application to WCF. But I didnt ...
0
votes
1answer
233 views
WCF Service Method Overloading issue - Help needed
I've a WCF web service method (over 3.5 NET Framework) which needs to be refactored to use optional input parameters. Mi investigation concluded optional parameteres as a concept is being introduced ...
0
votes
1answer
1k views
C# WCF REST - How do you use JSON.Net serializer instead of the default DataContractSerializer?
In .NET 3.5, Is it possible to override the default DataContractJsonSerializer and use the JSON.net serializer instead?
NOTE: We do not want to use attributes on the class
0
votes
2answers
2k views
Error: Cannot process the message because the content type 'application/json; charset=utf-8 was not the expected type
I am trying to invoke WCF service using jQuery and getting this error:
"Cannot process the message because the content type
'application/json; charset=utf-8' was not the expected type ...
0
votes
1answer
91 views
Jquery WCF error processing
Hi How to correct processing WCF error on client side.
I did my WCF service like it
[OperationContract]
[FaultContract(typeof(MyError))]
[WebInvoke(BodyStyle = ...
0
votes
1answer
191 views
How to deploy a wcf service to an existing site
I have a web site hosted in IIS (http://machine.domain.com) and in a separate project, I have written a simple service with 1 method (maintains no state and just takes/returns a string).
I'd like to ...
1
vote
0answers
129 views
WCF service proxy times out on Close
I have a WCF client app that creates a new proxy instance for each call. I call Close() on the previous instance to ensure that the connection is closed, but it always times out after 1 minutes, which ...
0
votes
1answer
483 views
Not getting REST WCF BadRequest error message in .NET 3.5
I have a REST WCF application developed in .NET 3.5.
To check for invalid request url like say for example missing parameters, etc. I am using a class which implements the "IErrorHandler" interface. ...
2
votes
2answers
313 views
Throwing exception from WCF Service without faulting
When throwing a FaultException from a WCF service, is there a way it can be thrown without faulting the actual connection? I'm looking to prevent an action for a particular method, but don't want to ...
0
votes
3answers
590 views
How to remove VsDebuggerCausalityData header section from SOAP request in WCF
I've added
<system.diagnostics>
<switches>
<add name="Remote.Disable" value="1" />
</switches>
</system.diagnostics>
to my app.config, but the SOAP client ...
3
votes
2answers
40 views
References between versions . NET Framework
I have an assembly written in C # compiled with version 3.5 that uses WCF. This library must be used by another application written in vb.net an outside firm that compiled with version 2.0 .
Is it ...
2
votes
1answer
771 views
IIS WCF Service not using app.config
I have a .NET 3.5 WCF service hosted in IIS. The project service library has an app.config file with some configuration settings (Database connection strings, etc.). I deploy the project via a website ...
2
votes
1answer
487 views
WCF Service - Array Size limitations
I have a WCF service method I've implemented that gets passed an IEnumerable
[OperationContract]
List<Item> GetItems(DateTime sinceDate, IEnumerable<Guid> idList);
The method ...
1
vote
2answers
148 views
C# .NET 3.5 not copying stream when using basic examples
I've been trying to do a basic copy from a source stream to a destination stream. I've been using many questions previously asked as good examples for implementation such as How do I save a stream to ...
0
votes
3answers
963 views
Internal Server Error when passing parameters to WCF service
I'm messing about with my first WCF service and I am having problems passing parameters.
My jQuery ajax call looks like this...
$.ajax({
type : 'POST',
async : true,
url : ...
1
vote
0answers
214 views
Sharepoint 2010 Service account for using the Object model
I have created a facade web service for Sharepoint 2010 which performs some functions using the Object model (.NET 3.5 & WCF).
I'm just wondering what the minimum permissions I need to give the ...
1
vote
1answer
443 views
publishing WCF Service .NET 3.5 on IIS
I have a problem with publishing WCF Service on IIS. I think - the problem is in configuration(web.config).
This my serviceModel section:
<system.serviceModel>
<services>
...
0
votes
2answers
1k views
WCF net.tcp transport security - how to disable server certificate validation on the client
I'm doing some testing with WCF and we currently have the following Server setup (simplified config):
<netTcpBinding>
<binding name="netTcp" ... >
<security mode="Transport">
...
1
vote
2answers
2k views
wsHttpBinding on WCF service on IIS7 with windows auth only
Have a hosted WCF service, .net 3.5sp1 on IIS7, with a domain account running the application pool. I want windows authentication, wsHttpBinding, and anonymous turned off. Removed the mex endpoint, ...
0
votes
2answers
100 views
What is the default port for an EndpointAddress?
I'm debugging Somebody Else's Code... they have created an EndpointAddress using the server name, but no port specified, i.e. http://server/service or net.tcp://server/service.
What port number is ...
2
votes
1answer
852 views
VB6 software consuming WCF web services. Endpoints in App.config. Err VB6 has no App.config
We have an EPOS system that is built in VB6. A client is using Microsoft Dynamics AX as a CRM system. A 3rd party has created the AX implementation for our client and they've exposed a set of WCF web ...
0
votes
1answer
314 views
How do I make my wcf services available for particular user?
I'm using CustomMembershipProvider to validate the user for my WCF service. User will get a prompt for his credentials once he access the service.
Note: I thought I could get the username and ...


