[JBoss-user] [Performance Tuning] - Re: Serious performance issue using Oracle 9.2.0.4 and RAC/T

2004-04-14 Thread mathewdenis
This is due to less Internet bandwidth of ISP. Increase the Internet bandwidth to 
avoid this problem. If Internet bandwidth goes down all the request gets qued up and 
eat all the virtual memory of the server.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: configure oracle 9.2.0.4 datasoure on Jboss error

2004-04-14 Thread jackytang
I also try to use oracle-ds.xml to replace oracle-xa-ds.xml file. And I make change of 
files as below and got the same error message

---oracle-ds.xml--

  local-tx-datasource
jndi-nameDefaultDS/jndi-name
connection-urljdbc:oracle:thin:@172.30.1.6:1521:geo3pl/connection-url
driver-classoracle.jdbc.driver.OracleDriver/driver-class
user-namenhweb/user-name
29178022

exception-sorter-class-nameorg.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter/exception-sorter-class-name
 
  /local-tx-datasource



---oracle-ds.xml--

** 
--jobss-service.xml-
!--  -- 
!-- Transactions -- 
!--  -- 
!-- The configurable Xid factory. For use with Oracle, set pad to true -- 
mbeancode=org.jboss.tm.XidFactoryname=jboss:service=XidFactorytrue 


--jobss-service.xml-

** 
--login-config.xml--- 
application-policy name = OracleDbRealm 

login-module code = org.jboss.resource.security.ConfiguredIdentityLoginModule 
flag = required 
module-option name = principalnhweb/module-option 
module-option name = userNamenhweb/module-option 
module-option name = password29178022/module-option 
module-option 
name=managedConnectionFactoryNamejboss.jca:service=LocalTxCM,name=OracleDS/module-option
 
/login-module 

/application-policy 
--login-config.xml---

**

--standardjbosscmp-jdbc.xml-- 
!-- = -- 
!-- -- 
!-- Standard JBossCMP-JDBC Configuration -- 
!-- -- 
!-- = -- 

!-- $Id: standardjbosscmp-jdbc.xml,v 1.39.2.34 2003/11/25 01:48:16 ejort Exp $ -- 

jbosscmp-jdbc 


java:/OracleDS 
datasource-mappingOracle/datasource-mapping 

/jbosscmp-jdbc 
--standardjbosscmp-jdbc.xml-- 

 
--standardjaws.xml--- 
!-- = -- 
!-- -- 
!-- Standard Jaws Configuration -- 
!-- -- 
!-- = -- 

!-- $Id: standardjaws.xml,v 1.30 2002/06/27 19:26:28 dsundstrom Exp $ -- 


java:/OracleDS 
type-mappingOracle/type-mapping 


--standardjaws.xml-
 

make change of oracle-jdbc2-service.xml in the JBOSS_HOME\server\default\deploy\jms 
directory 

--oracle-jdbc2-service.xml--- 
mbean 
code=org.jboss.mq.pm.jdbc2.PersistenceManagername=jboss.mq:service=PersistenceManager
 
depends optional-attribute 
name=ConnectionManagerjboss.jca:service=LocalTxCM,name=OracleDS 

--oracle-jdbc2-service.xml- 
** 



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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: j_security_check Struts

2004-04-14 Thread ant
Your question isn't stupid, I was dealing with the same problem.

anonymous wrote : Is j_security_check a function/module/method/page/whatever in 
tomcat? Or is it some slight of hand that I am not understanding?
The action j_security_check is part of the form-based authentication and thus is part 
of the Servlet spec.

anonymous wrote : How do I map it in the struts-config.xml file?
Not at all. The target j_security_check is handled completely within the Webcontainer.

anonymous wrote : What action class would I point the mapping to?
You cannot catch this event.

anonymous wrote : I saw one place where it said not to use the struts tags for the 
form elements and the struts you wouldn't have to bother with the mapping. But when I 
do this 400 error code, invalid path.
When using html:form action=j_security_check ... you have to provide the 
appropriate mapping otherwise struts will complain about the action. But the 
configured action gets never called, because the action is handled internally.
Furthermore I believe, that struts converts the action j_security_check to 
/j_security_check. This is definitely wrong.
So, it is better to use form action=j_security_check 

I hope this helps.


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: configure oracle 9.2.0.4 datasoure on Jboss error

2004-04-14 Thread jackytang
I have tried everthing I can, finally I copy the oracle-jdbc2-service.xml again from 
/doc/examples/jms then there is no more error message.
So I think the problem is that I have edited the file of oracle-jdbc2-service.xml by 
the wordpad and save it as text style.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - What are all the VirtualHost attributes in JBoss??

2004-04-14 Thread kondetisree
Hi All..

Please let me know the Virtual Host  attributes list in JBoss.

In weblogic we have attributes under VirtualHost like :

AcceptContextPathInGetRealPath
AuthCookieEnabled
Charsets
ChunkedTransferDisabled
ClusteringEnabled
DefaultServerName
DefaultWebApp
DeploymentOrder
FrontendHTTPPort
FrontendHTTPSPort
FrontendHost
HttpsKeepAliveSecs
KeepAliveEnabled
KeepAliveSecs
LogFileBufferKBytes
LogFileFlushSecs
LogFileFormat
LogFileName
LogRotationPeriodMins
LogRotationTimeBegin
LogRotationType
LogTimeInGMT
LoggingEnabled
MaxLogFileSizeKBytes
MaxPostSize
MaxPostTimeSecs
Name
Notes
PostTimeoutSecs
SendServerHeaderEnabled
SingleSignonDisabled
Targets
Type
URLResource
UseHeaderEncoding
UseHighestCompatibleHTTPVersion
VirtualHostNames
WAPEnabled

...

So in that similar way I want to find out for JBoss.
Pls. guide me.

Regards,
Srikanth Kondeti

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: JBoss Shutdown

2004-04-14 Thread xsam_jboss_user
I too see a similar problem. After running script shutdown.sh -s $ip:$jndiport -S it 
shows following and hangs there 
forever

