[JBossWS] - handler problem
by khaledzarig
Hi guys, I need to intercept the soap message at rhe server side,but it did not work. what i did is:
1) i have this class:
package org.jboss.ws.core.jaxws.handler;
import org.jboss.ws.core.jaxws.handler.GenericSOAPHandler;
import javax.xml.ws.handler.MessageContext;
public class HibernateWS extends GenericSOAPHandler
{
@Override
public boolean handleFault(MessageContext msgContext)
{
System.out.println("Inside GenericSOAPHandler : ");
return super.handleFault(msgContext);
}
@Override
protected boolean handleInbound(MessageContext msgContext)
{
System.out.println("Inside GenericSOAPHandler : ");
return true;
}
@Override
protected boolean handleOutbound(MessageContext msgContext)
{
System.out.println("Inside GenericSOAPHandler : ");
return true;
}
}
and i have put the compiled file(.class) in package org.jboss.ws.core.jaxws.handler, ( i use jbossws 1.2.0 ).
2) I added the following to standard-jaxws-endpoint-config.xml file which is in jboss-4.0.5.GA\server\default\deploy\jbossws.sar\META-INF;
<endpoint-config>
<config-name>Handler hibernate gnomo</config-name>
<pre-handler-chains>
<javaee:handler-chain>
<javaee:protocol-bindings>##SOAP11_HTTP</javaee:protocol-bindings>
<javaee:handler>
<javaee:handler-name>HibernateWS</javaee:handler-name>
<javaee:handler-class>org.jboss.ws.core.jaxws.handler.HibernateWS</javaee:handler-class>
</javaee:handler>
</javaee:handler-chain>
</pre-handler-chains>
</endpoint-config>
When i deployed my service it works as normal, but the handler doesn't print the messages as it is showen in the attached class (HibernateWS).
can any body tell me what was wrong in this please.
thanks in advance,
khaly
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4027649#4027649
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4027649
17 years, 9 months
[JBossWS] - How can I do mutual SSL when using JBoss as Web service clie
by zhijun
Hi,
I'm running a Web Service client on JBoss 4.0.5 and JBossWS1.0.4GA.
The Web service I'm trying to consume requires mutual SSL authentication.
I have created keytore, with the private key, the certificate in it. I also added the Web service provider's certificate to this keystore as a trusted certificate.
I have configured my server.xml file to include the following:
<Connector port="8443" address="${jboss.bind.address}"
| maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
| emptySessionPath="true"
| scheme="https" secure="true" clientAuth="false"
| keystoreFile="${jboss.server.home.dir}/conf/jboss.keystore"
| keystoreType="jks"
| keystorePass="password" sslProtocol = "TLS" />
But I guess this is not good enough (I don't feel that way either). So when I called the service, the error message said that my request did not present a certificate.
How do I configure my Web service client, or write some code, to make sure that my web service request (to a https URL) will present a client certificate?
I saw that you could specify user ID and password in the <service-ref> tag if you are using basic authentication. But I need certificate-based authentication and couldn't find an example.
SOAP signing doesn't help me either because the Web service provider expects the certificate to be presented during the SSL handshake.
Thanks!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4027593#4027593
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4027593
17 years, 9 months
[JBossWS] - Re: JBoss 4.0.5 and JBoss 4.2 CR1 plus JBossWS 1.2 - Does it
by ltenmatay
anonymous wrote : 1.) Did you run the install script? It should copy wsrunclient to 'JBOSS_HOME/bin'.
As far as I can remember, yes I did, but I just checked the build.xml file, seems it should be copied whatever version of JBoss AS. Anyway, this can be a mistake on my part. I used the JBoss 1.2 SP1 and seems the wsrunclient.bat is there now.
Btw, stax-api.jar and wstx.jar are not present in JBoss 4.0.5 and JBoss 4.2 CR1.
anonymous wrote : 2.) What exactly does castor send? Why don't you use a JBossWS client in conjunction with the Dispatch API?
The actual xml string. OK, will check dispatch.
anonymous wrote : The last point is a JAXB issue. Make yourself familiar with the way JAXB works.
Ah yes, JAXB 2.0 is really something, that is why I wanted to use it. But in this case, seems JBoss should have handled unmarshalling and marshalling properly. I just followed the guide and was able to send messages properly. Problem was that they were not unmarshalled properly on receiving end and not marshalled properly on response side. Btw, I turned on logging in debug mode, and didn't see any problems. Well actually, no errors were thrown.
anonymous wrote : Please keep in mind that community support is delivered at free will and should actually be driven by JBossWS users.
Yes, you have a good point there. Maybe I will take a look at the source if I had time. Anyway, using axis right now since I really need to make it work. Will migrate to jboss if I finally solve the problem.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4027589#4027589
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4027589
17 years, 9 months
[JBossWS] - Re: advice needed
by andydale
Hi,
I am not running the client via the wsrunclient, i am trying to run it as a standalone app (probably not the best idea, considering the trouble i am having). I added the correct jar into the classpath but i now get a
org.jboss.ws.WSException: Cannot find configFile: META-INF/standard-jaxws-client-config.xml
error when trying to run the client. I even installed jbossws1.0.4GA on 4.0.4GA and i still get the same problem after coping the standard-jaxws-client-config.xml in the META-INF within the jbossws.sar dir in deploy.
I am now attempting to call the web service via a HTTP form with the web service URL as the action (using HTTP POST) , the web service returns something but it is only an error saying:
| <env:Envelope>
| <env:Header/>
| <env:Body>
| <faultcode>env:Client</faultcode>
| <faultstring>
| Unsupported content type: application/x-www-form-urlencoded
| </faultstring>
| </env:Body>
| </env:Envelope>
|
Any help/adivce would be appreciated.
Thanks,
Andy
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4027533#4027533
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4027533
17 years, 9 months
[JBossWS] - Unmarshalling and binding issues
by magnus.ahlander
I'm using JAXWS 1.2 and I am trying to generate a web service client from a wsdl, it works but I have a couple of minor issues:
1) Unmarshalling does not find a needed class
Inside of my wsdl I have the following type:
...
| <s:complexType name="ItemValue">
| <s:sequence>
| <s:element minOccurs="0" maxOccurs="1" name="DiagnosticInfo" type="s:string"/>
| <s:element minOccurs="0" maxOccurs="1" name="Value"/>
| </s:sequence>
| <s:attribute name="ItemName" type="s:string"/>
| </s:complexType>
| ...
wsconsume generates the following java class file
import javax.xml.bind.annotation.*;
|
| @XmlAccessorType(XmlAccessType.FIELD)
| @XmlType(name = "ItemValue", propOrder = {
| "value"
| })
| public class ItemValue {
|
| @XmlElement(name = "Value")
| protected Object value;
| @XmlAttribute(name = "ItemName")
| protected String itemName;
|
| //... getters and setters
| }
Everything works fine if "value" is a java type, for instance float
<ItemValue xmlns='http://opcfoundation.org/webservices/XMLDA/1.0/' ItemName='Channel1.Device1.ComulativeElectric'>
| <Value xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:type='xsd:float'>6428.76806640625</Value>
| </ItemValue>
However, if value is of some other generated type, in my case ArrayOfUnsignedInt, this class is not visible to the JAXBContent used at unmarshalling and the value is left unmarshalled (DOM element).
What is the proper way to provide JAXBContent with the extra class needed for unmarshalling?
I believe somewhere I would need to put something like:
JAXBContext jaxbContext = JAXBContext.newInstance(ItemValue.class, ArrayOfUnsignedInt.class);
Or is there some annotation that could be added to class ItemValue which would provide JAXB with the necessary information for unmarshalling? Or could I somehow modify the wsdl (created by a third party)?
2) Modifying binding
The received SOAP message contains a 64-bit value marked as 'xsd:float'
<ItemValue xmlns='http://opcfoundation.org/webservices/XMLDA/1.0/' ItemName='Channel1.Device1.ComulativeElectric'>
| <Value xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:type='xsd:float'>6428.76806640625</Value>
| </ItemValue>
JAXB (correctly) unmarshals this value to 6428.768 (java.lang.Float).
What is the easiest way to override this binding (to say java.lang.Double) in a web service client?
Regards,
Magnus
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4027437#4027437
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4027437
17 years, 9 months
[JBossWS] - Re: jboss 4.0.2 and SOAP attachments
by sudarshan_srivathsav
Hey Sorry for posting a new topic on this thread...I need help very urgent plz...I have got a webservice successfully deployed but it is throwing me a interceptor exception when i try to access a statless ejb from the webservice. please tell me whether i need any jar...I have posted the exception.
0,960 ERROR [LogInterceptor] EJBException in method: public abstract com.riskspan.services.userobjects.NBUserObjectServiceRemote com.riskspan.services.userobjects.NBUserObjectServiceHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException:
javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract com.riskspan.services.userobjects.NBUserObjectServiceRemote com.riskspan.services.userobjects.NBUserObjectServiceHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invokeHome(StatelessSessionContainer.java:175)
at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invokeHome(CachedConnectionInterceptor.java:189)
at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invokeHome(StatelessSessionInstanceInterceptor.java:98)
at org.jboss.ejb.plugins.CallValidationInterceptor.invokeHome(CallValidationInterceptor.java:56)
at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:125)
at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:350)
at org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:161)
at org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:145)
at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:132)
at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:107)
at org.jboss.ejb.SessionContainer.internalInvokeHome(SessionContainer.java:637)
at org.jboss.ejb.Container.invoke(Container.java:975)
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:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:169)
at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:118)
at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:209)
at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:195)
at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
at org.jboss.proxy.ejb.HomeInterceptor.invoke(HomeInterceptor.java:184)
at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
at $Proxy78.create(Unknown Source)
at com.riskspan.services.userobjects.NBWUserObjectService.serviceRequest(NBWUserObjectService.java:170)
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.ws.server.ServiceEndpointInvokerJSE.invokeServiceEndpoint(ServiceEndpointInvokerJSE.java:95)
at org.jboss.ws.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:115)
at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.java:209)
at org.jboss.ws.server.ServiceEndpointManager.processSOAPRequest(ServiceEndpointManager.java:355)
at org.jboss.ws.server.StandardEndpointServlet.doPost(StandardEndpointServlet.java:115)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.jboss.ws.server.StandardEndpointServlet.service(StandardEndpointServlet.java:76)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
at java.lang.Thread.run(Thread.java:595)
10:32:00,964 ERROR [UserObjects] NBWUserObjectService.serviceRequest() Failed.. - Exception => [ java.rmi.ServerException: EJBException:; nested exception is:
javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract com.riskspan.services.userobjects.NBUserObjectServiceRemote com.riskspan.services.userobjects.NBUserObjectServiceHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException ]
Pls rely as soon as possible...very urgent
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4027419#4027419
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4027419
17 years, 9 months
[JBossWS] - Intereceptor exception when webservice contacts the Stateles
by sudarshan_srivathsav
Hi Guys...I guess this is a very rare exception though i think u ppl could defenetly help me in this.I have successfully deployed a .war and the websevice also started..when i tried to use the webservice..which inturn calls a EJB..im getting some exception like..I have copied and pasted the exception from Log...Please help me soon VERY URGENT
0,960 ERROR [LogInterceptor] EJBException in method: public abstract com.riskspan.services.userobjects.NBUserObjectServiceRemote com.riskspan.services.userobjects.NBUserObjectServiceHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException:
javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract com.riskspan.services.userobjects.NBUserObjectServiceRemote com.riskspan.services.userobjects.NBUserObjectServiceHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invokeHome(StatelessSessionContainer.java:175)
at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invokeHome(CachedConnectionInterceptor.java:189)
at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invokeHome(StatelessSessionInstanceInterceptor.java:98)
at org.jboss.ejb.plugins.CallValidationInterceptor.invokeHome(CallValidationInterceptor.java:56)
at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:125)
at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:350)
at org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:161)
at org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:145)
at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:132)
at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:107)
at org.jboss.ejb.SessionContainer.internalInvokeHome(SessionContainer.java:637)
at org.jboss.ejb.Container.invoke(Container.java:975)
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:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:169)
at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:118)
at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:209)
at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:195)
at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
at org.jboss.proxy.ejb.HomeInterceptor.invoke(HomeInterceptor.java:184)
at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
at $Proxy78.create(Unknown Source)
at com.riskspan.services.userobjects.NBWUserObjectService.serviceRequest(NBWUserObjectService.java:170)
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.ws.server.ServiceEndpointInvokerJSE.invokeServiceEndpoint(ServiceEndpointInvokerJSE.java:95)
at org.jboss.ws.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:115)
at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.java:209)
at org.jboss.ws.server.ServiceEndpointManager.processSOAPRequest(ServiceEndpointManager.java:355)
at org.jboss.ws.server.StandardEndpointServlet.doPost(StandardEndpointServlet.java:115)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.jboss.ws.server.StandardEndpointServlet.service(StandardEndpointServlet.java:76)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
at java.lang.Thread.run(Thread.java:595)
10:32:00,964 ERROR [UserObjects] NBWUserObjectService.serviceRequest() Failed.. - Exception => [ java.rmi.ServerException: EJBException:; nested exception is:
javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract com.riskspan.services.userobjects.NBUserObjectServiceRemote com.riskspan.services.userobjects.NBUserObjectServiceHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException ]
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4027417#4027417
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4027417
17 years, 9 months