0
votes
0answers
7 views

Prism module system from within WCF service?

Can you boostrap a Prism module system from within the WCF service? Because no matter what I do my MEF dependencies are not being fulfilled. E.g.: This is my WCF service implementation public class ...
0
votes
0answers
18 views

Self-hosted WCF: automatically create service hosts and enable dependency injection with Autofac

I'm working on a Windows Service with a number of self-hosted WCF services. I'm using Autofac for DI/IoC. WCF services and endpoints are set up in app.config, and by enumerating the configured ...
0
votes
0answers
23 views

unable to instantiate client WCF with faults contracts

I have a problem creating a client for a WCF service when there's a fault contract. When i put the fault contract, the client can not instantiate nothing,it can see only WPCILServiceException object ...
0
votes
0answers
27 views

Suggestion for architectural design

We are developing an application where WCF plays major role. We have WCF services which calls other services/methods to fetch data and give back to us. Following are the components: Windows service ...
0
votes
0answers
34 views

XML return from WCF application

i am using WCF to get data from database from my web application using .net framework. in my WCF application code, requirement is to get data in XML format in my web application code, requirement is ...
-5
votes
0answers
17 views

.NET 4.5 WebApi or WCF Services. When?

I am not clear when you need to use the WebAPI or WCF services. What are the best practices? They can you clarify the differences?
0
votes
2answers
16 views

Mixed transports in NServiceBus 4.0

I'm currently working on a project that combines Java and .NET systems. The communication between the two is from Java over ActiveMQ to .NET MSMQ using BizTalk as a translator. I was wondering if we ...
0
votes
1answer
15 views

Add scope and extension to endpoint in code

I have a discovery endpoint for my WCF service. In my discovery client I need to search for all services of specific type. For this purpose I'm thinking to use Scope feature and WCF service metadata ...
1
vote
2answers
26 views

Using WCF, how can I make sure only trusted assemblies call my service?