2004-04-14 09:20:28,101 INFO  [org.jboss.system.server.Server] Shutting down
2004-04-14 09:20:28,106 INFO  [org.jboss.system.server.Server] LifeThread.run exits!
2004-04-14 09:20:28,107 INFO  [org.jboss.system.server.Server] Shutting down the JVM 
now!
2004-04-14 09:20:28,110 INFO  [org.jboss.system.server.Server] JBoss SHUTDOWN: 
Undeploying all packages
2004-04-14 09:20:28,111 INFO  [org.jboss.resin.ResinService] undeploy, 
warUrl=file:/home/kshitij/SAMHOME_28/xsam_2.1/jboss-3.2.2/server/resin-all/deploy/jmx-console.war/
2004-04-14 09:20:28,111 INFO  [org.jboss.resin.ResinEntry] performUndeploy 
ctx=/jmx-console
2004-04-14 09:20:28,112 ERROR [STDERR] [2004-04-14 09:20:28.112] closing application 
http://172.16.11.147:8080/jmx-console
2004-04-14 09:20:28,120 ERROR [org.jboss.resin.ResinService] cannot find expanded war 
dir for 
file:/home/kshitij/SAMHOME_28/xsam_2.1/jboss-3.2.2/server/resin-all/deploy/jmx-console.war/
2004-04-14 09:20:28,124 INFO  [org.jboss.resin.ResinService] undeploy, 
warUrl=file:/home/kshitij/SAMHOME_28/xsam_2.1/jboss-3.2.2/server/resin-all/tmp/deploy/tmp55798web-console.war/
2004-04-14 09:20:28,124 INFO  [org.jboss.resin.ResinEntry] performUndeploy 
ctx=/web-console
2004-04-14 09:20:28,124 ERROR [STDERR] [2004-04-14 09:20:28.124] closing application 
http://172.16.11.147:8080/web-console
2004-04-14 09:20:28,129 ERROR [org.jboss.resin.ResinService] cannot find expanded war 
dir for 
file:/home/kshitij/SAMHOME_28/xsam_2.1/jboss-3.2.2/server/resin-all/tmp/deploy/tmp55798web-console.war/
2004-04-14 09:20:28,433 INFO  [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] 
Stopping jboss.jmx:name=SnmpAgent,service=snmp,type=adaptor
2004-04-14 09:20:28,433 INFO  [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] 
Stopping heartbeat controller ...
2004-04-14 09:20:28,433 INFO  [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] 
Stopping subscription manager ...
2004-04-14 09:20:28,434 INFO  [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] 
Stopping trap emitter ...
2004-04-14 09:20:28,436 INFO  [org.jboss.jmx.adaptor.snmp.trapd.TrapdService] Stopping 
jboss.jmx:name=SnmpAgent,service=trapd,type=logger
2004-04-14 09:20:28,469 INFO  [org.jboss.jmx.connector.invoker.InvokerAdaptorService] 
Stopping jboss.jmx:type=adaptor,name=Invoker
2004-04-14 09:20:28,470 INFO  [org.jboss.console.manager.PluginManager] Stopping 
jboss.admin:service=PluginManager
2004-04-14 09:20:28,470 INFO  [org.jboss.naming.NamingAlias] Stopping 
jboss.jmx:alias=jmx/rmi/RMIAdaptor
2004-04-14 09:20:28,474 INFO  [org.jboss.invocation.jrmp.server.JRMPProxyFactory] 
Stopping jboss.jmx:type=adaptor,name=Invoker,protocol=jrmp,service=proxyFactory
2004-04-14 09:20:28,499 INFO  [org.jboss.invocation.http.server.HttpProxyFactory] 
Stopping jboss:service=invoker,type=http,target=Naming,readonly=true
2004-04-14 09:20:28,500 INFO  [org.jboss.invocation.http.server.HttpProxyFactory] 
Stopping jboss:service=invoker,type=http,target=Naming
2004-04-14 09:20:28,500 INFO  [org.jboss.invocation.http.server.HttpInvokerHA] 
Stopping jboss:service=invoker,type=httpHA
2004-04-14 09:20:28,501 INFO  [org.jboss.invocation.http.server.HttpInvoker] Stopping 
jboss:service=invoker,type=http
2004-04-14 09:20:28,505 INFO  [org.jboss.resin.ResinService] undeploy, 
warUrl=file:/home/kshitij/SAMHOME_28/xsam_2.1/jboss-3.2.2/server/resin-all/deploy/http-invoker.sar/invoker.war/
2004-04-14 09:20:28,506 INFO  [org.jboss.resin.ResinEntry] performUndeploy ctx=/invoker
2004-04-14 09:20:28,506 ERROR [STDERR] [2004-04-14 09:20:28.506] closing application 
http://172.16.11.147:8080/invoker
2004-04-14 09:20:28,507 ERROR [org.jboss.resin.ResinService] cannot find expanded war 
dir for 
file:/home/kshitij/SAMHOME_28/xsam_2.1/jboss-3.2.2/server/resin-all/deploy/http-invoker.sar/invoker.war/
2004-04-14 09:20:28,526 INFO  [org.jboss.resin.ResinService] undeploy, 
warUrl=file:/home/kshitij/SAMHOME_28/xsam_2.1/jboss-3.2.2/server/resin-all/deploy/http-invoker.sar/invoker.war/
2004-04-14 09:20:28,527 ERROR [org.jboss.resin.ResinService] could not undeploy 
file:/home/kshitij/SAMHOME_28/xsam_2.1/jboss-3.2.2/server/resin-all/deploy/http-invoker.sar/invoker.war/
2004-04-14 09:20:28,539 INFO  [org.jboss.resin.ResinService] undeploy, 
warUrl=file:/home/kshitij/SAMHOME_28/xsam_2.1/jboss-3.2.2/server/resin-all/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
2004-04-14 09:20:28,540 ERROR [org.jboss.resin.ResinService] cannot find expanded war 
dir for 
file:/home/kshitij/SAMHOME_28/xsam_2.1/jboss-3.2.2/server/resin-all/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
2004-04-14 09:20:28,542 INFO  [org.jboss.mq.il.http.HTTPServerILService] Stopping 
jboss.mq:service=InvocationLayer,type=HTTP
2004-04-14 09:20:28,543 INFO  [org.jboss.resin.ResinService] Stopping 
jboss.web:service=WebServer
2004-04-14 09:20:28,544 INFO  

[JBoss-user] [EJB/JBoss] - Re: NoSuchObjectLocalException

2004-04-14 Thread sesques
Hi,

If your session bean is declared as Container-managed transactions, your problem 
seems as a JBoss bug.

Perhaps try to set transaction-type to Bean, and then create a user transaction within 
your addAttendance method.

The user transaction can be obtain with:

  | try {
  | ctx = new InitialContext(); 
  | tx = (UserTransaction)ctx.lookup(UserTransaction); 
  | tx.begin(); 
  | ...
  | tx.commit();
  | } catch (Exception e)
  | ...
  | tx.rollback();
  | }
  | 
  | ctx.close();
  | 

I'm not sure you can obtain a transaction with 
sessionContext.getUserTransaction(); in this case.

Good luck ;-)


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: HTTP Session clustering intermittently

2004-04-14 Thread mregazzi
Hi all,

I have the same problem, but I think that if you talk about session replication you 
cannot talk about sticky session. The replication should be between nodes, so you can 
set up fault tolerant configuration.
I wrote two stupid JSPs, the firsts that put a string in session, the second that get 
it back. Obviously, due to round robin scheme for load balancing, you open the first 
page on server 1 (the page loads the string on server 1 session) then you open the 
second page on server 2 but you have a nice NULL. Apache seems to be well configured, 
the clustering merging seems to be done, the modjk2 is configured well, the  tag is 
present on my web.xml. 
May be I missed something. I'm running JBoss (MX MicroKernel) [3.2.3 (build: 
CVSTag=JBoss_3_2_3 date=200311301445)] on 2 windows 2000 pro, downloaded 15 days ago 
(I'm going to check out the cvs module or just check for a new build).
Thank you very much in advance, and sorry for bad English.
Matteo

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - problem deploy module news in Nukes

2004-04-14 Thread pista
Hi !
I want to deploy the module news in Nukes.
But I have an error message :

[javac] package org.jboss.nukes.html does not exist
[javac] import org.jboss.nukes.html.Page;
[javac]  ^

Somebody can help me please??!

Thanks !

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET SOAP] - Workaround for 'Was unable to move war to' when deploying JB

2004-04-14 Thread friv9821
I ran into the  Was unable to move war to  problem, after deploying jboss.net from 
the all server (into default).

It only seems to happen om windows machines since I have had no problems deploying 
jboss.net on Linux. Actually jboss.net works fine. It's web-console that cant be 
deployed, and then some of my own apps.

Here's how I solved it...

Make a copy of 'default' server directory (with jboss.net deployed), delete 'default' 
directory and rename the copied directory to default. (Last steps not necessary, but 
maybe its nice to have a default server)

Now it works!!!

It'ss a very strange problem since Im using administrators right and FAT32. My 
default server copy should be identical to the original, but somehow it works.

Now I leave it to others to solve the real problem.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70alloc_id638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Installing an 'embedded' JBoss

2004-04-14 Thread artware
I did found one solution from earlier reply:
http://www.jboss.org/index.html?module=bbop=viewtopict=46161start=0postdays=postDayspostorder=postOrderhighlight=highlight

I'll try that first ;-)


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Re: JBoss and Rarional quantify problem

2004-04-14 Thread amayingenta
The jars in server/.../lib are not picked up immediately - for something like this you 
need to add the location of your jar to the JBOSS_CLASSPATH before calling run.bat, 
and I'd suggest putting it somewhere else (e.g. $JBOSS_HOME/lib).

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Single Sign-ON, SPNEGO: How to?

