[JBoss-dev] [JBossWS] - Re: Problem with Deserialzing Arrays by Axis

2004-12-01 Thread aagmon
the cause of the error 
is that one end of the service(client||server) recieve the soap elements  not 
in the order he expected them , 

refer to the wiki , you can find there a detail explanation about how
to order the elements before/after serialization,





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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss Profiler] - File IO leak

2004-11-11 Thread aagmon
after few nights of crawling through exceptions and 700 threads on jboss 
console 
we found out that we have a file leak - 
 IOException too many open files 

i think the source is with using apache's common FileUpload jar (component 
dealing with multipart forms to upload files )

is there a way to track the leak ?
can jboss profiler assist here in some way ?

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

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


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Web Services] - 4.0.0 deployment failed on 4.0.1 with runtimeException

2004-11-07 Thread aagmon
document /lit  (ejb-endpoint) deployment  - mapping simple custom type  
deployed successfully on 4.0.0 suddenly failes in 4.0.1 
with runtimeException 

12:51:29,730 ERROR [ServiceDeployer] Cannot startup webservice for: 
echoCustomer.jar
  | org.jboss.deployment.DeploymentException: Cannot deploy webservice; - 
nested throwable: (javax.management.RuntimeMBeanException)
  | at 
org.jboss.webservice.ServiceDeployer.deployWebservices(ServiceDeployer.java:342)
  | at 
org.jboss.webservice.ServiceDeployerEJB.deployWebservices(ServiceDeployerEJB.java:100)
  | at 
org.jboss.webservice.ServiceDeployer.startWebservice(ServiceDeployer.java:203)
  | at 
org.jboss.webservice.ServiceDeployer.handleNotification(ServiceDeployer.java:113)
  | at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.notification.NotificationListenerProxy.invoke(NotificationListenerProxy.java:138)
  | 
  | .
  | 
  | Caused by: javax.management.RuntimeMBeanException
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.handleInvocationExceptions(ReflectedDispatcher.java:165)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:152)
  | 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:642)
  | at 
org.jboss.webservice.ServiceDeployer.deployWebservices(ServiceDeployer.java:333)
  |  ... 33 more
  |  
  | ... 
  | 
  | Caused by: java.lang.ClassCastException: javax.xml.namespace.QName
  | at java.util.Arrays.mergeSort(Arrays.java:1156)
  | at java.util.Arrays.sort(Arrays.java:1080)
  | at 
org.jboss.webservice.deployment.WSDDGenerator.appendTypeMappings(WSDDGenerator.java:115)
  | at 
org.jboss.webservice.AxisService.generateDeploymentWSDD(AxisService.java:420)
  | at 
org.jboss.webservice.AxisService.deployService(AxisService.java:243)
  | 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:144)
  | ... 38 more

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

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


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Web Services] - Re: 4.0.0 deployment failed on 4.0.1 with runtimeException

2004-11-07 Thread aagmon
simple custom type cutomer - contain 2 strings :

typeMapping
  | qname='ns1:Customer' xmlns:ns1='http://com.alon.beans/ws4ee'
  | type='java:com.alon.beans.Customer'
  | serializer='org.apache.axis.encoding.ser.BeanSerializerFactory'
  | deserializer='org.apache.axis.encoding.ser.BeanDeserializerFactory'
  | encodingStyle=''
  | /


from the wsdl :

schema targetNamespace=http://com.alon.beans; 
xmlns=http://www.w3.org/2001/XMLSchema;
  |complexType name=Customer
  | sequence
  |  element name=last nillable=true type=xsd:string/
  |  element name=name nillable=true type=xsd:string/
  | /sequence
  |/complexType
  |   /schema
  |   schema targetNamespace=http://com.alon.beans/ws4ee; 
xmlns=http://www.w3.org/2001/XMLSchema;
  |element name=in0 type=tns1:Customer/
  |element name=echoCustomerReturn type=tns1:Customer/
  |   /schema


from the  jax mapping : 

package-mapping
  | package-typecom.alon.beans/package-type
  | namespaceURIhttp://com.alon.beans/ws4ee/namespaceURI
  |   /package-mapping
  | 
  |   java-xml-type-mapping
  | java-typecom.alon.beans.Customer/java-type
  | root-type-qnameimpl:in0/root-type-qname
  | qname-scopeelement/qname-scope
  |   /java-xml-type-mapping
  |   java-xml-type-mapping
  | java-typecom.alon.beans.Customer/java-type
  | root-type-qnameimpl:echoCustomerReturn/root-type-qname
  | qname-scopeelement/qname-scope
  |   /java-xml-type-mapping

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

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


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: WHY??

2004-11-01 Thread aagmon
this is the issue

Cannot unmarshal jaxrpc-mapping-file: META-INF/mapping.xml


