Are there instructions for getting OWF running in JBoss?

636 views
Skip to first unread message

Andre Flory

unread,
Jan 15, 2013, 11:49:32 AM1/15/13
to ozonepla...@googlegroups.com
I am trying to find instructions for getting OWF 7 running in JBoss. Anyone know where I can locate such instructions?

Respectfully,
Andre

Ross Pokorny

unread,
Jan 15, 2013, 12:04:56 PM1/15/13
to ozonepla...@googlegroups.com

Andre

 

The following instructions explain how to deploy OWF on JBoss AS 7. They were adapted from instructions for OWF 4 and have not been tested with OWF 7, so let me know if you encounter any hiccups. If you are using an older version of JBoss, we also have instructions for JBoss AS 6.1.

 

Installing OWF 7 on JBoss AS 7

  1.  
    <?xml version="1.0" encoding="UTF-8"?>
    <module xmlns="urn:jboss:module:1.1" name="ozone.configuration">
     
        <resources>
            <resource-root path="."/>
        </resources>
     
        <dependencies>
        </dependencies>
    </module>
    1.  
      <?xml version="1.0" encoding="UTF-8"?>
      <jboss-deployment-structure>
          <deployment>
              <!-- Do not use jboss's built in log4j -->
              <exclusions>
                  <module name="org.apache.log4j" />
              </exclusions>
              <!-- Include OWF's external configuration module -->
              <dependencies>
                  <module name="ozone.configuration"/>
              </dependencies>
          </deployment>
          <!-- Use OWFs log4j -->
          <module name="deployment.log4j">
              <resources>
                  <resource-root path="log4j-1.2.16.jar" />
              </resources>
          </module>
      </jboss-deployment-structure>
    2.  
      <connector name="https"
        protocol="HTTP/1.1"
        scheme="https"
        socket-binding="https"
        secure="true">
          <ssl name="ssl"
            password="changeit"
            certificate-key-file="${jboss.server.config.dir}/owf-keystore.jks"
            protocol="TLSv1"
            verify-client="want"
            ca-certificate-file="${jboss.server.config.dir}/owf-keystore.jks"/>
      </connector>
      1.  

        Ross Pokorny

        OWF Community Support Team

Andre Flory

unread,
Jan 15, 2013, 3:43:51 PM1/15/13
to ozonepla...@googlegroups.com
Yes, it's an old version of JBoss, actually 5.1.0

Ross Pokorny

unread,
Jan 16, 2013, 8:36:01 AM1/16/13
to ozonepla...@googlegroups.com

Here are the instructions for JBoss 6, which should also work for JBoss 5. Again, these wre written for OWF 4 and adapted for OWF 7, so please let us know if you encounter difficulties. Also, I have noticed that the previous set of instructions that I sent out do not appear to have formatted correctly in HTML mode. If these instructions come through with steps appearing to be missing, as the last set did, try viewing this email in plain text mode.

 

These directions describe how to deploy owf.war in JBoss-6.1.0-Final, using x509 certificate authentication only.  Consult JBoss documentation for information on JBoss performance tuning and security lock-down.

 

SET UP JBOSS AND SSL IN JBOSS:

1.  Download and install JBoss-6.1.0-Final. 

2.  Copy contents of directory [jbossInstall]/server/default to a new directory - it can have any name, but we will call this owf7.  This will be your owf server directory.  NOTE: other JBoss configurations should work fine as well, although not every one has been tested. Please report any issues encountered on the google group.

3.  Copy the directory  [owf-bundle]/apache-tomcat-7.0.21/certs   from the OWF bundle to [jbossInstall]/server/owf7/conf,  such that you now have a [jbossInstall]/server/owf7/conf/certs directory containing the application default x509 certificates.

4.  Copy the OWF hypersonic database to [jbossInstall]/bin.  These file can be found at [owfBundle]/apache-tomcat-7.0.21/prodDb.script.   

5.  Copy files

  • from the OWF bundle into[jbossInstall]/server/owf7/conf[owfbundle]/apache-tomcat-7.0.21/lib6.  Enable https by modifying  [jbossInstall]/server/owf7/deploy/jbossweb.sar/server.xml   and add this connector:

 

<Connector

         protocol="HTTP/1.1"

         SSLEnabled="true"

         port="8443"

         address="${jboss.bind.address}"

         scheme="https"

         secure="true"

         clientAuth="want"

         keystoreFile="${jboss.server.home.dir}/conf/certs/keystore.jks"

         keystorePass="changeit"

         truststoreFile="${jboss.server.home.dir}/conf/certs/keystore.jks"

         truststorePass="changeit"

         sslProtocol = "TLS" />

MODIFY OWF.WAR

1.  Copy the owf.war into the [jbossInstall]/server/owf7/deploy directory.  Use the java jar tool or Zip utility to unzip the contents of the file to a subdirectory - we will call this  owf, or simply [appInstall].

2.  Workaround JTA provider conflict:  remove the following from [appInstall]/WEB-INF/lib:

  • 3.  Either rename the[appInstall]owf.war

jar -cvf owf.war *

and remove the directory.  Either way, it does need to be named owf.war so that JBoss will deploy the webapp under context owf/.

4.  Launch JBoss using the owf7 instance, e.g.

 

[jbossInstall]/bin/run -c owf7

 

Ross Pokorny

OWF Community Support Team

 

On Tuesday, January 15, 2013 12:43:51 PM Andre Flory wrote:

> Yes, it's an old version of JBoss, actually 5.1.0

>

> On Tuesday, January 15, 2013 12:04:56 PM UTC-5, Ross Pokorny wrote:

> > Andre

> >

> > The following instructions explain how to deploy OWF on JBoss AS 7. They

> > were adapted from instructions for OWF 4 and have not been tested with OWF

> > 7, so let me know if you encounter any hiccups. If you are using an older

> > version of JBoss, we also have instructions for JBoss AS 6.1.

> >

> >

> >

> > Installing OWF 7 on JBoss AS 7

> >

> > 1.

> > 2.

> >

> > <?xml version="1.0" encoding="UTF-8"?>

> >

> > <module xmlns="urn:jboss:module:1.1" name="ozone.configuration">

> >

> > <resources>

> >

> > <resource-root path="."/>

> >

> > </resources>

> >

> >

> >

> > <dependencies>

> >

> > </dependencies>

> >

> > </module>

> >

> > 1.

> >

> > 2.

> >

> > <?xml version="1.0" encoding="UTF-8"?>

> >

> > <jboss-deployment-structure>

> >

> > <deployment>

> >

> > <!-- Do not use jboss's built in log4j -->

> >

> > <exclusions>

> >

> > <module name="org.apache.log4j" />

> >

> > </exclusions>

> >

> > <!-- Include OWF's external configuration module -->

> >

> > <dependencies>

> >

> > <module name="ozone.configuration"/>

> >

> > </dependencies>

> >

> > </deployment>

> >

> > <!-- Use OWFs log4j -->

> >

> > <module name="deployment.log4j">

> >

> > <resources>

> >

> > <resource-root path="log4j-1.2.16.jar" />

> >

> > </resources>

> >

> > </module>

> >

> > </jboss-deployment-structure>

> >

> > 3.

> > 4.

> > 5.

> > 6.

> >

> > <connector name="https"

> >

> > protocol="HTTP/1.1"

> >

> > scheme="https"

> >

> > socket-binding="https"

> >

> > secure="true">

> >

> > <ssl name="ssl"

> >

> > password="changeit"

> >

> > certificate-key-file="${jboss.server.config.dir}/owf-keystore.

> > jks"

> >

> > protocol="TLSv1"

> >

> > verify-client="want"

> >

> > ca-certificate-file="${jboss.server.config.dir}/owf-keystore.j

> > ks"/>

> >

> > </connector>

> >

> > 1.

> >

> > 2.

Andre Flory

unread,
Jan 16, 2013, 9:54:20 AM1/16/13
to ozonepla...@googlegroups.com
Thanks Ross, for your help. I will go through this and let you know how I do.

Respectfully,
Andre

Andre Flory

unread,
Jan 16, 2013, 1:22:29 PM1/16/13
to ozonepla...@googlegroups.com
Hi Ross,

I think there is a couple of typos in this set of directions. Step 6. is running into step 5.

Step 5 I believe should be this: (Something is transposed): 5.  Copy files from [owfbundle]/apache-tomcat-7.0.21/lib to the OWF bundle into[jbossInstall]/server/owf7/conf


Respectfully,
Andre

On Wednesday, January 16, 2013 8:36:01 AM UTC-5, Ross Pokorny wrote:

Lisa Hoffman

unread,
Jan 16, 2013, 1:22:57 PM1/16/13
to ozonepla...@googlegroups.com
Andre:

Were you successful?  I am getting numerous errors.  Seems the instructions are missing something.

Lisa

Lisa Hoffman

unread,
Jan 16, 2013, 1:25:12 PM1/16/13
to ozonepla...@googlegroups.com
Ross:

Getting several errors.  Here is the first:

2013-01-15 16:16:24,220 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/owf]] (main) Exception sending context initialized event to listener instance of class org.codehaus.groovy.grails.web.context.GrailsContextLoaderListener
org.springframework.beans.factory.access.BootstrapException: Error executing bootstraps; nested exception is org.springframework.dao.InvalidDataAccessResourceUsageException: could not execute query; SQL [select this_.id as id18_0_, this_.version as version18_0_, this_.description as descript3_18_0_, this_.email as email18_0_, this_.email_show as email5_18_0_, this_.enabled as enabled18_0_, this_.last_login as last7_18_0_, this_.prev_login as prev8_18_0_, this_.user_real_name as user9_18_0_, this_.username as username18_0_ from person this_ where this_.username=?]; nested exception is org.hibernate.exception.SQLGrammarException: could not execute query

Any Clues?

Lisa

On Wednesday, January 16, 2013 8:36:01 AM UTC-5, Ross Pokorny wrote:

Andre Flory

unread,
Jan 16, 2013, 1:37:54 PM1/16/13
to ozonepla...@googlegroups.com
I am still going through the steps, I'll let you know soon.

Respectfully,
Andre

Ross Pokorny

unread,
Jan 16, 2013, 1:50:57 PM1/16/13
to ozonepla...@googlegroups.com
Lisa

I assume you are using the default hsql database? If so, it is important to
run jboss such that its working directory is the directory containing the
prodDb.script file that was copied over from the OWF bundle. If you followed
the instructions, that would be the bin/ directory. If you ran JBoss from
another directory, you would get an error like the one you posted, and you
would probably see another, mostly empty prodDb.script file get created in the
current directory (the file might not appear until the server is shut down).
Does this describe your situation?

Ross Pokorny
OWF Community Support Team

> > - from the OWF bundle into
> > [jbossInstall]/server/owf7/conf[owfbundle]/apache-tomcat-7.0.21/lib6.
> > Enable https by modifying
> > [jbossInstall]/server/owf7/deploy/jbossweb.sar/server.xml and add
> >
> > this connector:
> > <Connector
> >
> > protocol="HTTP/1.1"
> >
> > SSLEnabled="true"
> >
> > port="8443"
> >
> > address="${jboss.bind.address}"
> >
> > scheme="https"
> >
> > secure="true"
> >
> > clientAuth="want"
> >
> > keystoreFile="${jboss.server.home.dir}/conf/certs/keystore.jks"
> >
> > keystorePass="changeit"
> >
> > truststoreFile="${jboss.server.home.dir}/conf/certs/keystore.jks"
> >
> > truststorePass="changeit"
> >
> > sslProtocol = "TLS" />
> >
> > MODIFY OWF.WAR
> >
> > 1. Copy the owf.war into the [jbossInstall]/server/owf7/deploy directory.
> > Use the java jar tool or Zip utility to unzip the contents of the file to
> > a
> > subdirectory - we will call this owf, or simply [appInstall].
> >
> > 2. Workaround JTA provider conflict: remove the following from
> >
> > [appInstall]/WEB-INF/lib:
> > - 3. Either rename the[appInstall]owf.war
> > original<https://groups.google.com/group/ozoneplatform-dev/msg/73dd57fa90
> > d7a4af?dmode=source&output=gplain&noredirect>

Andre Flory

unread,
Jan 16, 2013, 2:12:57 PM1/16/13
to ozonepla...@googlegroups.com
Hi Ross,

I need further clarification. The text seems to have gotten messed up on steps for modifying the owf.war file.

See here:
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

2.  Workaround JTA provider conflict:  remove the following from [appInstall]/WEB-INF/lib:

  • 3.  Either rename the[appInstall]owf.war

jar -cvf owf.war *

and remove the directory.  Either way, it does need to be named owf.war so that JBoss will deploy the webapp under context owf/.

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Step 2: what am I suppose to remove from the [appInstall]/WEB-INF/lib directory? It doesn't state what I am suppose to remove.

Step 3 seems to have gotten bulleted when it shouldn't be, and this step doesn't make sense to me. Am I suppose to turn the appInstall directory into the owf.war file and then delete the appInstall directory and over write the owf.war file that is there from a previous step?


Thanks in advance. I will probably have to continue this tomorrow.

Respectfully,
Andre

Ross Pokorny

unread,
Jan 16, 2013, 4:03:06 PM1/16/13
to ozonepla...@googlegroups.com
Strange, lets try this as just a plain text email. I think my mail client is
messing up the html. Please note that part of step 5 also appears to have been
missing in the previous email.

-----------------------------------------------------------------

These directions describe how to deploy owf.war in JBoss-6.1.0-Final, using
x509 certificate authentication only. Consult JBoss documentation for
information on JBoss performance tuning and security lock-down.

SET UP JBOSS AND SSL IN JBOSS:
1. Download and install JBoss-6.1.0-Final.

2. Copy contents of directory [jbossInstall]/server/default to a new
directory - it can have any name, but we will call this owf7. This will be
your owf server directory. NOTE: other JBoss configurations should work fine as
well, although not every one has been tested. Please report any issues
encountered on the google group.

3. Copy the directory [owf-bundle]/apache-tomcat-7.0.21/certs from the OWF
bundle to [jbossInstall]/server/owf7/conf, such that you now have a
[jbossInstall]/server/owf7/conf/certs directory containing the application
default x509 certificates.

4. Copy the OWF hypersonic database to [jbossInstall]/bin. These file can be
found at [owfBundle]/apache-tomcat-7.0.21/prodDb.script.

