Useful blog on Pluto
If you are trying to develop portlets on GlassFish using Pluto, The following blog will be useful.This blog covers more information than Apache documentation.
Posted at 02:07PM Feb 14, 2006 by sv96363 in Java |
@OneWay or @Oneway?
I was coding an oneway web service method. I looked for documentation about this annotation.I found the following on java.sun.com and another list on java.net.However I could not import javax.jws.OneWay. So Looks like java.jws.Oneway (@Oneway) is the right annotation. Hopefully these links will be fixed soon.
Posted at 11:55AM Feb 08, 2006 by sv96363 in Java |
Sample Portlet development in Glassfish
I copied the pluto-1.0.1.jar and portlet-api-1.0.jar from Apache Pluto 1.1 distribution into $GLASSFISH_HOME/lib. Please note that these jar files are in pluto-1.0.1/shared/lib directory. Started the GlassFish server.
I downloaded the Sample Portlet and copied to $GLASSFISH_HOME/domains/domain1/autodeploy.
Verified that deployment went through fine. The server.log had the following output:
Posted at 12:05AM Feb 07, 2006 by sv96363 in Java |
Samples in GlassFish
By default samples are not available in GlassFish builds. The following Build instructions talk about checking out the source and building the server from scratch. Once the build is complete, check out the 'packager'.
Posted at 06:57PM Jan 30, 2006 by sv96363 in Java |
Monitoring web services in Glassfish
JAX WS 2.0 and Annotations (JSR 181) makes developing Web Services easy. Now Glassfish takes it further by providing Monitoring functionality for Web Services. TechTip has been posted on java.sun.com where this is discussed with a sample application.
Posted at 02:31PM Jan 27, 2006 by sv96363 in Java |