Weird PermGen Error While Accessing External WebService

2012-11-07 Thread tapestry.kung.fu
I have a need to call third party web services (vcenter) to access some usage. They provides com.vmware.vim25.VimService which uses javax.xml.ws client stubs to login to webservices. I wrote Test cases to login to vcenter and those standalone Java code can login without any issue. But If i try to

Re: Weird PermGen Error While Accessing External WebService

2012-11-07 Thread tapestry.kung.fu
I am using Jetty plugin to run my app using maven. I am using Eclipse where I have tried these two things. Open Run Configuration for Maven Build 1) set "-Xms256m -Xmx2048m" in VM Arguments text box of JRE tab 2) set MAVEN_OPTS variable with value -Xmx2048m in Environment tab None of them work

Tapestry Tree Links with parameter

2012-06-26 Thread tapestry.kung.fu
I am having trouble passing parameters to page link while creating Tree with click-able links. This is how my code look like. 1) I have Pojo ValueWrapper which has two member variables label and pageName. Constructor of ValueWrapper takes label and pagename. I have one RootNode with ValueWrapper(

Re: Tapestry 5 Book EAP Launched

2012-08-01 Thread tapestry.kung.fu
Finally Long wait is over! I have funded for Printed Book. I am desperately waiting for more material to master tapestry 5. I know you are still working on final version but it would be great if you can provide what you have in pdf format. Not sure what are rules set by indiegogo.com. Thank you!

Tree Session Management Issue

2012-08-07 Thread tapestry.kung.fu
Hello all. I am building a web portal application where each user has their own cloud environment. I am representing user's cloud environment as a tree structure. When user login, I prepare their tree based on what ever cloud resources they have. *Once user select leaf in tree, new page opens up bu

Re: Tree Session Management Issue

2012-08-08 Thread tapestry.kung.fu
Bump! Come on somebody must know what's going on! There are many tapestry experts read this forum! Non of them knows what's going on here! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tree-Session-Management-Issue-tp5715132p5715171.html Sent from the Tapestry - User m

Re: Tree Session Management Issue

2012-08-09 Thread tapestry.kung.fu
Thanks. Yes. It has good implementation for equals and hashcode methods. Here is class. It almost seems like this has to something to do with Tapestry Tree component itself. I can't see to find a way to keep tree expanded on all pages. Any New page is opened first time, tree expansion is automati

Re: Tree Session Management Issue

2012-08-09 Thread tapestry.kung.fu
Yes you are right. It almost seems that Tree component has Session-State associated with individual Page. To solve this I can only have One Page Tied to Tree component and that Page should inject required component based on condition satisfied. Although, that is not very flexible solution and not g

Re: Tree Session Management Issue

2012-08-09 Thread tapestry.kung.fu
There is one more thing... Tree Updating Zones works fine how it is explained in this example (http://stackoverflow.com/questions/10261741/tapestry5-and-selection-on-tree-component) but I can't use that technique. I need full page refresh. When I call this first time it is preparing all Tree No

Tapestry5 Book By Igor

2012-08-14 Thread tapestry.kung.fu
Wow!! This is excellent book. I have read few chapters so far and I am impressed already. You are providing great detail about tapestry5 philosophy. This is exactly what I was looking for to combine all tapestry5 tutorial available online with full understanding of tapestry5 philosophy. Code exampl

JRebel Integration

2012-08-16 Thread tapestry.kung.fu
Is tapestry looking at integrating with JRebel? JRebel loads many other changes than just controlled packages. http://ed-link.techtarget.com/r/ZGEOMDV/TKEKS/1CV801/EYKON/Y5W47/LR/h?a=7873871 -- View this message in context: http://tapestry.1045711.n5.nabble.com/JRebel-Integration-tp5715496.htm

Re: JRebel Integration

2012-08-16 Thread tapestry.kung.fu
Tapestry core package live loading is bad ass. It truly is blessing. It made my development cycle extremely fast. Initially I was using tC server with STS but I realized that every time I make change in code, server was restarting for auto deploy. Then I just switch to jetty plugin and it worked ve

Re: tapestry by JEE standard

2012-08-17 Thread tapestry.kung.fu
Best way to start is by spending 25$ and get this book http://www.indiegogo.com/tapestry5book It explains everything you want to know. Tapestry Pages are Singleton. One Instance of Page is used between multiple threads. Page can either save data in application session OR page session. Applicati