5. Copy files

OwfConfig.groovy
OWFsecurityContext_cert_only.xml
users.properties
ozone-security-beans/
js-plugins/
help/
themes/

from the OWF bundle into [jbossInstall]/server/owf7/conf. These can be found
under [owfbundle]/apache-tomcat-7.0.21/lib.

6. Enable https by modifying
[jbossInstall]/server/owf4/deploy/jbossweb.sar/server.xml and add this
connector:

<Connector
protocol="HTTP/1.1"
SSLEnabled="true"
port="8443"
address="${jboss.bind.address}"
scheme="https"
secure="true"
clientAuth="want"
keystoreFile="${jboss.server.home.dir}/conf/certs/keystore.jks"
keystorePass="changeit"
truststoreFile="${jboss.server.home.dir}/conf/certs/keystore.jks"
truststorePass="changeit"
sslProtocol = "TLS" />

MODIFY OWF.WAR
1. Copy the owf.war into the [jbossInstall]/server/owf7/deploy directory.
Use the java jar tool or Zip utility to unzip the contents of the file to a
subdirectory - we will call this owf, or simply [appInstall].

2. Workaround JTA provider conflict: remove the following from
[appInstall]/WEB-INF/lib:

jta-1.1.jar

3. Either rename the [appInstall] directory as 'owf.war', or re-package the
directory as a proper WAR file, e.g.

jar -cvf owf.war *
and remove the directory. Either way, it does need to be named owf.war so
that JBoss will deploy the webapp under context owf/.

4. Launch JBoss using the owf7 instance, e.g.

bin/run -c owf7

If using the HSQL database, ensure that jboss is running in the directory
containing the prodDb.script file.

-------------------------------------------------------------------------------------

Ross Pokorny
OWF Community Support Team

On Wednesday, January 16, 2013 11:12:57 AM Andre Flory wrote:
> Hi Ross,
>
> I need further clarification. The text seems to have gotten messed up on
> steps for modifying the owf.war file.
>
> See here:
> ----------------------------------------------------------------------------
> ----------------------------------------------------------------------------
> -------------------------------------------
>
> 2. Workaround JTA provider conflict: remove the following from
> [appInstall]/WEB-INF/lib:
>
> - 3. Either rename the[appInstall]owf.war

Lisa Hoffman

unread,
Jan 16, 2013, 4:25:54 PM1/16/13
to ozonepla...@googlegroups.com
I got past that error and am now having all sorts of .jar conflicts.

Lisa Hoffman

unread,
Jan 16, 2013, 4:26:23 PM1/16/13
to ozonepla...@googlegroups.com

Andre Flory

unread,
Jan 17, 2013, 1:53:46 PM1/17/13
to ozonepla...@googlegroups.com
Thank's Ross, that was definitely understandable now.

I could use some more guidance on what to do next see below.

Here is where I am at.

For step 5, I copied ALL the files under [owfbundle]/apache-tomcat-7.0.21/lib to [jbossInstall]/server/owf7/conf due to the previous glitch in the instructions missing the key files and folders to copy.

Could this be a problem?

I am getting errors. One that stands out, that has to do with the connector I added to the server.xml file in step 6.

Here is the error:

12:57:15,580 ERROR [STDERR] SystemId Unknown; Line #34; Column #1; Element type "Connector" must be followed by either attribute specifications, ">" or "/>".

Here is the exert from my server.xml file:

---------------------------------
<Server>

   <!-- Optional listener which ensures correct init and shutdown of APR,
        and provides information if it is not installed -->
   <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
   <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
   <Listener className="org.apache.catalina.core.JasperListener" />

   <Service name="jboss.web">

      <!-- A HTTP/1.1 Connector on port 8080 -->
      <Connector protocol="HTTP/1.1" port="8080" address="${jboss.bind.address}"
               connectionTimeout="20000" redirectPort="8443" />

      <!-- Add this option to the connector to avoid problems with
          .NET clients that don't implement HTTP/1.1 correctly
         restrictedUserAgents="^.*MS Web Services Client Protocol 1.1.4322.*$"
      -->

      <!-- A AJP 1.3 Connector on port 8009 -->
      <Connector protocol="AJP/1.3" port="8009" address="${jboss.bind.address}"
         redirectPort="8443" />

      <!-- SSL/TLS Connector configuration using the admin devl guide keystore

      <Connector protocol="HTTP/1.1" SSLEnabled="true"
           port="8443" address="${jboss.bind.address}"
           scheme="https" secure="true" clientAuth="false"
           keystoreFile="${jboss.server.home.dir}/conf/chap8.keystore"
           keystorePass="rmi+ssl" sslProtocol = "TLS" />
      -->

<!-- Added this for OWF7 installation -->

<Connector protocol="HTTP/1.1" SSLEnabled="true"
         port="8443" address="${jboss.bind.address}"
         scheme="https" secure="true" clientAuth="want"
         keystoreFile="${jboss.server.home.dir}/conf/certs/keystore.jks"
         keystorePass="changeit"
         truststoreFile="${jboss.server.home.dir}/conf/certs/keystore.jks"
         truststorePass="changeit"
         sslProtocol="TLS" />

      <Engine name="jboss.web" defaultHost="localhost">

         <!-- The JAAS based authentication and authorization realm implementation
         that is compatible with the jboss 3.2.x realm implementation.
         - certificatePrincipal : the class name of the
         org.jboss.security.auth.certs.CertificatePrincipal impl
         used for mapping X509[] cert chains to a Princpal.
         - allRolesMode : how to handle an auth-constraint with a role-name=*,
         one of strict, authOnly, strictAuthOnly
           + strict = Use the strict servlet spec interpretation which requires
           that the user have one of the web-app/security-role/role-name
           + authOnly = Allow any authenticated user
           + strictAuthOnly = Allow any authenticated user only if there are no
           web-app/security-roles
         -->
         <Realm className="org.jboss.web.tomcat.security.JBossWebRealm"
            certificatePrincipal="org.jboss.security.auth.certs.SubjectDNMapping"
            allRolesMode="authOnly"
            />

---------------------------------

And here is the last output in my command prompt:

java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(Reflec
tionUtils.java:59)
        at org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(
ReflectMethodInfoImpl.java:150)
        at org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethod
JoinPoint.java:66)
        at org.jboss.beans.info.plugins.AbstractBeanInfo.invoke(AbstractBeanInfo
.java:300)
        at org.jboss.kernel.plugins.dependency.AbstractKernelControllerContext.i
nvoke(AbstractKernelControllerContext.java:286)
        at org.jboss.dependency.plugins.AbstractLifecycleCallbackItem.install(Ab
stractLifecycleCallbackItem.java:87)
        at org.jboss.dependency.plugins.AbstractController.handleLifecycleCallba
cks(AbstractController.java:1568)
        at org.jboss.dependency.plugins.AbstractController.handleInstallLifecycl
eCallbacks(AbstractController.java:1533)
        at org.jboss.dependency.plugins.AbstractController.incrementState(Abstra
ctController.java:943)
        at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
actController.java:1082)
        at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
actController.java:984)
        at org.jboss.dependency.plugins.AbstractController.install(AbstractContr
oller.java:774)
        at org.jboss.dependency.plugins.AbstractController.install(AbstractContr
oller.java:540)
        at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(B
eanMetaDataDeployer.java:121)
        at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(B
eanMetaDataDeployer.java:51)
        at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.i
nternalDeploy(AbstractSimpleRealDeployer.java:62)
        at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(
AbstractRealDeployer.java:50)
        at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(Deployer
Wrapper.java:171)
        at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(Deployer
sImpl.java:1439)
        at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFi
rst(DeployersImpl.java:1157)
        at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFi
rst(DeployersImpl.java:1178)
        at org.jboss.deployers.plugins.deployers.DeployersImpl.install(Deployers
Impl.java:1098)
        at org.jboss.dependency.plugins.AbstractControllerContext.install(Abstra
ctControllerContext.java:348)
        at org.jboss.dependency.plugins.AbstractController.install(AbstractContr
oller.java:1631)
        at org.jboss.dependency.plugins.AbstractController.incrementState(Abstra
ctController.java:934)
        at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
actController.java:1082)
        at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
actController.java:984)
        at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
ller.java:822)
        at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
ller.java:553)
        at org.jboss.deployers.plugins.deployers.DeployersImpl.process(Deployers
Impl.java:781)
        at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeploye
rImpl.java:702)
        at org.jboss.system.server.profileservice.repository.MainDeployerAdapter
.process(MainDeployerAdapter.java:117)
        at org.jboss.system.server.profileservice.repository.ProfileDeployAction
.install(ProfileDeployAction.java:70)
        at org.jboss.system.server.profileservice.repository.AbstractProfileActi
on.install(AbstractProfileAction.java:53)
        at org.jboss.system.server.profileservice.repository.AbstractProfileServ
ice.install(AbstractProfileService.java:361)
        at org.jboss.dependency.plugins.AbstractControllerContext.install(Abstra
ctControllerContext.java:348)
        at org.jboss.dependency.plugins.AbstractController.install(AbstractContr
oller.java:1631)
        at org.jboss.dependency.plugins.AbstractController.incrementState(Abstra
ctController.java:934)
        at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
actController.java:1082)
        at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
actController.java:984)
        at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
ller.java:822)
        at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
ller.java:553)
        at org.jboss.system.server.profileservice.repository.AbstractProfileServ
ice.activateProfile(AbstractProfileService.java:306)
        at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(
ProfileServiceBootstrap.java:271)
        at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:
461)
        at org.jboss.Main.boot(Main.java:221)
        at org.jboss.Main$1.run(Main.java:556)
        at java.lang.Thread.run(Thread.java:662)
Caused by: org.xml.sax.SAXException: Premature end of file. @ *unknown*[-1,-1]
        at org.jboss.xb.binding.parser.sax.SaxJBossXBParser$MetaDataErrorHandler
.fatalError(SaxJBossXBParser.java:432)
        at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown Source)

        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
        at org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown
 Source)
        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
        at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
        at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
        at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Sour
ce)
        at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBPars
er.java:199)
        ... 103 more
12:58:37,339 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:
/Utilities/jboss-5.1.0.GA/server/owf7/deploy/jboss-local-jdbc.rar/META-INF/ra.xm
l
12:58:37,389 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:
/Utilities/jboss-5.1.0.GA/server/owf7/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
12:58:37,469 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:
/Utilities/jboss-5.1.0.GA/server/owf7/deploy/jms-ra.rar/META-INF/ra.xml
12:58:37,519 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:
/Utilities/jboss-5.1.0.GA/server/owf7/deploy/mail-ra.rar/META-INF/ra.xml
12:58:37,589 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:
/Utilities/jboss-5.1.0.GA/server/owf7/deploy/quartz-ra.rar/META-INF/ra.xml
12:58:37,899 INFO  [SimpleThreadPool] Job execution threads will use class loade
r of thread: main
12:58:38,009 INFO  [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
12:58:38,019 INFO  [RAMJobStore] RAMJobStore initialized.
12:58:38,019 INFO  [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzSchedule
r' initialized from default resource file in Quartz package: 'quartz.properties'

12:58:38,029 INFO  [StdSchedulerFactory] Quartz scheduler version: 1.5.2
12:58:38,029 INFO  [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUS
TERED started.
12:58:39,539 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jb
oss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
12:58:40,839 INFO  [ServerPeer] JBoss Messaging 1.4.3.GA server [0] started
12:58:41,039 INFO  [ConnectionFactoryJNDIMapper] supportsFailover attribute is t
rue on connection factory: jboss.messaging.connectionfactory:service=ClusteredCo
nnectionFactory but post office is non clustered. So connection factory will *no
t* support failover
12:58:41,049 INFO  [ConnectionFactoryJNDIMapper] supportsLoadBalancing attribute
 is true on connection factory: jboss.messaging.connectionfactory:service=Cluste
redConnectionFactory but post office is non clustered. So connection factory wil
l *not* support load balancing
12:58:41,239 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has l
easing enabled, lease period 10000 milliseconds
12:58:41,239 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.Co
nnectionFactory@264d0f97 started
12:58:41,249 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has l
easing enabled, lease period 10000 milliseconds
12:58:41,259 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.Co
nnectionFactory@e236395 started
12:58:41,299 INFO  [QueueService] Queue[/queue/DLQ] started, fullSize=200000, pa
geSize=2000, downCacheSize=2000
12:58:41,299 INFO  [QueueService] Queue[/queue/ExpiryQueue] started, fullSize=20
0000, pageSize=2000, downCacheSize=2000
12:58:41,309 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has l
easing enabled, lease period 10000 milliseconds
12:58:41,309 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.Co
nnectionFactory@441d25f5 started
12:58:41,619 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jb
oss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
12:58:42,969 INFO  [JBossASKernel] Created KernelDeployment for: profileservice-
secured.jar
12:58:42,989 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=profileservic
e-secured.jar,name=SecureProfileService,service=EJB3
12:58:42,999 INFO  [JBossASKernel]   with dependencies:
12:58:42,999 INFO  [JBossASKernel]   and demands:
12:58:42,999 INFO  [JBossASKernel]      jndi:SecureManagementView/remote-org.jbo
ss.deployers.spi.management.ManagementView
12:58:42,999 INFO  [JBossASKernel]      jboss.ejb:service=EJBTimerService
12:58:43,009 INFO  [JBossASKernel]   and supplies:
12:58:43,009 INFO  [JBossASKernel]      Class:org.jboss.profileservice.spi.Profi
leService
12:58:43,009 INFO  [JBossASKernel]      jndi:SecureProfileService/remote
12:58:43,019 INFO  [JBossASKernel]      jndi:SecureProfileService/remote-org.jbo
ss.profileservice.spi.ProfileService
12:58:43,019 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=profileservice-secu
red.jar,name=SecureProfileService,service=EJB3) to KernelDeployment of: profiles
ervice-secured.jar
12:58:43,029 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=profileservic
e-secured.jar,name=SecureDeploymentManager,service=EJB3
12:58:43,029 INFO  [JBossASKernel]   with dependencies:
12:58:43,029 INFO  [JBossASKernel]   and demands:
12:58:43,039 INFO  [JBossASKernel]      jboss.ejb:service=EJBTimerService
12:58:43,039 INFO  [JBossASKernel]   and supplies:
12:58:43,039 INFO  [JBossASKernel]      jndi:SecureDeploymentManager/remote-org.
jboss.deployers.spi.management.deploy.DeploymentManager
12:58:43,039 INFO  [JBossASKernel]      Class:org.jboss.deployers.spi.management
.deploy.DeploymentManager
12:58:43,049 INFO  [JBossASKernel]      jndi:SecureDeploymentManager/remote
12:58:43,049 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=profileservice-secu
red.jar,name=SecureDeploymentManager,service=EJB3) to KernelDeployment of: profi
leservice-secured.jar
12:58:43,059 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=profileservic
e-secured.jar,name=SecureManagementView,service=EJB3
12:58:43,059 INFO  [JBossASKernel]   with dependencies:
12:58:43,069 INFO  [JBossASKernel]   and demands:
12:58:43,069 INFO  [JBossASKernel]      jboss.ejb:service=EJBTimerService
12:58:43,069 INFO  [JBossASKernel]   and supplies:
12:58:43,079 INFO  [JBossASKernel]      jndi:SecureManagementView/remote-org.jbo
ss.deployers.spi.management.ManagementView
12:58:43,079 INFO  [JBossASKernel]      Class:org.jboss.deployers.spi.management
.ManagementView
12:58:43,089 INFO  [JBossASKernel]      jndi:SecureManagementView/remote
12:58:43,089 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=profileservice-secu
red.jar,name=SecureManagementView,service=EJB3) to KernelDeployment of: profiles
ervice-secured.jar
12:58:43,119 INFO  [EJB3EndpointDeployer] Deploy AbstractBeanMetaData@55c3ca69{n
ame=jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=
EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl propertie
s=[container] constructor=null autowireCandidate=true}
12:58:43,129 INFO  [EJB3EndpointDeployer] Deploy AbstractBeanMetaData@683b5afa{n
ame=jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,servi
ce=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl proper
ties=[container] constructor=null autowireCandidate=true}
12:58:43,139 INFO  [EJB3EndpointDeployer] Deploy AbstractBeanMetaData@4d2f27f4{n
ame=jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=
EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl propertie
s=[container] constructor=null autowireCandidate=true}
12:58:43,759 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=profileservice
-secured.jar,name=SecureDeploymentManager,service=EJB3
12:58:43,809 INFO  [EJBContainer] STARTED EJB: org.jboss.profileservice.ejb.Secu
reDeploymentManager ejbName: SecureDeploymentManager
12:58:43,959 INFO  [JndiSessionRegistrarBase] Binding the following Entries in G
lobal JNDI:

        SecureDeploymentManager/remote - EJB3.x Default Remote Business Interfac
