[JBoss-user] [JBossWS] - Re: Authentication for webservices

2005-01-20 Thread ebu
  Hi all.
  I've solved the same problem by adding to the generated wsdl the auth headers 
(i failed to make java2wsdl tool to generate headers, so i've written a "header 
adder"...) to be filled by C# client with login/password info and then parsed 
with custom axis handler.  

Further the credentials are processed by JAAS and JACC interceptors in the 
standard way... not very elegant, but it works...

 wbr, eugen.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863034#3863034

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863034


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - CallByValue and Isolated questions

2005-01-20 Thread wonnekeysers
I'm having the following questions/doubts, but could not immediately find 
answers in docs or wiki. Could someone enlighten me?

1. Does CallByValue=true in ear-deployer.xml also enforce marshalling for jndi 
lookups that occur WITHIN the (isolated) ear? (e.g. between EJBs and from WARs 
to EJBs?)

2. What will happen when CallByValue=true for the JNDI service in 
conf/jboss-service.xml and CallByValue=false for the EAR deployer in 
ear-deployer.xml?

3. Does it make sense to have CallByValue=false and Isolated=true for the EAR 
deployer in ear-deployer.xml? 

4. What are the J2EE compliant combinations of CallByValue in 
conf/jboss-service.xml, CallByValue + Isolated in ear-deployer.xml and 
UseJBossWebLoader + Java2ClassLoadingCompliance in 
deploy/jbossweb-tomcat50.sar/META-INF/jboss-service.xml. Or is the 
configuration as described in readme.html the ONLY compliant one?


Thanks!


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863033#3863033

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863033


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - how to change the localhost default after installation

2005-01-20 Thread kenfettig
I would also like to know how to change this default setting. Can anyone out 
there help?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863032#3863032

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863032


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Client deserialization error

2005-01-20 Thread srlamb76
I am getting the following exception in my web services client:


  | 2005-01-21 17:07:54,820 WARN 
org.jboss.webservice.deployment.TypeMappingDescription[main] - Class not found: 
hr.ejb.ark.al.com.StaffArray
  | 2005-01-21 17:08:47,898 ERROR org.apache.axis.client.Call[main] - Exception:
  | org.xml.sax.SAXException: Deserializing parameter 'result':  could not find 
deserializer for type {http://com.al.ark.ejb.hr/types}StaffArray
  | at org.apache.axis.message.RPCHandler.onStartChild(RPCHandler.java:330)
  | at 
org.apache.axis.encoding.DeserializationContextImpl.startElement(DeserializationContextImpl.java:1188)
  | at 
org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:244)
  | at 
org.apache.axis.message.SOAPElementAxisImpl.publishToHandler(SOAPElementAxisImpl.java:1407)
  | at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:263)
  | at org.apache.axis.message.RPCElement.getParams(RPCElement.java:397)
  | at org.apache.axis.client.Call.invoke(Call.java:2652)
  | at org.apache.axis.client.Call.invoke(Call.java:2524)
  | at org.apache.axis.client.Call.invokeInternal(Call.java:1976)
  | at org.apache.axis.client.Call.invoke(Call.java:1917)
  | at org.jboss.webservice.client.CallImpl.invoke(CallImpl.java:175)
  | at 
org.apache.axis.client.AxisClientProxy.invoke(AxisClientProxy.java:251)
  | at $Proxy0.getSimpleStaff(Unknown Source)
  | at WebServicesTest.main(WebServicesTest.java:34)

My client looks like the following:


  | URL url = new 
URL("http://metal:8080/ark-web-ears-ark-ejb-SNAPSHOT/services/HRFacade?wsdl";);
  | QName qname = new QName("http://com.al.ark.ejb.hr";, "HRService");
  |   
  | ServiceFactory factory = ServiceFactory.newInstance();
  | Service service = factory.createService(url, qname);
  | HREndpoint endpoint = (HREndpoint)service.getPort(HREndpoint.class);
  |   
  | StaffArray entries = endpoint.getSimpleStaff();
  | System.out.println("Number of entries: " + 
entries.getStaffArray().length);

My wsdl:

  | 
  | http://com.al.ark.ejb.hr"; 
xmlns:tns="http://com.al.ark.ejb.hr"; xmlns="http://schemas.xmlsoap.org/wsdl/"; 
xmlns:ns2="http://com.al.ark.ejb.hr/types"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";>
  |   
  | http://com.al.ark.ejb.hr/types"; 
xmlns:tns="http://com.al.ark.ejb.hr/types"; 
xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"; 
xmlns="http://www.w3.org/2001/XMLSchema";>
  |   
  | 
  |   
  |   
  | 
  |   
  |   
  |   
  |   
  |   
  |   
  |   
  |   
  |   
  |   
  |   
  |   
  |   
  | 
  |   
  | 
  |   
  |   
  |   
  | http://schemas.xmlsoap.org/soap/http"; 
style="rpc"/>
  | 
  |   
  |   
  | http://com.al.ark.ejb.hr"/>
  |   
  | http://com.al.ark.ejb.hr"/>
  |   
  | 
  |   
  | 

Mapping file:

  | http://java.sun.com/xml/ns/j2ee"; 
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";>
  | 
  | com.al.ark.ejb.hr
  | http://com.al.ark.ejb.hr/types
  | 
  | 
  | com.al.ark.ejb.hr
  | http://com.al.ark.ejb.hr
  | 
  | 
  | com.al.ark.ejb.staff.SimpleStaffEntry
  | http://com.al.ark.ejb.hr/types";>typeNS:SimpleStaffEntry
  | complexType
  | 
  | address
  | address
  | 
  | 
  | email
  | email
  | 
  | 
  | firstName
  | firstName
  | 
  | 
  | homePhone
  | homePhone
  | 
  | 
  | id
  | id
  | 
  | 
  | lastName
  | lastName
  | 
  | 
  | location
  | location
  | 
  | 
  | mobilePhone
  | mobilePhone
  | 
  | 
  | userName
  | userName
  | 
  | 
  | workPhone
  | workPhone
  | 
  | 
  | workRole
  | workRole
  | 
  | 
  | 
  | com.al.ark.ejb.staff.StaffArray
  | http://com.al.ark.ejb.hr/types";>typeNS:StaffArray
  | complexType
  | 
  | staffArray
  | staffArray
  | 
  | 
  | 
  | com.al.ark.ejb.hr.HRService
  | http://com.al.ark.ejb.hr";>serviceNS:HRService
  | 
  | HREndpointPort
  | HREndpointPort
  | 
  | 
  | 
  | 
com.al.ark.ejb.hr.HREndpoint
  | http://com.al.ark.ejb.hr";>portTypeNS:HREndpoint
  | http://com.al.ark.ejb.hr";>bindingNS:HREndpointBinding
  | 
  | getSimpleStaff
  | getSimpleStaff
  | 
  | com.al.ark.ejb.staff.StaffArray
  | http://com.al.ark.ejb.hr";>wsdlMsgNS:HREndpoint_getSimpleStaffResponse
  | result
  | 
  | 
  | 
  | 
  | 

My ws4ee-deployment.xml file:

  | 
  |  
  | 

My SEI:
public interface HREndpoint extends Remote {
  | public StaffArray getSimpleStaff() throws RemoteException;
  | }

My StaffArray object:
public class StaffArray implements Serializable {
  | private SimpleStaffEntry[] s

[JBoss-user] [JBossWS] - Re: Bug in ServiceDeployerEjb's portURI

2005-01-20 Thread raja05
Actually, i dont have any jboss.xml in my system. The reason i believe this is 
wrong is that JBoss calcuates the endpoint address based on the name of the 
archive(xxx in the case of xxx.war) and the value thats in the 
"webservice-description-name" in webservices.xml. So if i have 2 
port-components in a single webservices.xml, JBoss cannot diferentiate between 
the two as both of them have the same webservice-description-name and also are 
in the same archive. 
I included a jboss.xml with the port-component-uri to resolve this issue but i 
dont think i should need to do that. 
If you look at the code fragment posted above(in the actual issue message) i 
dont have any jboss.xml and so it assumes that the urlPattern which is "/*" and 
is already stored in the urlPattern array gets repeated for the second 
webservice. 

I will post a detailed test case once i get to work. 

Thanks for the response

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863027#3863027

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863027


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Timer vs. cluster & scheduler

2005-01-20 Thread javajedi
Done.  http://jira.jboss.org/jira/browse/JBAS-1310

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863026#3863026

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863026


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - JNDI name not found exception

2005-01-20 Thread pinkjosh
I have succussfully configured JBoss for running my EJB application 
but when i try to run anything i face the following exception about a 
particular EJB. 

java.rmi.RemoteException: Name not found in JNDI 
at ggs.erm.beans.helper.HomeHelper.getHomeInterface(Unknown Source) 
at ggs.erm.servlet.setup3.LoginS.performTask(LoginS.java:96) 
at ggs.erm.servlet.setup3.LoginS.doGet(LoginS.java:30) 
at javax.servlet.http.HttpServlet.service(HttpServlet.java:697) 
at javax.servlet.http.HttpServlet.service(HttpServlet.java:810) 
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
 
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
 
at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)
 
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
 
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
 
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
 
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) 
at 
org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
 
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
 
