javalibs.blogspot.com
Java Library @ TechLads: April 2008
http://javalibs.blogspot.com/2008_04_01_archive.html
Friday, April 25, 2008. Castor Xml mapping: mapping.loadMapping() gives IOException for filepath. This is very know problem i think and many of you know it but then also i am writing it here. For convert a Value Object class directly in pre-defined XML format we use castor mapping.We give xml mapping file (as we have seen in earlier tutorial) to. Class object as below which will write xml string in. Mapping mapping = new Mapping();. StrWriter = new StringWriter();. Mapping mapping = new Mapping();. I hav...
javalibs.blogspot.com
Java Library @ TechLads: Liferay Wrapper Plugins ...
http://javalibs.blogspot.com/2010/08/liferay-wrapper-plugins.html
Friday, August 20, 2010. Liferay Wrapper Plugins . Very nice article about liferay core functionality extension. You can create wrappers around core services and it will be in service when you compile-deploy it! Posted by Parth Barot. Subscribe to: Post Comments (Atom). There was an error in this gadget. There was an error in this gadget. Liefray And Me : Sandeep Nair. 169; 2007-2008 techdudes.blogspot.com.
javalibs.blogspot.com
Java Library @ TechLads: July 2010
http://javalibs.blogspot.com/2010_07_01_archive.html
Friday, July 30, 2010. Spring MVC portlet with annotations. Java portlet framework is awesome for portal developers. Different portal frameworks are there which supports portlet development in their environment. They also support spring portlet. Spring's portlet support is exposed through Spring MVC interface. Spring provides MVC based portlet development which is so easy and neatly architectured. Orgspringframework.web.portlet.DispatcherPortlet. Which is to be difined in. Portlet description xml:lang="e...
javalibs.blogspot.com
Java Library @ TechLads: Liferay: Exposing Webservice & access using Axis Client...
http://javalibs.blogspot.com/2010/08/liferay-exposing-webservice-access.html
Tuesday, August 31, 2010. Liferay: Exposing Webservice and access using Axis Client. Basically in liferay, we create services using service builder, which is like child's play. In service.xml, we need to put local and remote both attributes, and it will generate class for web service also. The link shows steps,. To generate web services using service builder. To generate WSDD changes. To access web service from Axis client. More @ http:/ arvindm.com/2010/03/23/web-services-in-liferay/.
javalibs.blogspot.com
Java Library @ TechLads: May 2008
http://javalibs.blogspot.com/2008_05_01_archive.html
Tuesday, May 20, 2008. Controlling Module Dependencies in Eclipse. J2EE Module Dependencies is a critical issue in an enterprise application. You need your one web module to access some re. Sources while prohibiting others. Similar is the case with EJB modules. Let’s figure it out with Eclipse Web Tools Platform. I consider that you all have ability to create projects and modules in Eclipse; so skipping those steps. I have Eclipse 3.3 with WTP 2.0 M6. D project with following details. As clients of any E...
shailgohel.blogspot.com
એક QA Engineer ની વાતો: May 2008
http://shailgohel.blogspot.com/2008_05_01_archive.html
Tuesday, May 13, 2008. What shoul be a sccessful tester. Source : thinking tester. Self Driven or high levels of Inner drive for learning new things – No fear of unknown. Spontaneous – Thinks on the feet – Good in emergency response. Love for Science (Physics/Chemistry), Mathematics and Philosophy. Love for problem, Puzzles. Hunger for self Expression – Writing, speaking. Organized Skepticism and constantly challenge their own thoughts. Posted by Shailesh Gohel. Links to this post. U Me Aur Hum. That aff...
javalibs.blogspot.com
Java Library @ TechLads: November 2008
http://javalibs.blogspot.com/2008_11_01_archive.html
Tuesday, November 25, 2008. Batch insert/update DB - Use XML as you data. Today we have many strange requirements because of latest developments in the IT market. We are having tons of data to be inserted in databases or files etc.Mainly for DB operation, we can use batch insert/update, which calls DB for multiple rows of params. We just can't answer this question.Yeah, we can't but we have different solution here. You just need to,. 1Create the XML data for Input param. 2Pass the XML,execute the SP.
javalibs.blogspot.com
Java Library @ TechLads: Liferay: Make Custom "Add Application" portlet ...
http://javalibs.blogspot.com/2010/08/liferay-make-custom-add-application.html
Tuesday, August 17, 2010. Liferay: Make Custom "Add Application" portlet . Sometimes client will amaze us by giving very very complex requirements which not seem to be a value adding thing. But still we need to complete it as it's our work :). Same happened here, when i need to make a portlet replicating the "Add Application" liferay portlet. Though its not new, it has given me chance to see how "Add Application" menu works. Basically liferay uses a Javascript file named. Where 87 is the portlet ID.
javalibs.blogspot.com
Java Library @ TechLads: July 2008
http://javalibs.blogspot.com/2008_07_01_archive.html
Monday, July 14, 2008. Remote Method call - EJB/HTTPClient/Web Service? This is not a new thing i am talking about,but i have used this for first time. Until now i have been used to EJB for remote method invocations. I use it for some bussiness logic which is on another distributed server. And i am not ashamed of telling that i have not used Web services :(. But my senior told me to check using HTTPClient from apache commons. PostMethod postMethod = new PostMethod("http:/ some.blah.com");. There was an e...