0
votes
0answers
6 views

Publish.NET WCF Service to Azure

I have a project with the following structure: Console Application Console Application (Handles entities and db) WCF Application It works when i deploy it on localhost, but i want to publish it ...
0
votes
0answers
17 views

Enabling SSL for WCF web service hosted in windows Azure- Issue

I am getting the following exception when accessing a WCF Web Service hosted in the Azure staging. This problem happens when i enable SSL for our WCF Service. The provided URI scheme 'https' is ...
0
votes
0answers
8 views

LiveConnectSession, WCF service and maintaining a valid token

I have a currently working implementation of a service model where I have an Azure Mobile Service running that uses SSO to authenticate in WinRT and it works splendidly. Furthermore I have a WCF ...
0
votes
3answers
33 views

URL to specific Instance of WebRole in Windows Azure

i have a WebRole in my Windows Azure Deployment with a few instances. In this Roles i do a lot of caching. So my client asks everytime another instance for a specific information, which is maybe not ...
0
votes
0answers
38 views

WebServiceHost connection aging, i.e. how to close incoming connections to WebServiceHost

My service runs in multiple worker role instances in Azure. I use WebServiceHost to listen for incoming client requests. I try to close some of the incoming connections after upgrade/restart of an ...
0
votes
0answers
59 views

Windows Azure Active directory for WCF Rest API Or OAuth Provider

I have build simple web service using WCF that i need to Authenticate against Windows Azure Active directory. What i need is When some one use the service they have enter username and password or ...
0
votes
1answer
26 views

Large data to cloud service

I need to send about 50 mb of data containing images to a service on Windows Azure. Should I send it to a WCF service using a binding with MSMQ transpotation, or would it be better to write a worker ...
0
votes
1answer
30 views

How to deploy the WCF service to Azure for use in windows phone?

I have developed a WCF service which modifies the db table which is also there in the cloud. Now to deploy this service in cloud do I need to have a Azure project or can I directly deploy this. And ...
0
votes
1answer
49 views

RoleEnvironmentException in Microsoft Azure Instance Deployment

I'm having a game with a WCF service and Azure. I have several WCF Services running successfully on Azure, this particular service has been operating correctly until I decided to redeploy it under a ...
0
votes
0answers
53 views

Why might our service that listens to Azure service bus queue using NetMessagingBinding stop receiving messages?

We have a WCF service that listens to an Azure servicebus queue using the NetMessagingBinding. However we are finding that sometimes the service seems to stop being notified when messages arrive, ie ...
0
votes
1answer
78 views

Add record to an SQL Azure table using LINQ where ID is “identity (auto_increment)”

I am trying to pass a LINQ query in my Service1.svc.cs to add a new Asset which is an entity in my SQL Azure database. Also AstID is the PK and is set as identity in SQL Azure I have an ...
0
votes
1answer
32 views

ssl-based wcf service does not work in azure emulator

If i put the web role to run in IIS, the service goes as expected. however, it does not work in azure emulator. The error page shows "500 - Internal server error. There is a problem with the resource ...
1
vote
1answer
164 views

Federated authentication (single-sign-on) for a WCF REST/HTML-service on Azure

I have made a simple WCF-REST-service, published it to Azure and activated SSL with a X.509-certificate. Now I'd like to setup some autentication for this service as well. I could solve this very ...
0
votes
2answers
35 views

Where is the WCF's ABC in the VS2012' azure WCF sample?

It will be a dummy question, but: When i create a WCF service lib in vs 2012, in the app.config I can find information about the service, like this. <system.serviceModel> <services> ...
2
votes
1answer
63 views

Setting up SSL with WCF on Azure

I'm trying to set up a WCF-service with SSL on Azure. Can someone please explain a bit about the differences of using certificates is these cases? Certificate for https-binding in IIS ...
0
votes
2answers
92 views

Cannot set wsHttpBinding on Azure Web Role. Web.config ignored?

I'm trying to deploy a WCF service as a Windows Azure Role using wsHttpBinding. When the client tries to connect to it, it keeps getting the following exception: [SynchronizingContextState.Process] ...
1
vote
1answer
96 views