at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:44)
 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
 
at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:169)
 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
 
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) 
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137) 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
 
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118) 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
 
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) 
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
 
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) 
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929) 
at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160) 
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799) 
at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
 
at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577) 
at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
 
at java.lang.Thread.run(Thread.java:534) 


The exception is being thrown when my code try to capture Home interface. The 
home interface and session beans jndi names are already set in jboss.xml. I am 
writing the code lines as follows. 

RolesSessionHome roleshome = 
(RolesSessionHome) HomeHelper.getHomeInterface( 
"ggs/erm/beans/setup/roled/RolesSession", 
RolesSessionHome.class); 

RolesSession role = roleshome.create(); 

The path for RolesSession is already set in jboss.xml as. 

- 
RolesSession 
ggs/erm/beans/setup/roled/RolesSessionBean 


But again i encounter the same exception. 
Please help me as soon as possible where i am wrong. 
Thanks in advance.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863025#3863025

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863025


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - JNDI name not found exception

2005-01-20 Thread pinkjosh
I have succussfully configured JBoss for running my EJB application 
but when i try to run anything i face the following exception about a 
particular EJB. 

java.rmi.RemoteException: Name not found in JNDI 
at ggs.erm.beans.helper.HomeHelper.getHomeInterface(Unknown Source) 
at ggs.erm.servlet.setup3.LoginS.performTask(LoginS.java:96) 
at ggs.erm.servlet.setup3.LoginS.doGet(LoginS.java:30) 
at javax.servlet.http.HttpServlet.service(HttpServlet.java:697) 
at javax.servlet.http.HttpServlet.service(HttpServlet.java:810) 
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
 
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
 
at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)
 
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
 
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
 
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
 
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) 
at 
org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
 
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
 
at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:44)
 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
 
at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:169)
 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
 
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) 
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137) 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
 
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118) 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
 
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) 
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
 
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
 
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) 
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929) 
at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160) 
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799) 
at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
 
at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577) 
at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
 
at java.lang.Thread.run(Thread.java:534) 


The exception is being thrown when my code try to capture Home interface. The 
home interface and session beans jndi names are already set in jboss.xml. I am 
writing the code lines as follows. 

RolesSessionHome roleshome = 
(RolesSessionHome) HomeHelper.getHomeInterface( 
"ggs/erm/beans/setup/roled/RolesSession", 
RolesSessionHome.class); 

RolesSession role = roleshome.create(); 

The path for RolesSession is already set in jboss.xml as. 

- 
RolesSession 
ggs/erm/beans/setup/roled/RolesSessionBean 


But again i encounter the same exception. 
Please help me as soon as possible where i am wrong. 
Thanks in advance.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863024#3863024

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863024


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Auto restart of a JBoss instance

2005-01-20 Thread chrismalan
Thanks Bernd.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863021#3863021

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863021


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - _ResponseStruct and _RequestStruct

2005-01-20 Thread ${bb.Guest}
Quick question... 

I've generated my wsdl and jaxrpc-mapping file with wscompile and it put these 
classes into these files.  I didn't generate these files with wscompile, so my 
problem is that in my .wsdd file, I now have these ignored types.


  | 
  | 

I presume since these are ignored, I have to use the ws4ee-deployment to edit 
this myself?  All I have is a java String as an input to my method, so would 
this mean I have to edit the following operation?


  | 
  | 
  | 
  |   
  | 

Am I close here?  :)

_RK

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863018#3863018

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863018


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Logging SOAP requests and responses

2005-01-20 Thread nehring
I've used the SOAPMonitor from the command line, not via the applet.   It 
operates as a proxy like tcpmon where you'll need to point your client to an 
IP/port that the SOAPMonitor is listening to and configure SOAPMonitor to relay 
to the packets to the actual SOAP service IP/port.   I'm assuming that the 
applet functions in the same way.

Note that you can change either the IP or the port - you don't have to change 
the port.  So you could set your client to talk to a different IP - keeping the 
port number the same - and have SOAPMonitor listening on that IP/port.   Many 
people forget that you have the whole 127.0.0.0/8 net available on your boxes.  
I've tried this on Win2K/XP/Linux.

For example, the client could be configured to talk to 127.0.0.2/TCP:8080.   
The SOAPMonitor could be configure to listen on 127.0.0.2/TCP:8080 and talk to 
a server on 127.0.0.1/TCP:8080.   Where the server actually lives on 
127.0.0.1/TCP:8080. 

JBoss can be started with a "-b IP_ADDR" argument that will bind it's services 
to a specific IP rather than all host interfaces.  e.g.  "-b 127.0.0.3" will 
configure JBoss to bind to only IP 127.0.0.3.   I noticed log messages about 
clustering when doing this, but I haven't cared about clustering yet.

This gives you some creativity in seting up a testing scenario.

r,
Lance

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863017#3863017

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863017


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - mysql cluster

2005-01-20 Thread karln1
Hi - I'd like to use jboss to connect to a mysql cluster and load-balance the 
transactions.  For example, if I have one jboss server and 2 mysql server 
nodes, one transaction will be sent to mysql server A, the next to mysql server 
B, etc.  I'm not sure if this is even possible with jboss...
The behavior I currently get is all transactions go to mysql server A.  If 
mysql server A is taken offline, the next transaction will fail.  Any 
subsequent transactions will be routed to mysql server B.
The mysql-ds.xml file:


  
MySQLDS

jdbc:mysql://192.168.0.7:3306,192.168.0.8:3306/testdb
com.mysql.jdbc.Driver
false
true
true
true
user
passwd

  
 mySQL
  
  



Any help is greatly appreciated.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863016#3863016

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863016


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: problem in configuring jboss3.2.3 with ms sqlserver2000

2005-01-20 Thread niccolas
(java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for 
JDBC][SQLServer]SELECT permission denied on object 'JMS_MESSAGES', database 
'EDGE', owner 'atumma'.)] 
it seems that your database user have not plivileges enough.
in sql prompt, try the sql statement as followed:
grant all plivileges on edge to atumma identified by 'password';
and then try again.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863015#3863015

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863015


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Configuring beanMapping with JBossWS

2005-01-20 Thread AndrewGriffiths
Is there any example showing how BeanMapping would be specified?

The following seems to be ignored!


  |  BEGIN ws4ee-deployment.xml ---
  | 
  | 
  | 
  | 
  | http://myco.com";
  | languageSpecificType="java:myco.com.Results"/>
  | 
  | 
  | 
  | 
  | 
  |  END ws4ee-deployment.xml ---

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863014#3863014

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863014


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Logging SOAP requests and responses

2005-01-20 Thread forkbomb
Thomas: Setting org.apache.axis to DEBUG doesn't print the messages that are 
being exchanged (incredible!).

nehring: Like you say, sniffing isn't very convenient, since there is other 
HTTP traffic to contend with. 

I noticed that there is some commented out SOAPMonitor stuff in the config 
files. Has anyone gotten the SOAPMonitor applet working in JBoss 4?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863013#3863013

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863013


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - How to change from initial default "localhost" and "8080" po

2005-01-20 Thread curlesm
How do you change Jboss from the default "localhost" and "8080" port number 
after you first install JBOSS and getting it functioning?  Do not see this 
convered in the "Getting Started With Jboss" Doc.  Need to have JBOSS/TOMCAT 
use a different host address from "localhost" and default port number of 80...

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863012#3863012

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863012


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - port-component-uri limited to single directory web context?

2005-01-20 Thread forkbomb
In JBoss 3, my web services were deployed in a subdirectory under a web 
context, e.g.

http://myserver/mycontext/services/MyWebService

In Jboss 4, however, I am unable to specify 

/mycontext/services/MyWebService 

as the port-component-uri. Attempting it causes an IllegalArgumentException.

/mycontext/MyWebService

works, however. Is this a bug, or will adding a directory to the web context 
never be supported? 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863011#3863011

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863011


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - ws4ee-deployment.xml required for RPC/Encoded arrays?

2005-01-20 Thread forkbomb
I've gotten my RPC/Encoded web services working by specifying the array 
serializers/deserializers in ws4ee-deployment.xml. Is there any way to get 
JBoss to generate these type mappings using the jaxrpc mapping XML file, or is 
ws4ee-deployment.xml required for mapping RPC/Encoded arrays? 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863010#3863010

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863010


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - CMP Bean Finder expression error

