[JBoss Seam] - Re: How to Handle POST Callbacks from a third party appliati
by nynymike
I am getting a NPE... I must be doing something wrong! But what...
pages.xml
| <page view-id="/jbillingCallbackHandler.xhtml"
| action="#{jBillingCallbackHandlerAction.processPost}">
| <param name="cmd" value="#{jbillingCallback.cmd}"/>
| <param name="user_id" value="#{jbillingCallback.user_id}"/>
| <param name="login_name" value="#{jbillingCallback.login_name}"/>
| <param name="from_status" value="#{jbillingCallback.from_status}"/>
| <param name="to_status" value="#{jbillingCallback.to_status}"/>
| </page>
|
Error
| ... 51 more
| Caused by: java.lang.NullPointerException
| at us.ziacom.vm.action.JbillingCallbackHandlerAction.processPost(Jbillin
| gCallbackHandlerAction.java:21)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
| java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
| sorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:597)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.
| java:112)
| at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationCo
| ntextImpl.java:166)
| at org.jboss.seam.intercept.EJBInvocationContext.proceed(EJBInvocationCo
| ntext.java:44)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
| Context.java:56)
| at org.jboss.seam.transaction.RollbackInterceptor.aroundInvoke(RollbackI
| nterceptor.java:31)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
| Context.java:68)
| at org.jboss.seam.core.BijectionInterceptor.aroundInvoke(BijectionInterc
| eptor.java:46)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
| Context.java:68)
| at org.jboss.seam.core.MethodContextInterceptor.aroundInvoke(MethodConte
| xtInterceptor.java:42)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
| Context.java:68)
| at org.jboss.seam.persistence.EntityManagerProxyInterceptor.aroundInvoke
| (EntityManagerProxyInterceptor.java:26)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
| Context.java:68)
| at org.jboss.seam.persistence.HibernateSessionProxyInterceptor.aroundInv
| oke(HibernateSessionProxyInterceptor.java:27)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
| Context.java:68)
| at org.jboss.seam.intercept.RootInterceptor.invoke(RootInterceptor.java:
| 106)
| at org.jboss.seam.intercept.SessionBeanInterceptor.aroundInvoke(SessionB
| eanInterceptor.java:50)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
| java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
| sorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:597)
| at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationCo
| ntextImpl.java:118)
| at org.jboss.ejb3.interceptor.EJB3InterceptorsInterceptor.invoke(EJB3Int
| erceptorsInterceptor.java:63)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.
| java:101)
| at org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor.invok
| e(TransactionScopedEntityManagerInterceptor.java:54)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.
| java:101)
| at org.jboss.ejb3.AllowedOperationsInterceptor.invoke(AllowedOperationsI
| nterceptor.java:47)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.
| java:101)
| at org.jboss.aspects.tx.TxPolicy.invokeInCallerTx(TxPolicy.java:126)
| ... 84 more
|
Action
| @Stateless
| @Scope(ScopeType.STATELESS)
| @Name("jBillingCallbackHandlerAction")
| public class JbillingCallbackHandlerAction implements
| IJbillingCallbackHandlerAction {
|
| @In(required=false)
| JbillingCallback callback;
|
| @Override
| public String processPost() {
| System.out.println("**********" + callback.getCmd());
| System.out.println("**********" + callback.getUser_id());
| System.out.println("**********" + callback.getLogin_name());
| System.out.println("**********" + callback.getFrom_status());
| System.out.println("**********" + callback.getTo_status());
| return "home";
| }
|
HTML Test Page that Posts Request
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
| <html>
| <head>
| <title>MyHtml.html</title>
|
| <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
| <meta http-equiv="description" content="this is my page">
| <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
|
| <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
|
| </head>
|
| <body>
| This is my HTML page.
| <br>
| <form method="post" action="http://jboss.ziacom.us:8080/voicemail/jbillingCallbackHandler.seam" name="jbillingTest">
| <input type="hidden" value="foo" name="cmd">
| <input type="hidden" value="bar" name="user_id">
| <input type="hidden" value="spam" name="login_name">
| <input type="hidden" value="eggs" name="from_status">
| <select size="4" name="to_status">
| <option selected value="spam">foo</option>
| <option value="eggs">bar</option>
| </select>
| <BR />
| <input type="submit" value="Submit" name="submit">
| </form>
| </body>
| </html>
|
Model
| import org.jboss.seam.annotations.Name;
|
| @Name("jbillingCallback")
| public class JbillingCallback {
| private String cmd;
| private String user_id;
| private String login_name;
| private String from_status;
| private String to_status;
|
| /**
| * A string that identifies jbilling's call. It is always set to ?ageing_update? by
| * jbilling,and allows you to uniquely identify a jbilling call (in case the callback's
| * url is used for other purposes).
| */
| public String getCmd() {
| return cmd;
| }
| public void setCmd(String cmd) {
| this.cmd = cmd;
| }
|
| /**
| * The User ID of the user that is undergoing a status change in jbilling. You can
| * use this ID to identify the user directly, or otherwise query jbilling via the API to
| * obtain the data for the user, should you need further information.
| */
| public String getUser_id() {
| return user_id;
| }
| public void setUser_id(String user_id) {
| this.user_id = user_id;
| }
|
| /**
| * The user name of the user that is undergoing a status change.
| */
| public String getLogin_name() {
| return login_name;
| }
| public void setLogin_name(String login_name) {
| this.login_name = login_name;
| }
|
| /**
| * The status the user is transitioning from. This is the status the user had
| * before the transition took place.
| */
| public String getFrom_status() {
| return from_status;
| }
| public void setFrom_status(String from_status) {
| this.from_status = from_status;
| }
|
| /**
| * The status the user is transitioning to. This is the status the user has once
| * the transition took place. Subsequent calls to getUser() in the API will return this
| * status code.
| */
| public String getTo_status() {
| return to_status;
| }
| public void setTo_status(String to_status) {
| this.to_status = to_status;
| }
| }
|
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082442#4082442
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082442
18 years, 7 months
[JBoss Getting Started Documentation] - Re: Duke's Bank problem
by albert.chen
Buildfile: jboss-build.xml
prepare:
compile:
[javac] Compiling 61 source files to /opt/Source/j2eetutorial14/examples/bank/build
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/jboss/ebank/WSClient.java:16: cannot find symbol
[javac] symbol : class ServiceImpl
[javac] location: package org.jboss.ws.jaxrpc
[javac] import org.jboss.ws.jaxrpc.ServiceImpl;
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/DefinitionTag.java:31: package javax.servlet.jsp do
es not exist
[javac] import javax.servlet.jsp.JspTagException;
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/DefinitionTag.java:32: package javax.servlet.jsp do
es not exist
[javac] import javax.servlet.jsp.PageContext;
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/DefinitionTag.java:33: package javax.servlet.jsp.ta
gext does not exist
[javac] import javax.servlet.jsp.tagext.SimpleTagSupport;
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/DefinitionTag.java:37: cannot find symbol
[javac] symbol: class SimpleTagSupport
[javac] public class DefinitionTag extends SimpleTagSupport {
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/InsertTag.java:32: package javax.servlet.jsp does n
ot exist
[javac] import javax.servlet.jsp.JspTagException;
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/InsertTag.java:33: package javax.servlet.jsp does n
ot exist
[javac] import javax.servlet.jsp.PageContext;
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/InsertTag.java:34: package javax.servlet.jsp.tagext
does not exist
[javac] import javax.servlet.jsp.tagext.SimpleTagSupport;
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/InsertTag.java:38: cannot find symbol
[javac] symbol: class SimpleTagSupport
[javac] public class InsertTag extends SimpleTagSupport {
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/InsertTag.java:54: cannot find symbol
[javac] symbol : class JspTagException
[javac] location: class com.sun.ebank.web.template.InsertTag
[javac] public void doTag() throws JspTagException {
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/ParameterTag.java:31: package javax.servlet.jsp.tag
ext does not exist
[javac] import javax.servlet.jsp.tagext.*;
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/ParameterTag.java:32: package javax.servlet.jsp doe
s not exist
[javac] import javax.servlet.jsp.PageContext;
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/ParameterTag.java:36: cannot find symbol
[javac] symbol: class SimpleTagSupport
[javac] public class ParameterTag extends SimpleTagSupport {
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/ScreenTag.java:31: package javax.servlet.jsp.tagext
does not exist
[javac] import javax.servlet.jsp.tagext.SimpleTagSupport;
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/ScreenTag.java:32: package javax.servlet.jsp does n
ot exist
[javac] import javax.servlet.jsp.PageContext;
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/ScreenTag.java:36: cannot find symbol
[javac] symbol: class SimpleTagSupport
[javac] public class ScreenTag extends SimpleTagSupport {
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/DefinitionTag.java:62: cannot find symbol
[javac] symbol : method getJspBody()
[javac] location: class com.sun.ebank.web.template.DefinitionTag
[javac] getJspBody()
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/DefinitionTag.java:66: cannot find symbol
[javac] symbol : class PageContext
[javac] location: class com.sun.ebank.web.template.DefinitionTag
[javac] PageContext context = (PageContext) getJspContext();
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/DefinitionTag.java:66: cannot find symbol
[javac] symbol : class PageContext
[javac] location: class com.sun.ebank.web.template.DefinitionTag
[javac] PageContext context = (PageContext) getJspContext();
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/DefinitionTag.java:66: cannot find symbol
[javac] symbol : method getJspContext()
[javac] location: class com.sun.ebank.web.template.DefinitionTag
[javac] PageContext context = (PageContext) getJspContext();
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/InsertTag.java:58: cannot find symbol
[javac] symbol : class PageContext
[javac] location: class com.sun.ebank.web.template.InsertTag
[javac] PageContext context = (PageContext) getJspContext();
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/InsertTag.java:58: cannot find symbol
[javac] symbol : class PageContext
[javac] location: class com.sun.ebank.web.template.InsertTag
[javac] PageContext context = (PageContext) getJspContext();
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/InsertTag.java:58: cannot find symbol
[javac] symbol : method getJspContext()
[javac] location: class com.sun.ebank.web.template.InsertTag
[javac] PageContext context = (PageContext) getJspContext();
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/InsertTag.java:92: cannot find symbol
[javac] symbol : class JspTagException
[javac] location: class com.sun.ebank.web.template.InsertTag
[javac] throw new JspTagException(ex.getMessage(), rootCause);
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/ParameterTag.java:70: cannot find symbol
[javac] symbol : method getParent()
[javac] location: class com.sun.ebank.web.template.ParameterTag
[javac] ((ScreenTag) getParent()).getParameters();
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/ScreenTag.java:55: cannot find symbol
[javac] symbol : method getParent()
[javac] location: class com.sun.ebank.web.template.ScreenTag
[javac] HashMap screens = (HashMap) ((DefinitionTag) getParent()).getScreens();
[javac] ^
[javac] /opt/Source/j2eetutorial14/examples/bank/src/com/sun/ebank/web/template/ScreenTag.java:63: cannot find symbol
[javac] symbol : method getJspBody()
[javac] location: class com.sun.ebank.web.template.ScreenTag
[javac] getJspBody()
[javac] ^
[javac] Note: /opt/Source/j2eetutorial14/examples/bank/src/com/jboss/ebank/WSClient.java uses or overrides a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 27 errors
BUILD FAILED
/opt/Source/j2eetutorial14/examples/bank/jboss-build.xml:44: Compile failed; see the compiler error output for details.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082441#4082441
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082441
18 years, 7 months
[Installation, Configuration & DEPLOYMENT] - Error when use Log4jSocketServer and SocketAppender !
by catania
Hi all!
I use anonymous wrote : jboss-4.0.5.GA, EJB3.0 XP_SP2 I use anonymous wrote : Log4jSocketServer and SocketAppender to log some request from clients to server. (Example both of server and client is the same machine, and host name: pc6 and has IP is: 192.168.1.228).
Ok, inside server\default\conf\jboss-service.xml, I added:
...
| <mbean code="org.jboss.logging.Log4jSocketServer"
| name="jboss.system:type=Log4jService,service=SocketServer">
| <attribute name="Port">8888</attribute>
| <attribute name="BindAddress">${jboss.bind.address}</attribute>
| </mbean>
Then, inside server\default\conf\log4j.xml, I added:
...
| <appender name="MY_SOCKET" class="org.apache.log4j.net.SocketAppender">
| <param name="Port" value="8888"/>
| <param name="RemoteHost" value="pc6"/> --> or "192.168.1.228"
| <param name="ReconnectionDelay" value="30000"/>
| <param name="Threshold" value="INFO"/>
| </appender>
But when I restart JBoss Server, I received some errors:
log4j:ERROR Could not connect to remote log4j server at [pc6]. We will try again later.
| java.net.ConnectException: Connection refused: connect
| at java.net.PlainSocketImpl.socketConnect(Native Method)
| at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
| ...
Please guid to me how way fixed my errors. (Sorry, my English is not good.)
Thanks very much.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082439#4082439
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082439
18 years, 7 months
[JBossWS] - Re: start JBoss problem
by leaderbird
"leaderbird" wrote : I tried to follow jboss-5.0.0.Beta1 installation intructions to install jboss-5.0.0.Beta1on top of jboss-5.0.0.Beta1.
|
| After that, I tried to start JBoss, but I saw a lot of exceptions, and http://localhost:8080/appName could not be reached. Am I missing anything in the steps? any comments are appreciated.
|
| Part of the exception messages are
| -------------------------------------------------------------------------
| 10:02:24,343 ERROR [BaseModelMBean] Exception invoking method addChild
| org.jboss.xb.binding.JBossXBRuntimeException: Failed to create a new SAX parser
| at org.jboss.xb.binding.UnmarshallerFactory$UnmarshallerFactoryImpl.newUnmarshaller(UnmarshallerFactory.java:100)
| at org.jboss.web.metamodel.descriptor.WebDDObjectFactory.parse(WebDDObjectFactory.java:82)
| at org.jboss.web.tomcat.tc6.TomcatInjectionContainer.processMetadata(TomcatInjectionContainer.java:256)
| at org.jboss.web.tomcat.tc6.WebAppLoader.start(WebAppLoader.java:104)
| at org.apache.catalina.core.StandardContext.start(StandardContext.java:4198)
| at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:760)
| at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:740)
| at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:525)
| 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:585)
| at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:297)
| at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
| at org.apache.catalina.core.StandardContext.init(StandardContext.java:5285)
| 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:585)
| at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:297)
| at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
| at org.jboss.web.tomcat.tc6.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:302)
| at org.jboss.web.tomcat.tc6.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:129)
| at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:355)
| at org.jboss.web.deployers.WebModule.startModule(WebModule.java:88)
| at org.jboss.web.deployers.WebModule.start(WebModule.java:66)
| 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:585)
| 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:184)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
| at org.jboss.system.microcontainer.ServiceControllerContextAction.install(ServiceControllerContextAction.java:46)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:226)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:198)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:709)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:429)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:538)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:472)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:320)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:190)
| at org.jboss.system.ServiceController.doChange(ServiceController.java:656)
| at org.jboss.system.ServiceController.start(ServiceController.java:431)
| at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:124)
| at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:85)
| at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:44)
| at org.jboss.deployers.plugins.deployers.helpers.AbstractSimpleRealDeployer.deploy(AbstractSimpleRealDeployer.java:53)
| at org.jboss.deployers.plugins.deployer.AbstractSimpleDeployer.commitDeploy(AbstractSimpleDeployer.java:52)
| at org.jboss.deployers.plugins.deployer.DeployerWrapper.commitDeploy(DeployerWrapper.java:145)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.commitDeploy(MainDeployerImpl.java:440)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.process(MainDeployerImpl.java:381)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:366)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.bootstrap(ProfileServiceBootstrap.java:246)
| at org.jboss.kernel.plugins.bootstrap.AbstractBootstrap.run(AbstractBootstrap.java:89)
| at org.jboss.system.server.profileservice.ServerImpl.doStart(ServerImpl.java:401)
| at org.jboss.system.server.profileservice.ServerImpl.start(ServerImpl.java:340)
| at org.jboss.Main.boot(Main.java:210)
| at org.jboss.Main$1.run(Main.java:508)
| at java.lang.Thread.run(Thread.java:595)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082437#4082437
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082437
18 years, 7 months