I have a simple service contract, defined as: [ServiceContact] public interface IEcho { [OperationContract] void Hello(string value); } which is implemented in a local WCF service (accessed ...
0
votes
0answers
15 views

Java client and InstanceContextMode

I have an application consisting of WCF service and several clients, all made in .NET (C#). Now I need to add another client, it has to be in Java, and I don't have much experience there. So I am ...
0
votes
0answers
13 views

How to run different versions of a database-driven WPF client concurrently in .NET?

We have a data-intensive .NET WPF application which in its current form directly accesses a shared MS SQL database. The client continuously collects large amounts of data during production and ...
1
vote
2answers
35 views

WCF service runs in Debug mode but not in Release

I've come up against a weird problem: The WCF web service I'm building runs in debug mode but not in release. I've got a simple Hello web method in the web service that just returns a string and does ...
0
votes
0answers
19 views

IIS 7.0 WCF Web Config Error

I created WCF Service Application in Visual Studio, copied the DLL's to IIS and all was working fine - I could connect to the service with a client. I have made changes to the Web config file to use ...
3
votes
1answer
69 views

How to exchange object between 2 .Net Application

I'm trying to exchange data between 2 .Net applications with c#. To exchange communication I followed this tutorial which introduces basic HTTP service and it works perfectly with String exchange. ...
2
votes
1answer
26 views

How to estimate maxReceivedMessageSize based on an uploaded file size

I have a requirement to upload a 1.5MB file. Given that this will be serialised to base64. What is a good way to estimate the value that I need to use in WCF's maxReceivedMessageSize setting ?
0
votes
1answer
43 views

How to throw the error to window service to restart

I am having MSMQ on windows 2008. Messages are available in private queue. I have one WCF subscriber (written in C#) which is installed as windows service. Now problem is that sometimes the WCF ...
0
votes
0answers
45 views

Forcing WCF to ignore config file, or sections of config file

I understand how to configure WCF programatically, but I'm wondering if there's a way to force a WCF service to always ignore the configuration file and/or to ignore parts of the configuration file. ...
0
votes
1answer
27 views

Expose few property of class at runtime in WCF service

I have a class for ex User class in WCF service, In that i have 10 properties like Fname, Lname, ServiceStatus, ErrorMessage etc. Now there is method in service who retrieve the user info by giving ...
0
votes
3answers
48 views

endMethod never called in TaskFactory<T>.FromAsync()

I have the following Silverlight code. Container container = new Container("http://localhost:8080/odata"); DataServiceQuery dsq = container.MyEntity; IEnumerable result = ...
0
votes
0answers
26 views

WCF EndpointNotFoundException

I am working on payment gateway, I did implemented on local and working fine but as soon I deploy on the live server following exception is occuring [SocketException (0x274c): A connection ...
0
votes
1answer
37 views

How to create a URI template in WCF?

I'm new to wcf services development. I have the following problem: I'm creating wcf-service with URI template like this: [OperationContract, WebGet(UriTemplate = ...
0
votes
1answer
37 views

Service Reference does not update with service on remote WinHost Site

My changes to a data transfer object on the server-side are not being reflected within the client's service reference. THIS ONLY OCCURS ON THE REMOTE SERVER. When I run the service locally, the ...
0
votes
1answer
27 views

Is it better to send Systrem.Drawing.Bitmap converted to bytes when using NetNamedPipeBinding?

I've got a WCF service which accepts an image as input (as System.Drawing.Bitmap). It is executing on the same machine and is using the NetNamedPipeBinding. Currently the service interface is defined ...
2
votes
2answers
38 views

Is there a way in Visual Studio 2012 to see an error log of the Update Service Reference operation

I've had a lot of issues with updating my service reference to my WCF service. I've had issues with third-party dll's not serializing correctly, and also issues with too many methods in the service. ...
0
votes
0answers
90 views

Visual Studio 2012 WCF service Reference.cs only has one class after adding a method to the service

I have a WCF service running in the 4.0 framework in VS2012. I added a method to my service and suddenly the service reference wouldn't update properly in another project. The Reference.cs file ...
-1
votes
0answers
52 views

Implementing a .NET application communicating with a bank's PKI service [closed]

I need to develop a .NET application communicating with a bank's PKI service. The PKI service enables bank customers to get and manage certificates for use in secure communications with the bank. ...
0
votes
0answers
25 views

WCF response time reduction

I had a 3rd party webservice. When i hit that using Soap UI respose time is just 800 milliseconds. But when i am running it through code e.g stopWatch.Start(); WCFSERV.ServiceCommitment[] ...
2
votes
0answers
38 views

WCF subscriber stops polling message from queue randomly

I am using wondows 2008 standard OS.we have private queue ,in that message is published by another application.And we have WCF subscriber to poll the message from private queue and deliver to another ...
2
votes
4answers
135 views

“Invalid or expired security context token” when running after a debugging restart

I have a WCF App that I am coding. I start and stop it several times as I change things and then run the service call again. Since I need session info I am using wsHttpBinding. Before I moved to ...
0
votes
0answers
29 views

Handle malformed xml soap messages in WCF

I'm getting malformed xml from a soap webservice that I have to use from WCF. It returns invalid xml characters into messages. Of course, WCF reports invalid xml exceptions when receiving message. I ...
0
votes
1answer
31 views

How does WCF instancing affect the context in which methods are called?

WPF Instancing: when set to per-call, does a new "instance" get created under the same process as the service. Meaning that if the call runs out of memory it will crash the service as well?
0
votes
1answer
26 views

How to host both application contract and web page (simple html page) in a WCF service?

I have a WCF service host that hosts the following service binding: http://localhost:2756/mywcfinterface (wshttpbinding) Now I mapped this internal binding to the following domain ...
0
votes
0answers
20 views

Exception of type 'System.ServiceModel.Diagnostics.PlainXmlWriter+MaxSizeExceededException' was thrown

I am getting this error in WCF. It just started in a service that I reinstalled. I didn't change any of the config settings. I've tried increasing maxSizeOfMessageToLog, I've tried commenting out ...
0
votes
1answer
51 views

Need expert advice for WCF Service programming

!--- I'm sorry if this post is redundant with some others, but the problem with my project seems to be resulting of my architecture, so I need general help. ---! I'm trying to configure a WCF Service ...
0
votes
0answers
28 views

Spring.Net scope=“request” + NHibernate ISession + WCF

I've got a project set up using WCF web services, Spring.Net and NHibernate. I'm using Spring for the dependency injection - this creates the Web Service implementation and all child dependencies, ...
-2
votes
0answers
32 views

car speed control using bluetooth-Hi can anyone pls give the source or full project [closed]

http://1000projects.org/car-speed-control-using-bluetooth-project.html reference. From this website only i came to know about this project kindly help me with source code in zip or any format
0
votes
1answer
26 views

WCF web service connect to Service Bus

At the moment we have a Java application that connect to a service bus which in turn connects to a DB2 database. What I want to do is to create a WCF web service in .NET that will connect to the ...
0
votes
0answers
45 views

Change propagation in N-Tier Entity Framework

Does N-Tier Entity Framework (http://ntieref.codeplex.com/) support change propagation to clients? I mean if there are 3 WPF clients and one of them adds a product, is it possible that the 2 other ...
0
votes
1answer
31 views

What does readerQuotas --> maxStringContentLength exactly refer to?

I have read on msdn that the attribute maxStringContentLength of the readerQuotas for a WCF client means: A positive integer that specifies the maximum characters allowed in XML element ...
0
votes
0answers
47 views

Sending GUID ksoap2 on Android and .NET Wcf service

I Have problem with send guid (in complex object) from android (by ksoap2) to wcf service. I implemented KvmSerializable and in this class have UUID. Implementation looks like that: public Object ...
0
votes
1answer
26 views

WCF: how to know if some request goes from localhost

Simple question: How to know if some request/call goes from localhost in the code below? Is it possible in fact? Thanks!! [AspNetCompatibilityRequirements(RequirementsMode = ...
1
vote
1answer
31 views

Protrobuf - Error : Timeout while inspecting metadata

I am receiving the following exception "Timeout while inspecting metadata; this may indicate a deadlock. This can often be avoided by preparing necessary serializers during application ...
0
votes
1answer
28 views

How to block WCF services using Firewall or any other security setting

For an application testing purpose I want to know how to block applications that are trying host http WCF host services. Could someone please point me the right place to block? I've been guessing and ...
0
votes
0answers
32 views

How to configure a WCF to the protocol HTTPS and a SSL Certificate

I developed wcf services and publish them in a IIS Server 7.0. First, i was using the HTTP protocol without SSL certificate, and every worked fine, but now i want to use it. I searched the ...
0
votes
0answers
18 views

Customizing WCF validation / providing more context when a SerializationException occurs

I am currently working on a WCF service with a REST binding which is expected to be accessed by systems that were not developed in .NET and have no access to the C# data contract. As a result, it is ...
0
votes
0answers
19 views

WCF single mode, waiting time in queue

I have WCF service where Instance mode is Single and also Concurrency is Single. I would like to measure how long is request waiting in queue. Example: Client1 and Client2 make request in "same" ...
1
vote
2answers
49 views

System.Windows.Forms.Timer is not Working in my WCF service

I have created a restful WCF service.Whenever client is calling this service method i have started a Timer with certain interval like below var timer = new Timer(); timer.Interval = ...
0
votes
1answer
17 views

I have php client and i want to pass encrypted email string from PHP client to wcf service , which encryption technique is best?

I have php client and i want to pass encrypted email string from PHP client to wcf service , which encryption technique is best ? What is best way to encrypt/decrypt data in uniform way ? *There ...
2
votes
3answers
1k views

Turn off the WCF service host in Visual studio [duplicate]

Possible Duplicate: How to Prevent Visual Studio launch WcfSvcHost.exe in Debuggin? When I debug a solution with a WCF service library, VS 2008 starts the WCF Service host by default. Is ...
1
vote
0answers
787 views

System.NotSupportedException. The URI prefix is not recognized

I have a WCF service, in two machine in Preproduction environment, machine A and machine B. Only in machine B, the service fails when I call it (from biztalk proccess), another machine is right. The ...

1 2 3 4 5 109