[JBoss-user] [JBossWS] - Re: jboss 4.0.2 serialization speed compare to jboss4.0.0

2006-03-05 Thread [EMAIL PROTECTED]
How does this compare to the latest jboss-4.0.x which uses jbossws?

cvs co -r Branch_4_0 jboss-4.0.x

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3927994#3927994

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927994


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: jboss 4.0.2 serialization speed compare to jboss4.0.0

2006-02-22 Thread lepe
Did you ever find out a reason for the loss of performance?

/L

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3925530#3925530

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3925530


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Jboss-4.0.2 Client

2005-07-12 Thread [EMAIL PROTECTED]
It is not released yet, web services is complete. You can try it out from cvs

cvs co -r Branch_4_0 jboss-4.0

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3884476#3884476

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3884476


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Jboss-4.0.2 Client

2005-07-08 Thread gayathiri
Shall i download jboss-4.0.3 today ?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3884179#3884179

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3884179


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Jboss-4.0.2 Client

2005-07-07 Thread clairecostello
Hi guyathiri,

JBoss 4.0.2
JDK/JRE 1.5
Win Adv Serv 2003 

I am using the following code which calls the service using the DII method to 
invoke web services. I supply a WSDL URL and it manages to create the call and 
get a return value for me. Perhaps if you haven't tried this approach it may 
work for you.

Maybe someone can tell me *how* this code works? What model is it using? Does 
this code go against any JBoss operation specifics/standards?

