0
votes
0answers
35 views

A WPF Browser application accessed from local network

I currently have an application which communicates with hardware (like controller boards). A GUI exists in the form of a WPF application, with which some settings can be accessed and changed. This is ...
0
votes
0answers
18 views

What type of lock used by xDocument.load method at time of loading xml file?

I'm having application in VB.net which is using LINQ and try to save data on local machine which reduce performance. What I believe is that because of the sync. application constantly write data on ...
2
votes
0answers
43 views

WCF service timing out only when called from an ASP.NET web app

I have a few WPF applications that have WCF services with a single function called UpdateValues. I have about 5 applications working, but for some reason one is not. I tested the app using the WCF ...
3
votes
3answers
68 views

Update Service Reference is not working in WCF

I am using VS 2012. I add services reference to my WPF project, but when I've changed my services and updated service reference my Reference.svcmap -> Reference.CS file will be blank and I can't use ...
0
votes
1answer
57 views

String Builder in C# with WCH Host and Client

I have question regarding StringBuilder in C#. I have process which generates million lines of data. I am using StringBuilder as buffer. So whenever i get 20000 lines i open the file and dump the data ...
2
votes
2answers
83 views

how MVVM model is related with WCF

I am trying to create sample WPF application with MVVM architecture. I have model which has Employee class {DTO} with corresponding View and viewmodel. Similarly i have created WCF service which has ...
0
votes
0answers
40 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
24 views

Silverlight MEF with WCF service

I have a dashboard project with many user controls. This week I've created an application which is more than just a user control and integrating it into my dashboard application seemed like a pain. So ...
0
votes
3answers
64 views

Cant get over WCF's Max Received Messages error

Well, I've looking for an answer to my problem for several hours but I just cant get rid of. I'm using a WCF Web service to download a file from a server. To test, I've used 3 different documents ...
0
votes
1answer
51 views

Troubles with MVVM binding

I am new to mvvm, basicaly its my first attempt. At now I have a WPF window, ado.net to connect to my database, and wcf service to make connection between viewmodel and database. The problem is that I ...
3
votes
3answers
159 views

how to create multiple instance of wcf service using dynamic endpoint with same contract and binding without saving in app.config?

This is my server-side app.config: <services> <service name="PokerService.PlayerService" behaviorConfiguration="ServiceBehaviorPlayer"> <host> <baseAddresses> ...
0
votes
0answers
93 views

WPF, WCF, UI validation (Data annotations)

We have a n internal system that is using a WPF front end and WCF sevice. I come from an MVC background and there I can use data annotations for simple field vaidations in the UI. Can this be done ...
4
votes
1answer
73 views

how to save dynamic endpoints in server app.config?

