0
votes
0answers
33 views

Sending a string from Windows store app to a WCF

I have got a Windows Store App, and within this Store app I have a textbox wich the user types in information wich then gets sent to my WCF service. Now here is the problem. When the user types in ...
0
votes
1answer
18 views

Accessing a WCF service in a Windows Store App hangs

I've started work on a Windows 8 store app that needs to communicate with a WCF service running as a Windows Service on a Windows 7 server. The binding is net.tcp, with no security (yet). I've also ...
0
votes
0answers
30 views

OData service for windows store apps

in my next windows store apps i want to use OData (WCF Data Service) i don't know how to create and consume OData Service so is there any example to jump start with OData for windows store app i ...
0
votes
0answers
32 views

Windows 8 Store App: Registering client for push notification results in “access is denied” on remote server only

When I attempt to register a windows store app for push notification I receive the "Access is denied" error when the remote server is running authorization on the client's SID and client secret. ...
3
votes
2answers
129 views

Adding service reference to SOAP service does not generate async methods

in metro style app I want to add service reference (wikispaces). VS2012 properly discovers service: Unfortunately, the generated Reference.cs do not provide any methods from service: Why it ...
0
votes
0answers
48 views

How to get to my Windows Store App an ObservableCollection via WCF?

Im very new to this type of technology and I want to do a WCF service that can get me some data and implement it on a Windows Store App. Whats the best way to implement this data onto my app ...
0
votes
1answer
36 views

How to store configuration in Window8 RT Application?

I need to connect Win8 app to WCF service. The WCF client is created using Add Service Reference. The requirement is to change the End point URL at runtime. Win 8 does not have app.config and instead ...
1
vote
0answers
204 views

WCF Windows Service and Windows Store App Non-Meaningful Reply Error Message

I'm having a lot of problems getting tyres on the ground with Windows 8 Programming. One problem is, I cannot install IIS as Windows 8 is giving me problems because I am dual booting it with 7. Any ...
0
votes
1answer
414 views

How deploy intranet WCF-service for Windows 8 store application

We are developing a desktop Windows 8 application, that work with WCF-service. We want enable work with Azure WCF-service and with WCF-service in local network(choosingly). Application will be publish ...
0
votes
1answer
226 views

Remote debugging WCF client application - Can't connect to host

I'm writing a WCF solution that includes a mobile app for Windows RT (Windows Store app). The mobile app works fine when I run it from the dev machine, with the WCF host running on the same ...
0
votes
1answer
152 views

WCF, Windows Store apps, and reliable sessions

Is it possible to use WCF reliable sessions in Windows Store apps? I am writing a Windows Store app in Visual Studio 2012 Professional using C#. I am trying to access a WCF service using sessions. ...
1
vote
1answer
203 views

Getting ACS token on windows store app using callback Uri

I've been following the steps to make Windows 8 Store app get an ACS token as described here: Does the WebAuthenticationBroker work in Windows 8 Metro App post Release Candidate However, the ...
1
vote
1answer
151 views

WCF service reference in Metro (Store) application won't work after update

Here's the scenario: On the server there's WCF service with some simple methods and few classes in it. The client is Metro (Store) app. Communication between the two worked just fine after service ...
3
votes
0answers
143 views

Windows store app authenticating to WCF protected by ACS [closed]

I am working on a windows 8 store app that has to connect to a wcf restful service. the service is currently protected by ACS. Does anyone have a working sample of a win8 client that successfully ...
1
vote
0answers
393 views

Windows Store app with enterpriseAuthentication and Impersonation

Short Version: Why when I impersonate a web-request made by Windows Store app, I get WindowsIdentity object with correct user name, but its IsAuthenticated property returns False? Making same request ...
0
votes
2answers
336 views

Can a Windows Store app consume a WCF service that uses Entity Framework 5?

I have a WCF service that is built using EF5. The service to returns a collection of objects that are defined in the EF model. But since I can't use EF within the Windows Store app I'm thinking this ...
2
votes
1answer
610 views

WCF RESTful POST using JSON, from Windows Store App

I am calling a RESTful web service (hosted in Azure) from my Windows Store App (Windows Metro App). This is the Service definition: [OperationContract] [WebInvoke(UriTemplate="/Test/PostData", ...