Questions tagged [ria]

A Rich Internet Application (RIA) is a web application that has many of the characteristics of desktop applications. RIA here typically refers to the .NET RIA Services/WCF RIA Services framework.

838 questions
0
votes
1 answer

RIA Services Intellisense broken?

I am new to RIA services. I downloaded a sample application called IssueVision which has server-side metadata classes in a class library, and client-side versions of those classes in a Silverlight class library. The Silverlight class library does…
Trevor Elliott
  • 11,292
  • 11
  • 63
  • 102
0
votes
1 answer

consume webservice from running silverlight application

I've created a Silverlight Application with WCF Webservices (.svc) and RIA Domain Services from the SilverlightApplication.Web Project. The user has to enter user name and password for identification. The Web.config allows only authenticated users…
float
  • 1,265
  • 5
  • 22
  • 38
0
votes
1 answer

ria service submitchanges

I'm using Silverlight with RIA services and have tabbed UI. Maintaining single DomainContext object. So when SubmitChanges is called on Context I want to submit the changes for that specific object only instead of submitting all changes. So the…
Vikram
  • 1
  • 1
0
votes
2 answers

Does Perl have RIA frameworks like zkoss or Vaadin in Java?

I am new to Perl. I would like to know if Perl has RIA (Rich Internet Application) frameworks like zkoss or Vaadin or GWT from Java? How do Java and Perl compare in terms of memory management and pattern design?
Ramesh
  • 2,295
  • 5
  • 35
  • 64
0
votes
1 answer

Unable to access new database fields after rebuilding RiaService

I have a solution that uses a RiaService project. I have been using it successfully for quite some time. On my last database change though, I came across a problem where any new fields are giving an error when I access them in my Silverlight…
0
votes
1 answer

Get last inserted ID in Silverlight 4.0

DomainServiceAccountManager d = new DomainServiceAccountManager(); Web.Buy b=new Web.Buy(); b.ID_member = IDMemberToBuy; b.Money = MoneyBuy; b.Tarikh = tarikh; b.Hesab = false; d.Buys.Add(b); d.SubmitChanges(op => {…
0
votes
1 answer

No DomainDataSource in toolbox in Visual Studio

In Brad Adams' blogged walkthrough of the new RIA goodies, he mentions that you can simply drag a DomainDataSource from the toolbox to your XAML. All of my RIA kit came from links from that blog and I definitely have the July CTP, yet in my toolbox…
Peter Wone
  • 17,965
  • 12
  • 82
  • 134
0
votes
1 answer

MEF - How to compose a WCF RIA DomainService?

Is it possible to use MEF to compose a WCF RIA Domain Service? Let's say I've got below property in the Domain Service: [Import(RequiredCreationPolicy = CreationPolicy.Shared)] public TestClass Dependency{ get; set; } And the…
Alberto
  • 333
  • 2
  • 16
0
votes
1 answer

WCF RIA -joining two tables

I found a lot of explanations about this issue, but nothing that really helped me. The thing is simple. I have two tables on my dataModel: Events and TimeStamps, both have the field EntryID, which is the relation between them(the tables are in fact…
Avrum
  • 269
  • 2
  • 8
  • 16
0
votes
1 answer

Silverlight fetching latest version of data from database using WCF RIA Service

One of the ambition of business application is to allows multiple users running the application at the same time to manage huge of data. How do I get the latest version of data from the database with using WCF RIA Service? I have tried to use the…
0
votes
1 answer

Using multiple RIA silverlight links with shared server side entities

For a project I'm using Silverlight 4.0 with RIA and EntityFramework 4.0. I have three web projects: Common.Web: contains general types Workflow.Web: contains domainservices for workflows Monitor.Web: contains domainservices for monitors Both the…
Tom Kuijsten
  • 337
  • 4
  • 16
0
votes
1 answer

RIA Call fails after one hour exactly with : The remote server returned an error: NotFound

I've done my research and I understand this error message is very vague. But, I am wondering if someone might give me some insight. We have a long running RIA call that could take well over an hour or so. After one hour exactly, we get this error…
user1060500
  • 1,505
  • 1
  • 21
  • 40
0
votes
0 answers

No Database option in Silverlight project

I am creating a silverlight 4 project (with web site). When I try to add a data source to the project, I dont see database option in the list of options. There are only "service", "object" and "sharepoint" options. But there is no "database" option…
santubangalore
  • 796
  • 1
  • 12
  • 25
0
votes
1 answer

Detecting composite child items deleted

Given a parent that contains child collection, attributed with: [Include, Composition] public virtual ICollection FieldValues {get;set;} and doing a load: Context.Load(Context.GetQuery(),LoadBehavior.RefreshCurrent,true); I see…
Eugene Tolmachev
  • 822
  • 4
  • 14
0
votes
1 answer

Creating Custom Regristration in SIlverlight Business Application

I need to customize the default registration page in Silverlight Business template using my own SQL Server database and table fields. Same for login. How do I do this? Any good idea or documentation is higly appreciated. Thanks.