e
        SecureDeploymentManager/remote-org.jboss.deployers.spi.management.deploy
.DeploymentManager - EJB3.x Remote Business Interface

12:58:44,169 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=profileservice
-secured.jar,name=SecureManagementView,service=EJB3
12:58:44,179 INFO  [EJBContainer] STARTED EJB: org.jboss.profileservice.ejb.Secu
reManagementView ejbName: SecureManagementView
12:58:44,209 INFO  [JndiSessionRegistrarBase] Binding the following Entries in G
lobal JNDI:

        SecureManagementView/remote - EJB3.x Default Remote Business Interface
        SecureManagementView/remote-org.jboss.deployers.spi.management.Managemen
tView - EJB3.x Remote Business Interface

12:58:44,379 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=profileservice
-secured.jar,name=SecureProfileService,service=EJB3
12:58:44,399 INFO  [EJBContainer] STARTED EJB: org.jboss.profileservice.ejb.Secu
reProfileServiceBean ejbName: SecureProfileService
12:58:44,429 INFO  [JndiSessionRegistrarBase] Binding the following Entries in G
lobal JNDI:

        SecureProfileService/remote - EJB3.x Default Remote Business Interface
        SecureProfileService/remote-org.jboss.profileservice.spi.ProfileService
- EJB3.x Remote Business Interface

12:59:44,617 ERROR [ProfileServiceBootstrap] Failed to load profile: Summary of
incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):

DEPLOYMENTS MISSING DEPENDENCIES:
  Deployment "jboss.web.deployment:war=/ROOT" is missing the following dependenc
ies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but i
s actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")
  Deployment "jboss.web.deployment:war=/admin-console" is missing the following
dependencies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but i
s actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")
  Deployment "jboss.web.deployment:war=/invoker" is missing the following depend
encies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but i
s actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")
  Deployment "jboss.web.deployment:war=/jbossws" is missing the following depend
encies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but i
s actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")
  Deployment "jboss.web.deployment:war=/jmx-console" is missing the following de
pendencies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but i
s actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")
  Deployment "jboss.web.deployment:war=/owf" is missing the following dependenci
es:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but i
s actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")
  Deployment "jboss.web.deployment:war=/web-console" is missing the following de
pendencies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but i
s actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")

DEPLOYMENTS IN ERROR:
  Deployment "WebServer" is in error due to the following reason(s): org.xml.sax
.SAXException: Premature end of file. @ *unknown*[-1,-1]
  Deployment "jboss.web:service=WebServer" is in error due to the following reas
on(s): ** NOT FOUND Depends on 'jboss.web:service=WebServer' **

12:59:44,677 INFO  [ServerImpl] JBoss (Microcontainer) [5.1.0.GA (build: SVNTag=
JBoss_5_1_0_GA date=200905221634)] Started in 3m:1s:7ms

 

Ross Pokorny

unread,
Jan 18, 2013, 8:32:07 AM1/18/13
to ozonepla...@googlegroups.com
Andre

Does that exerpt of your server.xml file include the beginning of the file? ie,
Is line 34 in the exerpt also line 34 in the actual file. If so, this is very
strange indeed, since line 34 (where the error is said to occur) is in the
middle of a comment. Nonetheless, that commented out connector does appear to
have a syntax error: there are spaces around the = sign in the sslProtocol
attribute. Try removing those spaces and trying again.

Copying ALL of the files from tomcat's lib into jboss's conf folder may cause
issues. To help clean it up, here is the list of files and folders in that
directory in my copy of jboss 5.1, which I believe is clean:

bindingservice.beans
bootstrap.xml
jax-ws-catalog.xml
jboss-service.xml
jndi.properties
props
standardjboss.xml
bootstrap
java.policy
jboss-log4j.xml
jbossts-properties.xml
login-config.xml
standardjbosscmp-jdbc.xml
xmdesc

Luckily, none of these file names also appear in tomcat's lib directory, so you
should be able to clean it up by just deleting everything in conf besides the
files listed above.

Ross Pokorny
OWF Community Support Team

> a.xm l
> 12:58:37,389 INFO [RARDeployment] Required license terms exist, view
> vfszip:/C:
> /Utilities/jboss-5.1.0.GA/server/owf7/deploy/jboss-xa-jdbc.rar/META-INF/ra.x
> ml 12:58:37,469 INFO [RARDeployment] Required license terms exist, view
> ice= EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl
> propertie
> s=[container] constructor=null autowireCandidate=true}
> 12:58:43,129 INFO [EJB3EndpointDeployer] Deploy
> AbstractBeanMetaData@683b5afa{n
> ame=jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,s
> ervi ce=EJB3_endpoint
> bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl proper
> ties=[container] constructor=null autowireCandidate=true}
> 12:58:43,139 INFO [EJB3EndpointDeployer] Deploy
> AbstractBeanMetaData@4d2f27f4{n
> ame=jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,serv
> ice= EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl

Ross Pokorny

unread,
Jan 18, 2013, 8:49:46 AM1/18/13
to ozonepla...@googlegroups.com
Lisa

I have just tested my instructions and they are working for me. I suspect
that your problem may be due to using the version of my instructions that did
not post fully. Try following the instructions in my later reply to Andre,
here: https://groups.google.com/group/ozoneplatform-dev/msg/6f07dae61d045946

Also, I did notice two small flaws in the instructions while testing them. In
step 6, there are extraneous spaces around the sslProtocol attribute. The
corrected step 6 should be

6. Enable https by modifying
[jbossInstall]/server/owf4/deploy/jbossweb.sar/server.xml and add this
connector:
<Connector
protocol="HTTP/1.1"
SSLEnabled="true"
port="8443"
address="${jboss.bind.address}"
scheme="https"
secure="true"
clientAuth="want"
keystoreFile="${jboss.server.home.dir}/conf/certs/keystore.jks"
keystorePass="changeit"
truststoreFile="${jboss.server.home.dir}/conf/certs/keystore.jks"
truststorePass="changeit"
sslProtocol="TLS" />

Also, in step 5, an optional but useful file is missing from the list of files
to copy over: owf-override-log4j.xml.

If, after starting over and following the new set of instructions, you still
have problems, let us know which jar conflicts you are seeing so that we can
investigate further.

Ross Pokorny
OWF Community Support Team

Andre Flory

unread,
Jan 22, 2013, 9:33:36 AM1/22/13
to ozonepla...@googlegroups.com
Line 34 is not the same as my excerpt, here is line 34:

         port="8443" address="${jboss.bind.address}"

I noticed the spaces before and removed them and it didn't fix the problem.

I'll remove the excess files and look at your reply to Lisa below and let you know where I am soon.

Respectfully,
Andre
Message has been deleted

Andre Flory

unread,
Jan 22, 2013, 9:59:59 AM1/22/13
to ozonepla...@googlegroups.com
The address that we use to access OWF running in JBoss is this correct?:

http://localhost:8080/owf

Is that the correct address?

Also, is there a way to log the results of starting JBoss? The warnings and errors and INFO etc?

Respectfully,
Andre
Message has been deleted

Ross Pokorny

unread,
Jan 22, 2013, 10:37:20 AM1/22/13
to ozonepla...@googlegroups.com
Andre

By default, OWF is configured to only allow access via SSL/TLS. The correct
URL is https://localhost:8443/owf

Are you asking about OWF's logs, or JBoss' logs? OWF's logs go into a 'logs'
directory, which should show up in the current working directory of the
server. JBoss' logs appear to go into a 'log' directory located in
server/owf7/log.

Ross Pokorny
OWF Community Support Team

On Tuesday, January 22, 2013 07:00:58 AM Andre Flory wrote:
> The address that we use to access OWF running in JBoss is this correct?:
>
> http://localhost:8080/owf
>
> Is that the correct address?
>
> Is there a way to log the results of running JBoss? Log the INFO, WARN, and
> just all the results of trying to start OWF 7?
>
> Respectfully,
> Andre
>
> On Tuesday, January 22, 2013 9:33:36 AM UTC-5, Andre Flory wrote:

Andre Flory

unread,
Jan 22, 2013, 11:10:08 AM1/22/13
to ozonepla...@googlegroups.com
Ok I am still not able to get OWF7 going on JBoss 5.1.0. I am still getting those errors I previously posted. I will look at the log file and see if I can extract any more specific errors.

Respectfully,
Andre

Andre Flory

unread,
Jan 22, 2013, 11:49:00 AM1/22/13
to ozonepla...@googlegroups.com
Ok here are all the lines from my log file that may give some clues. Any ideas?

-------------------------------------
2013-01-22 11:37:58,694 ERROR [STDERR] (main) SystemId Unknown; Line #34; Column #1; Element type "Connector" must be followed by either attribute specifications, ">" or "/>".


2013-01-22 11:38:59,452 WARN  [org.jboss.jms.server.jbosssx.JBossASSecurityMetadataStore] (main) WARNING! POTENTIAL SECURITY RISK. It has been detected that the MessageSucker component which sucks messages from one node to another has not had its password changed from the installation default. Please see the JBoss Messaging user guide for instructions on how to do this.

2013-01-22 11:38:59,505 WARN  [org.jboss.annotation.factory.AnnotationCreator] (main) No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent

2013-01-22 11:38:59,663 WARN  [org.jboss.annotation.factory.AnnotationCreator] (main) No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent


2013-01-22 11:39:00,771 ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] (main) Error installing to Start: name=WebServer state=Create

org.jboss.xb.binding.JBossXBException: Failed to parse source: Premature end of file. @ *unknown*[-1,-1]

    at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:203)

    at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:183)

    at org.jboss.xb.binding.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:133)

    at org.jboss.web.tomcat.service.deployers.TomcatService.startService(TomcatService.java:167)

    at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:376)

    at org.jboss.system.ServiceMBeanSupport.pojoStart(ServiceMBeanSupport.java:216)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)


    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:59)

    at org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:150)

    at org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66)

    at org.jboss.kernel.plugins.dependency.KernelControllerContextAction$JoinpointDispatchWrapper.execute(KernelControllerContextAction.java:241)

    at org.jboss.kernel.plugins.dependency.ExecutionWrapper.execute(ExecutionWrapper.java:47)

    at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchExecutionWrapper(KernelControllerContextAction.java:109)

    at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchJoinPoint(KernelControllerContextAction.java:70)

    at org.jboss.kernel.plugins.dependency.LifecycleAction.installActionInternal(LifecycleAction.java:221)

    at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54)

    at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42)

    at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)

    at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)

    at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)

    at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.ServiceController.doChange(ServiceController.java:688)

    at org.jboss.system.ServiceController.start(ServiceController.java:460)

    at org.jboss.system.microcontainer.jmx.ServiceControllerStartStopLifecycleCallback.install(ServiceControllerStartStopLifecycleCallback.java:44)

    at sun.reflect.GeneratedMethodAccessor237.invoke(Unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)


    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:59)

    at org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:150)

    at org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66)

    at org.jboss.beans.info.plugins.AbstractBeanInfo.invoke(AbstractBeanInfo.java:300)

    at org.jboss.kernel.plugins.dependency.AbstractKernelControllerContext.invoke(AbstractKernelControllerContext.java:286)

    at org.jboss.dependency.plugins.AbstractLifecycleCallbackItem.install(AbstractLifecycleCallbackItem.java:87)

    at org.jboss.dependency.plugins.AbstractController.handleLifecycleCallbacks(AbstractController.java:1568)

    at org.jboss.dependency.plugins.AbstractController.handleInstallLifecycleCallbacks(AbstractController.java:1533)

    at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:943)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:774)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:540)

    at org.jboss.system.ServiceController.doInstall(ServiceController.java:670)

    at org.jboss.system.ServiceController.register(ServiceController.java:373)

    at org.jboss.system.microcontainer.jmx.ServiceControllerRegistrationLifecycleCallback.install(ServiceControllerRegistrationLifecycleCallback.java:104)

    at sun.reflect.GeneratedMethodAccessor232.invoke(Unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)


    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:59)

    at org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:150)

    at org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66)

    at org.jboss.beans.info.plugins.AbstractBeanInfo.invoke(AbstractBeanInfo.java:300)

    at org.jboss.kernel.plugins.dependency.AbstractKernelControllerContext.invoke(AbstractKernelControllerContext.java:286)

    at org.jboss.dependency.plugins.AbstractLifecycleCallbackItem.install(AbstractLifecycleCallbackItem.java:87)

    at org.jboss.dependency.plugins.AbstractController.handleLifecycleCallbacks(AbstractController.java:1568)

    at org.jboss.dependency.plugins.AbstractController.handleInstallLifecycleCallbacks(AbstractController.java:1533)

    at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:943)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.ServiceController.doChange(ServiceController.java:688)

    at org.jboss.system.ServiceController.start(ServiceController.java:460)

    at org.jboss.system.microcontainer.jmx.ServiceControllerStartStopLifecycleCallback.install(ServiceControllerStartStopLifecycleCallback.java:44)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:271)


    at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)

    at org.jboss.Main.boot(Main.java:221)

    at org.jboss.Main$1.run(Main.java:556)

    at java.lang.Thread.run(Thread.java:662)