take a look at your jax-rpc mapping 
its probably a silly mistake 
refer to the wikki it has some good examples


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

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


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: WHY??

2004-11-01 Thread aagmon
here is a working example 

?xml version=1.0 encoding=UTF-8?
  | 
  | java-wsdl-mapping xmlns=http://java.sun.com/xml/ns/j2ee;
  |   xmlns:impl=http://com.alon.beans/service;
  |   xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  |   xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee 
http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd;
  |   version=1.1
  | 
  |   package-mapping
  | package-typecom.alon.beans/package-type
  | namespaceURIhttp://com.alon.beans/service/namespaceURI
  |   /package-mapping
  |   package-mapping
  | package-typecom.alon.beans/package-type
  | namespaceURIhttp://com.alon.beans/service/types/namespaceURI
  |   /package-mapping
  | 
  | /java-wsdl-mapping

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

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


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - facing the nullPointer-Port error using application client

2004-10-26 Thread aagmon
hi 
i dont mean to repost this exception , i think that here the situation is a bit 
different :

application client using rpc/lit service throwing this exception:
(service is working  fine with a servlet client -with almost  same code)

 [java] 2004-10-26 17:41:41,962 ERROR org.jboss.webservice.client.PortProxy[main] - 
Port error
  |  [java] java.lang.NullPointerException
  |  [java] at java.util.Hashtable.put(Unknown Source)
  |  [java] at 
com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.setProperty(Unknown Source)
  |  [java] at 
org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:262)
  |  [java] at org.apache.axis.MessagePart.getAsSOAPEnvelope(MessagePart.java:655)
  |  [java] at org.apache.axis.Message.getSOAPEnvelope(Message.java:432)
  |  [java] at org.apache.axis.Message.getContentType(Message.java:498)
  |  [java] at 
org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:387)

now its a simple service method using only one argument - a custom type made of 2 
strings .. here is the client and the wsdl 

client



System.out.println(looking...);
  | 
  | InitialContext ctx = getContext();
  | 
  | System.out.println(got context looking up service);
  | 
  | javax.xml.rpc.Service service = (javax.xml.rpc.Service)
  | 
ctx.lookup(java:comp/env/service/CustomerEchoService);
  | 
  | System.out.println(getting port);
  | 
  | repeaterEndpoint endpoint = (repeaterEndpoint)
  | service.getPort(repeaterEndpoint.class);
  | 
  | System.out.println(got port);
  | 
  | Customer c = new Customer();
  | c.setName(john);
  | c.setLast(smith);
  | 
  | System.out.println(calling service);
  | 
  | Customer a  = 
  | endpoint.echoCustomer(c);

client output

[java] looking...
  |  [java] got context looking up service
  |  [java] getting port
  |  [java] got port
  |  [java] calling service
  |  [java] 2004-10-26 17:41:41,962 ERROR 
org.jboss.webservice.client.PortProxy[main] - Port error
  |  [java] java.lang.NullPointerException
  |  [java] at java.util.Hashtable.put(Unknown Source)
  |  [java] at 
com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.setProperty(Unknown Source)
  |  [java] at 
org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:262)
  |  [java] at org.apache.axis.MessagePart.getAsSOAPEnvelope(MessagePart.java:655)
  |  [java] at org.apache.axis.Message.getSOAPEnvelope(Message.java:432)
  |  [java] at org.apache.axis.Message.getContentType(Message.java:498)
  |  [java] at 
org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:387)
  |  [java] at 
org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:127)
  |  [java] at 
org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:73)
  |  [java] at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:162)
  |  [java] at org.apache.axis.SimpleChain.invoke(SimpleChain.java:125)
  |  [java] at 
org.jboss.webservice.client.ClientEngine.invoke(ClientEngine.java:126)
  |  [java] at org.apache.axis.client.Call.invokeEngine(Call.java:3039)
  |  [java] at org.apache.axis.client.Call.invoke(Call.java:3024)
  |  [java] at org.apache.axis.client.Call.invoke(Call.java:2619)
  |  [java] at org.apache.axis.client.Call.invoke(Call.java:2524)
  |  [java] at org.apache.axis.client.Call.invokeInternal(Call.java:1976)
  |  [java] at org.apache.axis.client.Call.invoke(Call.java:1917)
  |  [java] at org.jboss.webservice.client.CallImpl.invoke(CallImpl.java:175)
  |  [java] at 
