[JBoss-user] [Installation & Configuration] - Re: How do I configure JBoss for fast JSP development?

2004-06-10 Thread camel
There is a way to do what you want, I've seen Scott Stark tell people how to do it, 
but I don't remember the details (sorry).  Search these message forums for messages 
from him and I think you'll find it.  

One way, (if you're on unix) is to create a symbolic link, but as I said, I think 
there's a better way where you tell JBoss to look at your development directory in 
addition to it's normal deploy directory.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - [JBossManagedConnectionPool] Unable to fill the pool due to

2004-06-10 Thread ashishabrol
Hi I am facing this error for a long time but I am not able to figure out why. Each 
time I get this error I have to restart JBoss.

"[JBossManagedConnectionPool] Unable to fill the pool due to timeout ( 1 [ms]"
These are the contents of my oracle-ds.xml










  
ESPDS
jdbc:oracle:thin:@XXX.XXX.XXX.XXX:1521:esp
oracle.jdbc.driver.OracleDriver
ashish
ashish

org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
5
30
1
1
  
 

I've tried increasing the  value but of no help. Please guide 
me.
Many Thanks.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Error compiling EJB-QL statement 'SELECT OBJECT(b) FROM

2004-06-10 Thread philoso
I have a same problem.
Did you figure out how to solve this?

Thanks

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: How to define user under whick JBoss will run?

2004-06-10 Thread scr1701
Run jboss under any user other than root. If you have an id on the OS, then log in as 
you and bring up an instance. Thats all you need to do.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Relationship (post-table-create)

2004-06-10 Thread jae77
not to hijack, but are you using xdoclet to generate your descriptors? i can't see how 
i can define the post-table-create statement when i create the relationship table.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Apache 2.0.49 + mod_jk2 + JBoss 3.2.4 + Mutual Authenticatio

2004-06-10 Thread jtorres
JBoss version: 3.2.4 (on Windows Server 2003)
Apache version: 2.0.49 (Linux)
Java Version: 1.4.2_04

I have successfully configured Apache to communicate with JBoss with and without SSL.  
With Mutual Authentication setup between the HTTP Clients and Apache2, assuming the 
client is authenticated, access to the resources within JBoss is successful as well.

The Issue:
Within JBoss, I have a JSP that needs access to the client's certificate information.  
I'm using the following code:


  | <[EMAIL PROTECTED] import="java.security.*,java.security.cert.*"%>
  | 
  | <%
  | try {
  |  if (request.isSecure()) { 
  | out.println("Client Request is secureThe following is the DN from your 
certificate:");
  | java.security.cert.X509Certificate[] certs = 
(java.security.cert.X509Certificate[])
  | request.getAttribute("javax.servlet.request.X509Certificate");
  | if (certs != null) { 
  |X509Certificate clientCert = certs[0]; 
  |if (clientCert != null) { 
  |   // Get the Distinguised Name for the user. 
  |   Principal userDN = clientCert.getSubjectDN();
  |   out.println("User DN: "+userDN);
  |   out.println("");   
  |} else {
  |  out.println("Client Cert is null");
  |}
  | } else {
  | out.println("There are no client certificates available");
  | }
  |  } else {
  | out.println("Client request is not secure...no X509Certificate 
to inspect.");
  |  }
  |  
  |  
  | } catch (Throwable t) {
  | out.println("Caught Throwable:");
  | t.printStackTrace();
  | }
  | 
  | %>
  | 

The request.isSecure() returns true; however, no certificate is returned.

Has anyone else encountered this issue?  I'd settle with accessing the certificate 
information via HTTP Headers, but could not find information on this. 

TIA! :)


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - How to get a local rerence to javax.management.MBeanServer?

2004-06-10 Thread guava
Hi,

How do I get a local reference to the MBeanServer? There is a RMIAdapter interface 
which is remote and it won't serve our purpose.

Thanks for any help.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Jboss 3.2.4 WEB-CONSOLE with JVM 1.3

2004-06-10 Thread NeilSchneider
This problem occurs on Wind XP with JVM 1.3.09
The problem occurs both with the 3.2.4RC1-jdk1.3.zip,
and if we re-build the 3.2.4 release (on a Win XP machine which only has 1.3.09).
Everything else seems to work fine.  However when we attempt the access the 
web-console the org.jboss.console.navtree.AppletBrowser cannot be found.

When we download and install the release on a system with JVM 1.4 we don't have any 
problems (so it doesn't look like a policy, or config problem on the system running 
the WebBrowser).

Any help would be appreciated..
Thanks
Neil

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - JBossMQ messages over SSL

2004-06-10 Thread sharris
How do I do it?  There is plenty of info on how to configure JBoss to use SSL for EJB 
invocation, but there is nothing I can find that ties using SSLSockets or an SSL 
defined JRMP invoker to the messaging ILs, or in fact to anything in JBoss MQ. (This 
includes searching twiki, the forums. google and reading the A&D Guide). 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - How to create MBean with non-default constructor?

2004-06-10 Thread guava
Hi,

I have a MBean that needs to be created with constructor that takes arguments. How do 
I do that? Appears to me that default construcor is always called.

Thanks.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - MBean instance control(singleton) in JBoss?

2004-06-10 Thread guava
Hi,

I have a MBean that has a getInstance() static method which return a singleton of the 
class. The constructor is private scope. Is there anyway I can specify this in 
user-server.xml? Or is there other way that I can do this?

Thanks.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: JBoss on IBM Mainframe under z/OS

2004-06-10 Thread dmeany
that should read "...remove the javax.* packages from it..."

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: JBoss 3.2.3 Bundled Tomcat configuration with Oracle 9i

2004-06-10 Thread scr1701
Is your problem solved? If so, ignore this. But have you verified that you have the 
correct sid? And what does the jmx-console tell you about the datasource?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: problem: nukes forgets passwords

2004-06-10 Thread cooper
I guess, could you file a bug report on sourceforge ?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: JBoss on IBM Mainframe under z/OS

2004-06-10 Thread dmeany
Here is some additional information that may be useful setting up a connection to DB2 
under JBoss 3.x on z/OS, using IBM's native driver.  I used these connection 
parameters:

ConnectionURL:   jdbc:db2os390sqlj:
DriverClass: COM.ibm.db2os390.sqlj.jdbc.DB2SQLJDriver

Set these paths (appropriate to your setup) in run.sh so that the driver can find its 
.so (library path) and .ser (looks in regular classpath) files:

-Djava.library.path=/V1R4W/usr/lpp/db2/db2710/lib/ \
-classpath 
"$JBOSS_CLASSPATH":/V1R4W/usr/lpp/db2/db2710/classes/ \

Also, db2j2classes.zip (IBM's JDBC driver classes) goes in 
/roi_web/jboss/server/default/lib, but you may need to remove the java.* packages from 
it since JBoss already has these and they can cause a classloader conflict.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: problem: nukes forgets passwords

2004-06-10 Thread cuoz
I filed bug report 970756

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: ejb-name is acting as jndi name ... driving me insane

2004-06-10 Thread Ensonik
Found it!

Turns out the code and configuration were fine. It was the way in which x-doclet (or 
MyEclipse Enterprise Workbench) setup the files in my project. It put jboss.xml 
outside the META-INF directory (same level), so the container couldn't find it. I put 
the file inside META-INF and I'm a happy camper. 

I'm a newb at the whole EJB thing, so I rely on my tools a bit too much.



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: JBoss Configuration

2004-06-10 Thread frjma
http://localhost:8080/web-console/index.html


change localhost with your server name

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Help please!!!!

2004-06-10 Thread frjma

http://localhost:8080/web-console/index.html

change localhost with your server name or ip address, if jboss if runnin, this url 
will be respond

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: problem with m..n relation and load-groups

2004-06-10 Thread bentins
another piece of info. This problem occues when I use the on-find strategy.

My Jboss is 3.2.2

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Exception at startup: nested throwable DeploymentExcepti

2004-06-10 Thread monocongo
I have tried using several depends in the jboss-service.xml of the SAR file but none 
have worked so far - is there a way to do something like depends=all ?

-James

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Exception at startup: nested throwable DeploymentExcepti

2004-06-10 Thread monocongo
I have been able to workaround this by changing to the PrefixDeploymentSorter and 
prefixing my SAR file name with "1000" -- now the services are sorted with those 
starting with digits being deployed later, when 1000UserManager.sar is deployed all 
other services have already been deployed.

I modified the JBOSS/server/default/conf/jboss-service.xml entry for the URLComparator:
 

  | 
  |   
  |   org.jboss.deployment.scanner.PrefixDeploymentSorter
  | 
  | 

If there are better ways of going about this then please follow up this thread with 
pertinent info.  Thanks in advance.


-James

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Erroneous Error Msg. When Hot-Deploying

2004-06-10 Thread [EMAIL PROTECTED]
hello i added a couple new cmp fields to a couple EJB's, updated all appropriate .xml 
and .java files, etc ... recompiled and deployed.  everything works great.  however 
when i HOT DEPLOY, for some reason the container manager hiccups on these recent 
changes i made ... but only when i hot deploy.  i've double and triple checked all my 
ejbs, cmp.xml files etc ... but like i said everything works fine on startup.

here is the STDERR output: 

15:37:09,126 WARN  [verifier] EJB spec violation:
Bean   : VendorContactEJB
Section: 10.6.2
Warning: The entity bean class must define a get accessor for each CMP field.
Info   : Field: licenseType

15:37:09,126 WARN  [verifier] EJB spec violation:
Bean   : VendorContactEJB
Section: 10.6.2
Warning: The entity bean class must define a set accessor for each CMP field.
Info   : Field: licenseType

15:37:09,136 WARN  [verifier] EJB spec violation:
Bean   : TrxnEJB
Section: 10.6.2
Warning: The entity bean class must define a get accessor for each CMP field.
Info   : Field: checkNumber

15:37:09,187 WARN  [verifier] EJB spec violation:
Bean   : TrxnEJB
Section: 10.6.2
Warning: The entity bean class must define a set accessor for each CMP field.
Info   : Field: checkNumber

15:37:09,217 ERROR [MainDeployer] could not create deployment: 
file:/C:/java/jboss/server/default/tmp/deploy/tmp19834eventLogic.ear-contents/eventLogic.jar
org.jboss.deployment.DeploymentException: Verification of Enterprise Beans failed, see 
above for error messages.
at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:491)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:778)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at sun.reflect.GeneratedMethodAccessor20.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)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
at $Proxy6.deploy(Unknown Source)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:302)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:458)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:212)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:191)
15:37:09,317 ERROR [MainDeployer] could not create deployment: 
file:/C:/java/jboss/server/default/deploy/eventLogic.ear
org.jboss.deployment.DeploymentException: Verification of Enterprise Beans failed, see 
above for error messages.
at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:491)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:778)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at sun.reflect.GeneratedMethodAccessor20.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)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
at $Proxy6.deploy(Unknown Source)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:302)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:458)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:212)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:191)