Caused by: org.xml.sax.SAXException: Premature end of file. @ *unknown*[-1,-1]

    at org.jboss.xb.binding.parser.sax.SaxJBossXBParser$MetaDataErrorHandler.fatalError(SaxJBossXBParser.java:432)


    at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown Source)

    at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)

    at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)

    at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)

    at org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown Source)

    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)

    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)

    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)

    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)

    at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)

    at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:199)

    ... 122 more


2013-01-22 11:39:56,748 ERROR [org.jboss.system.server.profileservice.ProfileServiceBootstrap] (main) Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):

DEPLOYMENTS MISSING DEPENDENCIES:
  Deployment "jboss.web.deployment:war=/ROOT" is missing the following dependencies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")

  Deployment "jboss.web.deployment:war=/admin-console" is missing the following dependencies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")
  Deployment "jboss.web.deployment:war=/invoker" is missing the following dependencies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")
  Deployment "jboss.web.deployment:war=/jbossws" is missing the following dependencies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")
  Deployment "jboss.web.deployment:war=/jmx-console" is missing the following dependencies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")
  Deployment "jboss.web.deployment:war=/owf" is missing the following dependencies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")
  Deployment "jboss.web.deployment:war=/web-console" is missing the following dependencies:
    Dependency "jboss.web:service=WebServer" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.web:service=WebServer' **")

DEPLOYMENTS IN ERROR:
  Deployment "WebServer" is in error due to the following reason(s): org.xml.sax.SAXException: Premature end of file. @ *unknown*[-1,-1]
  Deployment "jboss.web:service=WebServer" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.web:service=WebServer' **
-------------------------------------

Ross Pokorny

unread,
Jan 22, 2013, 12:05:22 PM1/22/13
to ozonepla...@googlegroups.com
Andre

See the below quote from this thread:
https://community.jboss.org/thread/162453

> This error can occur if you edit the file
> /server/default/deploy/jbossweb.sar/server.xml (or other configuration files),
> and possibly for editing incorrectly chosen charset. Many editors make the
> default WIN1251. But all the configuration files AIS MFC must be saved in
> UTF-8.

Does this sound like it could be the case? It does seem to me like there must
be some hidden character or something that is confusing the parser. If all
else fails, try removing that connector element and typing it back in again by
hand (instead of copying and pasting).

Ross Pokorny
OWF Community Support Team

Andre Flory

unread,
Jan 22, 2013, 2:36:55 PM1/22/13
to ozonepla...@googlegroups.com
Ok yes, that was the problem with the error:


2013-01-22 11:37:58,694 ERROR [STDERR] (main) SystemId Unknown; Line #34; Column #1; Element type "Connector" must be followed by either attribute specifications, ">" or "/>".

I had nonbreaking spaces instead of normal spaces from the HTML copy/paste I did apparently.

I am now trying it again to see what happens.

Andre Flory

unread,
Jan 22, 2013, 2:44:45 PM1/22/13
to ozonepla...@googlegroups.com


Ok here is where I am now. See the log below. I did do this:


"Also, in step 5, an optional but useful file is missing from the list of files
to copy over: owf-override-log4j.xml."

So I am wondering if that is my problem now.

Log:

2013-01-22 14:29:45,551 WARN  [org.jboss.jms.server.jbosssx.JBossASSecurityMetadataStore] (main) WARNING! POTENTIAL SECURITY RISK. It has been detected that the MessageSucker component which sucks messages from one node to another has not had its password changed from the installation default. Please see the JBoss Messaging user guide for instructions on how to do this.

2013-01-22 14:29:45,605 WARN  [org.jboss.annotation.factory.AnnotationCreator] (main) No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent

2013-01-22 14:29:45,768 WARN  [org.jboss.annotation.factory.AnnotationCreator] (main) No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent

2013-01-22 14:30:55,935 INFO  [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/owf

2013-01-22 14:30:57,143 ERROR [STDERR] (main) SLF4J: Class path contains multiple SLF4J bindings.

2013-01-22 14:30:57,146 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/C:/Utilities/jboss-5.1.0.GA/common/lib/slf4j-jboss-logging.jar/org/slf4j/impl/StaticLoggerBinder.class]

2013-01-22 14:30:57,152 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/C:/Utilities/jboss-5.1.0.GA/server/owf7/deploy/owf.war/WEB-INF/lib/slf4j-log4j12-1.5.8.jar/org/slf4j/impl/StaticLoggerBinder.class]

2013-01-22 14:30:57,158 ERROR [STDERR] (main) SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.

2013-01-22 14:30:57,224 ERROR [STDERR] (main) log4j:ERROR A "org.jboss.logging.appender.FileAppender" object is not assignable to a "org.apache.log4j.Appender" variable.

2013-01-22 14:30:57,228 ERROR [STDERR] (main) log4j:ERROR The class "org.apache.log4j.Appender" was loaded by

2013-01-22 14:30:57,232 ERROR [STDERR] (main) log4j:ERROR [BaseClassLoader@287d08eb{vfszip:/C:/Utilities/jboss-5.1.0.GA/server/owf7/deploy/owf.war/}] whereas object of type

2013-01-22 14:30:57,235 ERROR [STDERR] (main) log4j:ERROR "org.jboss.logging.appender.FileAppender" was loaded by [org.jboss.bootstrap.NoAnnotationURLClassLoader@7d2152e6].

2013-01-22 14:30:57,238 ERROR [STDERR] (main) log4j:ERROR Could not instantiate appender named "FILE".

2013-01-22 14:30:59,317 INFO  [STDOUT] (main) grails.config.locations = [classpath:OzoneConfig.properties, classpath:OwfConfig.groovy]

2013-01-22 14:30:59,744 ERROR [STDERR] (main) Unable to load specified config location classpath:OzoneConfig.properties : class path resource [OzoneConfig.properties] cannot be opened because it does not exist

2013-01-22 14:30:59,754 ERROR [STDERR] (main) Unable to load specified config location classpath:OwfConfig.groovy : class path resource [OwfConfig.groovy] cannot be opened because it does not exist

2013-01-22 14:31:00,140 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/owf]] (main) Initializing Spring root WebApplicationContext

2013-01-22 14:31:47,116 INFO  [STDOUT] (main) BootStrap running!

2013-01-22 14:31:47,219 INFO  [STDOUT] (main) ########## Found owf-log4j.xml at: vfszip:/C:/Utilities/jboss-5.1.0.GA/server/owf7/deploy/owf.war/WEB-INF/classes/owf-log4j.xml

2013-01-22 14:31:49,259 INFO  [STDOUT] (main) BootStrap finished!

2013-01-22 14:31:49,354 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/owf]] (main) Exception starting filter springSecurityFilterChain

org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'springSecurityFilterChain' is defined

    at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:527)

    at org.springframework.beans.factory.support.AbstractBeanFactory.getMergedLocalBeanDefinition(AbstractBeanFactory.java:1083)

    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:274)

    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)

    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:266)

    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)

    at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1079)

    at org.springframework.web.filter.DelegatingFilterProxy.initDelegate(DelegatingFilterProxy.java:217)

    at org.springframework.web.filter.DelegatingFilterProxy.initFilterBean(DelegatingFilterProxy.java:145)

    at org.springframework.web.filter.GenericFilterBean.init(GenericFilterBean.java:179)

    at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:234)

    at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:332)

    at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:90)

    at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3783)

    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4413)

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:310)

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:142)

    at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)

    at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)

    at org.jboss.web.deployers.WebModule.start(WebModule.java:97)


    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)

    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)

    at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)

    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)

    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)

    at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)

    at $Proxy38.start(Unknown Source)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)


    at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)

    at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)

    at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)

    at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)

    at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)


    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.ServiceController.doChange(ServiceController.java:688)

    at org.jboss.system.ServiceController.start(ServiceController.java:460)

    at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
2013-01-22 14:31:49,892 ERROR [org.apache.catalina.core.StandardContext] (main) Error filterStart

2013-01-22 14:31:49,895 ERROR [org.apache.catalina.core.StandardContext] (main) Context [/owf] startup failed due to previous errors

2013-01-22 14:31:50,164 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/owf]] (main) Closing Spring root WebApplicationContext

2013-01-22 14:31:50,360 INFO  [STDOUT] (main) WARN: The method class org.apache.commons.logging.impl.SLF4JLogFactory#release() was invoked.

2013-01-22 14:31:50,364 INFO  [STDOUT] (main) WARN: Please see http://www.slf4j.org/codes.html#release for an explanation.

2013-01-22 14:31:50,368 INFO  [STDOUT] (main) WARN: The method class org.apache.commons.logging.impl.SLF4JLogFactory#release() was invoked.

2013-01-22 14:31:50,372 INFO  [STDOUT] (main) WARN: Please see http://www.slf4j.org/codes.html#release for an explanation.

2013-01-22 14:31:50,378 ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] (main) Error installing to Start: name=jboss.web.deployment:war=/owf state=Create mode=Manual requiredState=Installed

org.jboss.deployers.spi.DeploymentException: URL file:/C:/Utilities/jboss-5.1.0.GA/server/owf7/tmp/aw5519-fmnogv-hc9fsl48-1-hc9futrc-9p/owf.war/ deployment failed

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:331)

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:142)

    at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)

    at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)

    at org.jboss.web.deployers.WebModule.start(WebModule.java:97)


    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)

    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)

    at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)

    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)

    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)

    at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)

    at $Proxy38.start(Unknown Source)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)


    at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)

    at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)

    at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)

    at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)

    at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)


    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.ServiceController.doChange(ServiceController.java:688)

    at org.jboss.system.ServiceController.start(ServiceController.java:460)

    at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
2013-01-22 14:31:57,975 ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] (main) Error installing to Real: name=vfszip:/C:/Utilities/jboss-5.1.0.GA/server/owf7/deploy/owf.war/ state=PreReal mode=Manual requiredState=Real

org.jboss.deployers.spi.DeploymentException: URL file:/C:/Utilities/jboss-5.1.0.GA/server/owf7/tmp/aw5519-fmnogv-hc9fsl48-1-hc9futrc-9p/owf.war/ deployment failed

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:331)

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:142)

    at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)

    at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)

    at org.jboss.web.deployers.WebModule.start(WebModule.java:97)


    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)

    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)

    at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)

    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)

    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)

    at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)

    at $Proxy38.start(Unknown Source)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)


    at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)

    at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)

    at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)

    at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)

    at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)


    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.ServiceController.doChange(ServiceController.java:688)

    at org.jboss.system.ServiceController.start(ServiceController.java:460)

    at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
2013-01-22 14:31:58,251 ERROR [org.jboss.system.server.profileservice.ProfileServiceBootstrap] (main) Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):

DEPLOYMENTS IN ERROR:
  Deployment "vfszip:/C:/Utilities/jboss-5.1.0.GA/server/owf7/deploy/owf.war/" is in error due to the following reason(s): org.jboss.deployers.spi.DeploymentException: URL file:/C:/Utilities/jboss-5.1.0.GA/server/owf7/tmp/aw5519-fmnogv-hc9fsl48-1-hc9futrc-9p/owf.war/ deployment failed


2013-01-22 14:31:58,294 INFO  [org.apache.coyote.http11.Http11Protocol] (main) Starting Coyote HTTP/1.1 on http-127.0.0.1-8080

2013-01-22 14:31:58,349 INFO  [org.apache.coyote.ajp.AjpProtocol] (main) Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009

2013-01-22 14:31:58,373 INFO  [org.apache.coyote.http11.Http11Protocol] (main) Starting Coyote HTTP/1.1 on http-127.0.0.1-8443

2013-01-22 14:31:58,395 INFO  [org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221634)] Started in 3m:38s:305ms





Andre Flory

unread,
Jan 22, 2013, 3:08:53 PM1/22/13
to ozonepla...@googlegroups.com
I removed the owf-override-log4j.xml file and I still get the same errors.
 
Respectfully,
Andre

Neil Castine

unread,
Jan 22, 2013, 3:42:15 PM1/22/13
to ozonepla...@googlegroups.com
Andre,

I had the same problem. Please confirm you are using the OWFsecurityContext_cert_only.xml file instead of the default OWFsecurityContext.xml. (Said file should be copied into the "[jbossInstall]/server/owf7/conf" per the previous instructions). You can find the OWFsecurityContext_cert_only.xml file in your "[owfBuild]/staging/owf-security" folder. The default OWF security configuration relies on CAS, which does not seem to work with JBoss.

If you have the certificate only security setup then attempting to access https://localhost:8443/owf will cause a "403 - Access Denied" error if you have not installed the appropriate certificate in your browser. If you see the 403 error instead of 404 (Not Found) then OWF is at least setup correctly in JBoss. At that point all you need to do is import the testUser1.p12 or testAdmin1.p12 certificate into your browser to be permitted access to the page. The password is "password" for each of the sample certificates.


-Neil

Neil Castine

unread,
Jan 22, 2013, 4:50:26 PM1/22/13
to ozonepla...@googlegroups.com
Apologies. My problem may have only been cosmetically similar to yours. In my case I only got the "DEPLOYMENTS IN ERROR" for owf.war when I was trying to use cas.war as well. I still see the log4j errors as you do but in my case they are not enough to prevent JBoss from loading the owf.war successfully. Sorry for the confusion.

