Tagged Questions
2
votes
0answers
237 views
What is a real life cycle of WCF OData service?
I'm developing server application with several WCF OData services hosted (C# 4.0, VS2010).
I'm observing quite strange behavior of services and can't find any documentation on it that describes things ...
2
votes
0answers
392 views
Consuming C# WCF service from Delphi 2010 client: Databinding and Entity Framework
I am migrating a win32 Delphi VCL application written in Delphi 2010 to a multi-tiered architecture.
The application makes extensive use of ExpressGrids (TcxGrid) by devexpress for databinding.
I ...
2
votes
0answers
120 views
How to use Autofac to host WCF OData services
What is the recommended approach to using Autofac to host a WCF Data Service (OData)?
For non-OData services, we've been using the AppStart.AppInitialize() approach to register the dependencies in a ...
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
51 views
WebAPI + OData Service on IIS 5
We are facing a problem with our clients who are running on IIS 5. Our Data Server uses a combination of WebAPI and OData to return information and I'm having trouble getting both to work at the same ...
1
vote
0answers
203 views
Untyped DataSets in WCF Data Services
I'm trying to return a dataset from a WCF Data Services Web Service. The problem I have is that I do not know the type until Runtime.
I've followed the approach outlined here:
...
1
vote
0answers
207 views
ODATA Service access on Iphone
I want to access an WCF .svc service from my iphone application. It is an ODATA based service.
the samples from the ODATA sdk for iOS shows how to create proxy classes for the database schema using ...
1
vote
0answers
131 views
OData Data Import/Export Interfacing
We expose an odata service to allow our iOS application to talk to our application MS SQL Server database.
Ive got to look into providing a data import/export facility for our clients to retrieve and ...
0
votes
0answers
11 views
Standardizing Consuming Data with WCF Json Service
I am developing my own javascript grid that use WCF Services to get data. I have put some column definition class that has provide information about filtering and sorting that will be applied on ...
0
votes
0answers
9 views
Consuming Paged WCF OData Service causing huge memory consumption during records fetch
In the following few lines of code I am consuming a locally hosted Odata service. Since the OData service has implemented paging so in order to get all records I am using DataServiceCollection.
I ...
0
votes
0answers
11 views
Please help me understand Paged WCF OData Service Consumption and huge memory consumption
In the following few lines of code I am consuming a locally hosted Odata service. Since the OData service has implemented paging so in order to get all records I am using DataServiceCollection.
I ...
0
votes
0answers
20 views
Duplicate result in Odata
I use odata and wcf data service in my project.when i select in my view(database) all result is correct but when test with linqpad or my record duplicate my some record
RowNumberΞΞ PersonageId ...
0
votes
0answers
50 views
WP7 Testing on phone device error but fine on emulator
I get an error when debugging on my phone device but not on the emulator. It appears to error every time data is requested from the server (hosted using WCF/Odata using IIS Express). The code ...
0
votes
0answers
28 views
Error processing request stream. The type name '<type name>' is not valid
i am building an application with Entity framework 5.0 code first and WCF Data services 5.0
i have Business layer , data service layer and a domain layer,
In the domain layer i have all the POCO ...
0
votes
0answers
32 views
How to handle the return of oData service request
As is known, we can do query in oData service, e.g., DemoDSPDataService.svc/Products$filter=ProductName eq 'apple'.
Currently, I am trying to follow the article here foofoo and change the code in ...