org.apache.axis.client.AxisClientProxy.invoke(AxisClientProxy.java:251)
  |  [java] at $Proxy2.echoCustomer(Unknown Source)
  |  [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  |  [java] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  |  [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  |  [java] at java.lang.reflect.Method.invoke(Unknown Source) 


WSDL

?xml version=1.0 encoding=UTF-8?
  | 
  | definitions name=CustomerEchoService 
targetNamespace=http://com.alon.beans/service; 
xmlns:tns=http://com.alon.beans/service; xmlns=http://schemas.xmlsoap.org/wsdl/; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema; 
xmlns:ns2=http://com.alon.beans/service/types; 
xmlns:soap=http://schemas.xmlsoap.org/wsdl/soap/;
  |   types
  | schema targetNamespace=http://com.alon.beans/service/types; 

[JBoss-dev] [JBossWS] - Re: client Cannot unmarshal jaxrpc-mapping-file

2004-09-11 Thread aagmon
i guess thats what the happy axis found - 
i will make sure that  the xmls are valid,
changing the parser is done in the ws4ee mbean?

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

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


---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM. 
Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: org.xml.sax.SAXException: SimpleDeserializer encountered

2004-08-23 Thread aagmon
had same thing exactly ,
when i switched to rpc instead of document it was fine 
but i still dont know what cause that exception 


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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - error deploying example from WS wiki

2004-08-19 Thread aagmon
followed the instruction regarding  the buid - 
build was fine - deployment threw this exception 

1:56:32,169 INFO  [STDOUT] Retrieving document at 
'file:/C:/jboss4/jboss-4.0.0RC1/server/default/tmp/deploy/tmp45768samples-server-web-exp.
  | ar/WEB-INF/wsdl/server-web.wsdl'.
  | 1:56:32,184 INFO  [WSDLFilePublisher] WSDL published to: 
file:/C:/jboss4/jboss-4.0.0RC1/server/default/data/wsdl/samples-server-web.war/ser
  | er-web.wsdl
  | 1:56:32,278 ERROR [ServiceDeployer] Cannot startup webservice for: 
samples-server-web.war
  | rg.jboss.deployment.DeploymentException: Cannot deploy webservice; - nested 
throwable: (RuntimeErrorException: null Cause: java.lang.NoSuch
  | ethodError: org.apache.axis.utils.JavaUtils.isArrayClass(Ljava/lang/Class;)Z)
  |at 
org.jboss.webservice.ServiceDeployer.deployWebservices(ServiceDeployer.java:317)
  |at 
org.jboss.webservice.ServiceDeployer.startWebservice(ServiceDeployer.java:178)
  |at 
org.jboss.webservice.ServiceDeployer.handleNotification(ServiceDeployer.java:105)
  |at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
  |at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  |at java.lang.reflect.Method.invoke(Method.java:324)
  |at 
org.jboss.mx.notification.NotificationListenerProxy.invoke(NotificationListenerProxy.java:138)
  |at $Proxy34.handleNotification(Unknown Source)

anyone encountered this exception ?


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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - sun's wscompile - (part of wsdp ) greate descriptors generat

2004-08-17 Thread aagmon
hi all 
u should check out sun's wscompile , all you have to do is supply a 
config-interface.xml file follow this example:

?xml version=1.0 encoding=UTF-8?
  | configuration 
  |   xmlns=http://java.sun.com/xml/ns/jax-rpc/ri/config;
  |   service 
  |   name=bookService 
  |   targetNamespace=http://alon.home.handlers/ws4ee; 
  |   typeNamespace=http://alon.home.handlers/ws4ee; 
  |   packageName=alon.home.handlers
  |   interface name=alon.home.handlers.handEndpoint/
  |   /service
  | /configuration

then run wscompile :

# j2ee/p1/p1 wscompile -define -f:documentliteral -mapping build/mapping.xml -d 
build/ -nd build/ -classpath /j2ee/p1/p1/build/book.jar config-interface.xml

in this example  as you can see i used doc/lit  and i created the mapping and the  
wsdl.
there are many other options (wscompile -help) 
i couldnt really test it cause im stuck with the  implBean ejb deployment problem 
regarding the xml value cannot be null or something like that ,
i sure would like to know if its compatible with jboss

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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - SOLVED ---!!!

2004-08-16 Thread aagmon
solved - corrupted axis/lib files 
updated new axis 1.1 lib - in server/def/lib 


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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - weird deploy problem: .. XML document must not be .... ???

2004-08-15 Thread aagmon
hello friends recenetly we started  migrating production web services 
to javaWS (till the jboss 4 ver will be final) 
for some time now im trying to deploy a very simple WS and keep getting 
this exception : 

:32:44,281 INFO  [EARDeployer] Init J2EE application: 
file:/C:/jboss4/jboss-4.0.0RC1/server/default/deploy/book.ear



4:32:44,937 INFO  [WSDLFilePublisher] WSDL published to: 
file:/C:/jboss4/jboss-4.0.0RC1/server/default/data/wsdl/book.jar/servi
4:32:45,031 INFO  [AxisService] WSDD published to: 
C:\jboss4\jboss-4.0.0RC1\server\default\data\wsdl\book.jar\bookServiceEJB.ws
4:32:45,031 INFO  [AxisService] Web Service deployed: 
http://localhost:8080/ws4ee/services/bookServiceEJB
4:32:45,031 ERROR [ServiceDeployer] Cannot startup webservice for: book.jar
ava.lang.IllegalArgumentException: Adding text to an XML document must not be null
   at org.dom4j.DocumentFactory.createText(DocumentFactory.java:142)
   at org.dom4j.tree.AbstractElement.addText(AbstractElement.java:1286)
   at 
org.jboss.webservice.ServiceDeployerEJB.deployWebservices(ServiceDeployerEJB.java:210)
   at 
org.jboss.webservice.ServiceDeployer.startWebservice(ServiceDeployer.java:178)
   at 
org.jboss.webservice.ServiceDeployer.handleNotification(ServiceDeployer.java:105)
   at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
   at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
   at java.lang.reflect.Method.invoke(Method.java:324)
   at 
org.jboss.mx.notification.NotificationListenerProxy.invoke(NotificationListenerProxy.java:138)
   at $Proxy21.handleNotification(Unknown Source)
   at 
javax.management.NotificationBroadcasterSupport.handleNotification(NotificationBroadcasterSupport.java:98)
   at 
javax.management.NotificationBroadcasterSupport.sendNotification(NotificationBroadcasterSupport.java:83)
   at org.jboss.deployment.SubDeployerSupport.start(SubDeployerSupport.java:178)
   at org.jboss.ejb.EJBDeployer.start(EJBDeployer.java:620)
   at org.jboss.deployment.MainDeployer.start(MainDeployer.java:863)
   at org.jboss.deployment.MainDeployer.start(MainDeployer.java:855)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:674)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:637)
   at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
   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:230)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
   at $Proxy7.deploy(Unknown Source)
   at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:304)
   at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:460)
   at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
   at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:212)
   at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:191)