Andre Flory

unread,
Jan 23, 2013, 8:13:32 AM1/23/13
to ozonepla...@googlegroups.com
Thanks Neil,
 
You saying that probably means log4j is not preventing the owf.war from loading but something else.
 
Andre

Andre Flory

unread,
Jan 23, 2013, 8:48:28 AM1/23/13
to ozonepla...@googlegroups.com
Hey Ross,
 
I was going through all the steps again to redo this in a separate directory and I just noticed, I do not have the file "OWFsecurityContext_cert_only.xml" from step 5.
 
I have a file called "OWFsecurityContext.xml"
 
Could this be my current problem?
 
Andre
 

On Tuesday, January 22, 2013 12:05:22 PM UTC-5, Ross Pokorny wrote:

Andre Flory

unread,
Jan 23, 2013, 10:24:52 AM1/23/13
to ozonepla...@googlegroups.com
Hey Ross,
 
I found it: OWF-bundle-7-GA\owf-security\OWFsecurityContext_cert_only.xml
 
I will replace the OWFsecurityContext.xml file with the OWFsecurityContext_cert_only.xml and see what happens..
 
Andre

Neil Castine

unread,
Jan 23, 2013, 11:18:17 AM1/23/13
to ozonepla...@googlegroups.com
Andre,

I was later able confirm that the "No bean named 'springSecurityFilterChain' is defined" exception does mean that a security context file is missing or defined incorrectly. So getting the OWFsecurityContext_cert_only.xml into your [jbossInstall]/server/owf7/conf directory (and removing any other  OWFsecurityContext*.xml file) should be the right move.

Also note that you will need to copy the OzoneConfig.properties file (from [owfBundle]/apache-tomcat-7.0.21/lib) to the conf directory as well if you haven't already done so since the XML depends on properties from said file.

-Neil

Andre Flory

unread,
Jan 23, 2013, 11:23:28 AM1/23/13
to ozonepla...@googlegroups.com
Thanks Neil,
 
I don't have the OzoneConfig.properties file so I'll get it copied in there.
 
Andre

Andre Flory

unread,
Jan 23, 2013, 11:27:15 AM1/23/13
to ozonepla...@googlegroups.com
FYI I got the "OWFsecurityContext_cert_only.xml" file from \OWF-bundle-7-GA\owf-security
 
Andre

Andre Flory

unread,
Jan 23, 2013, 1:23:55 PM1/23/13
to ozonepla...@googlegroups.com
Neil,
 
Thanks Niel, you helped solved the last problem I had getting this going.
 
I had to add the OzoneConfig.properties file and make sure I had the OWFsecurityContext_cert_only.xml file and then I got the 403 error as you described. owf.war actually launched now.
 
I get the same results with or without the owf-override-log4j.xml, so I removed it. I was experimenting with it.
 
I added the certificate you suggested and I got in OWF 7!
 
Respectfully,
Andre
 
 

On Tuesday, January 22, 2013 3:42:15 PM UTC-5, Neil Castine wrote:

Andre Flory

unread,
Jan 23, 2013, 1:30:13 PM1/23/13
to ozonepla...@googlegroups.com
Ross,
 
I finally got it working.
 
My last remaining issues were what Neil pointed out. I was missing the OzoneConfig.properties file and I was using the wrong (my fault) OWFsecurityContext.xml file - I had to do a search for that file and pull it from OWF-bundle-7-GA\owf-security\ where it was and copy it to the jboss-5.1.0.GA\server\owf7\conf directory.
 
I am getting log4j errors but I don't know if that's an issue or not.
 
Thanks for all your help Ross!!
 
Respectfully,
Andre

Andre Flory

unread,
Jan 23, 2013, 1:32:27 PM1/23/13
to ozonepla...@googlegroups.com
Oh the final step was adding the certificates Neil talked about into my browser. testAdmin1.p12 or testUser1.p12.
 
This let me get past the 403 error and actually get into OWF7.
 
Andre

Neil Castine

unread,
Jan 28, 2013, 8:10:09 PM1/28/13
to ozonepla...@googlegroups.com
The information from this thread has been consolidated into a wiki entry. Please see https://github.com/ozoneplatform/owf/wiki/Running-OWF-in-JBoss. Don't hesitate to check to make sure it has everything you needed to know. The instructions should be valid for JBoss 5.1 and 6.1. May add notes on 7 later. Thanks.

-Neil

On Tuesday, January 15, 2013 11:49:32 AM UTC-5, Andre Flory wrote:
I am trying to find instructions for getting OWF 7 running in JBoss. Anyone know where I can locate such instructions?

Respectfully,
Andre

Neil Castine

unread,
Feb 26, 2013, 5:54:10 PM2/26/13
to ozonepla...@googlegroups.com
The Running OWF in JBoss wiki entry on GitHub has been updated to include a section on JBoss 7. The instructions therein have been verified with OWF 7 against JBoss versions 5.1, 6.1 and 7.1.1.

Keith Weber

unread,
May 17, 2013, 5:50:32 PM5/17/13
to ozonepla...@googlegroups.com
I followed the wiki article's directions but can't seem to get the security portion correct. The certificates for testUser1 and testAdmin1 have expired so I used the 'create-certificates.bat' file under \etc\tools in the owf bundle to create a completely new keystore and certificate. I've updated standalone.xml to point to the new keystore and added the new certificate to my browser, but I still cannot get it to work.
 
In IE, I get sent to the access denied page. In firefox, I get
 
"SSL peer had some unspecified issue with the certificate it received.
(Error code: ssl_error_certificate_unknown_alert)"
 
Any suggestions will be greatly appreciated!

Tina

unread,
May 21, 2013, 1:42:54 PM5/21/13
to ozonepla...@googlegroups.com
Are there either any messages in the JBoss console, or in the OWF logs?   There are a variety of items that can cause SSL errors, none of which I'd expect to see if you've just regenerated certs, and then made the server's keystore visible in the standalone.xml file. 

One potential gotcha: our instructions refer to owf-keystore.jks, but the create-certificates will generate a .jks for the servername you enter.  Note that it should be the full servername (e.g., localhost or foo.bar.com ), not the IP address.  If you use the IP address, you'll get messages related to Subject Alternative Name

Tina


--
You received this message because you are subscribed to the Google Groups "ozoneplatform-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ozoneplatform-...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Keith Weber

unread,
May 21, 2013, 1:52:47 PM5/21/13
to ozonepla...@googlegroups.com
Thanks for the reply, Tina! I do not see anything getting written to the JBoss console after it has started and the OWF logs exist but are empty. I am using localhost as the servername.

Keith Weber

unread,
May 21, 2013, 2:36:59 PM5/21/13
to ozonepla...@googlegroups.com
Tina,
 
Here is what is written in the JBoss console on start up. There are a lot of warnings.
 
 
 
 
 

13:34:33,548 INFO [org.jboss.modules] JBoss Modules version 1.1.1.GA

13:34:33,704 INFO [org.jboss.msc] JBoss MSC version 1.0.2.GA

13:34:33,742 INFO [org.jboss.as] JBAS015899: JBoss AS 7.1.1.Final "Brontes" starting

13:34:34,467 INFO [org.xnio] XNIO Version 3.0.3.GA

13:34:34,467 INFO [org.jboss.as.server] JBAS015888: Creating http management service using socket-binding (management-http)

13:34:34,476 INFO [org.xnio.nio] XNIO NIO Implementation Version 3.0.3.GA

13:34:34,484 INFO [org.jboss.remoting] JBoss Remoting version 3.2.3.GA

13:34:34,503 INFO [org.jboss.as.logging] JBAS011502: Removing bootstrap log handlers

13:34:34,507 INFO [org.jboss.as.osgi] JBAS011940: Activating OSGi Subsystem

13:34:34,513 INFO [org.jboss.as.security] (ServerService Thread Pool -- 44) JBAS013101: Activating Security Subsystem

13:34:34,506 INFO [org.jboss.as.clustering.infinispan] JBAS010280: Activating Infinispan subsystem.

13:34:34,518 INFO [org.jboss.as.webservices] (ServerService Thread Pool -- 48) JBAS015537: Activating WebServices Extension

13:34:34,506 INFO [org.jboss.as.naming] JBAS011800: Activating Naming Subsystem

13:34:34,527 INFO [org.jboss.as.security] (MSC service thread 1-12) JBAS013100: Current PicketBox version=4.0.7.Final

13:34:34,505 INFO [org.jboss.as.configadmin] JBAS016200: Activating ConfigAdmin Subsystem

13:34:34,531 INFO [org.jboss.as.connector] (MSC service thread 1-15) JBAS010408: Starting JCA Subsystem (JBoss IronJacamar 1.0.9.Final)

13:34:34,565 INFO [org.jboss.as.naming] (MSC service thread 1-15) JBAS011802: Starting Naming Service

13:34:34,570 INFO [org.jboss.as.mail.extension] (MSC service thread 1-8) JBAS015400: Bound mail session [java:jboss/mail/Default]

13:34:34,616 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 27) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)

13:34:34,650 INFO [org.jboss.ws.common.management.AbstractServerConfig] (MSC service thread 1-3) JBoss Web Services - Stack CXF Server 4.0.2.GA

13:34:34,676 INFO [org.apache.coyote.http11.Http11Protocol] (MSC service thread 1-4) Starting Coyote HTTP/1.1 on http-localhost-127.0.0.1-8080

13:34:34,855 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]

13:34:34,860 INFO [org.jboss.as.remoting] (MSC service thread 1-10) JBAS017100: Listening on localhost/127.0.0.1:4447

13:34:34,860 INFO [org.jboss.as.remoting] (MSC service thread 1-16) JBAS017100: Listening on /127.0.0.1:9999

13:34:34,868 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-4) JBAS015012: Started FileSystemDeploymentService for directory C:\bit9prog\dev\servers\JBoss\jboss-as-7.1.1.Final\standalone\deployments

13:34:34,974 INFO [org.apache.coyote.http11.Http11Protocol] (MSC service thread 1-14) Starting Coyote HTTP/1.1 on http-localhost-127.0.0.1-8443

13:34:35,038 INFO [org.jboss.as] (Controller Boot Thread) JBAS015951: Admin console listening on http://127.0.0.1:9990

13:34:35,042 INFO [org.jboss.as] (Controller Boot Thread) JBAS015874: JBoss AS 7.1.1.Final "Brontes" started in 1682ms - Started 134 of 209 services (74 services are passive or on-demand)

13:34:35,322 INFO [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015003: Found ticket-monster.war in deployment directory. To trigger deployment create a file called ticket-monster.war.dodeploy

13:34:35,329 INFO [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015003: Found first-project.war in deployment directory. To trigger deployment create a file called first-project.war.dodeploy

13:34:35,335 INFO [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015003: Found owf.war in deployment directory. To trigger deployment create a file called owf.war.dodeploy

13:34:35,360 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "h2console.war"

13:34:35,360 INFO [org.jboss.as.server.deployment] (MSC service thread 1-13) JBAS015876: Starting deployment of "owf.war"

13:34:35,801 INFO [org.jboss.web] (MSC service thread 1-3) JBAS018210: Registering web context: /h2console

13:34:38,389 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'

13:34:38,811 WARN [org.jboss.web] (MSC service thread 1-12) JBAS018204: Clustering not supported, falling back to non-clustered session manager

13:34:39,277 INFO [stdout] (MSC service thread 1-12) grails.config.locations = [classpath:OzoneConfig.properties, classpath:OwfConfig.groovy]

13:34:39,545 INFO [stdout] (MSC service thread 1-12) OwfConfig.groovy completed successfully.

13:34:39,637 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/owf]] (MSC service thread 1-12) Initializing Spring root WebApplicationContext

13:34:39,643 INFO [org.springframework.web.context.ContextLoader] (MSC service thread 1-12) Root WebApplicationContext: initialization started

13:34:39,659 INFO [org.springframework.web.context.support.XmlWebApplicationContext] (MSC service thread 1-12) Refreshing Root WebApplicationContext: startup date [Tue May 21 13:34:39 CDT 2013]; root of context hierarchy

13:34:39,687 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-12) Loading XML bean definitions from ServletContext resource [/WEB-INF/applicationContext.xml]

13:34:39,811 INFO [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-12) Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@30dfa64e: defining beans [grailsApplication,pluginManager,grailsConfigurator,grailsResourceLoader,grailsResourceHolder,characterEncodingFilter]; root of factory hierarchy

13:34:40,486 INFO [org.codehaus.groovy.grails.commons.GrailsApplicationFactoryBean] (MSC service thread 1-12) Loading Grails application with information from descriptor.

13:34:40,491 INFO [org.codehaus.groovy.grails.commons.GrailsApplicationFactoryBean] (MSC service thread 1-12) No reloading, using standard classloader.

13:34:41,026 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Attempting to load [0] user defined plugins

13:34:41,127 INFO [org.hibernate.cfg.Environment] (MSC service thread 1-12) Hibernate 3.3.1.GA

13:34:41,133 INFO [org.hibernate.cfg.Environment] (MSC service thread 1-12) hibernate.properties not found

13:34:41,140 INFO [org.hibernate.cfg.Environment] (MSC service thread 1-12) Bytecode provider name : javassist

13:34:41,144 INFO [org.hibernate.cfg.Environment] (MSC service thread 1-12) using JDK 1.4 java.sql.Timestamp handling

13:34:41,185 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [i18n] with version [1.3.7] loaded successfully

13:34:41,190 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [logging] with version [1.3.7] loaded successfully

13:34:41,195 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [core] with version [1.3.7] loaded successfully

13:34:41,206 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [codecs] with version [1.3.7] loaded successfully

13:34:41,212 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [groovyPages] with version [1.3.7] loaded successfully

13:34:41,217 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [filters] with version [1.3.7] loaded successfully

13:34:41,223 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [databaseMigration] with version [1.0] loaded successfully

13:34:41,229 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [ozoneDeploy] with version [0.1] loaded successfully

13:34:41,256 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [codeCoverage] with version [1.2.5] loaded successfully

13:34:41,261 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [uiPerformance] with version [1.2.2] loaded successfully

13:34:41,267 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [prettyTime] with version [0.3] loaded successfully