2005-01-20 Thread Xjava2001
Hi,
I got this error when I deploy CMP bean with finder expression '>=', doesn't 
Jboss support this?

Regards,
Xjava.


Cause: org.jboss.deployment.DeploymentException: Error compiling EJB-QL 
statement 'SELECT OBJECT(o) FROM test as o WHERE o.cln =?1 AND o.pt =?2 AND 
o.effDt >=?3'; - nested throwable: 
(org.jboss.ejb.plugins.cmp.ejbql.ParseException: Encountered ">=" at line 1, 
column 79.
Was expecting one of:
">" ...
"<" ...
"=" ...
"<>" ...
)
ObjectName: 
jboss.j2ee:jndiName=containerManaged.XrefEBHome,plugin=pool,service=EJB

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863009#3863009

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863009


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: How to enlist JMS in stateless session bean container ma

2005-01-20 Thread [EMAIL PROTECTED]
Moderated: FAQ - it's the post at the top of this forum for the visually 
challenged amongst us. It's also the very first FAQ.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863008#3863008

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863008


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - How to enlist JMS in stateless session bean container manage

2005-01-20 Thread davidcj
I am currently working with JBoss 3.0.8. My application has a stateless session 
EJB that performs a DB update and sends a JMS message. I want the DB update and 
JMS message send to be managed in the same JTA transaction context. The EJB is 
using a container managed transaction.

The J2EE 1.3 spec isn't very clear about how this works with managed 
transactions, but according to the Sun tutorial at 
http://java.sun.com/products/jms/tutorial/1_3_1-fcs/doc/j2eeapp2.html, the 
container should manage the JMS transaction if the session is creating using 
this call:

session = connection.createQueueSession(true, 0);

The call to session.commit() should be unnecessary since the container manages 
the transaction.

However, when I try this from JBoss it appears the JMS transaction is never 
committed and therfore the message is never sent. If I instead use 
connection.createQueueSession(false, QueueSession.AUTO_ACKNOWLEDGE) then I run 
into the problem where the JMS message is immediately commited independent of 
the session EJB transaction. Depending on timing the message receiver may 
attempt to process the message before the session EJB's transaction has 
committed, which is a problem since the receiver needs that data.

Can anyone provide any hints on how to get JBoss to coordinate the JMS 
transaction as part of the session EJB transaction when sending a message from 
a session EJB?

Thanks,
David Johnson
StorePerform Technologies, Inc.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863006#3863006

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863006


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: Verification errors deploying DukesBank application

2005-01-20 Thread cjohan
Update 2 works without a hitch, except that, after adding security, funds 
transfer and ATM didn't work becaue of permission problems.  The web service 
also had some permission problem.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863003#3863003

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863003


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Timer vs. cluster & scheduler

2005-01-20 Thread [EMAIL PROTECTED]
Yes, repost it to jira please.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863002#3863002

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863002


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Clustered Timer Service

2005-01-20 Thread javajedi
It's not.

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862997#3862997

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862999#3862999

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862999


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: EJB Timer that is an HA-Singleton

2005-01-20 Thread javajedi
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862997#3862997

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862998#3862998

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862998


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Timer vs. cluster & scheduler

2005-01-20 Thread javajedi
About a year ago, I implemented the EJB timer APIs on top of Quartz.  I read 
the same comment that you did, so I submitted my implementation to JBoss as a 
patch.  The link to this patch used to be at 
http://sourceforge.net/tracker/?func=detail&aid=881597&group_id=22866&atid=376687
 but the page now says:
ERROR
Artifact: Only Group Members Can View Private ArtifactTypes 

So I thought maybe it had been moved to JIRA, but I can't find it there either. 
 Last I knew, the patch was still open.  Nobody appeared to do anything with 
it, or even comment on it.  We've been using it in a JBoss cluster for about a 
year now and it works great.  It's not a high-availability service; it runs on 
every node in the cluster.  Quartz locks at the database level so the cluster 
node that ejbTimeout gets invoked on is pretty much random.  This also means 
that there are no worries about what happens if one of your cluster nodes goes 
down.

Today, I tried ripping it out and using the JBoss 4 timer implementation and 
was shocked at what a joke the JBoss implementation is.  It doesn't appear to 
work in a clustered environment at all.  It doesn't even appear to work across 
server restarts!  The classloading is broken too.  The "info" parameter I pass 
to createTimer is an object whose class is inside my ear.  When JBoss starts 
up, it generates a ClassNotFoundException because the scheduler service is 
trying to deserialize the object long before my ear is deployed.

I can repost my patch somewhere (maybe in JIRA) if anyone is interested.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862997#3862997

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862997


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - URLs attribute for Tomcat

2005-01-20 Thread eugene44
Hi,
I have a problem with deploying of Tomcat in jboss 3.2.6 under JVM1.5 (I did 
not try another JVM)
First time, I did not modify anything in the downloaded installation. I ran 
run.bat and everything looked fine.
Then, I modified URLs attribute in jboss.deployment mbean in 
default/conf/jboss-service.xml. Namely, instead of referring to the entire 
directory by "deploy/", I listed all files in the deploy directory, like

 
  |  deploy/http-invoker.sar/,
  |  deploy/jboss-jca.sar
  | 
  |  deploy/jbossweb-tomcat50.sar/,
  | 
  |  deploy/jmx-invoker-adaptor-server.sar/,
  |  deploy/uuid-key-generator.sar,
  |  deploy/mail-service.xml,  
  |  deploy/cache-invalidation-service.xml,
  |  deploy/client-deployer-service.xml,
  |  deploy/hibernate-deployer-service.xml,
  |  deploy/monitoring-service.xml,
  |  deploy/properties-service.xml,
  |  deploy/schedule-manager-service.xml,
  |  deploy/scheduler-service.xml,
  |  deploy/sqlexception-service.xml,
  |  deploy/transaction-service.xml,
  |  deploy/user-service.xml,
  |  deploy/jboss-local-jdbc.rar,
  |  deploy/jboss-xa-jdbc.rar,
  |  deploy/jmx-console.war/,
  |  deploy/jms/,
  |  deploy/management/,
  |  deploy/jsql-dsAll services were deployed except Tomcat. The latter 
gave exception:

2005-01-20 14:05:06,391 DEBUG [org.jboss.deployment.SARDeployer] create 
operation failed for package 
file:/C:/jboss-3.2.6/server/default/deploy/jbossweb-tomcat50.sar/META-INF/jboss-service.xml
  | at 
org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:139)
  | 
  | at 
org.jboss.system.ServiceController.install(ServiceController.java:198)
  | 
  | 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.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
  | 
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:62)
  | 
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:54)
  | 
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:82)
  | 
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:197)
  | 
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
  | 
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | 
  | at $Proxy4.install(Unknown Source)
  | 
  | at org.jboss.deployment.SARDeployer.create(SARDeployer.java:204)
  | 
  | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:783)
  | 
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:640)
  | 
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:604)
  | 
  | 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.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
  | 
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:62)
  | 
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:54)
  | 
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:82)
  | 
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:197)
  | 
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
  | 
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | 
  | at $Proxy8.deploy(Unknown Source)
  | 
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:304)
  | 
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:478)
  | 
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
  | 
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:274)
  | 
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:271)
  | 
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:221)
  | 
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | 
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | 
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingM

[JBoss-user] [JCA/JBoss] - Re: Hot deploy/redeploy datasources

2005-01-20 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : "[EMAIL PROTECTED]" wrote : 
  |   | One interesting thing I found is that if I deployed it exploded, I 
can't then delete it, there is a lock on the META-INF folder?
  | 
  | Report it as a bug.
  | 
  | 

My bad, I couldn't reproduce this problem.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862993#3862993

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862993


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: per service ws4ee-deployment.xml ?

2005-01-20 Thread eldavio
Thanks again Thomas

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862992#3862992

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862992


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - How are the AJP port numbers determined for 2nd and 3rd inst

2005-01-20 Thread gshekar
Hi,

I using BindingManger service to run multiple instance of jboss.
There is no mention of portnumbers other than 8009 for AJP in 
service-bindings.xml.  

I am worndering as to how the AJP portnumbers are determined when 2nd and 3rd 
instance of jboss is run as follows.

./run.sh -Djboss.server.ports=ports-01 -c node1
./run.sh -Djboss.server.ports=ports-02 -c node2

I know that the AJP portnumbers are 8109, and 8209 for 2nd and third instance 
of jboss respectively.  But I want to know how this portnumber is determined.

