Raible's Wiki

Raible Designs
Wiki Home
News
Recent Changes

AppFuse

Homepage
  - Korean
  - Chinese
  - Italian
  - Japanese

QuickStart Guide
  - Chinese
  - French
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish
  - Japanese

User Guide
  - Korean
  - Chinese

Tutorials
  - Chinese
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish

FAQ
  - Korean

Latest Downloads

Other Applications

Struts Resume
Security Example
Struts Menu

Set your name in
UserPreferences


Referenced by
Articles
Articles_de
Articles_pt
Articles_zh




JSPWiki v2.2.33

[RSS]


Hide Menu

RichClient


Difference between version 35 and version 29:

At line 1 changed 1 line.
''Please note that this tutorial is under development and here is not yet solved some issues. If you find any solution how to solve some problem I will very appreciate your help. Contact: [Radim Burget|RadimBurget]
''Please note that this tutorial is under development and there are still some unsolved issues. If you find solutions to any of them I would very much appreciate your help. Contact: [Radim Burget|RadimBurget]''
At line 7 changed 2 lines.
* [4] Configuring Appfuse - add *.jar library dependicies
* [5] Configuring Appfuse - add interface to allow remote clients login
* [4] Configuring Appfuse - add *.jar library dependencies
* [5] Configuring Appfuse - add interface to allow remote client logins
At line 14 changed 1 line.
The goal of the [spring-richclient project|http://www.springframework.org/spring-rcp] is to provide a viable option for developers that need a platform and a 'best-practices' guide forconstructing professional Swing applications quickly.
The goal of the [spring-richclient project|http://www.springframework.org/spring-rcp] is to provide a viable option for developers that need a platform and 'best-practices' guide for constructing professional Swing applications quickly.
At line 18 added 1 line.
My work is based on the Spring-rcp Pet Clinic Demo (in [CVS|http://sourceforge.net/cvs/?group_id=113660] only) and my efforts in integrating it with Appfuse.
At line 17 removed 2 lines.
My work is based on Spring-rcp Petclinic Demo (in [CVS|http://sourceforge.net/cvs/?group_id=113660] only) and I tryed to integrate it with Appfuse.
At line 24 changed 1 line.
Add this part of code to metadata/web/__servlets.xml__
Add this portion of code to metadata/web/__servlets.xml__
At line 46 changed 1 line.
Create ws servlet XML beans descriptor. While I am using [Hessian|http://www.caucho.com/hessian/] instead of [Burlap|http://www.caucho.com/burlap/burlap.xtp] I have commented unused part of code. If you will ever want to use the burlap instead hessian uncomment this part of code.
Create a ws servlet XML beans descriptor. Because I am using [Hessian|http://www.caucho.com/hessian/] instead of [Burlap|http://www.caucho.com/burlap/burlap.xtp] I have commented out Burlap-specific portions of the code. If you ever want to use Burlap instead just uncomment this part of the code.
At line 48 changed 1 line.
Difference between Hessian and Burlap is that Hessian is binary and Burlap XML based.
The main difference between Hessian and Burlap is that Hessian is binary and Burlap is XML-based.
At line 97 changed 1 line.
!!! Configuring Appfuse - add *.jar library dependicies [#4]
!!! Configuring Appfuse - add *.jar library dependencies [#4]
At line 99 changed 1 line.
For more details read [how to add library to appfuse|http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseAddLibrary] here.
For more details read [how to add a library into appfuse|http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseAddLibrary] here.
At line 103 changed 1 line.
To lib/lib.properties add path info:
In lib/lib.properties add path info:
At line 117 changed 1 line.
If you will ever need burlap do the same with burlap *.jar files.
If you will ever need burlap do the same with the burlap *.jar files.
At line 119 changed 1 line.
Add in __build.xml__ hessian library dependency:
Add to __build.xml__ the hessian library dependency:
At line 133 changed 1 line.
!!!Configuring Appfuse - add interface to allow remote clients to login[#5]
!!!Configuring Appfuse - add interface to allow remote client logins[#5]
At line 135 changed 1 line.
Add to web/WEB-INF/__applicationContextSecurity.xml__ add this bean:
Add this bean to web/WEB-INF/__applicationContextSecurity.xml__:
At line 150 changed 1 line.
%%note __NOTE__ At first I tryied to set new standalone project which will be independent on appfuse and will be only referencing to Appfuse project. Unfortunetly I had some issues with compilation so I decided to inegarte it directly to project.%%
%%note __NOTE__ At first I tried to create a new standalone project that referenced the Appfuse project but was independent from it. Unfortunately I had some issues with compilation so I decided to integrate it directly to the project.%%
At line 154 changed 1 line.
You will need to download this jar archives and add to class path in eclipse (Eclipse: Project/Properties/Java Build Path/Libraries/Add JARs) Do not forget to refersh appfuse directory structure please.
You will need to download these jar archives and add them to the Eclipse classpath (Eclipse: Project/Properties/Java Build Path/Libraries/Add JARs). Be sure not to forget to refresh the appfuse directory structure afterwards.
At line 175 changed 1 line.
My [colection of JAR files|http://raibledesigns.com/wiki/attach?page=RichClient%2Flib.zip] could be downloaded here.
My collection of JAR files can be downloaded from [here|http://raibledesigns.com/wiki/attach?page=RichClient%2Flib.zip].
At line 177 changed 1 line.
Now you should be able compile and run your application (org.appfuse.richclient.PetClinicClientServer)
Now you should be able to compile and run your application (org.appfuse.richclient.PetClinicClientServer)
At line 179 changed 1 line.
%%note __NOTE:__ Please andsure that your server is running ([http://localhost:8080/appfuse/ws/Clinic-hessian| http://localhost:8080/appfuse/ws/Clinic-hessian] displays exception "HessianServiceExporter only supports POST requests")%%
%%note __NOTE:__ Please ensure that your server is running ([http://localhost:8080/appfuse/ws/Clinic-hessian| http://localhost:8080/appfuse/ws/Clinic-hessian] displays exception "HessianServiceExporter only supports POST requests")%%
At line 183 changed 1 line.
TODO:
** On successfull login is thrown Exception ClassNotFoundException: net.sf.acegisecurity.context.SecureContextImpl
** on __userManager.getUsers(null)__ exception :
org.hibernate.LazyInitializationException
!! ClassNotFoundException
Username is not yet crypted so I recomend to add new user to your database with __username__:test, __password__:test.
On unsuccessful login everything is OK and is shown "Bad Credentials" message.
On unsuccessfull login is thrown exception - In each appfusem 1.8 is in classpath included __lib\spring-1.2-rc2\acegi-security-0.8.2.jar__ which contains net.sf.acegisecurity.context.security.__SecureContextImpl__ class so I dont know where should be the problem :(
<div style="margin-left: 40px">
{{{
java.lang.NoClassDefFoundError
at org.springframework.richclient.security.SessionDetails.class$(SessionDetails.java:97)
at org.springframework.richclient.security.SessionDetails.getSecureContextClass(SessionDetails.java:97)
at org.springframework.richclient.security.SessionDetails.login(SessionDetails.java:110)
at org.springframework.richclient.security.LoginForm.commit(LoginForm.java:57)
at org.springframework.richclient.security.LoginCommand$1.onFinish(LoginCommand.java:79)
at org.springframework.richclient.dialog.ApplicationDialog$1.doExecuteCommand(ApplicationDialog.java:322)
at org.springframework.richclient.command.ActionCommand.execute(ActionCommand.java:188)
at org.springframework.richclient.command.ActionCommand$1.actionPerformed(ActionCommand.java:123)
at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
at java.awt.Component.processMouseEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.Container.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Window.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.Dialog$1.run(Unknown Source)
at java.awt.event.InvocationEvent.dispatch(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
Caused by: java.lang.ClassNotFoundException: net.sf.acegisecurity.context.SecureContextImpl
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClassInternal(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
... 37 more
}}}
</div>
!! LazyInitializationException
<div style="margin-left: 40px">
{{{
org.hibernate.LazyInitializationException: failed to lazily initialize a collection - no session or session was closed
at org.hibernate.collection.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:180)
at org.hibernate.collection.AbstractPersistentCollection.write(AbstractPersistentCollection.java:61)
at org.hibernate.collection.PersistentSet.add(PersistentSet.java:158)
at com.caucho.hessian.io.CollectionDeserializer.readList(CollectionDeserializer.java:97)
at com.caucho.hessian.io.HessianInput.readObject(HessianInput.java:674)
at com.caucho.hessian.io.JavaDeserializer.readMap(JavaDeserializer.java:135)
at com.caucho.hessian.io.JavaDeserializer.readMap(JavaDeserializer.java:114)
at com.caucho.hessian.io.SerializerFactory.readMap(SerializerFactory.java:147)
at com.caucho.hessian.io.HessianInput.readObject(HessianInput.java:781)
at com.caucho.hessian.io.CollectionDeserializer.readList(CollectionDeserializer.java:97)
at com.caucho.hessian.io.HessianInput.readObject(HessianInput.java:678)
at com.caucho.hessian.io.HessianInput.readReply(HessianInput.java:241)
at com.caucho.hessian.client.HessianProxy.invoke(HessianProxy.java:179)
at $Proxy0.getUsers(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.springframework.remoting.caucho.HessianClientInterceptor.invoke(HessianClientInterceptor.java:115)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:144)
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:174)
at $Proxy1.getUsers(Unknown Source)
at org.appfuse.richclient.ui.OwnerManagerView.createOwnerManagerTree(OwnerManagerView.java:127)
at org.appfuse.richclient.ui.OwnerManagerView.createControl(OwnerManagerView.java:117)
at org.springframework.richclient.factory.AbstractControlFactory.getControl(AbstractControlFactory.java:48)
at org.springframework.richclient.application.support.DefaultApplicationPage.createPageComponent(DefaultApplicationPage.java:71)
at org.springframework.richclient.application.support.AbstractApplicationPage.showView(AbstractApplicationPage.java:155)
at org.springframework.richclient.application.support.AbstractApplicationPage.showView(AbstractApplicationPage.java:186)
at org.springframework.richclient.application.support.DefaultApplicationPage.addView(DefaultApplicationPage.java:78)
at org.springframework.richclient.application.support.SingleViewPageDescriptor.buildInitialLayout(SingleViewPageDescriptor.java:60)
at org.springframework.richclient.application.support.DefaultApplicationPage.getControl(DefaultApplicationPage.java:45)
at org.springframework.richclient.application.support.DefaultApplicationWindow.applyCustomLayout(DefaultApplicationWindow.java:235)
at org.springframework.richclient.application.support.DefaultApplicationWindow.initWindowControl(DefaultApplicationWindow.java:220)
at org.springframework.richclient.application.support.DefaultApplicationWindow.initWindow(DefaultApplicationWindow.java:210)
at org.springframework.richclient.application.support.DefaultApplicationWindow.showPage(DefaultApplicationWindow.java:151)
at org.springframework.richclient.application.Application.openWindow(Application.java:163)
at org.springframework.richclient.application.ApplicationLauncher.launchMyRichClient(ApplicationLauncher.java:178)
at org.springframework.richclient.application.ApplicationLauncher.<init>(ApplicationLauncher.java:100)
at org.appfuse.richclient.PetClinicClientServer.main(PetClinicClientServer.java:41)
}}}
</div>

Back to RichClient, or to the Page History.