[JBoss JIRA] Created: (EJBTHREE-933) NPE when deploying web service beans
by Heiko Braun (JIRA)
NPE when deploying web service beans
------------------------------------
Key: EJBTHREE-933
URL: http://jira.jboss.com/jira/browse/EJBTHREE-933
Project: EJB 3.0
Issue Type: Bug
Reporter: Heiko Braun
The exception:
java.lang.NullPointerException
at org.jboss.ejb3.stateless.StatelessRemoteProxyFactory.getInterfaces(StatelessRemoteProxyFactory.java:74)
at org.jboss.ejb3.stateless.BaseStatelessProxyFactory.init(BaseStatelessProxyFactory.java:172)
at org.jboss.ejb3.stateless.StatelessRemoteProxyFactory.init(StatelessRemoteProxyFactory.java:100)
at org.jboss.ejb3.stateless.BaseStatelessProxyFactory.start(BaseStatelessProxyFactory.java:221)
at org.jboss.ejb3.stateless.StatelessRemoteProxyFactory.start(StatelessRemoteProxyFactory.java:107)
at org.jboss.ejb3.ProxyDeployer.start(ProxyDeployer.java:83)
at org.jboss.ejb3.SessionContainer.start(SessionContainer.java:124)
at org.jboss.ejb3.stateless.StatelessContainer.start(StatelessContainer.java:94)
The bean that get's deployed:
package com.sun.ts.tests.webservices12.ejb.annotations.WSEjbPortFieldInjectionTest;
import javax.ejb.Stateless;
import javax.jws.WebService;
@WebService(
portName="Hello",
serviceName="HelloService",
targetNamespace="http://Hello.org",
wsdlLocation="META-INF/wsdl/HelloService.wsdl",
endpointInterface="com.sun.ts.tests.webservices12.ejb.annotations.WSEjbPortFieldInjectionTest.Hello")
@Stateless(name="WSEjbPortFieldInjectionTest")
public class HelloBean {
public String hello(String str)
{
return "WebSvcTest-Hello " + str;
}
public String bye(String str)
{
return "WebSvcTest-Bye and take care " + str;
}
}
The spec:
Session bean's business interface(s), if the session bean provides an EJB 3.0 local or remote
client view.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 3 months
[JBoss JIRA] Created: (JBRULES-1119) "ExpanderResolver was not set" when DSL and DRL in separate resource folders.
by Davy Toch (JIRA)
"ExpanderResolver was not set" when DSL and DRL in separate resource folders.
-----------------------------------------------------------------------------
Key: JBRULES-1119
URL: http://jira.jboss.com/jira/browse/JBRULES-1119
Project: JBoss Rules
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Eclipse IDE
Affects Versions: 3.0.5
Environment: - Eclipse 3.2.1
- WinXP
Reporter: Davy Toch
Assigned To: Mark Proctor
Priority: Minor
Attachments: jbossrulesproject_one_resource_folder.zip, jbossrulesproject_two_resource_folders.zip
1. jbossrulesproject_one_resource_folder.zip
- DRL and DSL in one resource folder
- no problem
2. jbossrulesproject_two_resource_folders.zip
- DRL and DSL in separate resource folders
- causes error message : "ExpanderResolver was not set"
We actually prefer two separate resource folders, because the rules are generated during the ANT
build from the decision tables (so in target/...), while the DSL isn't automatically generated (so
in src/...).
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 4 months