i'm using 3.2.3, postgres 7.4.2, windows xp, jdk 1.4.1.

anyone seen anything like this?

thanks,

-robin

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

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


--

[JBoss-user] [Nukes User] - Re: problem: nukes forgets passwords

2004-06-10 Thread cuoz
Ok, the password is getting set to an empty string.  Don't know why I didn't try that 
before.  But, it looks like if you don't supply a new password when you update other 
settings, it just stores an empty one.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - unexplained lock in 3.2.4

2004-06-10 Thread bentins
I have my application ear file running without a problem on 3.2.2, I deployed the same 
ear to 3.2.3 and worked. Now to 3.2.4 (which I downloaded today) and it reaches a lock.

The application starts up and on the first transaction it reaches a point where it 
outputs on the console debug message as follows:

23:47:06,360 DEBUG [Task] Executing SQL: SELECT PRIORITY, TASK_NAME, RE_ASSIGNABLE, 
RE_ASSIGNABLE_TO_VL_ID, CREATE_DATE, UPDATE_DATE, END_DATE, TIME_STAMP, EMI_USER_ID, 
STATUS_ID, FLOW_CONTEXT_ID FROM TASK WHERE (ID=?)

Afterwhich the server hangs for a long time until it outputs the following:

23:51:01,668 DEBUG [IdleRemover] run: IdleRemover notifying pools, interval: 45

Notice it was 4 minutes later

There are no exceptions thrown along the way or any other information I found useful.

I would appreciate any ideas as to what could be my problem.

I'm using j2se1.4.2_01 with oracle DB using the thin driver from 9i classes12.

Thnx

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: problem: nukes forgets passwords

2004-06-10 Thread cooper
I will fix that

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: problem: nukes forgets passwords

2004-06-10 Thread cuoz
It's simple to reproduce now.  And yes, the hash in the DB changes.

Login as user, logout, login as admin, change the user's settings, log out, login as 
user fails and db is changed.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: problem: nukes forgets passwords