-Claire.


  | import javax.xml.namespace.*; //QName
  | import javax.xml.rpc.*; //Service, ServiceFactory
  | import java.net.URL;
  | import java.rmi.RemoteException;
  | 
  | ..
  | 
  | URL url = new URL(http://machinename:8080/hellows-ejb/hello?wsdl;);
  | QName qname = new QName(urn:MyHello, HelloService);
  | ServiceFactory factory = ServiceFactory.newInstance();
  | Service service = factory.createService(url, qname);
  | 
  | Call call = (Call)service.createCall(new QName(urn:MyHello, 
HelloServiceEndpoint), sayHello);
  | String msg = (String) call.invoke(new Object[]{});
  | System.out.println(msg);
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883984#3883984

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883984


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Jboss-4.0.2 Client

2005-07-07 Thread gayathiri
Claire,
I tried this code ...throws this exception

AxisFault
  |  faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Client
  |  faultSubcode:
  |  faultString: SimpleDeserializer encountered a child element, which is NOT 
expected, in something it was trying to deserialize.
  |  faultActor:
  |  faultNode:
  |  faultDetail:
  | {http://xml.apache.org/axis/}stackTrace: org.xml.sax.SAXException: 
SimpleDeserializer encountered a child element, which is NOT expected, in 
something it was trying to deserialize.



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883988#3883988

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883988


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Jboss-4.0.2 Client

2005-07-07 Thread gayathiri
When i compile the files and creating the wsdl there are some warning messages


wsdl:
  |  [java] getBundle(org.jboss.axis,org.jboss.axis.i18n,resource,null,...)
  |  [java] loadBundle: Ignoring MissingResourceException: Can't find 
bundle for base name org.jboss.axis.resource, locale en_US
  |  [java] Created org.jboss.axis.i18n.resource, linked to parent null
  |  [java] getBundle(org.jboss.axis,org.jboss.axis.utils,resource,null,...)
  |  [java] loadBundle: Ignoring MissingResourceException: Can't find 
bundle for base name org.jboss.axis.utils.resource, locale en_US
  |  [java] loadBundle: Ignoring MissingResourceException: Can't find 
bundle for base name org.jboss.axis.resource, locale en_US
  |  [java] Root package not found, cross link to 
org.jboss.axis.i18n.resource
  |  [java] Root package not found, cross link to 
org.jboss.axis.i18n.resource
  |  [java] Attachment support is enabled?  true
  |  [java] Enter/Exit: JAFDataHandlerDeserializerFactory(class 
java.lang.String, {http://xml.apache.org/xml-soap}PlainText)
  |  [java] Enter/Exit: JAFDataHandlerDeserializerFactory(class 
java.lang.String, {http://xml.apache.org/xml-soap}PlainText)
  |  [java] Enter/Exit: JAFDataHandlerDeserializerFactory(class 
java.awt.Image, {http://xml.apache.org/xml-soap}Image)
  |  [java] Enter/Exit: JAFDataHandlerDeserializerFactory(class 
javax.mail.internet.MimeMultipart, {http://xml.apache.org/xml-soap}Multipart)
  |  [java] Enter/Exit: JAFDataHandlerDeserializerFactory(interface 
javax.xml.transform.Source, {http://xml.apache.org/xml-soap}Source)
  |  [java] Enter/Exit: JAFDataHandlerDeserializerFactory(class 
org.jboss.axis.attachments.OctetStream, 
{http://xml.apache.org/xml-soap}octetstream)
  |  [java] Enter/Exit: JAFDataHandlerDeserializerFactory()
  |  [java] @388993setReturnType(null)
  |  [java] @b8f82dsetReturnType(null)
  |  [java] @b8f82d added parameter name:   
{http://ezyield.admin.org}in0
  |  [java] typeEntry:  null
  |  [java] mode:   IN
  |  [java] isReturn:   false
  |  [java] typeQName:  null
  |  [java] javaType:   class org.admin.ezyield.Hotel
  |  [java] inHeader:   false
  |  [java] outHeader:  false
  |  [java] @d2906atotal parameters:1


This is my build.xml 

  | target name=wsdl depends=compile
  | mkdir dir=${build.classes.dir}/WEB-INF/wsdl /
  | java classname=org.jboss.axis.wsdl.Java2WSDL fork=yes 
dir=.
  | classpath path=${classpath} /
  | arg value=-lhttp://tapthi:8080/availablewebsites/; /
  | arg value=-sAvailableWebsiteEndpoint /
  | arg value=-oWEB-INF/wsdl/AvailableWebsites.wsdl /
  | arg value=-uLITERAL /
  | arg value=org.admin.ezyield.AvailableWebsiteEndpoint 
/
  | /java
  | /target
  | target name=wsdltojava depends=wsdl
  | mkdir dir=${build.classes.dir}/WEB-INF/wsdl /
  | java classname=org.jboss.axis.wsdl.WSDL2Java fork=yes 
dir=${src.dir}/main/src
  | classpath path=${classpath} /
  | arg value=-S true /
  | arg 
value=${build.classes.dir}/WEB-INF/wsdl/AvailableWebsites.wsdl /
  | /java
  | /target


Pls help me out 

Thanks

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883993#3883993

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883993


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Jboss-4.0.2 Client

2005-07-07 Thread [EMAIL PROTECTED]
darranl wrote : Looks like it is this issue again: -
  | 
  | http://jira.jboss.com/jira/browse/JBWS-187

Darran is correct, this is JBWS-187. This issue is already fixed in the branch, 
thanks to his patch, and will be included in the 4.0.3 release (any day now).  
Note this issue seems to only affect JDK1.5.

-Jason


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3884047#3884047

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3884047


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Jboss-4.0.2 Client

2005-07-07 Thread [EMAIL PROTECTED]
clairecostello wrote : 
  | 
  | Maybe someone can tell me *how* this code works? What model is it using? 
Does this code go against any JBoss operation specifics/standards?
  | 
  | -Claire.
  | 

You are using the DII methodology for invoking the webservice. The only problem 
with this is that you have to manually configure all of the type mappings. 
There is also no way in the JAX-RPC api to pass a jaxrpc-mapping file using 
DII. We do have a proprietary method in our ServiceImpl class that allows it 
should you need to thise, but IMO you are better off using a standard   J2EE 
webservices client. 

-Jason

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3884049#3884049

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3884049


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Jboss-4.0.2 Client

2005-07-06 Thread gayathiri
As you said i tried the client using the dynamic proxy method...

ServiceFactory serviceFactory = ServiceFactory.newInstance();
  | Service service = serviceFactory.createService(new 
URL(WSDL_LOCATION), serviceQN);
  |   
  | AvailableWebsiteEndpoint myProxy = 
(AvailableWebsiteEndpoint)service.getPort(portQN, 
AvailableWebsiteEndpoint.class);

I am using jboss-4.0.2,jdk1.5 but still it is trowing exceptions

java.rmi.RemoteException: null; nested exception is:
  | java.lang.NullPointerException
  | at org.jboss.webservice.client.PortProxy.invoke(PortProxy.java:176)
  | at $Proxy1.getAvailableWebsites(Unknown Source)
  | at org.admin.ezyield.WebsiteClient.main(WebsiteClient.java:66)
  | Caused by: java.lang.NullPointerException
  | at java.util.Hashtable.put(Hashtable.java:396)
  | at 
com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.setProperty(SAXParserImpl.java:395)
  | at 
org.jboss.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:262)
  | at 
org.jboss.axis.MessagePart.getAsSOAPEnvelope(MessagePart.java:684)
  | at org.jboss.axis.Message.getSOAPEnvelope(Message.java:428)
  | at org.jboss.axis.Message.getContentType(Message.java:494)
  | at 
org.jboss.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:386)
  | at 
org.jboss.axis.transport.http.HTTPSender.invoke(HTTPSender.java:126)
  | at 
org.jboss.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:73)
  | at org.jboss.axis.SimpleChain.doVisiting(SimpleChain.java:160)
  | at org.jboss.axis.SimpleChain.invoke(SimpleChain.java:123)
  | at 
org.jboss.webservice.client.ClientEngine.invoke(ClientEngine.java:128)
  | at org.jboss.axis.client.Call.invokeEngine(Call.java:3054)
  | at org.jboss.axis.client.Call.invoke(Call.java:3039)
  | at org.jboss.axis.client.Call.invoke(Call.java:2629)
  | at org.jboss.axis.client.Call.invoke(Call.java:2538)
  | at org.jboss.axis.client.Call.invokeInternal(Call.java:1976)
  | at org.jboss.axis.client.Call.invoke(Call.java:1914)
  | at org.jboss.webservice.client.CallImpl.invoke(CallImpl.java:265)
  | at 
org.jboss.axis.client.AxisClientProxy.invoke(AxisClientProxy.java:381)
  | at $Proxy0.getAvailableWebsites(Unknown Source)
  | 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.webservice.client.PortProxy.invoke(PortProxy.java:105)

there is no exceptions in the server side

Thanks

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883816#3883816

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883816


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Jboss-4.0.2 Client

2005-07-06 Thread [EMAIL PROTECTED]
Looks like you are using XercesImpl.jar that is available with jwsdp on the 
client side.  Try to use the one from jboss-instance/lib/endorsed.  Looking at 
the stacktrace, seems like it is failing because some property that the sax 
parser is expecting is null.

On a related note, have you deployed the service interface as part of a J2EE 
client? If you do not know what I am talking about, then it may be easier for 
you to use the DII approach.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883844#3883844

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883844


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Jboss-4.0.2 Client

2005-07-06 Thread darranl
Looks like it is this issue again: -

http://jira.jboss.com/jira/browse/JBWS-187

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883852#3883852

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883852


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JBoss-4.0.2

2005-06-30 Thread [EMAIL PROTECTED]

  | java.lang.NoSuchMethodException: org.synxis.join.ejb.JoinBean.addJoinDetails
  | 

The exception gives you all the details you need.  The JoinBean ejb does not 
have the method defined - addJoinDetails.   

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883274#3883274

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883274


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JBoss-4.0.2

2005-06-28 Thread gayathiri
I was using AXIS library files.I replaced with jboss files and deployed.
When i run the client i m getting this exception

ERROR [InvokerProviderJSE] Error from service endpoint, processing fault 
handler chain
  | java.lang.NoSuchMethodException: 
org.synxis.join.ejb.JoinBean.addJoinDetails(org.synxis.join.Join)
  | at java.lang.Class.getMethod(Class.java:1581)
  | at 
org.jboss.webservice.server.InvokerProviderJSE.invokeServiceEndpoint(InvokerProviderJSE.java:149)
  | at 
org.jboss.webservice.server.InvokerProvider.invokeMethod(InvokerProvider.java:238)
  | at 
org.jboss.axis.providers.java.RPCProvider.invokeTarget(RPCProvider.java:176)
  | at 
org.jboss.webservice.server.InvokerProviderJSE.invokeTarget(InvokerProviderJSE.java:93)
  | at 
org.jboss.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:121)
  | at 
org.jboss.axis.providers.java.JavaProvider.invoke(JavaProvider.java:358)
  | at 
org.jboss.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:73)
  | at org.jboss.axis.SimpleChain.doVisiting(SimpleChain.java:160)
  | at org.jboss.axis.SimpleChain.invoke(SimpleChain.java:123)
  | at 
org.jboss.axis.handlers.soap.SOAPService.invoke(SOAPService.java:560)
  | at 
org.jboss.webservice.server.ServerEngine.invokeInternal(ServerEngine.java:200)
  | at 
org.jboss.webservice.server.ServerEngine.invoke(ServerEngine.java:89)
  | at 
org.jboss.axis.transport.http.AxisServlet.doPost(AxisServlet.java:905)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
  | at 
org.jboss.axis.transport.http.AxisServletBase.service(AxisServletBase.java:370)
  | 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:81)
  | 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.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:153)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | 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:856)
  | at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
  | 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)
  | 11:25:18,380 ERROR [ServerEngine] Server error: AxisFault
  |  faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Client
  |  faultSubcode:
  |  faultString: 
org.synxis.join.ejb.JoinBean.addJoinDetails(org.synxis.join.Join)
  |  faultActor:
  |  faultNode:
  |  faultDetail:
  | {http://xml.apache.org/axis/}stackTrace: 
java.lang.NoSuchMethodException: 
org.synxis.join.ejb.JoinBean.addJoinDetails(org.synxis.join.Join)


My endpoint interface  is JoinEndPoint it is inside directory structure 
org.synxis.join

and my EJB  files are inside  org.synxis.join.ejb 

and mapping is like this in web.xml 

ejb-ref
  | descriptionJoin Bean/description
  | ejb-ref-namejoinbean/ejb-ref-name
  | ejb-ref-typeSTATELESS/ejb-ref-type
  | homeorg.synxis.join.ejb.JoinHome/home
  | remoteorg.synxis.join.ejb.JoinRemote/remote
  | ejb-linkjoinbean/ejb-link
  | /ejb-ref
  | 
  | servlet
  | servlet-nameJoinServlet/servlet-name
  | servlet-classorg.synxis.join.ejb.JoinBean/servlet-class
  | /servlet

Thanks


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3882929#3882929

Reply to the post : 

[JBoss-user] [JBossWS] - Re: JBoss-4.0.2

2005-06-27 Thread [EMAIL PROTECTED]
Are you bundling axis or jboss libs in your war? This shouldn't happen.

-Jason

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3882863#3882863

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3882863


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JBoss-4.0.2

2005-06-26 Thread gayathiri
Thanks a lotIt worked

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3882798#3882798

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3882798


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JBoss-4.0.2

2005-06-20 Thread [EMAIL PROTECTED]
Can you confirm that this is not class loading issue related to the tomcat 
class loader?

Try


  |   !-- A flag indicating if the JBoss Loader should be used. This loader
  |uses a unified class loader as the class loader rather than the 
tomcat
  |specific class loader.
  |The default is false to ensure that wars have isolated class 
loading
  |for duplicate jars and jsp files.
  |   --
  |   attribute name=UseJBossWebLoadertrue/attribute
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3882098#3882098

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3882098


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: jboss 4.0.2 and SOAP attachments

2005-05-19 Thread marcotombesi
Working with big attachments axis makes a temporary file in the server tmp dir.

It seems that in server/default/deploy/tmp directory there are no temporary 
files written using version 4.0.2, instead there are using jboss 4.0.1sp1.

Is there a configuration for that?





View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3878334#3878334

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3878334


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412alloc_id=16344op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: jboss 4.0.2 serialization speed compare to jboss4.0.0

2005-05-19 Thread singular_droid
I can email 2 jars - 4.0.2 and 4.0.0 versions of our webservice(with the 
minimal changes). But it uses hibernate3 and oracle legacy stored procs. This 
is ours ws4ee-deployment for jboss4.0.0:

  | deployment xmlns='http://xml.apache.org/axis/wsdd/'
  | xmlns:java='http://xml.apache.org/axis/wsdd/providers/java'
  | xmlns:soap='http://schemas.xmlsoap.org/soap/encoding/'
  | xmlns:xsi='http://www.w3.org/2000/10/XMLSchema-instance'
  | xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  | 
  | typeMapping qname='ns1:PriceUpdateSoapBean'
  | xmlns:ns1='http://hibernate.service.dealer.zenith.ru'
  | 
type='java:ru.zenith.dealer.service.hibernate.PriceUpdateSoapBean'
  | 
serializer='org.jboss.webservice.encoding.ser.MetaDataBeanSerializerFactory'
  | 
deserializer='org.jboss.webservice.encoding.ser.MetaDataBeanDeserializerFactory'
  | encodingStyle=''
  | typeDesc xmlType='ns1:PriceUpdateSoapBean'
  | elementOrder
  | element name=cod /
  | element name=name /
  | element name=price /
  | element name=t_group /
  | element name=c_group /
  | element name=opdml /
  | element name=met /
  | element name=log /
  | /elementOrder
  | /typeDesc
  | /typeMapping
  | 
  | typeMapping qname='ns1:PriceUpdateSoapBeans'
  | xmlns:ns1='http://hibernate.service.dealer.zenith.ru'
  | 
type='java:ru.zenith.dealer.service.hibernate.PriceUpdateSoapBeans'
  | serializer='org.apache.axis.encoding.ser.BeanSerializerFactory'
  | 
deserializer='org.apache.axis.encoding.ser.BeanDeserializerFactory'
  | encodingStyle='' /
  | 
  | typeMapping qname='ns1:PriceUpdateResultBean'
  | xmlns:ns1='http://hibernate.service.dealer.zenith.ru'
  | 
type='java:ru.zenith.dealer.service.hibernate.PriceUpdateResultBean'
  | serializer='org.apache.axis.encoding.ser.BeanSerializerFactory'
  | 
deserializer='org.apache.axis.encoding.ser.BeanDeserializerFactory'
  | encodingStyle='' /
  | 
  | /deployment
  | 

And this is one for jboss4.0.2

  | deployment xmlns='http://xml.apache.org/axis/wsdd/'
  | xmlns:java='http://xml.apache.org/axis/wsdd/providers/java'
  | xmlns:soap='http://schemas.xmlsoap.org/soap/encoding/'
  | xmlns:xsi='http://www.w3.org/2000/10/XMLSchema-instance'
  | xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  | 
  | typeMapping qname='ns1:PriceUpdateSoapBean'
  | xmlns:ns1='http://hibernate.service.dealer.zenith.ru'
  | 
type='java:ru.zenith.dealer.service.hibernate.PriceUpdateSoapBean'
  | 
serializer='org.jboss.webservice.encoding.ser.MetaDataBeanSerializerFactory'
  | 
deserializer='org.jboss.webservice.encoding.ser.MetaDataBeanDeserializerFactory'
  | encodingStyle=''
  | typeDesc xmlType='ns1:PriceUpdateSoapBean'
  | elementOrder
  | element name=cod /
  | element name=name /
  | element name=price /
  | element name=t_group /
  | element name=c_group /
  | element name=opdml /
  | element name=met /
  | element name=log /
  | /elementOrder
  | /typeDesc
  | /typeMapping
  | 
  | typeMapping qname='ns1:PriceUpdateSoapBeans'
  | xmlns:ns1='http://hibernate.service.dealer.zenith.ru'
  | 
type='java:ru.zenith.dealer.service.hibernate.PriceUpdateSoapBeans'
  | serializer='org.jboss.axis.encoding.ser.BeanSerializerFactory'
  | 
deserializer='org.jboss.axis.encoding.ser.BeanDeserializerFactory'
  | encodingStyle='' /
  | 
  | typeMapping qname='ns1:PriceUpdateResultBean'
  | xmlns:ns1='http://hibernate.service.dealer.zenith.ru'
  | 
type='java:ru.zenith.dealer.service.hibernate.PriceUpdateResultBean'
  | serializer='org.jboss.axis.encoding.ser.BeanSerializerFactory'
  | 
deserializer='org.jboss.axis.encoding.ser.BeanDeserializerFactory'
  | encodingStyle='' /
  | 
  | /deployment
  | 
First, when we transfer our ws to 4.0.2 we have changed hibernate-related part 
of ws(move it in separate .har), but after that(in order to find the 
bottleneck) we have downgrade it to previous version(single jar with hibernate 
and ejb classes). In that case there are two versions of our ws for jboss4.0.2 
- ear(with jar and har inside) and single jar. In both cases 

[JBoss-user] [JBossWS] - Re: jboss 4.0.2 and SOAP attachments

2005-05-19 Thread [EMAIL PROTECTED]
This is a bug. Thanks for the report.

I have opened a JIRA issue here:

http://jira.jboss.org/jira/browse/JBWS-225

-Jason

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3878446#3878446

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3878446


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412alloc_id=16344op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: jboss 4.0.2 and SOAP attachments

2005-05-19 Thread [EMAIL PROTECTED]
This is fixed now in our 4 branch, and will be included in the 4.0.3 release.

-Jason

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3878448#3878448

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3878448


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412alloc_id=16344op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: jboss 4.0.2 and SOAP attachments

2005-05-18 Thread [EMAIL PROTECTED]
Could you post a full stack trace for that exception you are seeing?

Thanks
-Jason

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3878141#3878141

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3878141


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412alloc_id=16344op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: jboss 4.0.2 and SOAP attachments

2005-05-18 Thread marcotombesi
this is the full stack trace:


2005-05-18 10:23:14,861 ERROR 
[it.grupposistematica.gespool.ws.impl.GespoolWsBean] 
java.lang.IllegalStateException: No cache available
java.lang.IllegalStateException: No cache available
at 
org.jboss.axis.attachments.ManagedMemoryDataSource.getInputStream(ManagedMemoryDataSource.java:104)
at javax.activation.DataHandler.getInputStream(DataHandler.java:220)
at it.grupposistematica.gespool.Attachment.load(Attachment.java:43)
at it.grupposistematica.gespool.Attachment.(Attachment.java:33)
at 
it.grupposistematica.gespool.ws.impl.GespoolWsBean.getAttachments(GespoolWsBean.java:229)
at 
it.grupposistematica.gespool.ws.impl.GespoolWsBean.startWorkflow(GespoolWsBean.java:103)
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:324)
at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
at 
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:214)
at 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
at 
org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor.java:106)
at 
org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
at 
org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:105)
at 
org.jboss.ejb.plugins.AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:153)
at 
org.jboss.ejb.plugins.TxInterceptorBMT.invoke(TxInterceptorBMT.java:62)
at 
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:130)
at 
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:139)
at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
at 
org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
at 
org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
at org.jboss.ejb.Container.invoke(Container.java:873)
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:324)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at 
org.jboss.webservice.server.InvokerProviderEJB.invokeServiceEndpoint(InvokerProviderEJB.java:131)
at 
org.jboss.webservice.server.InvokerProvider.invokeMethod(InvokerProvider.java:238)
at 
org.jboss.axis.providers.java.RPCProvider.invokeTarget(RPCProvider.java:176)
at 
org.jboss.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:121)
at 
org.jboss.axis.providers.java.JavaProvider.invoke(JavaProvider.java:358)
at 
org.jboss.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:73)
at org.jboss.axis.SimpleChain.doVisiting(SimpleChain.java:160)
at org.jboss.axis.SimpleChain.invoke(SimpleChain.java:123)
at org.jboss.axis.handlers.soap.SOAPService.invoke(SOAPService.java:560)
at 
org.jboss.webservice.server.ServerEngine.invokeInternal(ServerEngine.java:200)
at org.jboss.webservice.server.ServerEngine.invoke(ServerEngine.java:89)
at 
org.jboss.axis.transport.http.AxisServlet.doPost(AxisServlet.java:905)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at 
org.jboss.axis.transport.http.AxisServletBase.service(AxisServletBase.java:370)
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:81)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at 