WCF Concurrent Connections and Azure Service Bus Relay

I have a WCF service listening to the Azure Service Bus Relay which for reasons I cannot change I am self hosting in a Windows Service. Once the service is put under concurrent load - typically by ...
0
votes
1answer
36 views

Azure, WCF services and restricting part of the interface?

I could not find a direct answer to this. Basically I have services MainService and SubService. The idea is that the Client software calls some methods in the MainService, but SubService calls another ...
0
votes
0answers
46 views

WCF self hosted cross domain issues

I am currently working with some self hosted WCF services and cross domain access. I have striped it back to a test service but I am still having problems. I am also doing in an Azure cloud service. ...
1
vote
1answer
36 views

NetMessagingBinding polling interval and concurrecy

I'm implementing Service Bus client to receive queue messages and need to estimate monthly charges for the usage. Based on what I read I can control polling directly by using QueueClient or I can ...
3
votes
2answers
70 views

WCF or ServiceBus?

I'm developing a cloud application, that indexing a large number of documents (with lucene), and hosting a wcf service to search it. I have 3 roles: I web role, which is hosting the WCF service, and ...
1
vote
2answers
53 views

Must I consider the implications of Azure before developing for it?

My intention is to develop and MVC app driven by WCF services. I will then like to deploy these to Azure. Can I go about developing my app and services without any consideration to the fact they ...
0
votes
2answers
115 views

Azure Web Service over SSL returns incorrect soap address location

I have a Cloud Service running over SSL on Azure; I can browse to the service and get its wsdl over SSL but when I do the soap address location is returned incorrectly - instead of using the domain ...
6
votes
1answer
184 views

Azure Service Bus Relay Occasional FaultException

We can't determine why the Azure BasicHttpRelay is throwing an occasional FaultException without any details. We've enabled WCF diagnostic tracing, but the available stack trace information is still ...
-2
votes
1answer
84 views

windows azure verification with credit card [closed]

I'm student and i'm working on bachelor thesis. My app uses wcf and sql database. If I want to test the application I need to host it. I would like to host it on Azure, 90 free trial, but it needs ...
0
votes
1answer
172 views

WCF with HTTPS and Windows Phone 8

I am working on a small service accessed from a client on Windows Phone 8 and/or WinRT device that requires a moderate amount of security. My goal is to create a service that runs in Windows Azure. ...
0
votes
0answers
329 views

“Object reference not set to an instance of an object” - WCF REST service in Azure