13:34:41,272 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [urlMappings] with version [1.3.7] loaded successfully

13:34:41,280 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [servlets] with version [1.3.7] loaded successfully

13:34:41,286 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [dataSource] with version [1.3.7] loaded successfully

13:34:41,297 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [controllers] with version [1.3.7] loaded successfully

13:34:41,304 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [scaffolding] with version [1.3.7] loaded successfully

13:34:41,313 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [mimeTypes] with version [1.3.7] loaded successfully

13:34:41,318 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [domainClass] with version [1.3.7] loaded successfully

13:34:41,327 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [hibernate] with version [1.3.7] loaded successfully

13:34:41,335 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [converters] with version [1.3.7] loaded successfully

13:34:41,340 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [validation] with version [1.3.7] loaded successfully

13:34:41,345 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [services] with version [1.3.7] loaded successfully

13:34:41,350 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [buildTestData] with version [1.1.0] loaded successfully

13:34:41,356 INFO [org.codehaus.groovy.grails.plugins.DefaultGrailsPluginManager] (MSC service thread 1-12) Grails plug-in [taggable] with version [0.6.2] loaded successfully

13:34:41,668 INFO [org.codehaus.groovy.grails.commons.TagLibArtefactHandler] (MSC service thread 1-12) There are conflicting tags: org.codehaus.groovy.grails.plugins.web.taglib.FormTagLib.g:out vs. org.codehaus.groovy.grails.plugins.web.taglib.RenderTagLib.g:out. The former will take precedence.

13:34:41,678 INFO [org.codehaus.groovy.grails.commons.TagLibArtefactHandler] (MSC service thread 1-12) There are conflicting tags: org.codehaus.groovy.grails.plugins.web.taglib.FormTagLib.g:out vs. org.codehaus.groovy.grails.plugins.web.taglib.RenderTagLib.g:out. The former will take precedence.

13:34:41,689 INFO [org.codehaus.groovy.grails.commons.TagLibArtefactHandler] (MSC service thread 1-12) There are conflicting tags: org.codehaus.groovy.grails.plugins.web.taglib.FormTagLib.g:out vs. org.codehaus.groovy.grails.plugins.web.taglib.RenderTagLib.g:out. The former will take precedence.

13:34:41,699 INFO [org.codehaus.groovy.grails.commons.TagLibArtefactHandler] (MSC service thread 1-12) There are conflicting tags: org.codehaus.groovy.grails.plugins.web.taglib.FormTagLib.g:out vs. org.codehaus.groovy.grails.plugins.web.taglib.RenderTagLib.g:out. The former will take precedence.

13:34:42,495 INFO [grails.spring.BeanBuilder] (MSC service thread 1-12) [RuntimeConfiguration] Configuring data source for environment: PRODUCTION

13:34:42,579 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-12) Loading XML bean definitions from ServletContext resource [/WEB-INF/spring/resources.xml]

13:34:42,899 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-12) Loading XML bean definitions from file [C:\bit9prog\dev\servers\JBoss\jboss-as-7.1.1.Final\modules\ozone\configuration\main\.\OWFsecurityContext_cert_only.xml]

13:34:43,012 INFO [org.springframework.security.config.http.HttpSecurityBeanDefinitionParser] (MSC service thread 1-12) Checking sorted filter chain: [Root bean: class [org.springframework.security.web.access.channel.ChannelProcessingFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 100, Root bean: class [org.springframework.security.web.context.SecurityContextPersistenceFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 300, <ozoneLogoutFilter>, order = 400, Root bean: class [org.springframework.security.web.authentication.preauth.x509.X509AuthenticationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 500, Root bean: class [org.springframework.security.web.savedrequest.RequestCacheAwareFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1300, Root bean: class [org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1400, <ozoneCookieFilter>, order = 1599, Root bean: class [org.springframework.security.web.authentication.AnonymousAuthenticationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1600, Root bean: class [org.springframework.security.web.session.SessionManagementFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1700, Root bean: class [org.springframework.security.web.access.ExceptionTranslationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1800, <org.springframework.security.web.access.intercept.FilterSecurityInterceptor#0>, order = 1900]

13:34:43,090 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-12) Loading XML bean definitions from file [C:\bit9prog\dev\servers\JBoss\jboss-as-7.1.1.Final\modules\ozone\configuration\main\ozone-security-beans\OWFLogInOutBeans.xml]

13:34:43,113 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-12) Loading XML bean definitions from file [C:\bit9prog\dev\servers\JBoss\jboss-as-7.1.1.Final\modules\ozone\configuration\main\ozone-security-beans\ListenerBeans.xml]

13:34:43,132 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-12) Loading XML bean definitions from file [C:\bit9prog\dev\servers\JBoss\jboss-as-7.1.1.Final\modules\ozone\configuration\main\ozone-security-beans\UserServiceBeans.xml]

13:34:43,180 INFO [org.codehaus.groovy.grails.plugins.orm.hibernate.HibernatePluginSupport] (MSC service thread 1-12) Set db generation strategy to 'none'

13:34:43,306 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-12) Loading XML bean definitions from ServletContext resource [/WEB-INF/spring/resources.xml]

13:34:43,514 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-12) Loading XML bean definitions from file [C:\bit9prog\dev\servers\JBoss\jboss-as-7.1.1.Final\modules\ozone\configuration\main\.\OWFsecurityContext_cert_only.xml]

13:34:43,545 INFO [org.springframework.security.config.http.HttpSecurityBeanDefinitionParser] (MSC service thread 1-12) Checking sorted filter chain: [Root bean: class [org.springframework.security.web.access.channel.ChannelProcessingFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 100, Root bean: class [org.springframework.security.web.context.SecurityContextPersistenceFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 300, <ozoneLogoutFilter>, order = 400, Root bean: class [org.springframework.security.web.authentication.preauth.x509.X509AuthenticationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 500, Root bean: class [org.springframework.security.web.savedrequest.RequestCacheAwareFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1300, Root bean: class [org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1400, <ozoneCookieFilter>, order = 1599, Root bean: class [org.springframework.security.web.authentication.AnonymousAuthenticationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1600, Root bean: class [org.springframework.security.web.session.SessionManagementFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1700, Root bean: class [org.springframework.security.web.access.ExceptionTranslationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1800, <org.springframework.security.web.access.intercept.FilterSecurityInterceptor#0>, order = 1900]

13:34:43,617 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-12) Loading XML bean definitions from file [C:\bit9prog\dev\servers\JBoss\jboss-as-7.1.1.Final\modules\ozone\configuration\main\ozone-security-beans\OWFLogInOutBeans.xml]

13:34:43,634 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-12) Loading XML bean definitions from file [C:\bit9prog\dev\servers\JBoss\jboss-as-7.1.1.Final\modules\ozone\configuration\main\ozone-security-beans\ListenerBeans.xml]

13:34:43,649 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-12) Loading XML bean definitions from file [C:\bit9prog\dev\servers\JBoss\jboss-as-7.1.1.Final\modules\ozone\configuration\main\ozone-security-beans\UserServiceBeans.xml]

13:34:43,666 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor': replacing [Root bean: class [org.springframework.context.annotation.ConfigurationClassPostProcessor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Root bean: class [org.springframework.context.annotation.ConfigurationClassPostProcessor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,688 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor': replacing [Root bean: class [org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Root bean: class [org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,710 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor': replacing [Root bean: class [org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Root bean: class [org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,732 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor': replacing [Root bean: class [org.springframework.context.annotation.CommonAnnotationBeanPostProcessor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Root bean: class [org.springframework.context.annotation.CommonAnnotationBeanPostProcessor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,753 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor': replacing [Root bean: class [org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Root bean: class [org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,775 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'org.springframework.aop.config.internalAutoProxyCreator': replacing [Root bean: class [org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Root bean: class [org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,797 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0': replacing [Root bean: class [org.springframework.transaction.annotation.AnnotationTransactionAttributeSource]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Root bean: class [org.springframework.transaction.annotation.AnnotationTransactionAttributeSource]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,820 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'org.springframework.transaction.interceptor.TransactionInterceptor#0': replacing [Root bean: class [org.springframework.transaction.interceptor.TransactionInterceptor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Root bean: class [org.springframework.transaction.interceptor.TransactionInterceptor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,842 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'org.springframework.transaction.config.internalTransactionAdvisor': replacing [Root bean: class [org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Root bean: class [org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,865 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'accountService': replacing [Generic bean: class [ozone.owf.grails.services.AccountService]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Generic bean: class [ozone.owf.grails.services.AccountService]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,884 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'entityInterceptor': replacing [Generic bean: class [ozone.owf.nineci.hibernate.AuditTrailInterceptor]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Generic bean: class [ozone.owf.nineci.hibernate.AuditTrailInterceptor]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,905 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Overriding bean definition for bean 'exceptionHandler': replacing [Generic bean: class [ozone.owf.grails.OwfExceptionResolver]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Generic bean: class [ozone.owf.grails.OwfExceptionResolver]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

13:34:43,935 INFO [org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext] (MSC service thread 1-12) Refreshing org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext@5c088ab4: startup date [Tue May 21 13:34:43 CDT 2013]; parent: Root WebApplicationContext

13:34:44,015 INFO [org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor] (MSC service thread 1-12) JSR-330 'javax.inject.Inject' annotation found and supported for autowiring

13:34:44,061 INFO [org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext] (MSC service thread 1-12) Bean 'org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0' of type [class org.springframework.transaction.annotation.AnnotationTransactionAttributeSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

13:34:44,073 INFO [org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext] (MSC service thread 1-12) Bean 'org.springframework.transaction.config.internalTransactionAdvisor' of type [class org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

13:34:44,388 INFO [org.hibernate.dialect.Dialect] (MSC service thread 1-12) Using dialect: org.hibernate.dialect.HSQLDialect

13:34:44,430 INFO [org.hibernate.cfg.annotations.Version] (MSC service thread 1-12) Hibernate Annotations 3.4.0.GA

13:34:44,456 INFO [org.hibernate.annotations.common.Version] (MSC service thread 1-12) Hibernate Commons Annotations 3.1.0.GA

13:34:44,560 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [uniqueWidgetCount] of domain class ozone.owf.grails.domain.Stack has type [java.lang.Integer] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:44,583 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [visible] of domain class ozone.owf.grails.domain.WidgetDefinition has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:44,591 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [singleton] of domain class ozone.owf.grails.domain.WidgetDefinition has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:44,603 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [srcId] of domain class ozone.owf.grails.domain.DomainMapping has type [java.lang.Long] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:44,615 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [destId] of domain class ozone.owf.grails.domain.DomainMapping has type [java.lang.Long] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:44,623 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [send] of domain class ozone.owf.grails.domain.WidgetDefinitionIntent has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:44,631 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [receive] of domain class ozone.owf.grails.domain.WidgetDefinitionIntent has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:44,640 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [automatic] of domain class ozone.owf.grails.domain.Group has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:44,647 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [stackDefault] of domain class ozone.owf.grails.domain.Group has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:44,655 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [isdefault] of domain class ozone.owf.grails.domain.Dashboard has type [boolean] and doesn't support constraint [nullable]. This constraint will not be checked during validation.

13:34:44,662 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [isdefault] of domain class ozone.owf.grails.domain.Dashboard has type [boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:44,669 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [alteredByAdmin] of domain class ozone.owf.grails.domain.Dashboard has type [boolean] and doesn't support constraint [nullable]. This constraint will not be checked during validation.

13:34:44,676 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [alteredByAdmin] of domain class ozone.owf.grails.domain.Dashboard has type [boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:44,701 INFO [org.hibernate.validator.Version] (MSC service thread 1-12) Hibernate Validator 3.1.0.GA

13:34:44,725 INFO [org.codehaus.groovy.grails.orm.hibernate.ConfigurableLocalSessionFactoryBean] (MSC service thread 1-12) Building new Hibernate SessionFactory

13:34:44,731 INFO [org.hibernate.cfg.search.HibernateSearchEventListenerRegister] (MSC service thread 1-12) Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.

13:34:44,744 INFO [org.hibernate.connection.ConnectionProviderFactory] (MSC service thread 1-12) Initializing connection provider: org.springframework.orm.hibernate3.TransactionAwareDataSourceConnectionProvider

13:34:44,751 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) RDBMS: HSQL Database Engine, version: 1.8.0

13:34:44,755 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) JDBC driver: HSQL Database Engine Driver, version: 1.8.0

13:34:44,759 INFO [org.hibernate.dialect.Dialect] (MSC service thread 1-12) Using dialect: org.hibernate.dialect.HSQLDialect

13:34:44,764 INFO [org.hibernate.transaction.TransactionFactoryFactory] (MSC service thread 1-12) Transaction strategy: org.springframework.orm.hibernate3.SpringTransactionFactory

13:34:44,770 INFO [org.hibernate.transaction.TransactionManagerLookupFactory] (MSC service thread 1-12) No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)

13:34:44,777 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Automatic flush during beforeCompletion(): disabled

13:34:44,781 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Automatic session close at end of transaction: disabled

13:34:44,785 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) JDBC batch size: 15

13:34:44,788 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) JDBC batch updates for versioned data: disabled

13:34:44,792 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Scrollable result sets: enabled

13:34:44,795 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) JDBC3 getGeneratedKeys(): disabled

13:34:44,798 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Connection release mode: auto

13:34:44,801 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Default batch fetch size: 1

13:34:44,804 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Generate SQL with comments: disabled

13:34:44,808 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Order SQL updates by primary key: disabled

13:34:44,811 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Order SQL inserts for batching: disabled

13:34:44,815 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory

13:34:44,820 INFO [org.hibernate.hql.ast.ASTQueryTranslatorFactory] (MSC service thread 1-12) Using ASTQueryTranslatorFactory

13:34:44,824 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Query language substitutions: {}

13:34:44,827 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) JPA-QL strict compliance: disabled

13:34:44,830 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Second-level cache: enabled

13:34:44,833 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Query cache: enabled

13:34:44,838 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge

13:34:44,843 INFO [org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge] (MSC service thread 1-12) Cache provider: net.sf.ehcache.hibernate.EhCacheProvider

13:34:44,849 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Optimize cache for minimal puts: enabled

13:34:44,852 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Structured second-level cache entries: disabled

13:34:44,855 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Query cache factory: org.hibernate.cache.StandardQueryCacheFactory

13:34:44,862 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Statistics: disabled

13:34:44,864 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Deleted entity synthetic identifier rollback: disabled

13:34:44,868 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Default entity-mode: pojo

13:34:44,871 INFO [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-12) Named query checking : enabled

13:34:44,895 INFO [org.hibernate.impl.SessionFactoryImpl] (MSC service thread 1-12) building session factory

13:34:44,906 WARN [net.sf.ehcache.config.ConfigurationFactory] (MSC service thread 1-12) No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: vfs:/C:/bit9prog/dev/servers/JBoss/jboss-as-7.1.1.Final/standalone/deployments/owf.war/WEB-INF/lib/ehcache-core-2.3.0.jar/ehcache-failsafe.xml

13:34:45,059 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.WidgetDefinitionIntent]; using defaults.

13:34:45,090 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Stack]; using defaults.

13:34:45,108 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Person]; using defaults.

13:34:45,133 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [org.grails.taggable.Tag]; using defaults.

13:34:45,146 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.DomainMapping]; using defaults.

13:34:45,162 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Preference]; using defaults.

13:34:45,183 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.PersonWidgetDefinition]; using defaults.

13:34:45,200 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Dashboard]; using defaults.

13:34:45,219 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [org.grails.taggable.TagLink]; using defaults.

13:34:45,234 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Intent]; using defaults.

13:34:45,247 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.WidgetDefinition]; using defaults.

13:34:45,267 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Group]; using defaults.

13:34:45,288 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Person.groups]; using defaults.

13:34:45,300 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Person.preferences]; using defaults.

13:34:45,308 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.WidgetDefinition.widgetDefinitionIntents]; using defaults.

13:34:45,317 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Person.dashboards]; using defaults.

13:34:45,324 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.WidgetDefinition.personWidgetDefinitions]; using defaults.

13:34:45,332 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Group.stacks]; using defaults.

13:34:45,339 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.WidgetDefinitionIntent.dataTypes]; using defaults.

13:34:45,347 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Intent.widgetDefinitionIntents]; using defaults.

13:34:45,356 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.WidgetDefinition.widgetTypes]; using defaults.

13:34:45,363 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.WidgetType.widgetDefinitions]; using defaults.

13:34:45,371 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Intent.dataTypes]; using defaults.

13:34:45,379 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Person.personWidgetDefinitions]; using defaults.

13:34:45,387 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.IntentDataType.intents]; using defaults.