Please suggest.
Thanks & Regards,
-GnanaShekar-

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862988#3862988

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862988


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - CMP entity bean deployment problem

2005-01-20 Thread Xjava2001
Hi,
I am trying to deploy our application in jobss3.2.5 and JDK1.3. I get the 
following error when I strat Jboss.
I appreciate your help.

Thanks,
XJava



13:40:32,817 WARN  [ServiceController] Problem starting service 
jboss.j2ee:jndiName=containerManaged.XrefEBHome,service=EJB
RuntimeErrorException: java.lang.NoSuchMethodError
Cause: java.lang.NoSuchMethodError
at 
org.jboss.mx.server.ReflectedDispatcher.handleInvocationExceptions(ReflectedDispatcher.java:99)
at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:64)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:837)
at $Proxy18.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:367)
at java.lang.reflect.Method.invoke(Native Method)
at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy60.start(Unknown Source)
at org.jboss.ejb.EjbModule.startService(EjbModule.java:367)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:271)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:221)
at java.lang.reflect.Method.invoke(Native Method)
at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:837)
at $Proxy18.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:367)
at java.lang.reflect.Method.invoke(Native Method)
at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy14.start(Unknown Source)
at org.jboss.ejb.EJBDeployer.start(EJBDeployer.java:570)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:836)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:828)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:828)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:645)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:608)
at java.lang.reflect.Method.invoke(Native Method)
at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862987#3862987

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862987


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https:

[JBoss-user] [JBossWS] - Re: ws4ee-deployment vs jaxrpc-mapping

2005-01-20 Thread kanno
Actually, here's what I've been doing, but I'm sorta debugging as we speak... 
so maybe this might clear up somethings for yah (or me for that matter).

- I first generate my Java interface/implementation classes

- I use an ant task to generate the wsdl / jaxrpc-mapping file 

- From what I can garner, sometimes you have to override the type mappings as 
supplied by the mapping file generated by wscompile, so you can use a 
w4ee-deployment.xml file to do custom types, etc. [For arrays, etc]

- I then war everything up making sure the wsdl, web.xml, jaxrp-mapping, and 
the webservices.xml file are in the appropriate locations along with any other 
libs.

- Copy to deploy directory; 

- Start up JBoss.



As for where I am now, I've done all the above, but it appears that I have an 
OperationDesc out of sync whenever I try to add a custom type to the 
w4ee-deployment.xml. 

_RK




View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862978#3862978

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862978


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Compiling JSPs via an Ant task

2005-01-20 Thread rodneyzhamilton
Hello, I am trying to build my web application for JBoss 4.0 with an Ant script.
I have the following task for compiling my JSPs:


  | 
  | 
  | 
  |
  | 
  | I have the following paths included in my classpath:
  | * 
  | 
  | * 

What value belongs in the compiler attribute of the Ant jspc tag?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862977#3862977

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862977


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Http Sessions And JBoss restart

2005-01-20 Thread [EMAIL PROTECTED]
http://www.jboss.org/wiki/Wiki.jsp?page=DsiableSessionPersistence

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862967#3862967

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862967


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Http Sessions And JBoss restart

2005-01-20 Thread pszemusz
Hi,

How can I force JBoss 3.2.6 with Tomcat not to keep http session after server 
restart. Behavior like this is not good for my solution. Unfortunately I can 
not find any knowledge about this. I would be grateful for help.

Pszemo

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862966#3862966

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862966


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - ws4ee-deployment vs jaxrpc-mapping