2004-06-10 Thread cuoz
I just did it again.  Here is what I did:
1.  Logged in as cuoz user, verified that it worked.
2.  Logged out
3.  Logged in as admin user
4.  Edited cuoz user (didn't enter any password changes) and saved the settings.
5.  Logged out
6.  Tried to login as 'cuoz', couldn't.  Retrieve lost password, login, reset 
password, all is fine.

I didn't confirm if the has in the db changed.  I'll try and do that next assuming I 
can reproduce reliably.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: problem: nukes forgets passwords

2004-06-10 Thread cooper
yes without a reproducible scenario it's hard to find out what's going on

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Query method not found:

2004-06-10 Thread robdaemon
I have the same problem in 3.2.4.  My EAR would deploy (and work) great in 3.2.2, but 
now that I've upgraded to 3.2.4, I have this problem.

I've even tried copying an existing finder in that bean and renaming it, and I have 
the same results!

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: How to run an application client deployed inside EAR fil

2004-06-10 Thread [EMAIL PROTECTED]
So that you can deploy the application to a j2ee server. The spec explicitly states 
how one runs a j2ee application client is undefined. I'd be happy to entertain a 
submission that allows the application hosted jar to be used in conjuncation with a 
jboss specific class to launch the application. Frankly I find it more intuitive to 
run the j2ee client app the same as I would any other java app.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: problem: nukes forgets passwords

2004-06-10 Thread cooper
I've never experienced such problem. Do you know how to reproduce it ? is the password 
hash changed in the database ?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - problem: nukes forgets passwords

2004-06-10 Thread cuoz
I've had a recurring issue since pre 1.0 nukes.  Now and again, nukes will lose track 
of a user's password.  I have not been able to attribute it to anything specific.  I 
think it may have something to do with changing certain account settings, or maybe 
having sessions expire.  I really don't know.

Today, it happened with the admin user.  I was logged in as admin, was messing around 
with some settings (email address, timezone, etc.) and left for lunch.  I came back 
after a while, and can't login.  Wrong password.  This is the first time it's happened 
to my admin account.

I've had many occasions where it happens to a normal user, and if I request a new 
password to be emailed to me, it's fine.

Anybody else seen this issue?  It seems like something pretty important to find/fix.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: EJB-QL Finder method error

2004-06-10 Thread pumuckel
Thanks for your fast reply.

The jboss.xml:

  | 
  | 
  | java:/jaas/moduledb2
  | 
  | 
  | UserManager
  | moduledb/UserManager
  | 
  | ejb/UserBean
  | moduledb/UserBean
  | 
  | 
  | ejb/ModuleBean
  | moduledb/ModuleBean
  | 
  | 
  | 
  | Administration
  | moduledb/Administration
  | 
  | ejb/UserBean
  | moduledb/UserBean
  | 
  | 
  | ejb/ModuleBean
  | moduledb/ModuleBean
  | 
  | 
  | 
  | ModuleManager
  | moduledb/ModuleManager
  | 
  | ejb/UserBean
  | moduledb/UserBean
  | 
  | 
  | ejb/ModuleBean
  | moduledb/ModuleBean
  | 
  | 
  | 
  | UserBean
  | moduledb/UserBean
  | 
  | 
  | ModuleBean
  | moduledb/ModuleBean
  | 
  | 
  | RatingBean
  | moduledb/RatingBean
  | 
  | 
  | FieldOfStudyBean
  | moduledb/FieldOfStudyBean
  | 
  | 
  | 
  | 

jbosscmp-jdbc.xml:

  | 
  | http://www.jboss.org/j2ee/dtd/jbosscmp-jdbc_3_0.dtd";>
  | 
  | 
  | java:/MySqlDS
  | mySQL
  | true
  | false
  | 
  | 
  | 
  | 
  | ModuleBean
  | 
  | description
  | 
  | VARCHAR
  | TEXT
  | 
  | 
  | content
  | VARCHAR
  | TEXT
  | 
  | 
  | content
  | VARCHAR
  | TEXT
  | 
  | 
  | literature
  | VARCHAR
  | TEXT
  | 
  | 
  | objectives
  | VARCHAR
  | TEXT
  | 
  | 
  | remarks
  | VARCHAR
  | TEXT
  | 
  | 
  | activityConfirmation
  | VARCHAR
  | TEXT
  | 
  | 
  | learnType
  | VARCHAR
  | TEXT
  | 
  | 
  | link
  | VARCHAR
  | TEXT
  | 
  | 
  | 
  | FieldOfStudyBean
  | 
  | description
  | VARCHAR
  | TEXT
  | 
  | 
  | 
  | RatingBean
  | 
  | comment
  | VARCHAR
  | TEXT
  | 
  | 
  | 
  | 
  | 
  | 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Exception at startup: nested throwable DeploymentExcepti

2004-06-10 Thread monocongo
Something interesting I have noticed -- the exception doesn't occcur when the SAR file 
is not in the deployment directory.  I can load the SAR into the deployment directory 
after JBoss has already started and everything goes well.  So it seems that it is a 
problem with the SAR being present when JBoss is starting up -- if it is absent and 
added after startup then everything works as advertised, but if the SAR is already 
deployed then I get the exception.

Does any of this make sense ?  Is there a workaround ?


-James

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: jboss 3.2.4

2004-06-10 Thread vivkap01
sorry I meant:
On jboss web site the latest GA release I can download is 3.2.3

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Exception at startup: nested throwable DeploymentException

2004-06-10 Thread monocongo
I'm having an exception come up when I start JBoss, the exception trace is listed 
below.  This started happening after I copied a SAR file into my deployment directory. 
 The SAR contains an MBean and a jboss-service.xml.  I can't find anything about this 
using Google, maybe someone here can shed some light on this.  Thanks in advance !


-James



14:58:41,058 ERROR [MainDeployer] could not create deployment: 
file:/C:/jboss-3.2.3/server/default/deploy/UserManager.sar

org.jboss.deployment.DeploymentException: create operation failed for package 
file:/C:/jboss-3.2.3/server/default/deploy/UserManager.sar; - nested throwable: 
(org.jboss.deployment.DeploymentException: - nested throwable: 
(java.lang.reflect.UndeclaredThrowableException))
at org.jboss.deployment.SARDeployer.create(SARDeployer.java:202)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)



14:58:47,407 ERROR [URLDeploymentScanner] MBeanException: Exception in MBean ope
ration 'checkIncompleteDeployments()'
Cause: Incomplete Deployment listing:
Packages waiting for a deployer:
  
Incompletely deployed packages:
[EMAIL PROTECTED] { url=file:/C:/jboss-3.2.3/server/default/deploy/UserManager.sar }
  deployer: [EMAIL PROTECTED]
  status: Deployment FAILED reason: create operation failed for package 
file:/C:/jboss-3.2.3/server/default/deploy/UserManager.sar; - nested throwable: 
(org.jboss.deployment.DeploymentException: - nested throwable: 
(java.lang.reflect.UndeclaredThrowableException))
  state: FAILED
  watch: file:/C:/jboss-3.2.3/server/default/deploy/UserManager.sar
  lastDeployed: 1086893921038
  lastModified: 1086893921028
  mbeans:
]MBeans waiting for classes:
  
MBeans waiting for other MBeans:
  


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - jboss 3.2.4

2004-06-10 Thread vivkap01
Hi
>From where can I download 3.2.4?  On jboss web site the latest GA release I can 
>download is 3.2.2.  But I have read on other forums that 3.2.4 is also available?
Is there any reason why it is not made available from Jboss's site? Is 3.2.3 more 
stable than 3.2.4 RC2?

--Viv

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - jdbc-state-service for postgres

2004-06-10 Thread millerm1
We are looking into upgrading from 3.2.3 to 3.2.4 and the default state-service has 
changed from file based to jdbc, but we are using postgres instead of hypersonic.  
Does anyone already have jdbc-state-service configurations for postgres or any 
databases other than hypersonic?

Thanks,
Mark

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: EJB-QL Finder method error

2004-06-10 Thread gorano
No bug. No workaround. You just have to get the syntax right.

If you want someone to help you out, you have to list the related parts from both 
jboss.xml and jbosscmp-jdbc.xml.

/G

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Exception at startup: nested throwable DeploymentExcepti

2004-06-10 Thread spiritualmechanic
Look into using "depends" in your jboss-service.xml. Your SAR is dependent on 
something that isn't fully started when JBoss is first started.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - Re: Strange Problem with HTTP Invoker Using Tomcat Coyote-HT

2004-06-10 Thread praneel
Having same problem..

Could not catch what exactly thread dump of the server  means and looking around for 
some more great idea to Fix this .

Help appri..

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: How to bind an MBean to JNDI, then access from within ap

