I believe I am missing something here. What is the difference between WPF, WBA(Full Trust) applications,other than WBA with full trust runs in a web browser I think WPF is a windows application, either thick or smart client, WBA with partial trust is lke a Java Applet with WPF UI and WBA with full trust(Installed WBA) is like a windows application running in a browser. Is this correct

WPF, WBA(Full Trust) - What are the differences?
Hugo
sprague295
snuke
I am just exploring different capabilities of WInFX. Also, a thought, if I can offer my upcoming product as a subscription based full trust WBF application. With WBF, i feel I have greater control over the application based on the subscription status.
hmmmm
kwihu.hau
Windows Presentation Foundation is a platform for building rich client applications. You can build two “types” of WPF applications:
Standalone applications are full trust WPF applications that are installed windows applications.
Web Browser Applications are non-installed (cached) sandboxed browser-hosted applications. It is possible to create trusted full trust WBA applications, but these cannot be installed. At any trust level, WBAs are windows applications that are built using WPF.
I don’t know if by the term “windows applications,” you mean additional characteristics other than “built using windows technology to run on windows.” If you are, could you expand on your question
Coolad
1. WBA = regular Java Applet
2. WBA full trust = signed Java Applet - you can ask for more rights in a Java applet (like reading from the local hard disk) but you have to sign it with a certificate etc.
3. Standalone WPF application = Standalone Java application
Ponnette
Gaurav.Srivastava