Browse Forum Posts by Tags

Showing related tags and posts for the Forums application.

  • Re: Hook TreeView Up to Remote SOA Service?

    Posted to SOA.UI for .NET by milos on Apr 13, 2010
    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?
  • Benefits of SOA.UI in Layman’s Terms

    Posted to General Feedback and Discussion by MachineWorker on Aug 28, 2009
    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.
  • SOA.UI vs. Prism

    Posted to SOA.UI for .NET by danielreber on Jun 30, 2009
    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
  • WPF data virtualization

    Posted to SOA.UI for .NET by kenneta on Jun 18, 2009
    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)
  • Re: How to refresh TreeNode data

    Posted to TreeView for Silverlight by jovca on May 6, 2009
    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...
  • Re: SoaRequestTag missing

    Posted to TreeView for Silverlight by jovca on Apr 29, 2009
    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; }
  • Small Question - SaaS model

    Posted to SOA.UI for .NET by Patelnishit on Apr 25, 2009
    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.
Page 1 of 1 (7 items)