2004-06-10 Thread monocongo
This seems to work OK, I can bind the bean to a JNDI name, then access the bean from a 
servlet which looks up the MBean using the JNDI name. 


-James

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: How to run an application client deployed inside EAR fil

2004-06-10 Thread egoldfarb
Thanks.
But I cannot specify JAR file which is inside the EAR file.  I have to uncompress or I 
have to deploy a separate client jar file.   

Why is there the J2EE standard specifying packaging client JARS inside EAR file if you 
cannot run it?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Runnig 2 Servers on the same box ?????

2004-06-10 Thread nuser
Anybody

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Help please!!!!

2004-06-10 Thread try_yess
Someone bring me an example file for running and proving the JBoss services, the file 
that I want is a .class or .java file, please helpme is very important to do a task 
for my job.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: How to run an application client deployed inside EAR fil

2004-06-10 Thread [EMAIL PROTECTED]
There is no helper application. You simply run the client with the client jar in its 
classpath.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - EJB-QL Finder method error

2004-06-10 Thread pumuckel
Hello

I use JBoss-3.2.3.

I have set up a many to many relationship:


  | 
  | student_module_relation
  | 
  | 
student-takes-modules
  | Many
  | 
  | UserBean
  | 
  | 
  | takenModules
  | 
java.util.Collection
  | 
  | 
  | 
  | 
module-is-taken-by-students
  | Many
  | 
  | ModuleBean
  | 
  | 
  | students
  | 
java.util.Collection
  | 
  | 
  | 
  | 

I have also defined a query to get all students which are in a given module:

  |  
  | 
  | findByModule
  | 
  | 
moduledb.ejb.ModuleLocal
  | 
  | 
  | SELECT OBJECT(u) FROM User AS u WHERE  ?1 
MEMBER OF u.takenModules
  | 
  | 

I have not defined a  table mapping for this relation.

When I now invoke this finder method I get the error:

  | 19:53:41,664 INFO  [PropertyMessageResources] Initializing, 
config='org.apache.struts.taglib.html.LocalStrings', returnNull=true
  | 19:53:43,156 ERROR [LogInterceptor] EJBException, causedBy:
  | javax.ejb.FinderException: Find failed: java.sql.SQLException: General error,  
message from server: "Unknown table 't2_u_takenModules_RELATION_TABLE' in where clause"
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCAbstractQueryCommand.execute(JDBCAbstractQueryCommand.java:238)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCAbstractQueryCommand.execute(JDBCAbstractQueryCommand.java:111)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCFindEntitiesCommand.execute(JDBCFindEntitiesCommand.java:38)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.findEntities(JDBCStoreManager.java:579)
  | at 
org.jboss.ejb.plugins.CMPPersistenceManager.findEntities(CMPPersistenceManager.java:311)
  | at 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.findEntities(CachedConnectionInterceptor.java:322)
  | at org.jboss.ejb.EntityContainer.findLocal(EntityContainer.java:613)
  | 

Can anybody help me or is this a JBoss bug, is there a workaround?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - Tomcat5/Jasper2 JSP compiles w/KJC

