Microsoft WCF RIA Services simplifies the traditional n-tier application pattern by bringing together the ASP.NET and Silverlight platforms.
0
votes
0answers
8 views
Sending Child Collections with an Invoke and WCF RIA
We have a very complex Save method where we call an Invoke method which we pass 2 List of Entites as parameters.Everything was working fine so far. Now we have to make a change to the save method and ...
0
votes
0answers
5 views
WebDomainClient ChannelFactory is inaccessible
I am using Silverlight 3 and RIA Services Beta November 2009.
I was faced with issue connected to timeouts. When my server-side processing takes longer than a minute I get exception like "timeout ...
0
votes
0answers
27 views
WCF x Web Service
What big difference between WCF and Web Service?
I want you to show me a real case in which you acted and thought: 'is! WCF is actually much better than Web Service ', tell me relevant points that ...
0
votes
1answer
25 views
WCF RIA Service timeout
I have context like that:
[EnableClientAccess()]
public class MyRiaService : LinqToEntitiesDomainService<EntityFrameworkContext>
Using Silverlight client I am initiating heavy database ...
1
vote
2answers
40 views
Getting WCF RIA Serivce Timeout
I am running heavy wcf ria service operation and getting such error on client-side silverlight app:
Uncaught Error: Unhandled Error occured in Silverlight Application:
Submit operation failed. ...
0
votes
1answer
23 views
Silverlight 5, ria services with entity framework 6.0 alpha 3
I am trying to create a silverlight 5.0 application using ria services, with entityframework 6.0 alpha 3. This is a greenfield project that never used any other version of entityframework. Everything ...
0
votes
1answer
42 views
SubmitChanges not working with WCF RIA and POCO Child Objects
I have a Parent POCO class ParentItem with a List<ChildItem> inside it and i have set the correct AssociationAttribute. But when i am trying to add a ChildItem to the ParentItem using ...
0
votes
1answer
29 views
RIA Services Via Silverlight Where & Orderby
When I query a database via RIA Services, for example...
OrderWorkflowSLWCFRIA.Web.OrderWorkflowDomainContext db
= new OrderWorkflowSLWCFRIA.Web.OrderWorkflowDomainContext();
...
0
votes
1answer
42 views
WCF service not working because of return data type?
I have created a WCF service with 2 methods :
[ServiceContract(Namespace = "")]
[SilverlightFaultBehavior]
[AspNetCompatibilityRequirements(RequirementsMode = ...
0
votes
1answer
24 views
Generation of .svc-files on IIS fails when using custom RIAServices.T4 code generation
I have a Silverlight application that uses a custom DomainContextGenerator and a custom EntityGenerator:
[DomainServiceClientCodeGenerator("MainCodeGenerator", "C#")]
public class HrCodeGenerator : ...
0
votes
1answer
45 views
LightSwitch - bulk-loading all requests into one using a domain service
I need to group some data from a SQL Server database and since LightSwitch doesn't support that out-of-the-box I use a Domain Service according to Eric Erhardt's guide.
However my table contains ...
0
votes
1answer
75 views
Silverlight 5, return from WCF Ria Service, VB.NET - Simple Hello World
i can't found on any website (yeah.. i took a good couple or hours searching/Reading/testing), a way to call a simple Hello World Function by Return, and show it to the user.
Here is my WCF class ...
0
votes
1answer
56 views
404 on WCF RIA Services endpoint
We've been deploying our site a number of times to different environments successfully but have encountered an issue which seems to be related to the RIA services setup. We are deploying on a Windows ...
0
votes
1answer
38 views
DataContract doesn't work after publish into web site
I tried to solve by myself, but... Looks like I need help from people.
I have Business Silverlight application with WCF RIA and EntityFramework. Access to Database I get via LinqToEntites.
Common ...
1
vote
1answer
54 views
Foreign/related data with WCF RIA Domainservice in LightSwitch
I have a LightSwitch application where I need to aggregate data and being able to edit it. I followed Eric Erhardts guide which works fine. Then in the DomainService class I added this to make updates ...
0
votes
1answer
16 views
how to write non-zero expresion for annotation in meta data for wcf ria service?
Suppose I have a entity property like:
public decimal Amount { get; set; }
then validation can be added in metadata class like:
[Range(0.01, double.MaxValue, ErrorMessage = "Amount is required")]
...
0
votes
0answers
37 views
How to improve query performance with SL+EF+ WCF RIA Service?
I have an SL5 app with EF + Wcf Ria Service. there is a SP for data query and it is available for SL app by EF + WCF Ria Service.
When I run SP directly in SQL Server Studio Management, it is okay, I ...
1
vote
1answer
240 views
Lightswitch is slow, ADO.NET Entity Framework/Domain Service/WCF RIA Service
I'm developing an Lighswitch application in VS2012 with an external SQL Server 2008. I'm using a WCF RIA Service to fetch my data, using these techniques: ...
0
votes
0answers
32 views
Using Silverlight with website project not Web Application project
I need to complete an old ASP.NET Web Site Project using silverlight 5 and RIA service and as you already know we can't use RIA service with Web Site Project and the migration process is so complex ...
0
votes
0answers
53 views
Include attribute on parent metadata class seems to get ignored when metadata class created for derived class
Our application has SQL Server database with EF5 over the top of it. Then using WCF RIA Services to communicate with our silverlight 5 client.
So at present we have for example the following class ...
4
votes
2answers
212 views
Silverlight 5 WCF Ria Services 404 Error on IIS 5
I've developed .an application using Silverlight and WCF Ria Services.
The application must be host on windows XP machine that uses IIS 5. Due the information i found on web I did deploy application ...
-1
votes
1answer
45 views
Shared Entites in wcf ria services..?
Recently I have started working on WCF RIA services with SilerLight MVVM applications..
In my applications I am populating two Grids with two tables from two different data bases.
Its working ...
1
vote
0answers
178 views
WCF DataService and EntityFramework POCO Proxy
I have the following code:
public class MyDataService : DataService< MyCustomContext >
{
public static void InitializeService(DataServiceConfiguration config)
{
...
0
votes
1answer
38 views
Is it possible to develop a chat with WCF RIA Services?
In fact, the best practice is to use duplex communications. However, I've got a test project to complete from my interviewers, and it is purposed to use RIA Services. Are there any means by which I ...
0
votes
0answers
7 views
extend ria services profile to another DB table
I am sort of new to Silverlight but definitely new to Ria services. I understand it uses the ASP.Net membership tables so I was hoping to extend it a little. I am interested in extending the user ...
0
votes
1answer
70 views
inheritance ria services form “DomainService” and “LinqToEntitiesDomainService<>”
i have piece of code like this :
namespace SilverlightApplication1.Web
{
[DataContractAttribute(IsReference = true)]
public class CustomEntity
{
[DataMemberAttribute()]
...
0
votes
0answers
28 views
Implementing an Image Customizer in Silverlight
I need to implement an image customizer in silverlight....
I have already made an image editor which can upload ,crop,resize,rotation,save images on server as well as local , but this is a little ...
0
votes
1answer
33 views
Silverlight RIA Service output caching
we have a project built upon WCF RIA Services.
Imagine that we have a method with multiple arguments passed into, and producing different set of items depending on arguments, for example:
...
0
votes
1answer
62 views
WCF RIA Services DomainContext
Im building a page that has to receive data from a database and displaying in a datagrid.
I use WCF RIA Services for this effect. However when I create my DomainContext (based on an Entity Model) it ...
1
vote
1answer
140 views
What web service framework to choose for .NET
We have a Silverlight application which consumes existing WCF Ria service. Now we are going to write new front-end application using HTML/JavaScript. Obviously, WCF Ria Services is not the best option ...
0
votes
0answers
33 views
Domain Service Class Wizard Doesn't Find Entities
I'm building LighSwitch application. For bussines logic I have WCF RIA Service. I have database. In web part of service I've created ADO model for my database, but my domain service class wizard ...
0
votes
0answers
13 views
How to implement businessrules in ria services
I'm currently doing some research about RIA Services, but I can't seem to find HOW to implement business rules. Is there any tutorial or paper on doing this?
1
vote
0answers
48 views
RIA Service's method always returns null. How to resolve it?
I have a RIA Service and I need to use some of the methods in a silverlight app.
Here is how the sample RIA Service's method looks like:
[Invoke]
public string TestService()
{
...
0
votes
1answer
42 views
Invoke or Named Update?
I am using Silverlight with WCF RIA Services.
There is a class in my entity model called Activation. It has properties: Code1 and Code2 along with other properties.
On my silverlight client I need ...
0
votes
1answer
40 views
Hide validation errors
In my Metadata class, there is a class Person with the following property:
Public Property Name As String
In my entity model, this property has Nullable set to False. I bind the Name of a new ...
0
votes
1answer
92 views
How do I create a one-to-one relationship in WCF RIA Services for LightSwitch?
I've come a long way in my understanding of WCF RIA Services and Microsoft LightSwitch, but now I'm at a loss. I'll use Animal and Dog as examples. I actually want a zero-or-one-to-one relationship, ...
0
votes
2answers
159 views
MVVM Ria Services. Update existing Entity
Every article i have found, shows how to add new items using a RIA. Doesnt anyone ever update existing data? It sure doesnt seem like it.
Scenario:
I am using a service from my VM to pull in my ...
2
votes
0answers
38 views
Getting a message of asynchronous GetReceiveData method
I have in MainPage:
private void AcceptCallBack(IAsyncResult ar)
{
try
{
((Service1)ar.AsyncState).EndAccept(ar);
}
catch
{
}
}
And in service1:
private void ...
0
votes
0answers
22 views
WCF RIA service. Do I handle timezones in service or client
I am writing a Silverlight 4 application for displaying data in timeseries. All of the data is stored with UTC timestamps, but I have to display in users local time.
Now I have trouble deciding ...
0
votes
1answer
105 views
How to send canvas image large size from silverlight to WCF service
I have a large size byte[] formed from silverlight Canvas using following code
var img = new WriteableBitmap(cnvControlHolder, null);
var outStream = new MemoryStream();
...
0
votes
1answer
43 views
How to consume SL/RIA as WCF
Using VS2012 and beginning with a SL Business Application project, I added
an EF model Model1, removed the tt files, changed code gen to Default and built the project. Then I added DomainService1 ...
0
votes
1answer
43 views
Results View = The type
I am using Silverlight 4 ria services and sql server 2008,
we are using a stored procedure to return some data which we are displaying in a datagrid, when issummary =0
we are using the same stored ...
1
vote
0answers
119 views
Silverlight WCF RIA - Authentication Timeout
I have some issues about SL authetentication.
I am using WCF RIA Services to get access to database and implement authentication and reading/writing data to database. Now, I have custom ...
1
vote
1answer
50 views
WCF RIA send Server notification
Is it possible to notify all clients from the server using WCF RIA ?
We have a requirement in which when we save a data from our Silverlight 5 client,all clients should be notified. we use WCF RIA on ...
1
vote
1answer
158 views
WCF RIA with SignalR
I am looking for a sample program with WCF RIA with SignalR.
I have a Silverlight 5 application which uses WCF Ria as the backend.
We have a requirement in which when a user saves some changes to a ...
0
votes
2answers
75 views
How to refresh DataGrid?
I am working on Silverlight 5 and RIA Services for database operations. DataGrid showing data perfectly.
But when I delete a record and submit changes to database, database updating successfully, ...
1
vote
1answer
37 views
How to add data while inserting or updating entities
We're using RIA Services in our Silverlight app, and for one of our entities we want to track who creates and update them and when. For this we've added these properties:
public class Person
{
...
0
votes
1answer
39 views
Entity.GetOriginal() doesn't work on some property in Silverlight
A property in the original entity has current value not original value. Other properties in the original entity have original values. The entity and the property are generated by WCF Ria services. ...
0
votes
1answer
118 views
How to programaticaly add domain service end point to web.config
First of all I wanted to thank everyone in StackOverflow for the continuous contributions to the community.
On that note, I am in need of help with manipulating the web.config of a site ...
0
votes
1answer
56 views
Unable to automatically step into the server
I need to debug WPF Client with RIA Services. In VS 2010 it was working fine and now I am under VS 2012 and I an facing this error.
Any clue how to return to debugging?
I have already checked ...