I am having problems when invoking the method in my winJS app : [OperationContract] [WebInvoke(RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, ...
1
vote
2answers
58 views

How to setup Azure Content Based Routing by Convention?

Is there anyway for azure to route messages to appropriate handler/operation/subscriber based on the message type? In NServiceBus, when an event is publishedd, only subscribers that can handle the ...
1
vote
2answers
82 views

Hosting more than 25 WCF services in Azure

We're running into Azure's limit of 25 internal endpoints with our WCF services. In keeping with SOA principles, our WCF services are fairly small, generally one per "noun" in our system. We are ...
0
votes
0answers
182 views

There was no endpoint listening at MYWCF that could accept the message.

I am trying to implement my WCF service in a winform app like this : UploadImagesClient aClient = new UploadImagesClient("SecureHTTPSendpoint"); But im getting the following error : There was no ...
0
votes
1answer
142 views

Securing WCF 4.5 service using Azure ACS 2.0 [duplicate]

How can I secure my WCF 4.5 service using Azure ACS 2.0?
0
votes
1answer
45 views

Publish a non https endpoint for WCF - Azure

How can I add a non https endpoint for a WCF ? My WCF is a web role in an Azure project. My current endpoint is : <bindings> <basicHttpBinding> <binding ...
0
votes
1answer
149 views

Azure Active Directory and WCF [closed]

How can I secure a WCF service using Azure Active Directory: My Status: - My WCF service that contains the business logic is hosted on Azure WebRole. I want your help to do the following: ...
1
vote
1answer
34 views

XNA UI hangs while using WCF remotely

I have an XNA client which communicates with a WCF service to operate. The XNA application is actually a multiplayer pokergame. When I run the WCF service locally, everything works well. However, I ...
0
votes
0answers
269 views

HttpPost JSON from Android to WCF Service in Azure - response fails with 415

I am sending following request to WCF Service from Android application: try { HttpPost request = new HttpPost(Config.HELP_SERVICE_URL + "/GetAlarmData"); request.setHeader("Accept", ...
0
votes
0answers
47 views

ProcessGetResponseWebException when calling wcf method hosted in azure from visual studio

I have a wcf web role hosted in azure which has methods to add, delete update etc. When I step through the code in vs2012 and call the add method I receive a ProcessGetResponseWebException. The add ...
0
votes
1answer
111 views

select table in database using a parameter in WCF service

I am still a beginner at writing C# and SQL and was wondering if someone could help me with this basic question. I have looked all over the internet and am still stuck. I am trying to write a WCF ...
0
votes
1answer
76 views

400: bad request

I'm using csmanage to access the Azure Management API. This is my code: private const string subscriberID = "<id>"; static void Main(string[] args) { // The thumbprint ...
0
votes
1answer
96 views

Windows Azure Console for Worker Role Cloud Service

I have a worker role cloud service that I have recently developed on my local machine. The service exposes a WCF interface that receives a file as a byte array, recompiles the file, converts it to ...
0
votes
1answer
75 views

How can I programmatically create an endpoint and use it in my service instead of obtain it from the web.config?

Basically I want to create this binding that will listen to azure service bus queue: <services> <service name="myServiceName"> <endpoint ...
0
votes
2answers
47 views

Window Phone-Window Desktop Communication

I want to make a client-server system. The client will be a Windows Phone app that will send its location to the server - a WPF application. What will be the best design for that I'm trying to ...
0
votes
0answers
80 views

End point not found in WCF service in azure

I have a WCF service for displaying an image in azure.When i run it locally i get the image in the url: localhost:57800/Service1.svc/GetImage. But when i deploy in azure and use the url as ...
0
votes
0answers
61 views

Intermittent error on consuming WCF over HTTPS

I have an WCF service who consumes a 3rd party webservice(ASMX), and about a few days ago we started to receive a strange intermittent exception. Here is the exception: ...
1
vote
1answer
61 views

access a local file when live on azure

My WCF service needs to access a local .cer file during runtime. In debug mode I'm able to access the file using this: var testCertificate = new ...
1
vote
3answers
112 views

Changing cloud service web.config at runtime

I'm trying to change the web.config of a deployed cloud service (WCF in this case) on Windows Azure, and when I try to change the appSettings in the web.config at runtime, I'm getting permission ...
1
vote
1answer
131 views

How to isolate SQL Data from different customers?

I'm currently developing a service for an App with WCF. I want to host this data on windows-azure and it should host data from differed users. I'm searching for the right design of my database. In my ...
0
votes
0answers
56 views

server is too busy when a WCf operation calls webclient() more than 5 or 6 times

I have created a wcf operation that will call webClient.DownloadStringAsync(new Uri(url)) for 32 different uris to get back some xml for each call. I have hosted the wcf in Azure as a cloud service ...
0
votes
1answer
67 views

Cannot get Azure WCF service to work with Client Certificates

I have a WCF service that I want to secure with Client Certificates but I cannot get it to work on Azure. I removed Azure from the equation by hosting the service on a standard Windows Server on ...
0
votes
1answer
53 views

How do I configure autofac with WCF under Azure with a WebRole

I am trying to configure a simple project for Azure to use a WCF service with Http bindings, and using Autofac's WCF integration. Currently I am testing locally and hosting under IIS (Azure). First I ...
0
votes
0answers
52 views

Securing net.tcp Connection in Windows Azure

My rich client application communicates with my application server in Windows Azure over the net.tcp binding. Are there any chances to secure this communication? Do you have some experiences? Or ...

1 2 3 4 5 9