2004-06-10 Thread user57
Has anoyone had any luck using kjc (http://www.dms.at/kopi/) to compile JSP sources?  
I tried changing the compiler to "kjc", but for some reason the compiled classes did 
not end up in the right place under the servers work dir, instead they unded up beging 
generated out of the current working directory.

I tried a simple Ant compile, using kjc and it did honor the destdir/location 
attribute... which leads me to believe that something with Tomcat5/Jasper2 (or the 
JBoss integration) is slightly tweeked in such a way to cause the kjc compiler to not 
function correctly.

BTW, for those of you who don't know, kjc is a GPL javac replacement... which means 
that you can run JBoss inside of a JRE (with-out tools.jar) and still get JSP 
compliation... assuming that the output directory for compiled classes was correct.

I did try setting the scratchdir to "." and it worked fine... but that is not really a 
solution I can use.

Has anyone run into this before?  Or does anyone know what might be causing this 
problem?

I did some initial tests, looks like kjc is a little faster than sun's javac too, 
though I think that kjc does not compile everything that javac does.

JBoss folks might want to have a look, perhaps you might want to bundle this compiler, 
so you don't need to required a JDK (and the tools.jar hacks in run.sh|bat)... 
assuming that yall can figure out why it is not putting class files in the correct 
location.

Thanks,

--jason

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - How to run an application client deployed inside EAR file?

2004-06-10 Thread egoldfarb
I am having a hard time figuring out how to run an application client jar included 
inside of EAR file. The getting started documentation only shows how to package the 
app, and to run it they execute an ant target which in fact doesn't run the 
application from the EAR but instead directly runs the JAR from the build directory. 

Does JBOSS in fact have a helper class which extracts the client JAR from the EAR and 
runs it, or do we have to deploy client JARs separately from the EAR?

On JONAS, for example, there is a helper jar, so running the application looks like 
this:
java -jar $JONAS_ROOT/lib/client.jar $JONAS_ROOT/apps/autoload/application.ear 
-jarClient appclient.jar

Thanks!

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: ejb-name is acting as jndi name ... driving me insane

2004-06-10 Thread Ensonik
Thanks for the input. I've tried changing the order of the 2 attributes in the 
jboss.xml, but to no avail.

I've tried all the examples I could find by copy-pasting all the code and the problem 
remains.

The MDB is trying to bind itself to a queue named by whatever is found in the 
 node of the  definition. No matter what I do, it completely 
ignores the  queue/MyTestQueue
 in the jboss.xml file and creates it's own queue based on the name in the  
element, and it binds itself to that.



in other words, if I have
Mike

The error message I get is:
21:43:14,067 WARN [JMSContainerInvoker] destination not found: queue/Mike reason: 
javax.naming.NameNotFoundException: Mike not bound 
21:43:14,067 WARN [JMSContainerInvoker] creating a new temporary destination: 
queue/Mike 
21:43:14,077 INFO [TestMessageBean] Creating 
21:43:14,077 INFO [TestMessageBean] Created 
21:43:14,077 INFO [TestMessageBean] Starting 
21:43:14,077 INFO [TestMessageBean] Bound to JNDI name: queue/Mike
21:43:14,077 INFO [TestMessageBean] Started

If the 's value is MikesQueue, the error when starting up is:
21:43:14,067 WARN [JMSContainerInvoker] destination not found: queue/MikesQueue 
reason: javax.naming.NameNotFoundException: MikesQueue not bound 
21:43:14,067 WARN [JMSContainerInvoker] creating a new temporary destination: 
queue/MikesQueue
21:43:14,077 INFO [TestMessageBean] Creating 
21:43:14,077 INFO [TestMessageBean] Created 
21:43:14,077 INFO [TestMessageBean] Starting 
21:43:14,077 INFO [TestMessageBean] Bound to JNDI name: queue/MikesQueue
21:43:14,077 INFO [TestMessageBean] Started

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [J2EE Compliance] - Re: How to run Application Clients Container

2004-06-10 Thread egoldfarb
I am also having a hard time figuring out how to run an application client jar 
included inside of EAR file.  The getting started documentation only shows how to 
package the app, and to run it they execute an ant target which in fact doesn't run 
the application from the EAR but instead runs 

java -jar appclient.jar in the build directory.

Does JBOSS in fact have a helper class which extracts the client JAR from the EAR and 
runs it, or do we have to deploy client JARs separately from the EAR?





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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: How do I configure JBoss for fast JSP development?

2004-06-10 Thread javajosh
"pascalpt" wrote : What I do is that I have a development tree and I have an ant task 
that copies the jsps in an exploded directory. The jsps that have been modified will 
get recompiled on access. 
  | 

Thanks. But this is only slightly better than generating a war file and copying it to 
the right place. I haven't actualy compared timings, but I'm sure that it is not a 
significant improvement. At the very least it takes Ant's JVM several seconds to fire 
up!

Recently I went a step further and defined an Ant builder in Eclipse for my project to 
do just what you are saying. It was significantly slower than a normal javac build, 
albeit tremendously flexible!

Why can't I  have my cake and eat it too? :)

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: nukes 1.1RC1 mysql error

2004-06-10 Thread cuoz
It looks like one of the post create table SQL commands needs to have single quotes 
around the 'false' value.  I was able to insert the record and touch the nukes-bb.ear 
file and voila.  Forums are up & running.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - nukes 1.1RC1 mysql error

2004-06-10 Thread cuoz
I am also testing the RC1 tagged release on mysql.

I grabbed from CVS today.  When I deploy the forums, some rows fail to insert
---
12:40:48,845 INFO  [ForumEJB] Executing SQL: INSERT INTO phpbb_forums (forum_id, 
cat_id, forum_name, forum_desc, forum_status, forum_order,forum_posts, forum_topics, 
forum_last_post_id, prune_next, prune_enable, auth_view, auth_read,auth_post, 
auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, 
auth_vote,auth_pollcreate, auth_attachments) VALUES (0,0,'My forum','This is a sample 
forum',0,10,0,0,NULL,NULL,false,0,0,1,1,1,1,3,3,3,3,0);
12:40:48,847 WARN  [ForumEJB] Issuing sql INSERT INTO phpbb_forums (forum_id, cat_id, 
forum_name, forum_desc, forum_status, forum_order,forum_posts, forum_topics, 
forum_last_post_id, prune_next, prune_enable, auth_view, auth_read,auth_post, 
auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, 
auth_vote,auth_pollcreate, auth_attachments) VALUES (0,0,'My forum','This is a sample 
forum',0,10,0,0,NULL,NULL,false,0,0,1,1,1,1,3,3,3,3,0); failed: java.sql.SQLException: 
Column not found,  message from server: "Unknown column 'false' in 'field list'"
12:40:48,847 ERROR [EntityContainer] Starting failed
org.jboss.deployment.DeploymentException: Error while issuing sql in 
post-table-create; - nested throwable: (java.sql.SQLException: Column not found,  
message from server: "Unknown column 'false' in 'field list'")

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: data, log, tmp directories and -Djboss.server.home.url

2004-06-10 Thread brasse
OK. I have now done some more investigation and looked at some of the source code for 
jboss (ServerConfigImpl.java). What I have come up with is this:

  | *  When I set only jboss.server.home.dir the data, log and tmp directories end up 
where I want them to. But jboss seems to look for my jboss-service.xml file in 
$jboss.server.home.url, which is derived from jboss.home.url and defaults to the jboss 
distribution directory. This is not the behaiviour I want.
  | *  When I set both jboss.server.home.dir and jboss.server.home.url everything 
seems works the way I want it to.
  | 
This solves my problem for now. However, I would still like to know how the 
jboss.xyz.dir and jboss.xyz.url properties are supposed to work and how they relate to 
each other.

I hope that someone will be able to enlighten me on this subject. Thanks in advance!

:.:: mattias

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - How to bind an MBean to JNDI, then access from within applic

2004-06-10 Thread monocongo
I am creating my first MBean and I assume that I need to bind the MBean to a JNDI name 
in order to do lookups in my application code to access the MBean.  My MBean extends 
ServiceMBeanSupport.  Should I have some binding code within the startService() method 
which will bind the MBean to a JNDI name ?  Then I can lookup and use the MBean from 
within my code, right ?

If this is the wrong approach or if there are better ways to go about this then any 
advice would be appreciated.  Thanks in advance.


-James

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: starting jboss as a daemon under suse linux (8.1)

2004-06-10 Thread darranl
If you are just starting it from the console

nohup ./run.sh &

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


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

2004-06-10 Thread try_yess
How can I do, if I want to see the complete confuguration of Jboss. 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - jndi lookup/referencing question

2004-06-10 Thread nano_uhe
Hello,

   I have a Servlet/Applet, which, changes very seldom that I worked on about a year 
ago and maintain. Usually when I develop the beans that I reference do not change, but 
in this case my servlet receives data from another bean which is frequently updated by 
another developer in our organization. A problem that we've been running into, is that 
every time he updates his bean, my Servlet breaks. All I have to do to fix it is to 
re-deploy it, so I'm fairly certain that there must be a subtle  problem with either 
the way I'm looking this bean up or with our jboss configuration. I can't find 
anything written on this, so I'm sure it must be a quirk with our stuff. Does anyone 
have any ideas about this?

Here's how I'm doing the lookup in the servlet:
   public void init() throws ServletException
   {
  try
  {
 jndiContext = new InitialContext();
 System.out.println("jndiContext="+jndiContext);
 Object ref  = jndiContext.lookup("java:comp/env/ejb/Jdbcnan");
 jdbcboardhome = (JdbcboardHome) PortableRemoteObject.narrow(ref, 
JdbcboardHome.class);
 jdbcboard = jdbcboardhome.create();
  }
  catch(Exception e)
  {
e.printStackTrace();
  }
   }


Here's my web.xml



VplAppServlet
cae.VPL.VplAppServlet


VplAppServlet
/VplAppServlet


  home.jsp


ejb/Jdbcnan
Session
cae.jdbcboard.JdbcboardHome
cae.jdbcboard.Jdbcboard

   
  



And here is my jboss-web.xml:


ejb/Jdbcnan
Jdbcboard



Thank You,

~Nano

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Runnig 2 Servers on the same box ?????

2004-06-10 Thread nuser
Hi,
Thanks for your help.

1. By the way, exactly which files should I re-configure in JBoss. (Tomcat is running 
with the default config). 
2. What config values should I change to safely deploy both servers without any clash.

Thanks,
Nuser.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: starting jboss as a daemon under suse linux (8.1)

2004-06-10 Thread borg
btw: i want to run jboss on my root-server in the internet and the problem is, that 
when i close the console-window on my local pc from which i connected to my 
root-server and in which i started jboss on the server the server automatically shuts 
down.
if there is another way than starting jboss as a daemon let me know, it doesn't matter 
to *how* i get jboss to run all the time!

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - starting jboss as a daemon under suse linux (8.1)

2004-06-10 Thread borg
hi,

i'd like to have jboss started as a daemon and therefore googled a lot and also 
searched this forum, but i only find scripts for redhat :(
can you tell me how to achieve this under suse linux 8.1?

thx in advance,
boris

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - DataSource API's from JBoss

2004-06-10 Thread nacho2004
Have Jboss some API's to work with datasource ? 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Could not configure MDB with durable subscription on 3.2

2004-06-10 Thread StephaneNicoll
Ok, checked a little bit further I forgot to define the security conf of my topic.

Problem solved.

Regards,

Stephane

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - problem with managing html

2004-06-10 Thread cuoz
Running tagged nukes grabbed from CVS today, linux, postgresql

Here's my use case:
1.  Created a news story and set the image to 'images/news/opensource.png'
2.  Tried to use the html manager to upload an image file for that path
3.  When I created the new page, I chose 'file' for the type

When I tried to upload the image file, nukes threw an exception and I received a http 
500 error shown below:

javax.servlet.ServletException: Filter execution threw an exception
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at org.jboss.nukes.servlet.CompressFilter.doFilter(CompressFilter.java:113)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at 
org.jboss.nukes.servlet.DatabasePollerFilter.doFilter(DatabasePollerFilter.java:88)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at 
org.jboss.web.tomcat.security.JBossSecurityMgrRealm.invoke(JBossSecurityMgrRealm.java:220)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at 
org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at 
org.jboss.web.tomcat.tc4.statistics.ContainerStatsValve.invoke(ContainerStatsValve.java:76)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2417)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at 
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:65)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:577)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:197)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:781)
at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:549)
at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:605)
at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:677)
at java.lang.Thread.run(Thread.java:534)

