Ok I am upgrading from Appian 6.7.1 to 7.2 on a Windows 2008 R2 and SQL Server 2

Ok I am upgrading from Appian 6.7.1 to 7.2 on a Windows 2008 R2 and SQL Server 2008.

Using JBoss 6.1 and nearly done with my migration guide (just ready to fire Appian up and then work on Email Templates).
So I start the Appian engines, they are all okay.
Next I tried to start JBoss, getting a logging errors.

Attached is the boot.log file from JBoss 6.1. It appears logging is using a 7.1.1 jar which seems incorrect to me, but I don't know how to fix it.

Here is the error when trying to run the standalone.bat file
Unable to set property pattern on class org.jboss.logmanager.formatters.PatternF
ormatter: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:43)
at java....

boot.log

OriginalPostID-110535

OriginalPostID-110535

  Discussion posts and replies are publicly visible

Parents
  • I think you have two separate subsystems for your datasources. Can you update lines 136-155 to <subsystem xmlns="urn:jboss:domain:datasources:1.1">
    <datasources>
    <datasource jndi-name="java:jboss/datasources/ExampleDS" pool-name="ExampleDS" enabled="true" use-java-context="true">
    <connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1</connection-url>
    <driver>h2</driver>
    <security>
    <user-name>sa</user-name>
    <password>sa</password>
    </security>
    </datasource>
    <drivers>
    <driver name="h2" module="com.h2database.h2">
    <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
    </driver>
    <driver module="com.microsoft.sqlserver.jdbc" name="com.microsoft.sqlserver.jdbc">
    <xa-datasource-class>com.microsoft.sqlserver.jdbc.SQLServerXADataSource</xa-datasource-class>
    </driver>
    </drivers>
    </datasources>
    </subsystem>

Reply
  • I think you have two separate subsystems for your datasources. Can you update lines 136-155 to <subsystem xmlns="urn:jboss:domain:datasources:1.1">
    <datasources>
    <datasource jndi-name="java:jboss/datasources/ExampleDS" pool-name="ExampleDS" enabled="true" use-java-context="true">
    <connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1</connection-url>
    <driver>h2</driver>
    <security>
    <user-name>sa</user-name>
    <password>sa</password>
    </security>
    </datasource>
    <drivers>
    <driver name="h2" module="com.h2database.h2">
    <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
    </driver>
    <driver module="com.microsoft.sqlserver.jdbc" name="com.microsoft.sqlserver.jdbc">
    <xa-datasource-class>com.microsoft.sqlserver.jdbc.SQLServerXADataSource</xa-datasource-class>
    </driver>
    </drivers>
    </datasources>
    </subsystem>

Children
No Data