2004-04-14 Thread gfzhang
Phantom, 

thanks. Your implementation works fine. I have integrated it by adding a Authenticator 
implementation into JBoss. Add this authenticator into Authenticators.properties, so 
that NTLM could be configured in web.xml.

scott,

see   
 http://appliedcrypto.com/ 
for the SPNEGO's java implementation.

I am sorry that I answer the post so late. I am busy for other thing.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: calling an EJB from MBean

2004-04-14 Thread raja05
There are multiple options here.
1. You could bundle them all into a EAR (SAR + JAR) so it will be loaded as one single 
entity.
2. As Juha pointed out, its no different from calling it from a standalone client Vs. 
servlet Vs. MBean. All you need to do is get the InitialContext and lookup your EJB 
JNDI. You will need to get your Home and Remote interfaces in ur SAR(ofcourse!!).


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Threading Problems on RedHat 9.0 - Please Explain...

2004-04-14 Thread raja05
What kinds of issues are u talking about? Im running Shrike with Blackdown JVM 1.4.2 
and Jboss 3.2.3 without any issues.

Is there a documented list of issues somewhere?


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: JBoss deployment issues in production

2004-04-14 Thread raja05
Do you have any directories that get cleared automatically by the Windows scheduler. 
Basically i have seen some issues here where the tempdir used by Jetty gets removed by 
some sort of cron jobs in *nix based systems.
Maybe you can make the tempdir point to a location that wont get deleted automatically?



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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - How do I change the entry web url?

2004-04-14 Thread henrikandoff
Hello,

After building and deploying jboss and nukes I access the CMS with the URL 
http:///nukes/index.hml. How do I go about to change this so that I can access the 
site with http://? 

Thanks

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - error-page and Internet Explorer

2004-04-14 Thread paszti
Hi All,


I've got problems using the custom error-page feature with the Internet Explorer 6.0.


My WEB.XML cotains the following lines:


  error-page
  | error-code404/error-code
  | location/p404.jsp/location
  |   /error-page  
  
The custom error page doesn't appear when the Show Friendly HTTP error messages 
setting is checked.
This is very unpleasant because this setting is checked by default after the setup.

Is there a way to make the Explorer show the error page regardless of this browser 
setting.

Thanks in advance


Paszti

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - JMS JMX Create topic cross restart

2004-04-14 Thread tomerbd
Hi

Can I create a topic using jmx (void createTopic(...)) so that this topic will be 
persistent cross restarts of jboss?

if so could I be directed to a complete working example?

Thanks

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: web-console is not working??

2004-04-14 Thread darranl
Should be /web-console

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: How do I change the entry web url?

2004-04-14 Thread henrikandoff
Sorry  - some of my characters messed up the post. Here goes the question  again:

After building and deploying jboss and nukes I access the CMS with the URL 
http://ipaddress/nukes/index.hml. How do I go about to change this so that I can 
access the site with http://ipaddress? 

Thanks

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - Re: pls help me ..thx

2004-04-14 Thread darranl
To deploy a web application on JBoss place the war in the server/default/deploy folder

JBoss will automatically deploy it

This is assuming that you start JBoss with 'run.bat' or 'run.bat -c default'

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: EJB deployment problem. Help me please...