Vie

[JBoss-user] [Management, JMX/JBoss] - Startup classes deployment.

2004-06-10 Thread bnadesan
Hi,

I have the following questions regarding mbeans/startup classes

1. When I develop a startup class in JBoss, should the startup class be deployed 
separately from the application .ear file, or should it be deployed in a .sar file.

2. If the startup classes are deployed separately can any of those classes have 
references to the classes within the .ear file.

Actually I'm in a learning phase of JBoss and currently using JBoss 3.2.3, Any sort of 
tips regarding these question will be appreciated.

Regards..
Binu Nadesan

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: CMP EJB cant bind MS SQL Datasource

2004-06-10 Thread kabkhan
Is your jboss-cmp.xml file actually included in the META-INF directory of your ejb.jar?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: DeploymentCache - Clarification

2004-06-10 Thread [EMAIL PROTECTED]
There is not use for this. It was an experiment that never went anywhere.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: Configuring a non trusted datasource

2004-06-10 Thread jeeads
Scott,
Like surfing the net, asking the question is the biggest part of getting the right 
answer.  Let me layout what I am trying to achieve.  I have a data federation system 
that is driven by the JBoss container.  My system consists of a database registration 
process that uses XML and XSLT to transform the XML database schema produced by Dr. 
Lauxs' modified
dbaccessor package into entity beans, interfaces, deployment descriptors, session test 
bean and a test client.  The logical ontology or logical vocabulary is mapped to the 
federated databases via vocabulary descriptors, XML, mapping descriptors, XML, the 
entity bean interfaces and XSLT transformation, which produce session beans used at 
the session facade level.  I have moved the business delagate level to span the 
network boundary between the client and app sever so I can achieve a generic 
interface.  One of the design goals was to have a static footprint for the api.  The 
system can accomodate many different business domains.  Now to the question:   I have 
a metadata database that is used to configure the system, it handles user validation 
at the app server level, datasources available, acitivity logging, site parameters, 
remote datasource authentication, remote datasource connection information etc.  When 
logging onto the system the client goes through SRP to authenticate and authorize at 
the app server.  Once authorized onto the app server the client can access any of the 
federated datasources to which he has access.  To access a federated datasource I have 
written a login module that will determine the connection information and the 
authentication type from the metadata database and set the username and password to 
the configured username and password for the authentication type specified for the 
datasource.  Is this how I should be doing this?  Since I am already logged into the 
app server when I try to run this login module through a security realm setup for the 
specific datasource I get a security authorization error?  How can I dynamically 
retrieve and use the configured information for the given datasource when an entity or 
session bean that has been setup for this security realm is accessed, if it is not 
already pooled? Does JBoss handle this type of dynamic connection for datasources?  Is 
there an example anywhere?  Have I just missed the point totally?

Thanks
Jerry

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: JBoss-3.2.4 and commons-logging.jar bug (?!)

2004-06-10 Thread darranl
Yes you are right, I think that your deployment is buggy.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Dependency check not working for HA Singleton MBean

2004-06-10 Thread twwwt
Hello!

Based on JBoss 3.2.4 I'm developing a HA singleton MBean which is packed together with 
some Entity Beans to a SAR laying in "deploy-hasingleton". Because of the Entity Beans 
dependency to a datasource I added:

jboss.jca:service=LocalTxCM,name=fupDS

to jboss-service.xml. But every time JBoss starts it does not wait for the datasource 
being deployed before deploying the Entity Beans. On the console I see these 
exceptions (excerpt):


  | 16:50:47,484 INFO  [EjbModule] Deploying ProcessEJB
  | 16:50:47,765 WARN  [EjbModule] Could not load the 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor interceptor for this 
container
  | javax.management.InstanceNotFoundException: 
jboss.jca:service=CachedConnectionManager is not registered.
  | at 
org.jboss.mx.server.registry.BasicMBeanRegistry.get(BasicMBeanRegistry.java:462)
  | at org.jboss.mx.server.MBeanServerImpl.getAttribute(MBeanServerImpl.java:426)
  | 
  | ...
  | 
  | 16:50:48,953 INFO  [ServiceConfigurator] Problem configuring service 
FuP:service=ProcessManagementService
  | org.jboss.deployment.DeploymentException: Exception setting attribute 
javax.management.Attribute: name=ConnectionManager 
value=jboss.jca:service=LocalTxCM,name=fupDS on mbean 
FuP:service=ProcessManagementService; - nested throwable: 
(javax.management.AttributeNotFoundException: not found: ConnectionManager)
  | at 
org.jboss.system.ServiceConfigurator.setAttribute(ServiceConfigurator.java:490)
  | at org.jboss.system.ServiceConfigurator.configure(ServiceConfigurator.java:375)
  | at 
org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:160)
  | at org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:114)
  | at org.jboss.system.ServiceController.install(ServiceController.java:198)
  | 
  | ...
  | 
  | 16:50:52,390 ERROR [EntityContainer] Starting failed 
jboss.j2ee:jndiName=de.fup.server.ejb.entity.ProcessHome,service=EJB
  | org.jboss.deployment.DeploymentException: Error: can't find data source: 
java:/fupDS; - nested throwable: (javax.naming.NameNotFoundException: fupDS not bound)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCEntityBridge.init(JDBCEntityBridge.java:143)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.initStoreManager(JDBCStoreManager.java:428)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.start(JDBCStoreManager.java:365)
  | at 
org.jboss.ejb.plugins.CMPPersistenceManager.start(CMPPersistenceManager.java:147)
  | at org.jboss.ejb.EntityContainer.startService(EntityContainer.java:337)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:271)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:221)
  | 
  | ...
  | 
  | 16:51:18,656 INFO  [fupDS] Bound connection factory for resource adapter for 
ConnectionManager 'jboss.jca:service=LocalTxCM,name=fupDS to JNDI name 'java:/fupDS'
  | 
  | 


Any help greatly appreciated.

Thanks,
Thorsten

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Query method not found:

2004-06-10 Thread millerm1
Are the two methods:

and here is my local object.