2005-01-20 Thread osataken
i confuse with complex type so long(maybe i'm newbie with this T^T).
i want a conclusion about these two files and how to manage it???

the question is if i generate wsdl and mapping file with wscompile i have to 
generate server artifact (eg. tie class  : RequestStruct) and don't worry about 
ws4ee-deployment.xml, am i right???


i tried all examples in wiki. they work well but all xml document are generate 
from axis-ant task. Can anyone give me  examples of custom type mapping with 
wscompile step by step?? 

any help would be appriciate.
thank you very much...



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862964#3862964

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862964


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Classloading question

2005-01-20 Thread mpb360
I'm deploying an .ear file that contains multiple .jar files.  In those jars, I 
have some POJO's that in some cases have the same package name and class name, 
but are slightly different, and are archived in different jars.

When a method instantiates one of those classes, is there a standard way to 
guarantee from which .jar file the class will be loaded?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862962#3862962

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862962


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Hot deploy/redeploy datasources

2005-01-20 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : "[EMAIL PROTECTED]" wrote : 
  |   | One interesting thing I found is that if I deployed it exploded, I 
can't then delete it, there is a lock on the META-INF folder? There is no 
problem deleting it when archived. So in effect "hot undeploy" also works: 
removing the .sar unbinds the datasource it created.
  |   | 
  | 
  | Report it as a bug.
  | 
  | anonymous wrote : 
  |   | Also when I delete one .sar and replace it with another one, (same sar 
name, just new driver) I get the following logged to the console: "INFO  
[JCAResource] Registration is not done -> stop". Regardless of this, as we 
would expect, after restarting the server the new driver is picked up perfectly.
  |   | 
  | Known issue: http://jira.jboss.com/jira/browse/JBAS-1281

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862960#3862960

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862960


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Re: OutOfMemoryException

2005-01-20 Thread mcarabias
Ok, i'll set all up to a newest version of Jboss.
Anyone knows when it was solved?
I also noticed that the timetolive param of the jms queues is not working in 
jboss 3.2.1, am i wrong with this.
Thanks for your answer.

Matias

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862959#3862959

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862959


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: rmi-iiop

2005-01-20 Thread [EMAIL PROTECTED]
Looking at CVS, Scott's backport (v1.3.4.2) did not make it into 3.2.7RC1 
(v1.3.4.1)

http://cvs.sourceforge.net/viewcvs.py/jboss/contrib/iiop/src/main/org/jboss/iiop/rmi/Util.java?rev=1.8&view=log

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862958#3862958

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862958


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Hot deploy/redeploy datasources

2005-01-20 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : 
  | I don't see the need to add  tag to the -ds.xml
  | since you get much better semantics by creating a sar that contains
  | both the -ds.xml and the driver jar. But still no hotredeploy.


Thanks Adrian for the suggestion. Hot deploying a datasource using a sar works 
great, where the sar looks like this:
mydatasource.sar/
  | META-INF/jboss-service.xml = 
  | my-ds.xml
  | mydriver.jar

One interesting thing I found is that if I deployed it exploded, I can't then 
delete it, there is a lock on the META-INF folder? There is no problem deleting 
it when archived. So in effect "hot undeploy" also works: removing the .sar 
unbinds the datasource it created.

Also when I delete one .sar and replace it with another one, (same sar name, 
just new driver) I get the following logged to the console: "INFO  
[JCAResource] Registration is not done -> stop". Regardless of this, as we 
would expect, after restarting the server the new driver is picked up perfectly.


Thanks

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862957#3862957

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862957


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: rmi-iiop

2005-01-20 Thread bonoc
I still experienced the same issue on 3.2.7RC1 -- 
"Class xxx already has TypeCode".

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862953#3862953

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862953


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - StringIndexOutOfBoundsException Problems

2005-01-20 Thread sbuster
I am using JBoss 4.0.0 with Eclispe 3.1 M3 release and when I try to deploy an 
war file with the JBossIDE deploy command,  I am getting a 
java.lang.StringIndexOutOfBoundsException.  The web.xml contains nothing more 
than simple xml tags and just the  tags, thats it.  The 
interesting thing is that if I deploy the packaged war file I get this error, 
if I unpackage it into a directory in the deploy directory, it works fine.

Has anyone seen this before?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862950#3862950

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862950


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Re: OutOfMemoryException

2005-01-20 Thread triathlon98
You need to update your jboss.
There was a memory leak in jms in some early 3.2 releases. Don't remember 
exactly when they got fixed, think in 3.2.4, however, butter jump to the latest 
3.2 or even 4.0.1 if possible.

Joachim

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862949#3862949

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862949


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Run a ANT script from a SessionBean

2005-01-20 Thread weegeptr
My name is Patrick and i'm from Brasil.

What should I do for perform a Script ANT from a SessionBean?  I am trying to 
do like this:

  |  String[] argumentos = new String[3];
  | argumentos[0] = "-file";
  | argumentos[1] = "..\\antScript.xml";
  | argumentos[2] = "compilar";
  | 
  | Launcher.main(argumentos);
  | 

But when the script finishes of perform, the JBoss performs SHUTDOWN


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862948#3862948

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862948


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Unable to start JBoss 4.0.1 from Eclipse 3.0.1 with Lomb

2005-01-20 Thread jojo_stop
hi, I have the same  problem( JBOSS4.0.1+eclipse 3.0.1 + lomboz 3.0.1).

When i try to start/debug jboss from eclipse, nothing happens. the console 
keeps blank and jboss doesn't start.

however, if i started the server from "run.bat", it can  be stoped from eclipes 
by click  "stop server " in lomboz j2ee view"

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862947#3862947

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862947


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: jboss QL with date and clause where

2005-01-20 Thread fbiaggi
Hello,

you may try jboss-ql or declared-sql

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862946#3862946

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862946


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: mod_jk or mod_jk 2?

2005-01-20 Thread [EMAIL PROTECTED]
mod_jk 1.2.x is the only version we support and is what should be used.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862945#3862945

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862945


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Class loader isolation problem with Jboss 4.0.0

2005-01-20 Thread boehme
Hi

I got it running.

Step 1. enable JBoss Class Loader for tomcat (UseJBossWebLoader=true)
Step 2. define a own Rep. for your WebApp.  in META-INF/jboss-web.xml
Step 3. disable the parent delegation for the Rep. alos in jboss-web.xml

Regards,
 Harald

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862944#3862944

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862944


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - mod_jk or mod_jk 2?

2005-01-20 Thread OMARTIN
Hi all.

On several post in this forum and on the wiki pages, i have seen that mod_jk 
1.2 is preferred than the 2.0 version. i also read on mod_jk site that 2.0 is 
deprecated and is no more developped.

But when i check the source for jboss 3.2.6 or the documentation, i can see 
that every time mod_jk(2) (which means mod_jk 2.0 i supposed) is used. Even in 
the config file i can see the reference to mod_jk(2) in 
jbossweb-tomcat5/META-INF/jboss-service.xml.

Can someone from jboss team tell me which version of JK is preferred?

thanks in advance

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862943#3862943

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862943


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Wrong ManagedConnectionFactory sent to allocateConnection!

2005-01-20 Thread dtauzell
This error happened today after my application had been running for serveral 
days:

Code:


  | org.jboss.util.NestedSQLException: Wrong ManagedConnectionFactory sent to 
allocateConnection!;
  | 

I am running JBoss 3.2.6. I checked my *-ds.xml files to see if somebody had 
redeployed or touched them and they haven't changed since the server was 
restarted.


Any ideas as to what could be going on here?

One think I noticed in my code is that I get a DataSource in the ejbCreate() 
method and then hold onto that forever. Is that a bad idea? We had been running 
this under 3.0.8 for a while and didn't notice this problems with the 
ManagedConnectionFactory.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862941#3862941

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862941


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Wrong ManagedConnectionFactory sent to allocateConnectio

2005-01-20 Thread dtauzell
I moved this to the JCA forum as I don't think this is the right place.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862942#3862942

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862942


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Problem with start JBOSS 3.2.6 with Java 1.3.1_08

2005-01-20 Thread mathewa
distributions of jboss are built with later versions of the jdk as youve 
already discovered. the below quote is from the page mentioned by darran which 
states you should build it youself.

anonymous wrote : 
  | To workaround these possible bytecode incompatibilities you will have to 
rebuild the server from a source checkout using JDK 1.3.x.
  | 

so now this page may be of use to you:

http://www.jboss.org/wiki/Wiki.jsp?page=BuildJBoss

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862939#3862939

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862939


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - Re: Modifying session id length

2005-01-20 Thread mouseboks
Found it (although this may not be available in JBoss < 4.0.0).  The there is 
an MBean parameter in the Manager MBean un der jboss.web for the web 
application you wish to change the session id length for.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862936#3862936

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862936


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - jboss QL with date and clause where

2005-01-20 Thread tbaud72

Hello,

I would like to write a finder in an EJB CMP with a date attribute(datenews).
I would like to get the most recent objet from an EJB (max 2 month), is it 
possible with EJB-QL.

It could seem to this expression (don't work) :

query="SELECT OBJECT(n) FROM News AS n where TO_DAYS(NOW()) - TO_DAYS(datenews) 
<= 60

thanks


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862933#3862933

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862933


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - performance loss after restart

2005-01-20 Thread skidiver
Hi there,

i'm using a JBoss 3.2.3 with integrated Tomcat4. If i stop the jboss by closing 
the console windows or pressing ctrl-c (os is Win2K) serveral exception like 
the following are thrown:

14:06:09,955 INFO  [EntityContainer] Stopping 
jboss.j2ee:jndiName=Scheduler,service=EJB
14:06:09,955 ERROR [EntityContainer] Stopping failed
java.lang.NullPointerException
at 
org.jboss.cache.invalidation.triggers.EntityBeanCacheBatchInvalidatorInterceptor.stop(Ent
ityBeanCacheBatchInvalidatorInterceptor.java:48)
at org.jboss.ejb.EntityContainer.stopService(EntityContainer.java:377)
at 
org.jboss.system.ServiceMBeanSupport.stop(ServiceMBeanSupport.java:240)
at sun.reflect.GeneratedMethodAccessor113.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284
)

-> Scheduler is a CMP2.0 EntityBean.

If i restart the jboss i mention that the jsp compile times are much longer (2 
times or more) than before. The performance loss grows if i restart from time 
to time.
What's the problem ?

Thx, ski

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862932#3862932

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862932


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JBoss 4.0/SQL Server Lock Condition

2005-01-20 Thread ericmolitor
A further explanation than crappy locking (though I agree) is that the locks 
escalate to page level locks and if you have short fast running JMS operations 
the client conflicts with the consumer leading to the optimizer picking a plan 
that causes the deadlocks. One work around (although you're probably better off 
switching to a different method of JMS serialization) is to adjust your fill 
factor so that only one record ends up on each page. This will trade in the 
deadlocks for higher memory utilization and higher cpu (caused be more memory 
management)

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862931#3862931

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862931


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Interceptor problem

2005-01-20 Thread damencho
I need an AuditInfo beahivior. So I placed a Interceptor. There is some logs in 
the class. But I'can't see them. also there is not data in the audir info 
properties. So i think that my interceptor is not working althooug is jboss 
says that is instantiated. 
DEBUG [org.jboss.system.ServiceConfigurator] SessionFactoryInterceptor set to 
p.MyInterceptor in jboss.har:service=..

in hibernate-service.xml i have

p.MyInterceptor


Any ideas ?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862930#3862930

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862930


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - "Can't handle clustering where session id is from URL. Will

2005-01-20 Thread OMARTIN
The problem:
Some users lose sessions when one of our server goess down. They are redirect 
to the second server but lose all their datas. We can see in our log several 
errors. The performance decrease dramaticaly when we start the second server.

The environment
2 jboss on differents servers in a cluster
JBoss version: 3.2.6
JDK Sun 1.4.1_01
OS: Debian kernel 2.6.8
jvm args: -Xms1024m -Xmx1024m -XX:MaxPermSize=128m

The configuration
using mod_jk1.2 with sticky session
using tc5-cluster-service.xml from all configuration
using cluster-service.xml from all configuration
using cache-invalidation-service.xml from all configuration
setting the jvmRoute in jbossweb-tomcat50.sar according to workers.properties.

we have set in web.xml the tag  
anonymous wrote : 

the jboss.xml for our web app:
anonymous wrote : 
  | /jmanager
  |
SET_AND_NON_PRIMITIVE_GET
  | attribute
  | 
  | 


We can see in the log file 4 types of errors which happend periodicaly:

1st error:
anonymous wrote : ERROR [org.jboss.web.tomcat.tc5.JvmRouteFilter] 
JvmRouteFilter.doFilter(): Can't handle clustering where session id is from 
URL. Will skip.
this one seems the origin for the session lost.

2nd error:
anonymous wrote : ERROR [org.jboss.web.tomcat.tc5.session.JBossCacheManager] 
processSessionRepl: failed with exception: java.lang.RuntimeException: 
JBossCacheService: exception occurred in cache put after retry ...
  | ERROR [org.jboss.web.tomcat.tc5.session.JBossCacheManager] 
processSessionRepl: failed with exception: java.lang.IllegalStateException: 
Transaction has terminated

3rd error:
anonymous wrote : ERROR [org.jboss.web.tomcat.tc5.session.JBossCacheManager] 
processSessionRepl: failed with exception: org.jboss.tm.JBossRollbackException: 
Unable to commit, tx=TransactionImpl:XidImpl [FormatId=257, 
GlobalId=2ndServer**//11034, BranchQual=] status=STATUS_NO_TRANSACTION; - 
nested throwable: (org.jboss.util.NestedRuntimeException: ; - nested throwable: 
(org.jboss.cache.lock.TimeoutException: rsp=sender=XXX.XXX.XXX.XXX*:34588, 
retval=null, received=false, suspected=true))

4th error
anonymous wrote : ERROR [org.jboss.web.tomcat.tc5.session.JBossCacheManager] 
processSessionRepl: failed with exception: org.jboss.tm.JBossRollbackException: 
Unable to commit, tx=TransactionImpl:XidImpl [FormatId=257, 
GlobalId=sausset//49434, BranchQual=] status=STATUS_NO_TRANSACTION; - nested 
throwable: (org.jboss.util.NestedRuntimeException: ; - nested throwable: 
(org.jboss.cache.lock.TimeoutException: rsp=sender=XXX.XXX.XXX.XXX*:34588, 
retval=null, received=false, suspected=false))
  | ERROR [STDERR] org.jboss.tm.JBossRollbackException: Unable to commit, 
tx=TransactionImpl:XidImpl [FormatId=257, GlobalId=sausset//49434, BranchQual=] 
status=STATUS_NO_TRANSACTION; - nested throwable: 
(org.jboss.util.NestedRuntimeException: ; - nested throwable: 
(org.jboss.cache.lock.TimeoutException: rsp=sender=XXX.XXX.XXX.XXX*:34588, 
retval=null, received=false, suspected=false))
  | ERROR [STDERR]  at 
org.jboss.tm.TransactionImpl.commit(TransactionImpl.java:415)
  | ERROR [STDERR]  at org.jboss.tm.TxManager.commit(TxManager.java:142)
  | ERROR [STDERR]  at 
org.jboss.tm.usertx.client.ServerVMClientUserTransaction.commit(ServerVMClientUserTransaction.java:126)
  | ERROR [STDERR]  at 
org.jboss.web.tomcat.tc5.session.JBossCacheManager.processSessionRepl(JBossCacheManager.java:406)
  | ERROR [STDERR]  at 
org.jboss.web.tomcat.tc5.session.JBossCacheManager.storeSession(JBossCacheManager.java:214)
  | ERROR [STDERR]  at 
org.jboss.web.tomcat.tc5.session.InstantSnapshotManager.snapshot(InstantSnapshotManager.java:37)
  | ERROR [STDERR]  at 
org.jboss.web.tomcat.tc5.session.ClusteredSessionValve.invoke(ClusteredSessionValve.java:91)
  | ERROR [STDERR]  at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
  | ERROR [STDERR]  at 
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
  | ERROR [STDERR]  at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
  | ERROR [STDERR]  at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
  | ERROR [STDERR]  at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
  | ERROR [STDERR]  at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
  | ERROR [STDERR]  at 
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
  | ERROR [STDERR]  at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
  | ERROR [STDERR]  at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
  | ERROR [STDERR]  at 
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
  | ERROR [STDERR]  at 
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
  | ERROR [STDERR]  at 
org.apache.coyote.t

[JBoss-user] [Management, JMX/JBoss] - Re: namespaces in -service.xml

2005-01-20 Thread GreyDeath
thanks

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862928#3862928

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862928


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: namespaces in -service.xml

2005-01-20 Thread [EMAIL PROTECTED]
conf/xmdesc/org.jboss.deployment.SARDeployer-xmbean.xml

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862927#3862927

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862927


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: startup fails almost immediately with an OutOfMemory

2005-01-20 Thread eiman
Some more info regarding this from the java bug database (bug #5077277 ):

FULL PRODUCT VERSION :
Tested with 1.4.2_03, 1.4.2_04 and 1.3.1_06

A DESCRIPTION OF THE PROBLEM :
As described in Bug 4548840, the ZipFile class maps the zip file into memory in 
current Java releases.

The problem here is that it appears to allocate the memory for the file outside 
of the JVM heap. If the space outside of that heap is not big enough (even if 
there would be enough free space within the heap) an OutOfMemoryError is thrown.

This would cause a user to think that the heap is configured too small instead 
of, as it is, too big. This is needlessly confusing, since the API description 
of OutOfMemoryError speaks only of "memory" but also mentions the garbage 
collector operating on said "memory", making one believe that this might refer 
to the heap only.

I believe this is not so much an implementation issue as one with the available 
documentation.

I would suggest adding a note to the Javadoc for the ZipFile class that an 
OutOfMemoryError thrown by its constructor might not signify a lack of JVM heap 
space, or mentioning such a fact with the documentation for OutOfMemoryError 
itself.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862926#3862926

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862926


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - Modifying session id length

2005-01-20 Thread mouseboks
Is it possible to modify the length of the session ids that jboss generates?

The default session id length of 16 bytes is specified in 
org.jboss.web.tomcat.tc5.session.JBossManager and this class contains a 
setSessionIdLength method, but this appears never to be called.

The method of setting the session id length in stand-alone Tomcat by specifying 
a Manager element in the server.xml file seems to be ignored in the embedded 
Tomcat.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862925#3862925

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862925


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Logging SOAP requests and responses

2005-01-20 Thread nehring
One can use ethereal or tcpdump (or any other network sniffer) to capture and 
look at the SOAP packets on the wire, if that's what you need to do.   It can 
be helpful when working out interop issues related to the SOAP packet structure 
and you aren't in a situation where soapmon or other proxy tool can be used.   
The challenge of using a sniffer is setting filters to trap only the packets 
you're interested in.

r,
Lance

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862924#3862924

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862924


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Is this Possible - multiple domains -> multiple contexts

2005-01-20 Thread [EMAIL PROTECTED]
In this forum we discuss J2EE compliant web services, plese take this to 
JBossWeb.

JBoss3.0.6/Jetty ???

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862923#3862923

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862923


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Bug in ServiceDeployerEjb's portURI

2005-01-20 Thread [EMAIL PROTECTED]
The error message tells you about port-uri in jboss.xml.

The wsdlsoap:address is irrelevant as this will be overridden anyway at deploy 
time.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862922#3862922

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862922


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Configuring beanMapping with JBossWS

2005-01-20 Thread [EMAIL PROTECTED]
beanMapping  is a specialized form of typeMapping ...

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862920#3862920

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862920


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Configuring beanMapping with JBossWS

2005-01-20 Thread [EMAIL PROTECTED]
 is a specialized form of 
which can be specified in ws4ee-deployment.xml in the rare case where the 
standard jaxrpc-mapping.xml is not sufficient.

Replacing axis-ws4ee.jar by a the Apache axis distribution you will loose all 
WS4EE functionality and BasicProfile-1.0 compliance.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862919#3862919

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862919


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Is there a way to get the soap body as raw XML?

2005-01-20 Thread omatzura
Hi!

We have nodatabinding webservices working under jboss 4.0.1. Regarding mapping 
of all operations to one method you could probably do this by handcoding 
operation to method mapping under  in the 
jaxrpx-mapping.xml file

good luck!

/Ole

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862918#3862918

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862918


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Is there a way to get the soap body as raw XML?

2005-01-20 Thread [EMAIL PROTECTED]
Have a look at 


  | /**
  |  * Test unstructured message processing
  |  *
  |  * @author [EMAIL PROTECTED]
  |  * @since 26-Nov-2004
  |  */
  | public class MessageEndpointTestCase extends JBossTestCase
  | 

The wiki page has yet to be written

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862917#3862917

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862917


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: EJB Timer problem on jboss 4.0.1

2005-01-20 Thread lac_raz
I'm using the NoopPersistencePolicy .

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862916#3862916

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862916


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: per service ws4ee-deployment.xml ?

2005-01-20 Thread [EMAIL PROTECTED]
I updated the wiki

http://www.jboss.org/wiki/Wiki.jsp?page=WSTypeMapping

If you need to define mapping on a per port basis, you can do this:


  | 
  | 
  |TypeMapping meta data for marshalling tests 
document/literal. 
  | 
  |   
  | ws4ee-deployment1.xml
  |   
  | 
  |   
  | ws4ee-deployment2.xml
  |   
  | 
  |   
  | ws4ee-deployment3.xml
  |   
  | 
  |   
  | ws4ee-deployment4.xml
  |   
  | 
  | 
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862915#3862915

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862915


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - OutOfMemoryException

2005-01-20 Thread mcarabias
Hi all, i'm running an aplication over jboss3.2.1 tomcat-4.1.24, the vm is the 
j2sdk1.4.1_05. The application is using jms queues for messages, struts and 
hibernate with sqlserver for  persistence. I'm also using quartz scheduler.
The java process starts with aprox 150 mb of RAM.
I'm running the JVM with xms256 and xmx256 opts.
After aproximately one day of running  , i start getting randomely OutOfMemory 
exceptions.
Can anybody give me a hint where to start looking? I'm also using OptimizeIt 
but it didn't give me any clue.

Thanks in advance for your help.
Regards

Matias

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862914#3862914

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862914


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: Custom service for sending emails

2005-01-20 Thread clau25
Thank you all for your answers.

I did it finally using the sleep() method of the Thread. I am not able to use 
EJBTimers yet because we use jboss 3.2.3 and as far as i know there are no 
EJBTimers in this version.

For genman: My service uses JMS for sending the emails. But it has to send a 
message to the queue at a certain specified time. From there, a MDB sends the 
email. So i need to make that check in a loop in service in order to see when 
the time for sending the email is the same as the  current time.

Claudia

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862913#3862913

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862913


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Authentication for webservices

2005-01-20 Thread [EMAIL PROTECTED]
I created an issue in JBossWeb for it

http://jira.jboss.com/jira/browse/JBWEB-11

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862912#3862912

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862912


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Unsupported number of service elements in wsdl document

2005-01-20 Thread [EMAIL PROTECTED]
Yes, I think you are correct. As long as we can uniquely identify the wsdl:port 
that contains the endpoint address we should be able to modify the address.

Please take this to 
http://jira.jboss.com/jira/browse/JBWS

with a sample deployment that allows me to reproduce th e issue.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862911#3862911

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862911


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Just want to create Hello World jboss-4.0.1 Web Service

2005-01-20 Thread [EMAIL PROTECTED]
The wiki is the primary source of information. If you need clarifications 
there, we should provide it.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862910#3862910

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862910


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: DataHandler jaxrpc mapping

2005-01-20 Thread [EMAIL PROTECTED]
Try to use wscompile to generate jaxrpc-mapping.xml

DataHandler is not a valid JAXRPC return type, i.e there is no standard mapping 
for it.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862909#3862909

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862909


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Error while using SoapMessage.saveChanges()

2005-01-20 Thread [EMAIL PROTECTED]
Are you calling into the propratory Axis API, if yes can you avoid that and use 
the standard jaxrpc, saaj API only?



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862908#3862908

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862908


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Logging SOAP requests and responses

2005-01-20 Thread [EMAIL PROTECTED]
The easiest  way is to enable debug logging on org.apache.axis like this


  |
  |   
  |
  | 

This can also be done at runtime via the Log4JService

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862907#3862907

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862907


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: j2ee jar files

2005-01-20 Thread Frito
The client jars can be found within the jboss/client dir. If you don't know 
which one you need, use the jbossall-client.jar. 
With these in your classpath you can start writing/compiling EJBs.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862905#3862905

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862905


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - CMT session EJB and Hibernate Transaction Error

2005-01-20 Thread stucco005
I'm getting the following error in my JBoss 4.0.0 server:

java.lang.IllegalStateException: Transaction has terminated 
TransactionImpl:XidImpl

I am using Hibernate 2.17c with the JBOss 4.0.0 .har deployer service. I have 
followed all of the guidelines in King's Hibernate in Action book. I am using 
the command pattern with a session EJB as it is outlined in the book. The error 
is thrown right BEFORE the call to the EJB is to end. However, I notice that 
the data that was to placed in the DB has been persisted. Anyone seen this 
error or know how to get rid of it?

Thanks 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862901#3862901

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862901


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - EJB Timer problem on jboss 4.0.1

2005-01-20 Thread lac_raz
I have statless session bean which is called from message driven bean and 
imlements TimedObject .

Each time the MDB is called it resets the SB by performing timer.cancel() and 
then timer.initializeTimer() (which contain createTimer(0,interval,name)).

The problem is that each time I reset this timer (can be from any MDB),
the ejbTimeout() is called too .

Does anybody can help me whith that ?




View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862900#3862900

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862900


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - j2ee jar files

2005-01-20 Thread bigben
Hi

where are the j2ee jar files that jboss using for 3.2.x ver?
do i need to use the same when i build my project?

bigben

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862899#3862899

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862899


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Logging SOAP requests and responses

2005-01-20 Thread forkbomb
tcpmon is terrible. I don't want to have to change the port my webservice is 
deployed to and run an external application just to get some basic log output. 
What if I need to see what messages are exchanged in a production deployment?

It turns out that the LogHander does work, but only if a fault is not returned; 
a fault causes nothing to be logged. That's a pretty woeful implementation...

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862897#3862897

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862897


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - CMP BigDecimal to zero decimal numeric field

2005-01-20 Thread tsangcn
Hello,

I am using JBoss 4.0.0 with Jaybird 1.5.5.  My database is Firebird 1.5.1

My table has a zero decimal numeric field defined as NUMERIC(15,0)

A CMP 2.0 entity EJB is defined on the table.
The field is defined as java.math.BigDecimal.

A record is created using the entity bean with no problem.

But when I get the field from the entity bean, it fails with the following 
exception

Caused by: javax.ejb.TransactionRolledbackLocalException: Internal error 
getting results for field member amount; CausedByException is:
Got a java.lang.Long[cl=0, value=550240] while looking for a 
java.math.BigDecimal[cl=24384712]; CausedByException is:
Internal error getting results for field member amount; 
CausedByException is:
Got a java.lang.Long[cl=0, value=550240] while looking for a 
java.math.BigDecimal[cl=24384712]
at 
org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:232)
at 
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:316)
at 
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:149)
at 
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:128)
at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)
at 
org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
at 
org.jboss.ejb.EntityContainer.internalInvoke(EntityContainer.java:514)
at org.jboss.ejb.Container.invoke(Container.java:854)
at 
org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:413)
at org.jboss.ejb.plugins.local.EntityProxy.invoke(EntityProxy.java:44)
at $Proxy425.getExpenseReportPostingVO(Unknown Source)
at 
com.nsl.expenseReport.expenseReport.beans.ExpenseReportPostingExporter.export(ExpenseReportPostingExporter.java:63)
... 87 more

