-
Calvin, It sounds like you may want to set TreeView's SoaServiceUrl property to the absolute URL of the WCF service (.svc). Is that an option?
-
I bought the ComponentArt suite because I want to focus on the application instead of learning all the intricate details of Ajax/Silverlight technologies.
I have reviewed the documentation on SOA, which gives technical details. I need a better understanding of the benefits of utilizing SOA.UI in layman’s terms.
-
Hi,
I am creating a Silverlight app for thin client users and a WPF app for thick client users. We were planning on using Prism and MVVM to handle the common presentation layer but I just noticed SOA.UI. How do the two compare? Do you have to use ComponentArt components? Any insight would be appreciated.
Thanks
Dan
-
Can I use SOA.UI with WPF?
I simply want the awsome virtualization you show for Silverligt datagrid, can I do that? my data is via my webservice.
Must if be a WFC webservice will it work with ASP.NET webservice (.NET 3.5)
-
Hi, We don't have a dedicated Refresh() method (one is already planned for SP2 or 2009.2 release, whichever comes first), but you can use the following (admittedly, not very intuitive) workaround: parentNode.IsExpanded = false; parentNode.IsLoadOnDemandCompleted = false; parentNode.IsLoadOnDemandEnabled = false; parentNode.IsLoadOnDemandEnabled = true; parentNode.Items.Clear(); parentNode.Dispatcher.BeginInvoke(() => { parentNode.IsExpanded = true; }); Refreshing the whole TreeView is more...
-
Hi, TreeView SoaRequestTag & SoaResponseTag properties will be available in the forthcoming service pack 1. In the meantime, you can use the following: TreeView1.BeforeSoaRequestSent += new EventHandler(TreeView1_BeforeSoaRequestSent); [...] void TreeView1_BeforeSoaRequestSent(object sender, TreeViewSoaRequestCancelEventArgs e) { e.Request.Tag = myExtraData; }
-
I remember reading on this forum about the security of the webservice. I'm still confused and disappointed that there was no satisfactory answer provided about it. Problem: most of the SOA applications are Protected applications, i.e. you must sign-in to use it. specially SaaS applications. Q. Please provide information about how to know which user is logged-in and calling the WS from client side. and how to present user based data. i.e. emails. Thanks, Nish.