Tagged Questions

1
vote
2answers
215 views

Dynamic choose connection entity framework rest

I have a very simple entity framework (.edmx) file, and a .svc rest service. Everything works fine for CRUD operations. I have many databases thats shares the exactly same schema. My next step is ...
0
votes
2answers
628 views

PHP curl talking to Microsoft Dynamics CRM 2011

I am trying to pull some data from Microsoft Dynamics CRM 2011 Online, which resides on remote host; it works if I manualy (from browser) log in and exec my from my server which runs PHP on Linux ...
0
votes
2answers
520 views

Converting Image Feed to BitmapImage in Windows Phone and Silverlight

I'm currently having problems in converting the image string that I got from Feed to BitmapImage in Windows Phone 7.1. I'm using oData Northwind sample ...
0
votes
2answers
611 views

Using asp.net membership “THROUGH” wcf data services?

can anyone help? I recently had asp.net membership setup using a connection string to my db via the web.config in my service layer. It enabled me to do something like this :- public bool ...
3
votes
1answer
402 views

Nonpersistent HTTP 1.1 connections faster than persistent one?

I am using Entity framework 4.0 in conjunction with REST web service. On the client side, during data/entities loading, client is making 40 sequential web requests. When I set ...
1
vote
1answer
190 views

Pluggable, Extendable and RESTFUL Service Repository in ODATA or ASP.NET

I am going to develop a service repository using ODATA. As a result, I can model those public method of those classes as Entity Type with these properties automatically by reflection Id. GUID ...
1
vote
1answer
325 views

OData with WCF REST

I have a WCF REST Service that I have implemented all single result endpoints. Now I need to implement endpoints that return collections. I realize there is the WCF DataServices that will allow me ...
0
votes
1answer
126 views

How Odata can be used in RESTFUL web service, with JSON as the message format

Lets say I have a huge database which stores meta data about music files and (images, sample sound clips and videos in the file systems referring its path in the Db). So how can I implement Odata in ...
2
votes
0answers
969 views

One WCF Service to Rule them All? (SOAP w https, oData, JSON, POX, etc…)

I've been playing around with WCF and I have managed to a WCF service to generate both SOAP, POX, and JSON formats pretty easily based on this example (I added the soap config). ...
1
vote
0answers
99 views

Microsoft.Data.OData.ODataContentTypeException: A supported MIME type could not be found that matches the content type of the response

I'm getting following exception Microsoft.Data.OData.ODataContentTypeException: A supported MIME type could not be found that matches the content type of the response. None of the supported ...
0
votes
0answers
113 views

.NET Mvc 3 to return OData JSON result

I am trying to get ASP.NET MVC3 to return an array as an OData result. I am not planning and do not want to use WebAPI in MVC4, because it removes the abstractions that we already have in place. ...
0
votes
0answers
221 views

Unable to hit remote WCF service using KendoGrid

I have developed a REST based WCF application that provides JSON as output which support only GET protocol. I am able to successfully host the service in IIS7 and consume it through the browser ...
0
votes
0answers
328 views

edm to xsd to xslt conversion?? how does it work? With Odata

I am not familiar with xml and web services and I am a lot confused here... I need to connect 2 systems with Odata protocol and RestFul. The Backend System generated Odata service with EDMX metadata ...
0
votes
0answers
548 views

Deploying a WCF Data Service/REST Service on IIS 7.5 localhost

Here are the details of my problem. I have one simple WCF Data Service (named WCFServiceAppCBS.svc) using an Entity Framework data access layer that talks to a SqlServer 2008 R2 datasource to return ...