The problem also occurs in JBoss 4.0.1

Any help is appreciated.
Thanks.
C. N.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862896#3862896

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862896


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Class loader isolation problem with Jboss 4.0.0

2005-01-20 Thread boehme
Hi all

I have a problem with a web app. (WAR file). My servlet needs axis 1.2 and 
there are also some web service beans which needs ws4ee. The beans are running 
fine with ws4ee (containing axis 1.1). But the servlet do not access the axis 
1.2 archive contained in the WAR file. This forces errors in the servlet.

We try to use a UCL for the web application, but this doesn?t help. Enabling 
the isolation for the tomcat breaks the web service bean deployment from ws4ee.

So basic question is: How do I enforce the usage of axis 1.2 version deployed 
with the web application servlet?

Regards,
   Harald


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862895#3862895

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862895


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: Error starting jmx-console => cannot find servlet class

2005-01-20 Thread msa
Sorry,

iÂve reposted the message above in Beginners Corner, with more and complete 
information about the problem, and IÂve progress with configuration,

Marcio 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862892#3862892

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862892


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: problem in configuring jboss3.2.3 with ms sqlserver2000

2005-01-20 Thread vjy
Does ur mssql-ds.xml looks like this

anonymous wrote : 
  | 
  | 
  | name
  | 
jdbc:microsoft:sqlserver://:1433;DatabaseName=;SelectMethod=cursor
  | 