[JBoss-user] [JBossWS] - Re: jboss 4.0.2 and SOAP attachments

2005-05-18 Thread marcotombesi
the code throwing the exception is:

  | MessageContext msgctxt = MessageContext.getCurrentContext();
  | Message msg = msgctxt.getRequestMessage();
  | Iterator attachs = msg.getAttachments();
  | while (attachs != null  attachs.hasNext())
  | {
  |   AttachmentPart ap = (AttachmentPart) attachs.next();
  |   DataHandler dh = ap.getDataHandler();
  |   if (dh != null)
  |   {
  |   InputStream is = dh.getInputStream();//-exception HERE
  | ...
  |}
  | }

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3878155#3878155

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3878155


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412alloc_id=16344op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: jboss 4.0.2 serialization speed compare to jboss4.0.0

2005-05-18 Thread omatzura
Hi!

What are the signatures of your web-service methods in your ejb? Are you using 
jbossws serialization of java-objects or returning DOM elements/documents? Have 
you configured your own serializers?

regards!

/Ole

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3878160#3878160

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3878160


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412alloc_id=16344op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: jboss 4.0.2 serialization speed compare to jboss4.0.0

2005-05-18 Thread [EMAIL PROTECTED]
Could you provide a sample deployment + unit test that proofs allows me to 
reproduce what you are seeing?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3878207#3878207

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3878207


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412alloc_id=16344op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: jboss-4.0.2 jboss-ws4ee.war won't deploy

2005-05-04 Thread frankgrimes
Hmm, it looks like jbossweb-tomcat55.sar is pretty lenient about invalid 
web.xml files.

The java.lang.ClassNotFoundException only appeared when I tried to deploy 
jboss-ws4ee.war with jbossweb-jetty.sar (built from jetty-5.1.4rc0).
Tomcat deployed the war file without so much as a warning.

Also, Jetty complained about the lack of a proper DOCTYPE entry.
Could a DOCTYPE entry for jboss-ws4ee.war/WEB-INF/web.xml be added?

e.g.

!DOCTYPE web-app PUBLIC
  |-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN
  |http://java.sun.com/dtd/web-app_2_3.dtd;

Thanks!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3876431#3876431

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3876431


---
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: jboss-4.0.2 jboss-ws4ee.war won't deploy

2005-05-03 Thread [EMAIL PROTECTED]
I see no such error in the startup of the default configuration:


  | [EMAIL PROTECTED] default]$ grep JBossAdminServlet log/server.log
  | [EMAIL PROTECTED] default]$
  | 

and the webservice unit tests all pass without this servlet. It was removed 
from the webservice tree and should be removed from the jboss-ws4ee.war web.xml.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3876351#3876351

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3876351


---
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user