I create dynamic endpoint like this way on server side: var host = new ServiceHost(typeof(PokerService.PlayerService)); for(int i = 1; i <= ; i++) { ...
1
vote
0answers
67 views

Add a new item in a SQL Server database with wcf web service

I'm using WCF to show data from a SQL Server database in a WPF application with grid. How can I add a new row to the database using WCF web services? My service code public class abalaseService : ...
2
votes
0answers
230 views

“An unsecured or incorrectly secured fault was received from the other party”

Error occurred : "An unsecured or incorrectly secured fault was received from the other party. See the inner Fault Exception for the fault code and detail." i done this in client side and same i ...
1
vote
1answer
76 views

WPF or ASP.NET as WCF Client

I am new to WCF and going through tutorials right now. I was wondering what are the benefits and disadvantages of using a WPF or an ASP.NET web application as a client for a service. I understand it ...
0
votes
0answers
21 views

Hybrid ASP.NET / SOAP Server application

I've currently got an ASP.NET Web-Forms application. Users can log-in and browse through some pages. What I want to do now is add a client application that consumes some of the server methods via ...
2
votes
0answers
89 views

Managed Extensibility Framework (MEF) in all tiers

I am in the process of designing a client/server N tier application using WPF, EF, WCF, SQL. I want to use the Managed Extensibility Framework (MEF) to better manage the "features" that will be ...
0
votes
0answers
564 views

The underlying connection was closed: The connection was closed unexpectedly wcf

I am using WCF Services in WPF project. I have a large amount of data, about 847 000 records in table. this exception is throwed on client side In VM proxy.ServicesClient client = new ...
0
votes
1answer
124 views

The underlying connection was closed: The connection was closed unexpectedly - wcf

I am using WCF Services in my WPF project. I have a large amount of data, about 847000 records in table. this exception is throwed on client side proxy.ServicesClient client = new ...
0
votes
1answer
85 views

Async call of WCF using Duplex Communication to get Database change

I am implementing and WCF Async service using WsDualHttpBinding binding for duplex communication to get database changes. I have implemented the Service but I dont know how to call it from Client ...
0
votes
1answer
86 views

How can I create real time application and interconnected applications

I have a WCF service which exposes SOAP and REST endpoints and we have WPF,Android,Windows Phone(in future),ASP.NET applications on top of our WCF service, so many users can use many apps from ...
0
votes
0answers
68 views

how to use callback and GCM enabled WCF service together using SOAP/REST

i have a WCF service which has two endpoints SOAP and REST, and i have three Applications on this service i.e. WPF,ASP.NET using SOAP endpoint and Android Application using REST endpoint,the top ...
1
vote
1answer
128 views

WCF ServiceHost restricted user netsh/httpcfg

I use a self hosted service within a WPF application for certain tasks. The service host is started at runtime and its base address is http://localhost:Whatever-port-is-free-at-runtime. This works ...
0
votes
1answer
52 views

Error in WPF application async call to WCF service

I get an unexpected error occasionally when my WPF application calls into my WCF service. It seems to only occur when I return a larger amount of data. I am essentially making 5 calls to the WCF ...
0
votes
5answers
115 views

Telerik BusyIndicator does not Display

I am using WCF Services I have this problem: When I retrieve data from server for my GridView at the start of an async function call, I set IsBusy = "True" . After the method is called, I set IsBusy ...
0
votes
0answers
84 views

WCF Dataservicecollection Binding don't shows any Data in DataGrid

I'm currently trying to bind a Dataservicecollection to a Datagrid. The DataServicecollection is provided with data, by an WCF DataService. The collection does contain entities (checked via ...
0
votes
1answer
89 views

Consuming web services

I have a silverlight application consuming data via RIA. Some methods are exposed in a way that they can be consumed in silverlight as well as in WPF application via Service Reference.On development, ...
0
votes
0answers
66 views

Using Entity framework code first with SQL notification

Hi guys I have a two applications one retrieves data from a SQL database while one save or update data into the database, I also have a WCF service that handles all my business logic (which includes ...
0
votes
0answers
37 views

Extended Modelview Column not Accessible in WCF Service (reference.cs)

Ive created an MVVM application based on the example of Rainer Stropek (MVVM in WPF and Silverlight, Youtube Serie) So I have a Model, and a WCF Service, and a Client. I want to make a Property of a ...
0
votes
2answers
70 views

Bind observerbaleCollection to wpf combo box

I'm having Class call Apps. It has Observable collection called AvailableTypes. I want to bind this AvailableTypes observable collection to the wpf ComboBox. When form is loaded these AppId should ...
0
votes
0answers
106 views

load data to wpf tree view using observable collection

My Wcf service has two data contracts called Apps and SubApps.Also I have two methods in server side called List<string> GetAppIds() and List<string> GetSubAppIds(string AppId). I want to ...
0
votes
1answer
324 views

ASP.Net web app or WPF Desktop Application [closed]

Our team is divided on this and I wanted to get some third-party opinions. We are building an application and cannot decide if we want to use .Net WPF Desktop Application with a WCF server, or ...
0
votes
1answer
81 views

WCF Connection very slow - Is the WPF Client the issue or the SQL Query?

I have a SQL Server database with table containing 300.000 data rows. There is an Index on the Primary Key and another key. I am using the following query in my standalone WCF server to fetch the data ...
0
votes
2answers
57 views

Lost included entity after detaching the objectcontext

considering the following code which resides in a service (WCF): using (var context = new ctxEntities()) { var result = context.MyTable.Include("LinkedTable") ...
0
votes
1answer
128 views

WPF, WCF and Code First - Disconnected mode

Some architecture dilemma: I'm using WPF as my client-side, EF Code First as my Data Access Layer, and WCF to connect between those. My probelm is hou to reupdate the UI after I did some changes to ...
0
votes
0answers
107 views

WPF user control gets data from web service or dll

I have a WPF user control which displays a piece of data on the screen. I would like to use the same WPF front end but have the data come from two possible alternate sources: A linked class ...
0
votes
1answer
35 views

Application not calling function inside WCF swrvice

We have a WCF service , which provide details about the versions of an installed application. This WCF service is installed in different machines.Our application calls all the machine WCF services and ...
1
vote
0answers
95 views

How to send notification to all clients using WCF,Iobservable and iobserver

I am using WPF and WCF for client server application. but i got a problem. How to notify any update of client to other client. Server(WCF) Client1(WPF) Client2(WPF) if client1 enter any new ...
2
votes
1answer
98 views

how to send and recieve notification using WPF and WCF

I am using WPF and WCF for client server application. but i got a problem. How to notify any update of client to other client. Server(WCF) Client1(WPF) Client2(WPF) if client1 enter any new ...
1
vote
0answers
50 views

WPF Select Network DB or Service for data

I have one database to which I have created a WCF service. What I am thinking is that I will reference the service when workers are at home working remotely. What I would also like is a local ...
0
votes
1answer
107 views

Can I use WCF RIA Services with existing web APIs?

I'm new to this kind of development, and so far I've only seen tutorials on WCF RIA services which create new ADO.Net data models from a database. However I am working with a system which provides ...
0
votes
0answers
66 views

There was no endpoint listening

When I try to call the method in the WCF host I get this error: There was no endpoint listening at net.pipe://localhost/PipeReverse that could accept the message. This is often caused by an ...
0
votes
1answer
25 views

Wrong result when casting query in WCF Windows Phone

Basically when I try to move my queries result into a usable format, I get given outputs such as "systems.collections.whatever" Instead I want the actual number returned. this is how I select the ...
1
vote
2answers
105 views

Where to consume webservices in MVVM?

Using Visual Studio 2012 I have added a service reference to a remote webservice. It is configured to use asynchronous calls. The application uses WPF with the MVVM pattern. One model class is called ...
1
vote
1answer
97 views

Hosting NamedPipe in WPF application does not create a pipe

I'm on .NET 3.5 I have two WPF projects which should communicate with each other both ways. I figured that named pipes would do the job with WCF making it very easy with duplex mode. However, I start ...
5
votes
2answers
400 views

CommunicationObjectAbortedException & CommunicationObjectFaultedException in WCF Service

I am working on a system based on the publisher subscriber pattern. I have a WCF service that is running in a WPF application. There are numerous clients which connect to the service. The client side ...
0
votes
1answer
38 views

Subscription Model

I am planning to build a software application (Winforms/WPF) that connects to a WCF service online and enforce the subscription model. For example, the end user/client will have to pay an amount every ...
0
votes
2answers
94 views

mvvm calculated fields

I am using the MVVM light toolkit for a wpf application which talks to a wcf server. The wcf server returns a Person object (proxy object). This person object has several fields, name, surname, etc ...
2
votes
4answers
11k views

Using MediaElement to play video from Stream

Is it possible to use the WPF MediaElement to play streaming video from a System.IO.Stream object? The Stream object is being retrieved from a WCF service that stores the media files.

1 2 3 4 5 10