if anyone can help.




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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: weird deploy problem:

2004-08-15 Thread aagmon
are u sure its a bug ?
is there some way around it ?
did u solve it some other way maybe ?

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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - NoClassDefFoundError: javax/wsdl/xml/WSDLLocator only on lin

2004-08-15 Thread aagmon
hello all i have jboss 4 RC01 runing on : win server 2003 and on Red Hat ES
im trying to deploy same service that worked fine on WIN - with the same tools 
and env - 
both -
axis 1.1 lib /ant 1.6.2/  

got the following error :

01:24:39,061 ERROR [ServiceDeployer] Cannot startup webservice for: HelloWS.jar
java.lang.NoClassDefFoundError: javax/wsdl/xml/WSDLLocator
at 
org.jboss.webservice.metadata.WebserviceDescriptionMetaData.getWsdlDefinition(WebserviceDescriptionMetaData.java:201)
at 
org.jboss.webservice.metadata.WebserviceDescriptionMetaData.updateServiceAddress(WebserviceDescriptionMetaData.java:222)
at 
org.jboss.webservice.ServiceDeployer.startWebservice(ServiceDeployer.java:173)
at 
org.jboss.webservice.ServiceDeployer.handleNotification(ServiceDeployer.java:105)
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:582)

i know its look like it cant find the wsdl ,i checked the path again in every 
discriptor
i wish it was a small thing - 
but i just cant figure it out


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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: very hard deployment problem -

2004-08-03 Thread aagmon
as i said the i have 3 jars
-fiboEJB -- contain the session bean 
-cmpEJB -- contain the cmp called by the session bean

and yes all the classes are present - 
and the cmp is called (as u can see above) with a local Ref

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

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


---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - using xdocs tags correctly?

2004-07-28 Thread aagmon
hi friends :
i spent some time figuring out xdocs-cmp 
now aboute the reference between a sessionEJB and cmp 
is this the right  way to do the  ref' ? a snippt 

personBean.java (p-cmp.jar) :

@ejb.bean 
name = person
local-jndi-name=personBean

... all the other tags
  
.class personBean ..

personHandler.java (p-session.jar):

..
@jboss.ejb-ref-jndi 

ref-name=ejb/personLocal
jndi-name=personLocal
@ejb.ejb-ref

ejb-name=person
view-type=local
ref-name=ejb/personLocal
 
.class personHandler 

if it is the right way 
how does jboss knows about the jndi-name personLocal

does run xdocs does it automaticly ?
doesn't it has to be linked somewhere ?

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

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


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721alloc_id=10040op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: evaluating jboss+ide trouble with cmp-cmr

2004-07-27 Thread aagmon
greate! 
i'd like that very much
[EMAIL PROTECTED] 

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

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


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721alloc_id=10040op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development