2004-04-14 Thread Vla
Sorry about my last question, it was a silly one, but I was so tired that I didn`t saw 
the bug... The specified error mentioned that afther the table u. it was a space 
(0x20) and then the rest of the querry (though I copied it right here because I 
modified, actualiy deleted, the CR/LF from the debug screen, from the command prompt)
Sorry again
But now I am facing another stupid error : Afther I have mentioned that the words : 
user, group and key; as reserved by msql and Jboss generated the table names with an X 
in front of them, at a table that relates the tables user and group, the Jboss throws 
as colum names the reserved words (with no x in front). The error is :
anonymous wrote : ERROR [EntityContainer] Starting failed 
org.jboss.deployment.DeploymentException: Error while creating table 
User_groups_Group_users; - nested throwable: (java.sql.SQLException: Syntax error or 
access violation,  message from server: You have an error in your SQL syntax.  Check 
the manual that corresponds to your MySQL server version for the right syntax to use 
near 'Group INTEGER NOT NULL, User INTEGER NOT NULL, CONSTRAINT pk_Us)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.createTable(JDBCStartCommand.java:232)
Is there any posibility to prevent Jboss from using the reserved words from the colum 
names?

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: [Theme]Customize

2004-04-14 Thread itchiban
Actually the problem is just the section where the selected module is displayed;e.g : 
the forum,the news...
it seems that this is a module section independent from the selected theme and must be 
configured separately.
Any idea?

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Clustering with Message driven Beans......(Exception:Fil

2004-04-14 Thread Borgward
I don't think message driven beans are supported in clustering :)

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: dont recover the unacknowledged messages

2004-04-14 Thread stabilo
I use nonPersistent messages. The Propblem is, when i abort the Server, or the server 
is shutdown by an error, the messages are not delete in db\jbossmq\file\QUEUE.A. 
Another problem is, that jboss not delete nonPersistant messages from this directory 
when the client is abort and not received all messages from the server. Can i prompt 
jboss to delete the messages in this directory, no matter what happens?

thanks 


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: How do I change the entry web url?

2004-04-14 Thread cooper
this is changed in the .ear file : nukes.ear/META-INF/application.xml which contains 
the context root definition for the web application.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: How do I read a properties file in WEB-INF?

2004-04-14 Thread camel
From your servlet, call getServletContext().getResource(), or getResourceAsStream(), 
or even getResourcePaths().  To get something from WEB-INF the call would be 
getServletContext().getResource(/WEB-INF/db.properties);
  | 
The leading slash is important, I believe.

Also see this article: http://java.sun.com/developer/EJTechTips/2003/tt0626.html#1

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: mySQL library issue in multiple ear files

2004-04-14 Thread Vla
katazan, I sugest you remove the mySql.jar from the .ear files and put it in the 
%JBOSS_HOME%/server/default/lib. I think it should work.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: How do I read a properties file in WEB-INF?

2004-04-14 Thread frocco
camel, thanks for the help.

I'll try it today at work.

Regards,

Frank

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Re: JBoss and Rarional quantify problem

2004-04-14 Thread wuffi
I have tried this, but I still get the same result.
I changed the JBOSS_CLASSPATH line within run.bat and kept the jar file within the 
original Rational directory.


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Problems with Jboss CMP

2004-04-14 Thread Vla
I have an application (EJB) that was designed for j2ee 1.3 and now I want to move it 
on Jboss. The major problem is that JBoss doe not use quotes to souround table and 
colum names. Some of my tables have names that are reserved for mysql (the target data 
base) and somewone showed me how to bipass this step (adding the needed words in jboss 
reserved words, but this is only avalible for tables). The prolem I encountered now is 
at an relation table (relates two tabls), witch has as colum names two reserved words. 
Is there any way I can avoid the use of these reserved words with Jboss? (of coure 
Jboss charashes from mysql)

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Problems with Jboss CMP

2004-04-14 Thread Vla
I have an application (EJB) that was designed for j2ee 1.3 and now I want to move it 
on Jboss. The major problem is that JBoss doe not use quotes to souround table and 
colum names. Some of my tables have names that are reserved for mysql (the target data 
base) and somewone showed me how to bipass this step (adding the needed words in jboss 
reserved words, but this is only avalible for tables). The prolem I encountered now is 
at an relation table (relates two tabls), witch has as colum names two reserved words. 
Is there any way I can avoid the use of these reserved words with Jboss? (of coure 
Jboss charashes from mysql)

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] org.jboss.mq.SpyJMSException: Cannot process a transaction

2004-04-14 Thread Phil Shrimpton
Hi,

Any body got any clues on 'org.jboss.mq.SpyJMSException: Cannot process a 
transaction' errors?

I am using Jboss 3.2.3 with 'out the box' JMS configurtion.

Stack trace...

004-04-14 01:06:19,650 ERROR [STDERR] java.lang.ClassCastException
2004-04-14 01:06:19,650 ERROR [STDERR]   at org.hsqldb.Column.compare(Unknown
Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.hsqldb.Index.compareRow(Unknown Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at org.hsqldb.Index.insert(Unknown
Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at org.hsqldb.Table.indexRow(Unknown
Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.hsqldb.Table.insertNoCheck(Unknown Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at org.hsqldb.Table.insert(Unknown
Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.hsqldb.Parser.processInsert(Unknown Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.hsqldb.Database.execute(Unknown Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.hsqldb.jdbcConnection.executeStandalone(Unknown Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.hsqldb.jdbcConnection.execute(Unknown Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.hsqldb.jdbcStatement.fetchResult(Unknown Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.hsqldb.jdbcStatement.executeUpdate(Unknown Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.hsqldb.jdbcPreparedStatement.executeUpdate(Unknown Source)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeUpdate(Wrapp
edPreparedStatement.java:324)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.jboss.mq.pm.jdbc2.PersistenceManager.createPersistentTx(PersistenceManag
er.java:660)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.jboss.mq.pm.TxManager.createTx(TxManager.java:79)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.jboss.mq.server.JMSDestinationManager.transact(JMSDestinationManager.jav
a:424)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.jboss.mq.server.JMSServerInterceptorSupport.transact(JMSServerIntercepto
rSupport.java:186)
2004-04-14 01:06:19,650 ERROR [STDERR]   at
org.jboss.mq.server.TracingInterceptor.transact(TracingInterceptor.java:438)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
org.jboss.mq.server.JMSServerInvoker.transact(JMSServerInvoker.java:186)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
org.jboss.mq.il.jvm.JVMServerIL.transact(JVMServerIL.java:328)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
org.jboss.mq.Connection.send(Connection.java:928)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
org.jboss.mq.SpyXAResourceManager.commit(SpyXAResourceManager.java:127)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
org.jboss.mq.SpyXAResource.commit(SpyXAResource.java:103)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:307)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageCons
umer.java:633)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:433)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
org.jboss.mq.SpySession.run(SpySession.java:298)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:180)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.ja
va:727)
2004-04-14 01:06:19,665 ERROR [STDERR]   at
java.lang.Thread.run(Thread.java:534)
2004-04-14 01:06:19,681 WARN  [org.jboss.util.NestedThrowable] Duplicate
throwable nesting of same base type: class org.jboss.mq.SpyJMSException is
assignable from: class org.jboss.mq.SpyJMSException
2004-04-14 01:06:19,681 ERROR [org.jboss.jms.asf.StdServerSession] failed to
commit/rollback
org.jboss.mq.SpyXAException: - nested throwable:
(org.jboss.mq.SpyJMSException: Cannot process a transaction; - nested
throwable: (org.jboss.mq.SpyJMSException: Could not crate tx: 77; - nested
throwable: (java.sql.SQLException: S1000 General error
java.lang.ClassCastException in statement [INSERT INTO JMS_TRANSACTIONS
(TXID) values(77)])))
 at org.jboss.mq.SpyXAResource.commit(SpyXAResource.java:105)
 at
org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:307)
 at
org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageCons
umer.java:633)
 at
org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:433)
 at org.jboss.mq.SpySession.run(SpySession.java:298)
 at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:180)
 at
EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.ja
va:727)
 at java.lang.Thread.run(Thread.java:534)
Caused by: org.jboss.mq.SpyJMSException: Cannot process a transaction; -
nested throwable: (org.jboss.mq.SpyJMSException: Could not crate tx: 77; -
nested throwable: (java.sql.SQLException: S1000 

[JBoss-user] [EJB/JBoss] - Re: Problems with Jboss CMP

2004-04-14 Thread triathlon98
fixing  fieldnames is not possible at this moment.
The best solution is to use a prefix (like F_) or suffix for all your fields.

Or you could write and submit a patch to make this automatic (when configured as such).

Joachim

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: JSP's?

2004-04-14 Thread sgwood
Look in the JBoss Nukes Wiki  http://jboss.org/wiki/Wiki.jsp?page=UsingJSPsInNukes

This summarizes the state of things in the current CVS. In the 1.0 version, 
sendRedirect is the only thing that works.


Sherman

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - How to add a link in blocks?

2004-04-14 Thread seenu78
Hi All,

I am new to this Nuke. I used to work on PN, now we are planning to migrate our sites 
to Nukes.

I want to add a Link to a Block. I have created a block, and set the read permission 
for all user. I am able to view the block. Now I have to add a html page that has some 
content. I want to add a link in my block so that I can show my contents to the users.

For example Main Menu having Home link..

Tnx,
Cnu



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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Problems with Jboss CMP

2004-04-14 Thread triathlon98
You have two options :

1. edit the descriptors for you application and change the column names there.

2. produce a JBoss patch to make sure a prefix can be added to the fieldnames.

THe first option in by far the easiest, but the second would benefit many people whc 
have similar problems.

Joachim

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Unable to invoke setDelegate on class...

2004-04-14 Thread fvillalba
Hello,

When starting JBoss (I just installed it) I get the following warning:

12:35:40,781 INFO  [Engine] SingleSignOnContextConfig[/jbossmq-httpil]: Configured an 
authenticator for method BASIC
12:35:40,831 WARN  [EmbeddedTomcatService] Unable to invoke setDelegate on class 
loader:[EMAIL PROTECTED]:35:40,831 INFO  [Engine] StandardManager[/jbossmq-httpil]: 
Seeding random number generator class java.security.SecureRandom
12:35:40,831 INFO  [Engine] StandardManager[/jbossmq-httpil]: Seeding of random number 
generator has been completed


What is that warning about? does it have any side-effect on the normal behaviour of 
the AppServer???

thanks,
Freddy.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: j_security_check Struts

2004-04-14 Thread tim5901
Thankyou very much for the re-assurance that I am not going bonkers.  What you said 
verifies everything that I have seen so far.  My big problem is that our site is 
completely set up using tiles.  From what I can see to use tiles I MUST use struts, 
therefore I cannot use j_security_check.

Is that correct?

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - unable to passivate due to ctx lock

2004-04-14 Thread erikdhansen
I'm running into a problem since upgrading from JBoss 3.2.1 to 3.2.3 with warnings: 
Unable to passivate due to ctx lock.  I've seen a lot of other people with questions 
about this, but haven't been able to find much in the way of answers, yet.

I have a stateful bean which acts as a page iterator for entity beans.  The client 
creates the stateful bean which calls methods on a stateless bean which in turn uses a 
finder method to retrieve a collection of entity beans.  

The stateless bean then returns to the stateful bean a collection of data objects 
which the stateful bean holds onto.

The client then invokes methods in the stateful bean to navigate through the 
collection of data objects.

If the passivation time expires for the stateful bean, I can see JBoss trying to 
passivate the stateful bean, but fails: Unable to passivate due to ctx lock and 
references the stateful bean (id=).

If my stateful bean is holding data objects copied from entity beans by the stateless 
bean (session facade for the entites) why is the stateful failing to passivate?  
Shouldn't the entity beans retrieved by the stateless bean be released when the 
stateless bean invocation completes?

Any information would be greatly appreciated.  Thanks.


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: How to add a link in blocks?

2004-04-14 Thread jae77
this this a static html page, or is it dynamically created? 

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: problem deploy module

2004-04-14 Thread jae77
are you trying to compile the code, or actually do the deployment? 

if compiling, did you go into the build directory and execute build before 
attempting to compile the news module? 

also, as an fyi, the news module is not considered to be stable yet, so use at your 
own risk, and be aware that changes will be forthcoming that will not be compatible 
(ie, database data b/c the table structure will be changing).

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - javax.jms.JMSException: Error creating the dlq connection: Q

2004-04-14 Thread cheppaliashokkumar
hai,
we are getting the above subject line as error message
can any one help. i searched on the net but i did not get any accurate solution for 
this problem


by
cak

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - A problem on SLSB which contains a database connection

2004-04-14 Thread cool_xiong
I have a problem on SLSB. My SLSB has a database connection field, and I get 
connection through container(jboss) in ejbCreate and close connection in ejbRemove. As 
follows:

package com.smartcode.framework.persistence;

...

public class PersistenceBean
implements SessionBean {
  SessionContext sessionContext;
  Connection cn;
  ClassMap classmap;

  public void ejbCreate() throws CreateException {
cn = PersistenceResource.getConnection();
classmap = ClassMapGetter.getClassMapBean();
  }

  public void ejbRemove() {
try {
  if (cn != null) {
cn.close();
  }
}
catch (Exception ex) {
  throw new RuntimeException(ex);
}
  }

  public void ejbActivate() {
  }

  public void ejbPassivate() {
  }

  public void setSessionContext(SessionContext sessionContext) {
this.sessionContext = sessionContext;
  }

  public ValueObject save(ValueObject v) {
try{
  CommandListFactory factory = new CommandListFactory(cn, classmap);
  Iterator ite = factory.createCommands(v).iterator();
  while (ite.hasNext()) {
((DaoCommand)ite.next()).execute();
  }
  v.setAllNormal();
}
catch (Exception ex) {
  throw new javax.ejb.EJBException(ex.getMessage(), ex);
}
return v;
  }

...

}

When the SessionBean is invoked by a general java application through remote 
interface, it works well.
But it is invoked by another SSLB A which is invoked by a general java application, 
either remote interface or local interface, when SSLB A return result to client, jboss 
throw a exception, as follows

[CachedConnectionManager] Successfully closed a connection for you.  Please close them 
yourself: [EMAIL PROTECTED]: Stack Trace at 
org.jboss.resource.connectionmanager.CachedConnectionManager.closeAll(CachedConnectionManager.java:376)
  at 
org.jboss.resource.connectionmanager.CachedConnectionManager.popMetaAwareObject(CachedConnectionManager.java:199)
at 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:190)
at 
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:72)
at 
org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)  
  at 
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:243)  
  at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:104) 
at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:117)  
 at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191) at 
org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
   at 
org.jboss.ejb.StatelessSessionContainer.internalInvoke(StatelessSessionContainer.java:322)
   at org.jboss.ejb.Container.invoke(Container.java:674)   at 
sun.reflect.GeneratedMethodAccessor35.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:549) at 
org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:359)at 
sun.reflect.GeneratedMethodAccessor34.invoke(Unknown Source) at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)  
  at java.lang.reflect.Method.invoke(Method.java:324) at 
sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)  at 
sun.rmi.transport.Transport$1.run(Transport.java:148)at 
java.security.AccessController.doPrivileged(Native Method)   at 
sun.rmi.transport.Transport.serviceCall(Transport.java:144)  at 
sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460) at 
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)  
at java.lang.Thread.run(Thread.java:534)

I guess this problem is revelant with the connection pool, but I don't know jboss how 
release a connection.

Thanks.


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70alloc_id638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Page title

2004-04-14 Thread jae77
you can do this using the jmx-console and editting the slogan and site name 
attributes in the core module. 

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Bad performance in cluster configuration

2004-04-14 Thread mregazzi
Hi everibody,

I'm trying to use JBoss 3.2.3 in cluster with a software load balancer in front (using 
Apache 2 + modjk2). My JBoss is the standard download from sourceforge.

When I start the cluster (two server running Windows 2000 pro) every single node slow 
down. For example, if I request for a simple JSP that just store a string in session 
and write a string on screen from a single node WITHOUT cluster up, the page i serverd 
in less than a second. If I have cluster up, the page i served in about a minute (55 
to 60 seconds). I'm using sticky session. The problem still remains even if I call the 
node directly bypassing the Apache.
Furthermore if i shut down a server the fault tolerance will be on after some minutes 
(2/3). I'm sure that there is something wrong, even if I follow documentation, forum, 
how to, ecc.

Thank you very much in advance.
Matteo

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - can not find UserTransaction

2004-04-14 Thread autocrab
A problem occurred when i configurate connection pool in JBoss.
My development envrionment is JBoss3.2.3+Mysql4.0.8+Hibernate2.1, i have configurated 
the datasource, and Hibernate can find the datasource,but there is exception of 
UserTransaction not found. I wonder whether it is the problem occurred in JBoss or 
Hibernate configuration, and  how can i solve this problem. Thanks very much.




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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Running standalone clients

2004-04-14 Thread rafaelfarias
Hello,
I'm trying to run a standalone client to access ejbs.
When I try to obtain a context I receive a FileNotFoundException at this line: Context 
ctx = new InitialContext();
The file is myapp/config/security.properties.

What is wrong?

What I must to config to make this work?

Thanks

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Re: Bad performance in cluster configuration

2004-04-14 Thread Sacha Labourey
Can you make sure the clustering is up? what is displayed by jboss when it you start 
up the second node?

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Running standalone clients

2004-04-14 Thread nickman

  | import java.util.*;
  | import javax.naming.*;
  | .
  | .
  | Properties p = new Properties();
  | p.put(Context.PROVIDER_URL, jnp://localhost:1099);
  | p.put(Context.INITIAL_CONTEXT_FACTORY,
  |   org.jnp.interfaces.NamingContextFactory);
  | p.put(Context.URL_PKG_PREFIXES,org.jboss.naming:org.jnp.interfaces);
  | ctx = new InitialContext(p);
  | 

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: A problem on SLSB which contains a database connection

2004-04-14 Thread triathlon98
In transaction-service.xml set spec-compliant to true.

Joachim

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - Re: Bug in EJB QL compiler?

2004-04-14 Thread sesques
Hi,

Post the exact log or your code snippet.
Not enough info to investigate.


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Startup is looping indefiniatly...

2004-04-14 Thread gdagley
I am running JBoss 3.2.3 with JDK 1.4.2_04 and was having the same problem (although I 
never let mine go beyond 3 restarts, so I don't know that it ever finished).  

To fix this I looked at my run.bat that had the following:

set JAVA_OPTS=-server -Xms128m -Xmx512m %JAVA_OPTS%

This worked in previous versions of the JDK (I recently upgraded).  After removing the 
-server option, everything started up fine.  If this doesn't work for you, maybe 
someone else will have a solution.

As a note, this is my development environment so this will work fine, but may not be 
an acceptable solution in other circumstances.


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - RMIAdaptor Load balancing?

2004-04-14 Thread darthjoe
I have a partition Named DumasPartition with 2 nodes in the cluster.
I have a client that accesses the services on those nodes through autodiscovery 
and the RMIAdaptor

Failover works fine, but there doesn't appear to be any kind of load balancing, round
robin, etc.. Is there anyway to configure the RMIAdaptor service to provide this
functionality? I understand HAJNDI/HARMI provides this functionality, does the 
RMIAdaptor make use of it?

Client code below

  | Properties prop = new Properties();
  | prop.put(Context.INITIAL_CONTEXT_FACTORY,
  | org.jnp.interfaces.NamingContextFactory);
  | prop.put(Context.URL_PKG_PREFIXES,
  | org.jboss.naming:org.jnp.interfaces);
  | prop.put(jnp.partitionName,DumasPartition);
  | prop.put(jnp.discoveryGroup,230.0.0.4);
  | prop.put(jnp.discoveryPort,1102);
  | 
  | InitialContext jndiContext = new InitialContext(prop);
  | 
  | Object ref  = jndiContext.lookup(jmx/rmi/RMIAdaptor);
  | RemoteMBeanServer server = new RMIConnectorImpl((RMIAdaptor)ref);
  | out.println(server.getAttribute(new 
javax.management.ObjectName(dumas.subs:service=DownloadAuth), Foo));
  | 


Thanks,

-Joe

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - PCML Adapter for iSeries / AS400

2004-04-14 Thread rupshall
Can anybody offer support with the setup of a resource adapter for a PCML service.  I 
need to call legacy apps running on an iSeries / AS400 and I found this post : 


  http://www.jboss.org/index.html?module=bbop=viewtopict=38739


it appears to be using PCML(something I have used outside of JBoss) to access legacy 
programs.

I have never configured an adapter and I cannot find any information about what is 
required.  What exists in the .rar acrhive?  What do I need in the ra.xml file?  Is a 
service file required along with .rar file?

Can somebody offer some help,
Robert


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - entity-command part of transaction ?

2004-04-14 Thread lekkim
Hi all. 

I am using entity-commands to generate primary keys for my entities but are having a 
hard time finding out whether the query to get the next primary key (via the 
entity-command) is part of the same transaction as the actual entity create() call.

My requirement is using a sequence of numbers for primary key without any gaps, so an 
exception while creating the entity should also rollback the SQL used to get the next 
primary key.

Anyone who knows this ?


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Which factory for HA-JMS from Java client?

2004-04-14 Thread [EMAIL PROTECTED]
I connect fine with UIL2ConnectionFactory and XAConnectionFactory, but have other 
problems because I don't think these are meant for clustered JMS.  For instance, here 
is the behavior I see using these connection factories.

My scenario is this:
- two clustered servers (3.2.4RC1)
- client uses basic clustered, jndi.properties for HA (e.g., no java.provider.url set)
- start a Java client as a topic subscriber w/ an ExceptionListener that attempts to 
re-connect upon failure
- when the topic subscriber connects, I see topic/testTopic AllSubscriptionsCount=1 on 
the non-HAILSingleton (this seems odd to me, but I don't know the semantics of 
connecting in this new, HAIL env)
- when I shutdown the server w/ the subscriber attached to it, the ExceptionListener 
gets notified, but cannot reconnect to the other clustered server (the one that is 
actually the HAILSingleton!!)
- Trying to reconnect, I get this error:
org.jboss.mq.SpyJMSException: Cannot authenticate user; - nested throwable: 
(java.net.ConnectException: Connection refused: connect)

Has something has been added to the latest src drop that resolves:
1. connecting to HAIL from a Java client 
2. re-connecting upon failure using ExceptionListener
 


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Context XMLs in JBoss?

2004-04-14 Thread sumedh
Can someone tell me where Context XMLs have to go in JBoss?

I come from the world of Tomcat, so I'm used to sticking Context XML descriptors for 
WARs in webapps. Currently, I'm dropping my WAR in server/default/deploy, which is 
fine...but where does the Context XML go?

Thanks for any help...

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - using JNDI datasource

2004-04-14 Thread aldeponk
Hi,

I am developing a EJB that intends to use a datasource through JNDI, using JBOSS as 
appserver and an Oracle server for the database.

How do I compute to use the connection provided by JBOSS, i.e. I want to program a 
request in my Bean. What would be the proper code to write ?

Thanks for your replies,

Alain

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - How to use servlet as default root

2004-04-14 Thread iamneil
I have jboss3.0.4. I want to use a servlet in my war's web.xml named Home and mapped 
as Home.jsp.
I added a jboss-web.xml to the web-inf and I can serve a uncompiled JSP page as the 
root, no problem, but how do I make a servlet class do that ???
I thougth it would be easy. Now my timelines slipping
Thanks alot.

Neil

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Howto encrypt connection factory passwords

2004-04-14 Thread emmaueze
everything seem to be fine now.  I added the authentication tag to login-config.xml 
and it works. so everything now looks like this:

application-policy name = MsqlDbRealm

login-module code = org.jboss.resource.security.SecureIdentityLoginModule
  flag = required
module-option name = usernametheuser/module-option
module-option name = password3f1eade193525626/module-option
module-option name = 
managedConnectionFactoryNamejboss.jca:service=LocalTxCM,name=MYDATASRC/module-option
/login-module

/application-policy


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JBoss register Weblogic Topic mini-howto

2004-04-14 Thread maxi72
Thanks, where i find the source :
./server/src/main/org/jboss/jms/jndi/JBossMQProvider.java and
/server/src/main/org/jboss/ejb/plugins/jms/JMSContainerInvoker.java

i'm using Jboss 3.2.3, and i will connect jboss MDB to queue on weblogic server.


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: RMIAdaptor Load balancing?

2004-04-14 Thread darthjoe
Hmmm... 
From the docs, it sounds like I can do this by configuring the JRMP service as a
HA JRMPInvoker

Does anyone have an example for how I might do this?

Thanks,

-Joe

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - having seperate log4j.xml file for the server and for apps

2004-04-14 Thread gkatz
hi;
there have been numerous threads regarding this but i could not find a defenite answer.

the problem is how to let my application have a different log4j configuration than the 
server has. 
i dont want to put my configuration in the jboss log4j.xml file. and i dont want to 
put jboss configuration in my file.

is there a way to have seperate files?
thanks in advance.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: DatabaseserverLoginModule : datasource not bound

2004-04-14 Thread antoine
ok thanks 

but I solve my probem. It functions with ClientLoginModule

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: PCML Adapter for iSeries / AS400

2004-04-14 Thread rupshall
Woops  I just read the FAQ after I did my post, I'll follow the suggestions in the 
second FAQ and it may be what I am looking for.

Sorry for posting ahead of myself.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - MDB with JBoss

2004-04-14 Thread danb99
I am trying to get the MDB example from the JBoss documentation running. Here is what 
I have to get a connection and a queue, etc:

public void setupPTP() throws JMSException, NamingException
{
Properties properties = new Properties();

properties.setProperty(Context.INITIAL_CONTEXT_FACTORY, 
org.jnp.interfaces.NamingContextFactory);

properties.setProperty(Context.PROVIDER_URL, jnp://localhost:1099/);

properties.setProperty(Context.URL_PKG_PREFIXES, 
org.jboss.naming:org.jnp.interfaces);

InitialContext iniCtx = new InitialContext(properties);
Object tmp = iniCtx.lookup(ConnectionFactory);
QueueConnectionFactory qcf = (QueueConnectionFactory)tmp;
conn = qcf.createQueueConnection();
queA = (Queue)iniCtx.lookup(queue/A);
queB = (Queue)iniCtx.lookup(queue/B);
session = conn.createQueueSession(false, QueueSession.AUTO_ACKNOWLEDGE);
conn.start();
}

When executing Object tmp = iniCtx.lookup(ConnectionFactory) I get this exception:

javax.naming.CommunicationException.  Root exception is java.rmi.ConnectException: 
Connection refused to host: 64.91.160.168; nested exception is: 
java.net.ConnectException: Connection refused: connect

Can anyone tell me what I am doing wrong? Where is 64.91.160.168 coming from?

Thanks!!
Dan


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - How to disable all web access features and just use as EJBse

2004-04-14 Thread r_rangana
One more step, I had to remove the following directory deploy/http-invoker.sar  as 
well.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Shutdown JMS server only

2004-04-14 Thread [EMAIL PROTECTED]
Hi!

I'd like to stop JMS to test client disconnects, ExceptionListener functionality, etc. 
without shutting down the whole JBoss Server.  What MBean do I 'stop' in the 
jmx-console to just stop the JMS service and force disconnects of all JMS consumers?  

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: unable to passivate due to ctx lock

2004-04-14 Thread erikdhansen
It's inevitable -- once I post, I find something...

Bug: 780746 mentions a lock being created in Handle.getEJBObject that is never 
released.  As it turns out, I need to navigate at least one page in order to see this 
problem -- which involves retrieving the EJB Handle from the HTTP session and 
performing a getEJBObject.

https://sourceforge.net/tracker/?func=detailatid=376685aid=780746group_id=22866

I hope someone else finds this useful.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Howcome Template module only shows when logged in as adm

2004-04-14 Thread thepriz
Since the Menu Block was already deployed you would also have to clear all the 
security elements from the database befor you deploy your new build. Because 
persistance is true for the Menu Block it will not update the security elements unless 
you have removed them from the database first. There is another thread here that has 
the excact command that you need to do to remove just the security fields from the 
database.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - EJBException: null

2004-04-14 Thread Berritxu
Hello!

Im developing an EJB, modifying the source code of Duke's Bank example. The method 
where I have is this:

public ArrayList getReservasOfHorario(String horario) 
throws InvalidParameterException {
Debug.print(ReservaControllerBean-Sesion getReservasOfHorario);
Collection t_reservas;
ArrayList reservaList = new ArrayList();
if (horario == null) 
throw new InvalidParameterException(null horario);
try {
t_reservas = objReservaHome.findByHorario(horario);
if (t_reservas.isEmpty())
System.out.println(Reserva No Encontrada: Excepcion);
} catch (Exception ex) {
 return reservaList;
}
try {
Iterator i = t_reservas.iterator();
while (i.hasNext()) {
Reserva objReserva2 = (Reserva)i.next();
//Debug print
System.out.println(Show iterator:  + i);
System.out.println(Show object:  + objReserva2);
//Hasta aqui
DatosReserva datos = objReserva2.getDatos();
reservaList.add(datos);
}
} catch (RemoteException ex) {
 throw new EJBException(getReservasOfHorario:  
 + ex.getMessage());
} 
return reservaList;
} //  getReservasOfHorario
--
As you can see, this is very simple and standard code. But I have an error, like 
this:

---
19:57:41,203 INFO  [STDOUT] Show iterator: [EMAIL PROTECTED]
19:57:41,203 INFO  [STDOUT] Show object: MyReserva:2004-04-14 19:57:41.163
19:57:41,203 ERROR [STDERR] Debug: ReservaBean-Entity ejbActivate
19:57:41,203 ERROR [LogInterceptor] TransactionRolledbackException in method: public 
abstract negocio.util.DatosReserva negocio.ejb.reserva.Reserva.getDatos() throws 
java.rmi.RemoteException, causedBy:
java.rmi.NoSuchObjectException: null; CausedByException is:
null
at 
org.jboss.ejb.plugins.AbstractInstanceCache.get(AbstractInstanceCache.java:116)
at org.jboss.ejb.plugins.EntityInstanceCache.get(EntityInstanceCache.java:61)
..
at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:85)
at $Proxy58.getDatos(Unknown Source)
at negocio.ejb.reserva.ReservaControllerBean.getReservasOfHorario(Unknown 
Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
..
at java.lang.Thread.run(Thread.java:534)
19:57:41,213 ERROR [LogInterceptor] EJBException:
javax.ejb.EJBException: getReservasOfHorario: null; CausedByException is:
null; nested exception is: 
java.rmi.NoSuchObjectException: null; CausedByException is:
null
at negocio.ejb.reserva.ReservaControllerBean.getReservasOfHorario(Unknown 
Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
..
at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:85)
at $Proxy60.getReservasOfHorario(Unknown Source)
at negocio.web.ReservaJBean.populate(Unknown Source)
at negocio.web.Dispatcher.doPost(Unknown Source)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

at java.lang.Thread.run(Thread.java:534)
19:57:41,213 INFO  [STDOUT] Excepcion remota al recoger las reservas de las 12:10: 
EJBException:; nested exception is: 
javax.ejb.EJBException: getReservasOfHorario: null; CausedByException is:
null; nested exception is: 
java.rmi.NoSuchObjectException: null; CausedByException is:
null
19:57:41,213 INFO  [STDOUT] 
--

Anybody knows why I have this error? How can I solve it?

Thanks



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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70alloc_id638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Specifying an Oracle database schema for CMP beans

2004-04-14 Thread [EMAIL PROTECTED]
You can set the schmea using an sql statement as each connection is created.
There is no support for per bean configuration.

In your oracle-ds.xml

  | new-connection-sqlset schema whatever/new-connection-sql
  | 

Regards,
Adrian

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: can not find UserTransaction

2004-04-14 Thread [EMAIL PROTECTED]
You have configured your bean as BMT?

Come on show some details, not IT DOES NOT WORK


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: MDB with JBoss

2004-04-14 Thread [EMAIL PROTECTED]
Your broken host table/dns configuration.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Shutdown JMS server only

2004-04-14 Thread [EMAIL PROTECTED]
Just undeploy whatever connection factory you are using, e.g.
deploy/jms/uil2-service.xml

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Which factory for HA-JMS from Java client?

2004-04-14 Thread [EMAIL PROTECTED]
If you'd bothered to look for previous topics on the subject you would have
learnt that HAIL is not supported outside the jboss VM.

You would also have learnt that there is an updated version in CVS which will
be released in 3.2.4 and is documented on the wiki.

Regards,
Adrian

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: javax.jms.JMSException: Error creating the dlq connectio

2004-04-14 Thread [EMAIL PROTECTED]
See the FAQ topic on enabling TRACE logging to debug the problem.
Looks like a typical network misconfiguration (usually /etc/hosts)

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: dont recover the unacknowledged messages

2004-04-14 Thread [EMAIL PROTECTED]
Don't use file persistence, it is a legacy configuration that won't be supported
for much longer (I don't maintain it even now except when the internal api is changed)

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Configure MDB thread pool

2004-04-14 Thread [EMAIL PROTECTED]
Yes, see the invoker proxy binding configuration.

No, it does not use a global thread pool. It is one threaded executor per bean.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: JBoss and Log4j

2004-04-14 Thread [EMAIL PROTECTED]
Why would you use jboss specific code if you want portability?
Although you can take the jboss classes and include them in your application
on other app servers.

The main additional functionality is the support for TRACE logging.

Regards,
Adrian

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: How to disable all web access features and use JBOSS pri

2004-04-14 Thread [EMAIL PROTECTED]
Why not just change the references to jboss.bind.address to be 127.0.0.1
in jbossweb-tomcatXXX.sar/server.xml meaning it is only available locally?

Regards,
Adrian

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Jboss and Apache and PHP?

2004-04-14 Thread erik777
I can't say it's not possible, as you can now run scripts in Java.  You should look at 
apache's Jakarta projects, as I remember one of them giving the ability to run script 
languages from a Java web server.  I'm not sure if you could extend this to run PHP.  
Even if you do, how would PHP access the session information?  You'd probably end up 
creating a servlet wrapper for your PHP so it could supply this info.  

Other than that, though, I'd say typically the answer to your question is no.  PHP is 
configured in Apache.  The way you configure JK is you tell Apache to forward requests 
that match a pattern to Tomcat.  I've never heard of Tomcat being able to handle PHP, 
except possibly through the theoretical method I mentioned in the first paragraph.

I've thought a lot about this problem.  You can have Apache forward only requests that 
match *.jsp or /servlet/*, but then what about images and other things that could 
feasibly be in both Apache and your war?  For the time being, I've resorted to putting 
everything in the war, because I don't want a war to have to depend on external 
images, html, or any other type of file.

There is one work around, though.  You could create separate virtual hosts, and have 
one forward to Tomcat, while another accesses a local repository.  You might use a 
different subdomain.  You can setup each virtual host's JK forwarding differently.  If 
I need infrastructure outside J2EE, such as PHP, this is what I do.  

But, let's say you have php.mydomain.com setup for your php applications, and 
www.mydomain.com setup for Tomcat.  The problem in your case is still session 
management.  Since J2EE handle's user session manangement internally, how can your PHP 
content running through Apache possibly share the same session information?

I do plan to solve this sometime down the road with JoshuaBranch AS (JB-AS), which 
uses tokenized user access.  Eventually, I'll have SSO completely integrated in it, 
which can be shared across any server using JB-AS.  Then, I'll have client interfaces 
for PHP, among other languages.  This will permit J2EE, PHP, Python, Perl, and even 
.NET to share a user's session across all servers in an enterprise.  This is down the 
road, though.  

Today, JB-AS has a client interface for any J2EE container (JBoss, WebSphere, 
etc,...), and can secure both the Web and EJB modules  They can all share the same 
live data, so you can centrally manage your application security for all your J2EE 
applications on all your servers.  However, the current API doesn't offer applications 
the ability to share a user session (SSO), and the API for non-J2EE clients isn't 
available, yet.  Since, the security is centralized and tokenized, though, most of the 
development to enable these features is in the API.

Let me know how you end up solving your PHP problem.  If I can help answer any 
questions you have, feel free to ask.  


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: using JNDI datasource

2004-04-14 Thread [EMAIL PROTECTED]
Download the getting started doco.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: A problem on SLSB which contains a database connection

2004-04-14 Thread [EMAIL PROTECTED]
You would also need to mark the resource-ref as Unshareable.
You are also missing a close in your passivate so you would very quickly run
out of connections.

What you are doing is an anti-pattern that is only intended for BMT SFSBs driven
by a client (which is highly unscalable). One connection per SLSB is a waste.
You should open and close connections as you need them (jboss pools them behind the 
scenes).

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: give me 'databaseLoginModule example project' please.

2004-04-14 Thread [EMAIL PROTECTED]
Application code never directly uses any login module so the configuration is all that 
matters. The JAAS howto shows setting up a web application to delegate authentication 
and authorization checks to the DatabaseServerLoginModule. If this is not what you 
want describe the problem in more detail.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: RMIAdaptor Load balancing?

2004-04-14 Thread [EMAIL PROTECTED]
There is an example in the jboss testsuite
http://cvs.sourceforge.net/viewcvs.py/jboss/jbosstest/src/resources/jmx/ha/META-INF/jboss-service.xml?rev=1.2view=auto

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: JMS JMX Create topic cross restart

2004-04-14 Thread [EMAIL PROTECTED]
No

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: ConfiguredIdentityLoginModule with Oracle DS

2004-04-14 Thread [EMAIL PROTECTED]
Use the simplified *-ds.xml format. See the 
jboss-3.2.3/docs/examples/jca/oracle-ds.xml for an example.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - Re: JasperException: Unable to compile class for JSP

2004-04-14 Thread jdepons

Set the JAVA_HOME property to point at your SDK
so that jasper can find the compiler.
You don't need the j2ee SDK


I have run tomcat in the past on a JRE.  Are you saying that the SDK is required to 
run tomcat?  I am getting the same error, but do not want to make the client download 
the SDK if possible.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JBoss register Weblogic Topic mini-howto

2004-04-14 Thread ftftft
Download JBoss source code. You will find it.

maxi72 wrote : Thanks, where i find the source :
  | ./server/src/main/org/jboss/jms/jndi/JBossMQProvider.java and
  | /server/src/main/org/jboss/ejb/plugins/jms/JMSContainerInvoker.java
  | 
  | i'm using Jboss 3.2.3, and i will connect jboss MDB to queue on weblogic server.
  | 

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: JBoss deployment issues in production

2004-04-14 Thread soshah
I dont believe I have any background processes running besides the app server and the 
database server. 

the Jboss server is installed as a Windows Service using a wrapper from 
Tanukisoftware.com

WOuld this have anything to do with the problem?



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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - Re: Bug in EJB QL compiler?

2004-04-14 Thread ManneF
Hi,

Thanks for the reply - sorry about the terse info in my first post. 

Stepping through the JBoss code, I've found that the cause of the nullpointer is the 
fact that the getEntity() method in org.jboss.ejb.plugins.cmp.ejbql.ASTPath returns 
null, because the last object in the fieldList is neither an instance of 
CMRFieldBridge nor of EntityBridge, but of JDBCCMP2xFieldBridge. This causes an 
exception on line 323 in the class JDBCEJBQLCompiler.

Looks like a bug to me (especially since this deploys without errors in Orion AS), but 
a snippet from the configuration of the EJB in question and the start of the stack 
trace I get follow below.

Regards,
Manne




ejb-nameTranslationErrorEJB/ejb-name

local-homecom.zinesoft.translationerror.ejb.entity.TranslationErrorHome/local-home
com.zinesoft.translationerror.ejb.entity.TranslationError

ejb-classcom.zinesoft.translationerror.ejb.entity.TranslationErrorBean/ejb-class
persistence-typeContainer/persistence-type
prim-key-classjava.lang.String/prim-key-class
False
cmp-version2.x/cmp-version
abstract-schema-nameTranslationError/abstract-schema-name
cmp-field
field-nameoriginalLanguage/field-name
/cmp-field
cmp-field
field-nametargetLanguage/field-name
/cmp-field
cmp-field
field-nameincorrectTranslation/field-name
/cmp-field
cmp-field
field-namesuggestedTranslation/field-name
/cmp-field
cmp-field
The phrase in the original language
field-namephrase/field-name
/cmp-field
cmp-field
field-nameid/field-name
/cmp-field
primkey-fieldid/primkey-field

query-method
method-namefindByLanguages/method-name
method-params
method-param
 com.zinesoft.translationerror.ejb.entity.Language
/method-param
method-param
 com.zinesoft.translationerror.ejb.entity.Language
/method-param
/method-params
/query-method
ejb-qlSELECT OBJECT(t) FROM TranslationError t WHERE 
t.originalLanguage = ?1 AND t.targetLanguage = ?2/ejb-ql




2004-04-14 21:51:40,093 ERROR [org.jboss.ejb.EntityContainer] Starting failed
org.jboss.deployment.DeploymentException: Error compiling EJB-QL statement 'SELECT 
OBJECT(t) FROM TranslationError t WHERE t.originalLanguage = ?1 AND t.targetLanguage = 
?2'; - nested throwable: (java.lang.NullPointerException)
at org.jboss.ejb.plugins.cmp.jdbc.JDBCEJBQLQuery.(JDBCEJBQLQuery.java:50)
at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCCommandFactory.createEJBQLQuery(JDBCCommandFactory.java:59)
...



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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: ssl config in Jboss-tomcat

2004-04-14 Thread [EMAIL PROTECTED]
See:
http://jboss.org/wiki/Wiki.jsp?page=SSLSetup

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: jaas jsp login problem

2004-04-14 Thread [EMAIL PROTECTED]
For ctx.getCallerPrincipal() to return a value there must be a jboss.xml in the ejb 
jar specifying the security-domain, and there must be a method-permission that allows 
access to the caller.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: JBoss deployment issues in production

2004-04-14 Thread soshah
Also where does Jetty create the tmp directory by default. It should be default cause 
I didnt cahnge any configuration for jetty,


Thanks
Sohil

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: JAAS bug or tomcat integration?

2004-04-14 Thread [EMAIL PROTECTED]
You have modified the example to use the my-domain login configuration instead of 
the client-login. As described in the JAAS howto the name passed to the LoginContext 
maps to the server side login-config.xml login module configuration entry that will be 
used for authentication. The preconfigured entry which includes the 
org.jboss.security.ClientLoginModule is named client-login. The ClientLoginModule 
must be included in any configuration called by code doing a JAAS login that wants the 
security context to propagate with the thread.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - Re: Bug in EJB QL compiler?

2004-04-14 Thread sesques
Forget the JBoss code.
Your fields originalLanguage and targetLanguage are CMP fields, not CMR. So they are 
mapped to a column type in your database. How can you define a finder taking 
parameters which are references to another bean, and compare them to column types. 
For me, your finder can only work if originalLanguage and targetLanguage are CMR 
fields, not CMP.
But perhaps you forgot to tell all the story, or I misunderstand something ?


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: J2EE and JBoss virus alerts

2004-04-14 Thread [EMAIL PROTECTED]
Yes, so prove that the virus detector is correctly identifying modified bytecode that 
is attempting to execute the indicated win32 virus as I don't believe these warnings 
are correct.

The dist jars could be signed to ensure post installation tampering does not occur.


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


  1   2   >