com.microsoft.jdbc.sqlserver.SQLServerDriver
  | cc
  | ccc
  | 5
  | 10
  | 5000
  | 15 
  | TRANSACTION_SERIALIZABLE 
  |   
  | 

Did you add the driver class here.
SInce this works good for me.

Hope this helps

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862890#3862890

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862890


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - Re: Jasper won't compile jsp if classpath contains non-jar f

2005-01-20 Thread tsangcn
I have the same problem.

But this does not occurs in JBoss 4.0.0 and before.
It only happends in JBoss 4.0.1

Is this intended?
Or we must not put non-jar files in WEB-INF/lib ?


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862889#3862889

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862889


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: [beginner]error on run jboss

2005-01-20 Thread darranl
anonymous wrote : I don't think this would change anything

The developer releases of JBoss 4 where previews so that developers could start 
to look at the new features that had been implemented for J2EE 1.4.  It was not 
until after another developer release had been made two months later that the 
code was considered ready to start moving towards the production release and 
the release candidate releases started.

I remember at the time there were some conflicts with the JBoss 4 JMX 
implementation and JDK 1.5, I can't remember the details but I think the 
workaround involved removing some classes from the JDK.  The error you have 
reported suggests to me that your problem is along simiar lines.

If you can not download a later version of JBoss do you have a 1.4 version of a 
JDK that you could use instead?

