| 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. Email: RadimBurget [[at] seznam [[.] cz'' | 
| ''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 4 lines. | 
| * [4] Configuring Appfuse - add *.jar library dependicies | 
| * [5] Configuring Appfuse - add interface to allow remote clients login | 
| * [6] Configuring RichClient - TODO | 
| * [7] Unsolved issues | 
| * [4] Configuring Appfuse - add *.jar library dependencies | 
| * [5] Configuring Appfuse - add interface to allow remote client logins | 
 | 
 | 
| * [6] Configuring RichClient - source code | 
| * [7] Configuring RichClient - libraries | 
| * [8] Unsolved issues | 
| At line 13 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 16 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 23 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 45 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 47 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 96 changed 1 line. | 
| !!! Configuring Appfuse - add *.jar library dependicies [#4] | 
| !!! Configuring Appfuse - add *.jar library dependencies [#4] | 
| At line 98 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 102 changed 1 line. | 
| To lib/lib.properties add path info: | 
| In lib/lib.properties add path info: | 
| At line 116 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 118 changed 1 line. | 
| Add in __build.xml__ hessian library dependency: | 
| Add to __build.xml__ the hessian library dependency: | 
| At line 132 changed 1 line. | 
| !!!Configuring Appfuse - add interface to allow remote clients login[#5] | 
| !!!Configuring Appfuse - add interface to allow remote client logins[#5] | 
| At line 134 changed 1 line. | 
| Add to web/WEB-INF/__applicationContextSecurity.xml__ add this bean: | 
| Add this bean to web/WEB-INF/__applicationContextSecurity.xml__: | 
| At line 145 changed 1 line. | 
| !!! Configuring RichClient[#6] | 
| !!! Configuring RichClient - source code[#6] | 
| At line 147 changed 1 line. | 
| TODO: | 
| Download the [Appfuse Rich Client source code|http://raibledesigns.com/wiki/attach?page=RichClient%2Fappfuse-richclient.zip] and copy them to your Appfuse project. | 
| At line 149 changed 1 line. | 
| !!! Unsolved issues [#7] | 
| %%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 151 changed 1 line. | 
| TODO: | 
| !!! Configuring RichClient - libraries [#7] | 
 | 
| 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. | 
| <div style="margin-left: 40px"> | 
| {{{ | 
| appfuse/lib  | 
|     /caucho | 
|         (84 871) burlap.jar | 
|         (83 245) hessian.jar | 
|     /jgoodies | 
|         (85 502)  forms.jar | 
|         (338 486) looks.jar | 
|     /spring-rcp | 
|         (366 615) spring-richclient-resources.jar | 
|          (59 691) spring-richclient-sandbox.jar | 
|         (736 813) spring-richclient.jar | 
|     /javahelp | 
|         (531 676) javahelp.jar | 
|     /spring | 
|         (741 379) spring-sandbox.jar | 
| }}} | 
| </div> | 
 | 
| My collection of JAR files can be downloaded from [here|http://raibledesigns.com/wiki/attach?page=RichClient%2Flib.zip]. | 
 | 
| Now you should be able to compile and run your application (org.appfuse.richclient.PetClinicClientServer) | 
 | 
| %%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")%% | 
 | 
| !!! Unsolved issues [#8] | 
 | 
| ** 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> |