public MainProjectLocal findByPrimaryKey(Integer pk)throws FinderException;

public Collection findByProjectNames(String project_name) throws FinderException;

on your loacl object like you said or did you mena on your local home object, because 
they need to be on the local home object.

Mark

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET & SOAP] - Re: non-primitive object as method param

2004-06-10 Thread jasong
Sorry errors in my last post...

anonymous wrote : 
  | Hi, 
  | I looked at the wsdl that jboss-net creates and it does not denote anywhere that 
the parameter should be nillable.  I assumed it would figure this out itself - is 
there a way to denote this in xdoclet or something?
  | 

This looks like a bug, there is no way to denote this in xdoclet becuase the 
EJBProvider generates the type information at runtime. I would try the 3.2.4 release 
candidate, and open a bug if it still happens

anonymous wrote : 
  | Also, does anyone have a way to generate client code without deploying the web 
service first to generate the wsdl. 
  | 

No, since the EJB provider is generated at runtime, there is no way to do this.  If 
this really is a problem, you may want to write the webservice yourself as the 
standard rpc provider, and just call your session bean methods

-Jason

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET & SOAP] - Re: non-primitive object as method param

2004-06-10 Thread jasong
"khelenek" wrote : Hi, 
  | I looked at the wsdl that jboss-net creates and it does not denote anywhere that 
the parameter should be nillable.  I assumed it would figure this out itself - is 
there a way to denote this in xdoclet or something?
  | [/quate]
  | 
  | This looks like a bug, there is no way to denote this in xdoclet becuase the 
EJBProvider generates the type information at runtime. I would try the 3.2.4 release 
candidate, and open a bug if it still happens
  | 
  | anonymous wrote : 
  |   | Also, does anyone have a way to generate client code without deploying the web 
service first to generate the wsdl. 
  |   | 
  | 
  | No, since the EJB provider is generated at runtime, there is no way to do this.  
If this really is a problem, you may want to write the webservice yourself as the 
standard rpc provider, and just call your session bean methods
  | 
  | -Jason

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - JBoss-3.2.4 and commons-logging.jar bug (?!)

2004-06-10 Thread domosi
I've placed the latest commons-logging.jar into the root of an .ear 
application archive  file and registered it with the META-INF/application.xml file

I dont know why, but this configuration causes strange deployment problems:

java.lang.NoSuchMethodException: 
org.apache.commons.modeler.BaseModelMBean.setDocBase(java.lang.String))
at 
org.jboss.mx.server.ReflectedDispatcher.handleInvocationExceptions(ReflectedDispatcher.java:91)
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 $Proxy17.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:367)
at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher




Is there anybody facing the same problem?





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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: CMP EJB cant bind MS SQL Datasource

2004-06-10 Thread littlewing68
I did an error with the syntax. Sorry. But the name of the xml file containing 
informations about datasource is mssql.ds.xml.



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: SQL not generating properly

2004-06-10 Thread degnbol
I have the same problem. I also don't have a primkey-field in the @ejb.bean tag, but 
that is because I have a composite key and a primary key class identified with 
@ejb.pk. "primkey-field" does not work with composite keys. The key fields themselves 
are tagged with @ejb.pk-field.

I don't know whether the problem has anything to do with the absense of 
"primkey-field", but it seems like a plausible theory. It ought to work, and I am 
pretty sure this is a bug in the SQL generation.







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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: CMP EJB cant bind MS SQL Datasource

2004-06-10 Thread kabkhan
Maybe try renaming mssql.xml to mssql-ds.xml?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - CMP EJB cant bind MS SQL Datasource

2004-06-10 Thread littlewing68
Hi all,
When my CMP EJB communicates with MS SQL Server 2000, they seem to use the default 
datasource which is configured for HSQLDB instead of the MS SQL datasource. 

On the other hand, when my sessions beans communicates with this datasource, 
Everything works fine

I m working with :
  | JBOSS 3.2.3
  | J2SE 1.4.2-04
  | MS SQL SERVER 2000
  | JDBC DRIVER: Microsoft SQL Server 2000 Driver for JDBC SP2 Version 2.2.0037 ( 
August 2003 )
  | 
  | "My mssql.xml" wrote : 
  |   | 
  |   |   
  |   | DirectoryDS
  |   | 
jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=directory
  |   | com.microsoft.jdbc.sqlserver.SQLServerDriver
  |   | sa
  |   | 
  |   |   
  |   | 
  | 
  | "My jbosscmp-jdbc.xml " wrote : 
  |   |
  |   |  java:/DirectoryDS
  |   |  MS SQLSERVER2000
  |   |
  |   | 
  |   |
  |   | 
  |   |  
  |   | [...]
  |   | 
  | 
  | Thanks for helping
  | 
  | Alexandre Touret
  | 
  | 
  | 
  | 

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - problem with m..n relation and load-groups