13:34:45,394 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Group.people]; using defaults.

13:34:45,402 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Stack.groups]; using defaults.

13:34:45,409 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [ozone.owf.grails.domain.Person.authorities]; using defaults.

13:34:45,443 INFO [org.hibernate.impl.SessionFactoryObjectFactory] (MSC service thread 1-12) Factory name: org.codehaus.groovy.grails.orm.hibernate.ConfigurableLocalSessionFactoryBean

13:34:45,448 INFO [org.hibernate.util.NamingHelper] (MSC service thread 1-12) JNDI InitialContext properties:{}

13:34:45,455 INFO [org.hibernate.impl.SessionFactoryObjectFactory] (MSC service thread 1-12) Bound factory to JNDI name: org.codehaus.groovy.grails.orm.hibernate.ConfigurableLocalSessionFactoryBean

13:34:45,460 WARN [org.hibernate.impl.SessionFactoryObjectFactory] (MSC service thread 1-12) InitialContext did not implement EventContext

13:34:45,464 INFO [org.hibernate.cache.UpdateTimestampsCache] (MSC service thread 1-12) starting update timestamps cache at region: org.hibernate.cache.UpdateTimestampsCache

13:34:45,469 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [org.hibernate.cache.UpdateTimestampsCache]; using defaults.

13:34:45,478 INFO [org.hibernate.cache.StandardQueryCache] (MSC service thread 1-12) starting query cache at region: org.hibernate.cache.StandardQueryCache

13:34:45,482 WARN [net.sf.ehcache.hibernate.AbstractEhcacheProvider] (MSC service thread 1-12) Could not find a specific ehcache configuration for cache named [org.hibernate.cache.StandardQueryCache]; using defaults.

13:34:45,500 INFO [org.codehaus.groovy.grails.orm.hibernate.GrailsHibernateTransactionManager] (MSC service thread 1-12) Using DataSource [org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy@74ac138d] of Hibernate SessionFactory for HibernateTransactionManager

13:34:45,525 INFO [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory] (MSC service thread 1-12) Pre-instantiating singletons in org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory@3742f5ba: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,viewNameTranslator,autoLoginAccountService,grailsApplicationPostProcessor,com.studentsonly.grails.plugins.uiperformance.taglib.SpriteTagLib,ozone.owf.grails.controllers.PersonWidgetDefinitionController,ozone.owf.grails.domain.Role,ozone.owf.grails.domain.PersonDomainClass,org.codehaus.groovy.grails.plugins.web.taglib.ApplicationTagLib,ozone.owf.grails.domain.WidgetTypeDomainClass,grails.plugin.databasemigration.DbdocController,xmlParsingParameterCreationListener,ozone.owf.grails.domain.WidgetTypePersistentClass,ozone.owf.grails.domain.Group,dialectDetector,ozone.owf.grails.domain.IntentDomainClass,org.codehaus.groovy.grails.plugins.web.taglib.FormatTagLib,migrationResourceAccessor,org.grails.taggable.TagsTagLib,ozone.owf.grails.services.DomainMappingServiceServiceClass,ozone.owf.grails.controllers.PreferenceController,mergedDirectoryResourceService,controllerHandlerMappings,grailsUrlMappingsHolderBean,taggableService,convertersConfigurationInitializer,ozone.owf.grails.controllers.ErrorController,transactionManagerPostProcessor,org.grails.taggable.TagLinkPersistentClass,org.codehaus.groovy.grails.plugins.web.taglib.CountryTagLib,ozone.owf.grails.controllers.BaseOwfRestController,ozone.owf.grails.domain.Stack,com.studentsonly.grails.plugins.uiperformance.taglib.DependantJavascriptTagLib,org.grails.taggable.TaggableServiceServiceClass,ozone.owf.grails.taglib.UrlTagLib,imageTagPostProcessor,ozone.owf.grails.filters.SecurityFilters,flushingRedirectEventListener,ozone.owf.grails.domain.WidgetDefinition,exceptionHandler,org.codehaus.groovy.grails.web.filters.JavascriptLibraryFiltersClass,ozone.owf.grails.domain.DashboardDomainClass,ozone.owf.grails.services.MetricServiceServiceClass,controllerToScaffoldedDomainClassMap,gspTagLibraryLookup,org.grails.taggable.TagLinkDomainClass,ozone.owf.grails.domain.StackPersistentClass,ozone.owf.grails.domain.StackDomainClass,ozone.owf.grails.domain.StackValidator,urlMappingsTargetSource,eventTriggeringInterceptor,xmlErrorsMarshaller,jspViewResolver,ozone.owf.grails.services.AccountServiceServiceClass,ozone.owf.grails.controllers.MetricController,persistenceInterceptor,org.grails.taggable.TagDomainClass,ozone.owf.grails.domain.WidgetDefinitionIntentDomainClass,classLoader,ozone.owf.grails.domain.DomainMapping,ozone.owf.grails.controllers.AdministrationController,domainMappingService,ozone.owf.grails.domain.PersonWidgetDefinition,ozone.owf.grails.services.AdministrationServiceServiceClass,ozone.owf.grails.taglib.ThemeCssTagLib,ozone.owf.grails.domain.Dashboard,helpService,org.grails.taggable.TagPersistentClass,httpService,ozone.owf.grails.services.WidgetDefinitionServiceServiceClass,ozone.owf.grails.domain.GroupDomainClass,ozone.owf.grails.domain.DomainMappingValidator,ozone.owf.grails.services.PersonWidgetDefinitionServiceServiceClass,transactionManager,diffStatusListener,ozone.owf.grails.domain.DomainMappingDomainClass,ozone.owf.grails.domain.DashboardValidator,ozone.owf.grails.services.WidgetTypeServiceServiceClass,org.codehaus.groovy.grails.plugins.web.taglib.JavascriptTagLib,ozone.owf.grails.domain.WidgetDefinitionPersistentClass,com.studentsonly.grails.plugins.uiperformance.taglib.JavascriptTagLib,ozone.owf.grails.controllers.PersonController,dataSource,scaffoldedActionMap,customEditors,ozone.owf.grails.domain.WidgetTypeValidator,ozone.owf.grails.domain.WidgetType,org.grails.prettytime.PrettyTimeTagLib,dataSourceUnproxied,jsonParsingParameterCreationListener,ozone.owf.grails.controllers.MergedDirectoryResourceController,multipartResolver,ozone.owf.grails.domain.IntentDataType,org.codehaus.groovy.grails.plugins.web.taglib.ValidationTagLib,ozone.owf.grails.domain.Requestmap,org.springframework.aop.config.internalAutoProxyCreator,ozone.owf.grails.controllers.WidgetController,hibernateEventListeners,ozone.owf.grails.controllers.TestErrorController,ozone.owf.grails.domain.PersonPersistentClass,filterInterceptor,ozone.owf.grails.services.ThemeServiceServiceClass,ozone.owf.grails.controllers.ContextController,ozone.owf.grails.domain.GroupValidator,ozone.owf.grails.controllers.DashboardController,ozone.owf.grails.controllers.HelpController,localeChangeInterceptor,ozone.owf.grails.domain.DashboardPersistentClass,ozone.owf.grails.services.PreferenceServiceServiceClass,ozone.owf.grails.domain.WidgetDefinitionIntentPersistentClass,ozone.owf.grails.taglib.MarketplaceTagLib,ozone.owf.grails.controllers.GroupController,ozone.owf.grails.domain.RequestmapPersistentClass,themeService,ozone.owf.grails.domain.IntentDataTypeValidator,groovyPagesUriService,ozone.owf.grails.domain.WidgetDefinitionIntentValidator,ozone.owf.grails.domain.PersonWidgetDefinitionValidator,ozone.owf.grails.services.MergedDirectoryResourceServiceServiceClass,jspTagLibraryResolver,ozone.owf.grails.domain.RolePersistentClass,ozone.owf.grails.services.HelpServiceServiceClass,grailsUrlMappingsHolder,localeResolver,ozone.owf.grails.services.StackServiceServiceClass,org.grails.taggable.TagValidator,ozone.owf.grails.domain.GroupPersistentClass,accountService,proxyHandler,ozone.owf.grails.controllers.ThemeController,ozone.owf.grails.controllers.WidgetTypeController,hibernateProperties,org.grails.taggable.TagLinkValidator,ozone.owf.grails.services.AutoLoginAccountServiceServiceClass,messageSource,ozone.owf.grails.domain.PreferenceDomainClass,ozone.owf.grails.domain.PersonValidator,annotationHandlerMapping,ozone.owf.grails.domain.RoleDomainClass,org.codehaus.groovy.grails.web.filters.JavascriptLibraryFilters,com.studentsonly.grails.plugins.uiperformance.taglib.CssTagLib,widgetDefinitionService,ozone.owf.grails.domain.IntentValidator,pluginManagerPostProcessor,ozone.owf.grails.services.DashboardServiceServiceClass,ozone.owf.grails.domain.PreferenceValidator,errorsJsonMarshallerRegisterer,serviceModelService,ozone.owf.grails.domain.RequestmapValidator,org.grails.taggable.TagLink,nativeJdbcExtractor,mainSimpleController,ozone.owf.grails.controllers.PrefsDashboardController,org.codehaus.groovy.grails.plugins.web.taglib.RenderTagLib,ozone.owf.grails.domain.IntentPersistentClass,errorsXmlMarshallerRegisterer,ozone.owf.grails.domain.WidgetDefinitionIntent,ozone.owf.grails.filters.SecurityFiltersClass,com.studentsonly.grails.plugins.uiperformance.taglib.ImageTagLib,ozone.owf.grails.services.GroupServiceServiceClass,ozone.owf.grails.domain.IntentDataTypeDomainClass,ozone.owf.grails.domain.Preference,groupService,ozone.owf.grails.domain.Intent,dashboardService,jsTagPostProcessor,ozone.owf.grails.domain.RoleValidator,openSessionInViewInterceptor,ozone.owf.grails.controllers.StackController,grails.buildtestdata.BuildTestDataServiceServiceClass,ozone.owf.grails.domain.Person,ozone.owf.grails.taglib.StaticImportTagLib,entityInterceptor,personWidgetDefinitionService,org.codehaus.groovy.grails.plugins.web.taglib.FormTagLib,ozone.owf.grails.services.HttpServiceServiceClass,org.grails.taggable.Tag,stackService,ozone.owf.grails.services.BaseServiceServiceClass,widgetTypeService,ozone.owf.grails.controllers.WidgetDefinitionController,ozone.owf.grails.domain.RequestmapDomainClass,ozone.owf.grails.services.ServiceModelServiceServiceClass,sessionFactory,ozone.owf.grails.domain.WidgetDefinitionValidator,annotationHandlerAdapter,simpleControllerHandlerAdapter,ozone.owf.grails.controllers.ConfigController,org.codehaus.groovy.grails.plugins.web.taglib.PluginTagLib,preferenceService,groovyPagesTemplateEngine,ozone.owf.grails.domain.DomainMappingPersistentClass,metricService,cssTagPostProcessor,jsonErrorsMarshaller,ozone.owf.grails.domain.PersonWidgetDefinitionDomainClass,scaffoldingTemplateGenerator,ozone.owf.grails.controllers.IndexController,buildTestDataService,baseService,lobHandlerDetector,ozone.owf.grails.domain.WidgetDefinitionDomainClass,ozone.owf.grails.domain.PersonWidgetDefinitionPersistentClass,administrationService,ozone.owf.grails.domain.PreferencePersistentClass,ozone.owf.grails.taglib.LanguagePreferenceTagLib,org.codehaus.groovy.grails.plugins.web.taglib.SitemeshTagLib,ozone.owf.grails.domain.IntentDataTypePersistentClass,org.springframework.security.web.access.intercept.FilterSecurityInterceptor#0,org.springframework.security.authentication.ProviderManager#0,org.springframework.security.web.access.channel.ChannelDecisionManagerImpl#0,ozoneCookieFilter,userService,org.springframework.security.filterChainProxy,org.springframework.security.web.authentication.session.SessionFixationProtectionStrategy#0,org.springframework.security.authentication.DefaultAuthenticationEventPublisher#0,org.springframework.security.web.context.HttpSessionSecurityContextRepository#0,authenticationFailureListener,org.springframework.security.authentication.AnonymousAuthenticationProvider#0,authenticationSuccessListener,org.springframework.security.web.access.DefaultWebInvocationPrivilegeEvaluator#0,org.springframework.security.config.http.UserDetailsServiceInjectionBeanPostProcessor#0,ozoneLogoutFilter,org.springframework.security.authenticationManager,org.springframework.security.web.PortMapperImpl#0,org.springframework.security.access.vote.AffirmativeBased#0,org.springframework.security.web.savedrequest.HttpSessionRequestCache#0,org.springframework.security.web.authentication.preauth.PreAuthenticatedAuthenticationProvider#0]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory@30dfa64e

