SOAP Message Logging in GlassFish v2 and v3

I found a very nifty feature of GlassFish. You can configure GlassFish to log the contents of a SOAP request and response. I have found this to be very useful during development/debugging of Web Services. There is a different configuration parameter depending on which version of GlassFish you are using. GlassFish 3 This configuration is very simple. Edit your domain [...]

By |2014-03-12T21:51:31-04:00March 12, 2014|Glassfish, How-To, SOA|1 Comment

Install GlassFish 4 as a Windows Service

To install GlassFish 4 as a Window Service, you can use the create-service command. Follow these steps to setup the service: Open an MS-DOS window (Run As Administrator) [java] cd {your_glassfish_home}\glassfish\bin asadmin create-service --name domain1 [/java] This will create the service. You can verify this in the Windows Services control panel. By default, the service display name is domain1 GlassFish [...]

By |2013-11-13T06:50:12-05:00November 13, 2013|Glassfish, How-To|1 Comment

Configure SSL on GlassFish with GoDaddy Certificate: GlassFish 2 and GlassFish 3

This page describes the steps for setting up SSL on a GlassFish server. The SSL Certificate used is a GoDaddy certificate. If you are using a different CA then the steps should be similar. These steps apply to GlassFish 2 and GlassFish 3. Preliminary Steps: Backup your directory: <glassfish_install>\domains\domain1\config Stop the GlassFish server The following fields will change based on [...]

By |2012-05-09T15:33:21-04:00May 9, 2012|Glassfish|2 Comments

Install GlassFish 3.1 as a Windows Service

To install GlassFish 3.1 as a Window Service, you can use the create-service command. Follow these steps to setup the service: Open an MS-DOS window (Run As Administrator) [java] cd {your_glassfish_home}\glassfish\bin asadmin create-service --name domain1 [/java] This will create the service. You can verify this is the Windows Services control panel. By default, the service display name is domain1 GlassFish [...]

By |2011-11-12T14:04:54-05:00November 12, 2011|Glassfish, How-To|Comments Off on Install GlassFish 3.1 as a Windows Service

Remote Deployments of WAR files with GlassFish v2

GlassFish v2 provides support for remote deployment of application. In fact, you have two options for deploying applications remotely GlassFish admin web application GlassFish asadmin console application This blog post will focus on option 2, GlassFish asadmin console application. I prefer this approach since I can create a script that will automatically deploy the application. There is no requirement for [...]

By |2010-11-24T13:03:42-05:00November 24, 2010|Glassfish, How-To|1 Comment

Blank Page on GlassFish v3 Admin Console

I recently encountered a strange error with GlassFish v3. I installed GlassFish on one of my test servers. The installation went fine. Then I attempted to log into the Admin Console at http://localhost:4848.  The page informed me that it was initializing....then all of sudden the page went blank. I tried reloading but encountered the same problem. I checked the server [...]

By |2010-06-10T08:46:42-04:00June 10, 2010|Glassfish|Comments Off on Blank Page on GlassFish v3 Admin Console
Go to Top