2004-06-10 Thread bentins
The spec doesn't allow to specify that a cmr using a relation table be associated in a 
group. (actually because it's not a foreign-key relation)

I load a bean, where the eagerload loads a group. During the same transaction I try to 
access the CMR field with the relation table. what I get is an exception from jboss 
classes about invocation. I checked, the seslect does not even run. I don't understand 
this exactly but I think that for some reason since I load only a subset using a 
group, it doesn't register that cmr field and thus can not invoke it.

How do I get the CMR field with a relation table to load with all the rest of the load 
group

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: jboss-3.2.3 can't run right at win2003?

2004-06-10 Thread sztime_lzy
Thank you,Joachim.You're right!

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Deployment descriptor writing tools

2004-06-10 Thread ghoyle
I am using netbeans, so I guess i will have to install eclipse and give it a try.
Are there any for netbeans? or some standalone deploy tools for jboss? similar to 
Sun's J2EE deploy tool program?



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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Could not configure MDB with durable subscription on 3.2

2004-06-10 Thread StephaneNicoll
I have 3 durable subscription if I check the JMX object for my topic

opic,kserver/EventTopic,b2bOutboundPK.b2bOutboundPKDurableSubscriber,true,0,0,76,76,-
Topic,kserver/EventTopic,b2bOutboundParcelHistory.b2bOutboundParcelHistoryDurableSubscriber,true,0,0,125,125,-
Topic,kserver/EventTopic,b2bOutboundSignature.b2bOutboundSignatureDurableSubscriber,true,0,0,2,2,-

What am I missing?

Regards,

Stephane

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Could not configure MDB with durable subscription on 3.2.3

2004-06-10 Thread StephaneNicoll
Hello,

I read the mini tutorial on the forum
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=45285

But it does not work. I have 3 MDBs with a durable subscription on a Topic. Example 
for one of them

My ejb-jar:


 
 Blah
 ejb/kserver/ParcelHistoryExportMDB  
 com.blah.ParcelHistoryExportMDB
 Container
 Auto-acknowledge
 
javax.jms.Topic
Durable
 


My jboss.xml


 ejb/kserver/ParcelHistoryExportMDB 
topic/kserver/EventTopic
 b2bOutboundParcelHistory
 10moioui
 b2bOutboundParcelHistory 
b2bOutboundParcelHistoryDurableSubscriber   
  jboss.mq.destination:name=kserver/EventTopic,service=Topic
  


My jbosmq-state.xml


  b2bOutboundParcelHistory
  10moioui


[...]


  b2bOutboundParcelHistory


[...]


  b2bOutboundParcelHistory
  b2bOutboundParcelHistoryDurableSubscriber
  kserver/EventTopic
  eventType = 'ttcode'



Got the following exception on startup

5:53:35,896 WARN  [plugins.jms.JMSContainerInvoker] JMS provider failure detected:
javax.jms.JMSSecurityException: Connection not authorized to do durable subscription 
on topic: kserver/EventTopic
at 
org.jboss.mq.security.ServerSecurityInterceptor.subscribe(ServerSecurityInterceptor.java:142)
at 
org.jboss.mq.server.TracingInterceptor.subscribe(TracingInterceptor.java:816)
at org.jboss.mq.server.JMSServerInvoker.subscribe(JMSServerInvoker.java:297)
at org.jboss.mq.il.jvm.JVMServerIL.subscribe(JVMServerIL.java:315)
at org.jboss.mq.Connection.addConsumer(Connection.java:1082)
at org.jboss.mq.SpyConnectionConsumer.(SpyConnectionConsumer.java:73)
at 
org.jboss.mq.SpyConnection.createDurableConnectionConsumer(SpyConnection.java:115)
at 
org.jboss.ejb.plugins.jms.JMSContainerInvoker.innerCreate(JMSContainerInvoker.java:586)
at 
org.jboss.ejb.plugins.jms.JMSContainerInvoker.startService(JMSContainerInvoker.java:674)
at 
org.jboss.ejb.plugins.jms.JMSContainerInvoker$ExceptionListenerImpl.onException(JMSContainerInvoker.java:1173)
at 
org.jboss.ejb.plugins.jms.JMSContainerInvoker$1.run(JMSContainerInvoker.java:686)


Any idea? 

Regards,

Stephane




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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Deployment descriptor writing tools

2004-06-10 Thread darranl
Have you looked at XDoclet?  JBoss-IDE uses XDoclet so that may be a good starting 
point for you.

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Deployment descriptor writing tools

2004-06-10 Thread ghoyle
Are there any good (free) tools to help write deployment descriptors for jboss, 
specifically looking for ones to write the ejb-jar.xml files, so I can specify 
relationships between entites etc and  to create the jaws.xml files if possible.

Thanks,

Geeoff



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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: what is the performance hit due to CMT?

2004-06-10 Thread chalakanth
Sorry.  here is the configuration we are on.  

JBoss 3.2.3,
SQL Server 8.00.194
JBoss' default transaction manager.  

thanks.  



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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Changing a Datasource at runtime

2004-06-10 Thread nacho2004
I read a note from Alexey Loubyansky on http://www.junlu.com/msg/36487.html but I 
can't get some other examples.
Could you give me an examples of your DataSource Factory ?
Thanks in advance!!!

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - what is the performance hit due to CMT?

2004-06-10 Thread chalakanth
We are considering switching a very large number of Stateless Session Beans from BMT 
to CMT.  

I would assume that inherently, CMT is slower than BMT.  But by how much? Are there 
any numbers available for JBoss?   

Any help is appreciated. 

thanks.  

Should I have posted this in the JCA forum?  

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Unique constraints and surrogate keys

2004-06-10 Thread pgb
"loubyansky" wrote : What is the problem using entity-command in defaults? Have a look 
at standardjbosscmp-jdbc.xml. It follows the same dtd.
  | 

I really don't know what the problem is.
I tried:

  |   java:/OracleDS
  |   Oracle8
  |   false
  |   false
  |   true
  |   foreign-key
  |   
  | 
besides and it doesn't work.

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Migrating from Oracle 9iAS to JBoss

2004-06-10 Thread Padma
No, We have not used any oracle specific issues. But we have used some value objects 
which are used in both web tier and middle tier. Oracle 9iAS doesn't create any war 
and ear files. so, we do not know where to place these value objects. 

Padma.

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET & SOAP] - Re: Cannot deserialise JavaBeans

2004-06-10 Thread bensorek
I had the same problem, but i didn't hack the wsdl.
However in the client code the qname i would use for the SimpleDto is: 
http://com/cdog/service/SimpleService:SimpleDto
and not 
SimpleService:SimpleDto.
For some reason that worked!

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET & SOAP] - Re: SOAP Monitor

2004-06-10 Thread bensorek
Hi,
You have to modify the axis-config.xml file. 

Add the following handler:


  | 
  | 
  | http://tempuri.org/wsdl/2001/12/SOAPMonitorService-impl.wsdl"/>
  | 
  | 
  | 
  | 

Then in the  section, add the following to BOTH the requestFlow  and responseFlow:

  | 
  | 

and finally add the following:


  | 
  | 
  | 
  | 
  | 
  | 

I am assuming that you set up your servlets properly since you can see the applet!


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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Changing a Datasource at runtime

2004-06-10 Thread jbaker_softcomms
I have the same requirement/problem at the moment. I cannot specify the datasource in 
the deployment descriptor of the EJBs because it varies depending on the account being 
operated on. Accounts are added/removed occasionally and to redeploy the app every 
time is just crazy. A number of users have access to the each account (DB).

In my current experiment I have created a data source factory which creates custom 
datasources which maintain their own pool but this seems to be creating some strange 
problems of it own and seems to confuse jboss transaction manager. I am about to try 
another approach and will post here if any more successful..

Please if anyone else has already done this let me know.

I need to be able to create/destroy/access new datasources on the fly.


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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Error checking if entity exists

2004-06-10 Thread littlewing68
And when I set the @jboss.unknown-pk  as class="java.lang.Object"
I have the same error than previously

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Error checking if entity exists

2004-06-10 Thread littlewing68
When I set the primkey class as java.lang.Object, I obtain an NotSerializableException 
because Object is not serializable...

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: ejb-name is acting as jndi name ... driving me insane

2004-06-10 Thread vektom
Hmm seems I was a little bit too quick there...your JNDI name doesn't show up in your 
XML so that would not be it.

What strikes me is that in your jboss.xml the configuration-name element is placed 
after the destination-jndi-name element, whereas in all the examples I have ever seen 
the order of those 2 is just the opposite. I don't have the DTD at hand so I cannot 
confirm that the order is actually important, but you could try to switch them. 

Another thing in that respect is I would start the destination name with a lowercase 
(so that would be queue/myTestQueue)

Just guessing of course, but then again what to do if everything appears to be correct 
? ;-)

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: ejb-name is acting as jndi name ... driving me insane

2004-06-10 Thread vektom
I have set up several apps using MDBs without any problem and when I compare my 
settings to yours (XML files) I don't see any abnormalities in your settings. 

One noticeable difference is that I don't provide a JNDI name for my MDBs: I never 
address them directly so there is no need for me to do that. In fact, that's the point 
of using MDBs in the first place. 

If you really need it I would suggest to use ejb/MyTestbean instead of jms/MyTestBean


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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - Re: JBoss and UTF Character encoding

2004-06-10 Thread bardevjen
I'll try to help you out hereno need to be grumpy :-)

Look at your server.xml under jboss/default/server/deploy/tomcatxxx.sar/

Be sure to add the parameter URIEncoding and set it to UTF8.



I hope this helps!

Cheers,
Bard

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

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


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


  1   2   >