13:34:46,163 WARN [org.springframework.aop.framework.Cglib2AopProxy] (MSC service thread 1-12) Unable to proxy method [public final java.lang.Object ozone.owf.grails.services.DashboardService.getGuidRegex()] because it is final: All calls to this method via a proxy will be routed directly to the proxy.

13:34:46,171 WARN [org.springframework.aop.framework.Cglib2AopProxy] (MSC service thread 1-12) Unable to proxy method [public final java.lang.Object ozone.owf.grails.services.DashboardService.getUniqueIdRegex()] because it is final: All calls to this method via a proxy will be routed directly to the proxy.

13:34:46,386 INFO [org.codehaus.groovy.grails.scaffolding.DefaultGrailsTemplateGenerator] (MSC service thread 1-12) Scaffolding template generator set to use resource loader org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext@5c088ab4: startup date [Tue May 21 13:34:43 CDT 2013]; parent: Root WebApplicationContext

13:34:46,399 INFO [org.springframework.beans.factory.config.PropertiesFactoryBean] (MSC service thread 1-12) Loading properties file from class path resource [gsp/views.properties]

13:34:46,540 INFO [org.springframework.security.web.access.intercept.FilterSecurityInterceptor] (MSC service thread 1-12) Validated configuration attributes

13:34:46,562 INFO [org.springframework.security.web.access.channel.ChannelProcessingFilter] (MSC service thread 1-12) Validated configuration attributes

13:34:47,369 WARN [grails.buildtestdata.TestDataConfigurationHolder] (MSC service thread 1-12) TestDataConfig.groovy not found, build-test-data plugin proceeding without config file

13:34:47,560 INFO [org.codehaus.groovy.grails.plugins.web.filters.FiltersGrailsPlugin] (MSC service thread 1-12) reloadFilters

13:34:47,811 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [send] of domain class ozone.owf.grails.domain.WidgetDefinitionIntent has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:47,818 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [receive] of domain class ozone.owf.grails.domain.WidgetDefinitionIntent has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:47,826 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [visible] of domain class ozone.owf.grails.domain.WidgetDefinition has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:47,834 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [singleton] of domain class ozone.owf.grails.domain.WidgetDefinition has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:47,842 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [automatic] of domain class ozone.owf.grails.domain.Group has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:47,849 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [stackDefault] of domain class ozone.owf.grails.domain.Group has type [java.lang.Boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:47,856 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [srcId] of domain class ozone.owf.grails.domain.DomainMapping has type [java.lang.Long] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:47,863 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [destId] of domain class ozone.owf.grails.domain.DomainMapping has type [java.lang.Long] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:47,871 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [uniqueWidgetCount] of domain class ozone.owf.grails.domain.Stack has type [java.lang.Integer] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:47,878 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [isdefault] of domain class ozone.owf.grails.domain.Dashboard has type [boolean] and doesn't support constraint [nullable]. This constraint will not be checked during validation.

13:34:47,885 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [isdefault] of domain class ozone.owf.grails.domain.Dashboard has type [boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:47,892 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [alteredByAdmin] of domain class ozone.owf.grails.domain.Dashboard has type [boolean] and doesn't support constraint [nullable]. This constraint will not be checked during validation.

13:34:47,899 WARN [grails.util.GrailsUtil] (MSC service thread 1-12) [WARNING] Property [alteredByAdmin] of domain class ozone.owf.grails.domain.Dashboard has type [boolean] and doesn't support constraint [blank]. This constraint will not be checked during validation.

13:34:47,907 INFO [org.codehaus.groovy.grails.web.context.GrailsConfigUtils] (MSC service thread 1-12) [GrailsContextLoader] Grails application loaded.

13:34:47,920 INFO [stdout] (MSC service thread 1-12) BootStrap running!

13:34:47,941 INFO [stdout] (MSC service thread 1-12) ########## Found owf-override-log4j.xml at: C:\bit9prog\dev\servers\JBoss\jboss-as-7.1.1.Final\modules\ozone\configuration\main\.\owf-override-log4j.xml 180000

13:34:47,983 INFO [grails.app.bootstrap.BootStrap] (MSC service thread 1-12) Adding default newUser

13:34:48,165 INFO [stdout] (MSC service thread 1-12) BootStrap finished!

13:34:48,172 INFO [org.springframework.web.context.ContextLoader] (MSC service thread 1-12) Root WebApplicationContext: initialization completed in 8525 ms

13:34:48,182 INFO [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-12) Initializing Mojarra 2.1.7-jbossorg-1 (20120227-1401) for context '/owf'

13:34:49,140 INFO [org.hibernate.validator.util.Version] (MSC service thread 1-12) Hibernate Validator 4.2.0.Final

13:34:49,244 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/owf]] (MSC service thread 1-12) Initializing Spring FrameworkServlet 'grails'

13:34:49,249 INFO [org.codehaus.groovy.grails.web.servlet.GrailsDispatcherServlet] (MSC service thread 1-12) FrameworkServlet 'grails': initialization started

13:34:49,263 INFO [org.codehaus.groovy.grails.web.servlet.GrailsDispatcherServlet] (MSC service thread 1-12) Using MultipartResolver [org.codehaus.groovy.grails.web.multipart.ContentLengthAwareCommonsMultipartResolver@6499d628]

13:34:49,269 INFO [org.codehaus.groovy.grails.web.servlet.GrailsDispatcherServlet] (MSC service thread 1-12) FrameworkServlet 'grails': initialization completed in 16 ms

13:34:49,275 INFO [org.jboss.web] (MSC service thread 1-12) JBAS018210: Registering web context: /owf

13:34:49,316 INFO [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "owf.war"

13:34:49,319 INFO [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "h2console.war"

 

On Tuesday, May 21, 2013 12:42:54 PM UTC-5, Tina wrote:

Tina

unread,
May 21, 2013, 3:09:46 PM5/21/13
to ozonepla...@googlegroups.com
Hmmm - none of those appear to be related to SSL in any form or fashion.

Looks like you're running using localhost, on port 8080 (http) and 8443 (https) via JBoss AS 7.1.1. 

The keystore that you generated and applied in standalone.xml: can you do a 'keytool -list -v -keystore ' on whatever your generated keystore is that's referenced in your file?  The results should look something akin to the below, given running on localhost.. (Note that the below is a bogus generated one just spit out in my own environment, so not really worried about spilling PrivateKey info.  That said, don't post your full info in a response if you're intending to use your cert in an actual environment...)

The top-most entry is the generated ca authority, which is put in the root of the chain.  The second listed item is the alias for my server (localhost).  Typical things that cause issues are the CN for the server cert itself not matching the server, or the cert not being valid from a date/timestamp perspective.  (Unlikely but possible: your server's timestamp is set to something in the future, which means that your generated cert isn't yet treated as valid...)

One more item: you said you've loaded the certs into your browser, which means I'm not anticipating CAS coming into play, in terms of the out-of-the-box OWF configuration (PKI certs, failing over to CAS).  Do take a peek in your browser cert list and make sure you've loaded in your new certs...

C:\OZONE_versions\OWF7\GA\etc\tools>keytool -list -v -keystore localhost.jks
Enter keystore password:

Keystore type: JKS
Keystore provider: SUN

Your keystore contains 2 entries

Alias name: ca-localhost
Creation date: May 21, 2013
Entry type: trustedCertEntry

Owner: C=US, CN=localhost, ST=localhost, L=localhost, EMAILADDRESS=localhost, OU
=localhost, O=localhost
Issuer: C=US, CN=localhost, ST=localhost, L=localhost, EMAILADDRESS=localhost, O
U=localhost, O=localhost
Serial number: bd372319080c3392
Valid from: Tue May 21 13:38:29 EDT 2013 until: Wed May 21 13:38:29 EDT 2014
Certificate fingerprints:
         MD5:  76:A8:68:2D:F0:EF:4C:85:49:FC:50:60:22:E4:24:CD
         SHA1: AE:9B:A7:94:94:AB:1B:57:79:84:AA:E7:08:62:A5:A0:DB:9C:7D:7A
         Signature algorithm name: SHA1withRSA
         Version: 1


*******************************************
*******************************************


Alias name: localhost
Creation date: May 21, 2013
Entry type: PrivateKeyEntry
Certificate chain length: 1
Certificate[1]:
Owner: CN=localhost, OU=localhost, O=localhost, L=localhost, ST=localhost, C=US
Issuer: CN=localhost, OU=localhost, O=localhost, L=localhost, ST=localhost, C=US

Serial number: 519bb11a
Valid from: Tue May 21 13:38:34 EDT 2013 until: Mon Aug 19 13:38:34 EDT 2013
Certificate fingerprints:
         MD5:  84:A2:01:D4:54:E0:F3:33:9D:09:70:1B:4D:46:01:7A
         SHA1: C3:F5:63:45:8B:50:EC:A9:92:4C:5A:E9:1B:57:E1:67:CF:08:9D:92
         Signature algorithm name: SHA1withRSA
         Version: 3


*******************************************
*******************************************

Message has been deleted
Message has been deleted
Message has been deleted
Message has been deleted
Message has been deleted

keithe...@gmail.com

unread,
May 23, 2013, 3:49:05 PM5/23/13
to ozonepla...@googlegroups.com
Tina,
 
I am not sure what is going on. It appears that every message that I post gets deleted. I've created a temporary second google account to see if I am able to post from another account. Are my posts being flagged as spam?
 
V/R,
Keith Weber

Tina

unread,
May 23, 2013, 3:54:51 PM5/23/13
to ozonepla...@googlegroups.com
yuck - that definitely looks like that's what is happening.  We're not in any way moderating away your messages, but I do see a few (3, it looks like) in the group's spam filter.  I think once it decided your email address was spamming it, it caught up other messages you'd sent. 

Tina


--

keithe...@gmail.com

unread,
May 23, 2013, 4:02:03 PM5/23/13
to ozonepla...@googlegroups.com
Ok, I can use this account for the time being. Below is the output of the 'keystore -list -v keystore' command.
 
C:\Users\Keith.Weber>keytool -list -v -keystore C:\bit9prog\dev\localhost.jks
Enter keystore password:
Keystore type: JKS
Keystore provider: SUN
Your keystore contains 2 entries
Alias name: ca-localhost
Creation date: May 21, 2013
Entry type: trustedCertEntry
Owner: C=US, CN=localhost, ST=localhost, L=localhost, EMAILADDRESS=localhost, OU
=localhost, O=localhost
Issuer: C=US, CN=localhost, ST=localhost, L=localhost, EMAILADDRESS=localhost, O
U=localhost, O=localhost
Serial number: e5445fd39ad47e23
Valid from: Tue May 21 10:37:33 CDT 2013 until: Wed May 21 10:37:33 CDT 2014
Certificate fingerprints:
         MD5:  9C:03:F1:32:C5:36:D8:5B:34:42:2A:4E:C0:9C:41:78
         SHA1: A1:54:01:5A:3F:36:7B:4A:86:2D:61:B5:5B:27:7A:BD:CD:91:03:C8
         SHA256: F9:08:51:96:01:59:B9:47:22:D7:74:AF:2B:7E:77:78:02:CB:7F:02:D3:
7B:DB:44:B1:A3:AA:8D:8D:33:16:B0

         Signature algorithm name: SHA1withRSA
         Version: 1

*******************************************
*******************************************

Alias name: localhost
Creation date: May 21, 2013
Entry type: PrivateKeyEntry
Certificate chain length: 2

Certificate[1]:
Owner: CN=localhost, OU=localhost, O=localhost, L=localhost, ST=localhost, C=US
Issuer: C=US, CN=localhost, ST=localhost, L=localhost, EMAILADDRESS=localhost, O
U=localhost, O=localhost
Serial number: 1ccf
Valid from: Tue May 21 10:37:51 CDT 2013 until: Wed May 21 10:37:51 CDT 2014
Certificate fingerprints:
         MD5:  BA:06:06:51:5C:57:5B:25:42:5D:EA:21:E1:2E:40:A5
         SHA1: 96:93:A8:DB:1E:DB:8B:03:F0:AD:96:4C:35:33:52:B1:94:8C:97:A7
         SHA256: 9E:9B:B9:B9:FF:54:74:E6:B6:26:1D:AA:F2:74:37:F0:90:68:5A:05:30:
CF:A5:1B:C9:E6:DD:F0:47:0F:EE:CD

         Signature algorithm name: SHA1withRSA
         Version: 1
Certificate[2]:

Owner: C=US, CN=localhost, ST=localhost, L=localhost, EMAILADDRESS=localhost, OU
=localhost, O=localhost
Issuer: C=US, CN=localhost, ST=localhost, L=localhost, EMAILADDRESS=localhost, O
U=localhost, O=localhost
Serial number: e5445fd39ad47e23
Valid from: Tue May 21 10:37:33 CDT 2013 until: Wed May 21 10:37:33 CDT 2014
Certificate fingerprints:
         MD5:  9C:03:F1:32:C5:36:D8:5B:34:42:2A:4E:C0:9C:41:78
         SHA1: A1:54:01:5A:3F:36:7B:4A:86:2D:61:B5:5B:27:7A:BD:CD:91:03:C8
         SHA256: F9:08:51:96:01:59:B9:47:22:D7:74:AF:2B:7E:77:78:02:CB:7F:02:D3:
7B:DB:44:B1:A3:AA:8D:8D:33:16:B0

         Signature algorithm name: SHA1withRSA
         Version: 1

*******************************************
*******************************************
Reply all
Reply to author
Forward
0 new messages