I would still recommend that you move to a production release as soon as you 
can, the availability of support is going to be very limited for an 
intermediate developer release when two production releases have been made 
since.



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862885#3862885

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862885


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [The Lizzard's corner] - Re: Corrupt Forum Database

2005-01-20 Thread legolas
I don't know if it is related, but I seem to be unable to remove my Watched 
Topics.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862884#3862884

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862884


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Can't even deploy a two page html webapp properly!?!?! H

2005-01-20 Thread wonker
"darranl" wrote : Have you tried using 'test/index.html' from your index.html?  
  | 
  | The leading '/' would take you to the root of the server not the root of 
your web application.

Yer sorry forgot to mention that works. 

The thing is I dont like relative links, I prefer absolute!

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862883#3862883

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862883


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Problem with Polish language (jboss 3.2.5)

2005-01-20 Thread tonic48
Hi,
 
I want to create a website in Polish language  I switched charset to
ISO-8859-2 in my jsp and everything seems to be correct.
Unfortunately, there is a problem with saving data into the database (we are 
using DB/400 on iseries AS/400) When I submit from the web
something with polish signs, they are replaced in the database with &#xxx; 
(were xxx is some number) (in
page content),  Do you know any solution? (I tried already
with UTF-8, but nothing helps.
Application is running on JBOSS 3.2.5

Is this jboss problem or should I look somwhere else???



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862882#3862882

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862882


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: namespaces in -service.xml

2005-01-20 Thread GreyDeath
Well, I can't find any configuration for SARDeployer in 4.0.1. Can you give me 
a hint where that will be?

thanks

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862881#3862881

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862881


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: [beginner]error on run jboss

2005-01-20 Thread champion
hi,
I don't think this would change anything, but the reason is I got this version 
on cd and I don't have adsl so.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862879#3862879

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862879


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: ConnectionFactory not bound...

2005-01-20 Thread JJman
Got it working!

It was all about database. 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862878#3862878

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862878


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Testimonials] - Re: Need help convincing company to use Java/J2EE to impleme

2005-01-20 Thread svadu
We have used JBoss basically for controlling satellite broadact equipment for 
digital tv. Usually the problem lied in stability of software runing on 
equipment itself.

There are several factory you want to consider before making your decision:
You are not allowed to use native code in J2EE;
You won't have to deal with most multithreading issues you normally will 
encounter (and you don't use synchronised calles);
If you want to implement on server side on C/C++ (I suggest windows platform?) 
take into account that with high load of your server you might hit cap on 
number of open ports on windows platform (because of that JBoss on linux 500MHz 
linux pc 'outperformed' JBoss on 2.6MHz windows pc).

Correct me if I am wrong.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862877#3862877

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862877


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Problems redeploying EAR file.

2005-01-20 Thread Gzus
If i try to remove all the libs from the .ear/META-INF/lib and from the 
.war/WEB-INF/lib and put them into server//lib instead, there is no problem in 
hotdeploying.

/Morten

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862876#3862876

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862876


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: java.lang.ClassNotFoundException: org.jboss.jaxr.servlet

2005-01-20 Thread msa
Hi,

thanks for response. IÂv extracted sar fiel and now I donÂt have any errors 
in inicialization process of Jboss:


  | 
  | [EMAIL PROTECTED]/usr/local/jboss/jboss-4.0.1RC1/bin]# cat log_run
  | =
  | 
  |   JBoss Bootstrap Environment
  | 
  |   JBOSS_HOME: /usr/local/jboss/jboss-4.0.1RC1
  | 
  |   JAVA: /usr/jdk/instances/jdk1.5.0/bin/java
  | 
  |   JAVA_OPTS: -server -Xms128m -Xmx128m -Dprogram.name=run.sh
  | 
  |   CLASSPATH: 
/usr/local/jboss/jboss-4.0.1RC1/bin/run.jar:/usr/jdk/instances/jdk1.5.0/lib/tools.jar
  | 
  | =
  | 
  | 07:54:21,379 INFO  [Server] Starting JBoss (MX MicroKernel)...
  | 07:54:21,385 INFO  [Server] Release ID: JBoss [Zion] 4.0.1RC1 (build: 
CVSTag=JBoss_4_0_1_RC1 date=200411041143)
  | 07:54:21,387 INFO  [Server] Home Dir: /usr/local/jboss/jboss-4.0.1RC1
  | 07:54:21,388 INFO  [Server] Home URL: file:/usr/local/jboss/jboss-4.0.1RC1/
  | 07:54:21,389 INFO  [Server] Library URL: 
file:/usr/local/jboss/jboss-4.0.1RC1/lib/
  | 07:54:21,393 INFO  [Server] Patch URL: null
  | 07:54:21,394 INFO  [Server] Server Name: default
  | 07:54:21,395 INFO  [Server] Server Home Dir: 
/usr/local/jboss/jboss-4.0.1RC1/server/default
  | 07:54:21,396 INFO  [Server] Server Home URL: 
file:/usr/local/jboss/jboss-4.0.1RC1/server/default/
  | 07:54:21,397 INFO  [Server] Server Data Dir: 
/usr/local/jboss/jboss-4.0.1RC1/server/default/data
  | 07:54:21,398 INFO  [Server] Server Temp Dir: 
/usr/local/jboss/jboss-4.0.1RC1/server/default/tmp
  | 07:54:21,400 INFO  [Server] Server Config URL: 
file:/usr/local/jboss/jboss-4.0.1RC1/server/default/conf/
  | 07:54:21,401 INFO  [Server] Server Library URL: 
file:/usr/local/jboss/jboss-4.0.1RC1/server/default/lib/
  | 07:54:21,402 INFO  [Server] Root Deployment Filename: jboss-service.xml
  | 07:54:21,414 INFO  [Server] Starting General Purpose Architecture (GPA)...
  | 07:54:23,288 INFO  [ServerInfo] Java version: 1.5.0_01,Sun Microsystems Inc.
  | 07:54:23,289 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Server VM 
1.5.0_01-b08,Sun Microsystems Inc.
  | 07:54:23,290 INFO  [ServerInfo] OS-System: SunOS 5.9,sparc
  | 07:54:25,396 INFO  [Server] Core system initialized
  | 07:54:38,385 INFO  [Log4jService$URLWatchTimerTask] Configuring from URL: 
resource:log4j.xml
  | 07:54:38,913 INFO  [WebService] Using RMI server codebase: 
http://DEVVBVAPL01:8083/
  | 07:54:39,704 INFO  [NamingService] Started jndi bootstrap jnpPort=1099, 
rmiPort=1098, backlog=50, bindAddress=/0.0.0.0, Client SocketFactory=null, 
Server [EMAIL PROTECTED]
  | 07:55:05,010 INFO  [Embedded] Catalina naming disabled
  | 07:55:07,109 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on 
http-0.0.0.0-8080
  | 07:55:07,243 INFO  [Catalina] Initialization processed in 1959 ms
  | 07:55:07,244 INFO  [StandardService] Starting service jboss.web
  | 07:55:07,262 INFO  [StandardEngine] Starting Servlet Engine: Apache 
Tomcat/5.0.28
  | 07:55:07,356 INFO  [StandardHost] XML validation disabled
  | 07:55:07,456 INFO  [Catalina] Server startup in 213 ms
  | 07:55:08,201 INFO  [TomcatDeployer] deploy, ctxPath=/ws4ee, 
warUrl=file:/usr/local/jboss/jboss-4.0.1RC1/server/default/tmp/deploy/tmp17570jboss-ws4ee-exp.war/
  | 07:55:11,271 INFO  [TomcatDeployer] deploy, ctxPath=/, 
warUrl=file:/usr/local/jboss/jboss-4.0.1RC1/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war/
  | 07:55:15,926 INFO  [STDOUT] [ jacorb.home unset! Will use '.' ]
  | 07:55:15,927 INFO  [STDOUT] [ File ./jacorb.properties for configuration 
jacorb not found ]
  | 07:55:16,781 INFO  [interceptors] InterceptorManager started with 2 SIs, 2 
CIs and 4 IORIs
  | 07:55:17,240 INFO  [orb] ORB run
  | 07:55:17,762 INFO  [CorbaNamingService] Naming: 
[IOR:002B49444C3A6F6D672E6F72672F436F734E616D696E672F4E616D696E67436F6E746578744578743A312E3200F1020F3139322E3136382E3131302E35300DC800114A426F73732F4E616D696E672F726F6F740600084A414301001C000100010001050100010001010900010501000100140008001A0DC900210054000100240022007E0001000F3139322E3136382E3131302E35300DC90024001F000400030001004400030001001C00010001000105010001000101090001050100010024001F00040003]
  | 07:55:18,446 INFO  [naming] re-Bound name: TransactionService
  | 07:55:18,449 INFO  [CorbaTransactionService] TransactionFactory: 
[IOR:003049444C3A6F72672F6A626F73732F746D2F69696F702F5472616E73616374696F6E466163746F72794578743A312E300200F1020F3139322E3136382E3131302E35300DC800144A426F73732F5472616E73616374696F6E732F460006000

  1   2   >