[JBoss-user] [Beginners Corner] - Re: how to deploy my application

2005-04-07 Thread ritusharma07
well i read abt u in that tutorial ..u r damn talented i am just a beginner in java !! need to learn much more .i appreciate that u help me !! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873171#3873171 Reply to the post : http://www.jbos

[JBoss-user] [HTTPD, Servlets & JSP] - problems with jboss4 when compile jsp

2005-04-07 Thread braveapple
If I write <%@ page contentType ="text/html; charset="%> to indicate the charset to the compiler and the response, the jsp will be compiled by the indicated Jsp-charset. and the problem is in tomcat4 the compiler can compile the jsp with the right charset, while in tomca5, the compiler just comp

[JBoss-user] [Installation & Configuration] - NameNotFound Exception when refering to DataSource in JBOSS

2005-04-07 Thread [EMAIL PROTECTED]
Hi The following code gives a NameNotFoundException in JBOSS4.0 SP1. javax.naming.Context ctx = new javax.naming.InitialContext(); | javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup("java:/xactly-dataSource-oraclePool"); The Same code works in JBOSS 3.2.4. When I use the jndi vie

[JBoss-user] [EJB/JBoss] - xml error in jbosscmp-jdbc

2005-04-07 Thread sunonepp
Hi, My database is Postgresql8 and I have a column which is serial(auto increase) type. I followed the instruction in the jboss document as below: LocationEJB false location locationID id

[JBoss-user] [JCA/JBoss] - Deploying Non JDBC XA resource adapter

2005-04-07 Thread nilesh_yawale
Hello All, I went through the documenation available regarding deployment of JCA on JBoss. But I didn't find the information regarding how to deploy Non JDBC XA resource adapter. Is there anybody knows how to perform this deployment or is there any information available for the same on the inte

[JBoss-user] [Clustering/JBoss] - Re: Shared JNDI between cluster nodes

2005-04-07 Thread roberto
i haven't a client! all my code is only a enterprise application composed by Web and EJB modules. So i must configure jboss server environment to use the new provider url. i try to change the jndi.properties in the server/all/conf dir (all is my server) but if i do it i cannot more deploy: many

[JBoss-user] [Beginners Corner] - JBoss AS - Tomcat & httpd versions

2005-04-07 Thread lindens
Hi, I've looked at all the doco and FAQ's on JBoss.com and haven't managed to find so far anything listing JBoss versions with the versions of Tomcat and httpd(Apache?) that they ship with. Does anyone know the Tomcat and httpd/Apache versions for JBoss AS versions 3.2.5, 3.2.7, 4.0.0 and 4.0.2

[JBoss-user] [EJB/JBoss] - Re: Problems in CMP Deployment with JBoss 3.2.6

2005-04-07 Thread Anandnatraj
I Agree with you. I tried to deploy the ejb-ql that was written specific to weblogic in jboss, thinking that ejb-jar.xml is standard across the servers. But it is not the case. Now i made it to work after tailoring to JBoss specific. View the original post : http://www.jboss.org/index.html?modu

[JBoss-user] [Installation & Configuration] - is there a default administrator user in JBoss application S

2005-04-07 Thread jmanzali
Can you please let me know if JBoss application server has a default admin user account? Is it admin? what is the default password? Regatrds, Joe Manzali View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873162#3873162 Reply to the post : http://www.jboss.org

[JBoss-user] [The Lizzard's corner] - where is jboss 5.0 road map

2005-04-07 Thread swizard
I know jboss-pojo in cvs is jboss5.0-alpha can i get info about your jboss 5.0 roadmap..? how much time is needed to pulish alpha I need some infomation thx for advance View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873161#3873161 Reply to the post : h

[JBoss-user] [JBoss Getting Started Documentation] - Dukes Bank error can't find default data source

2005-04-07 Thread [EMAIL PROTECTED]
I have as a first-timer installed jboss with the j2ee samples (1.4) and followed the latest build and deploy instructions - everything went fine, I can query the hypersonic data, the customers and accounts are there, everything is fine. But when I start jboss I get "can't find data source error

[JBoss-user] [EJB/JBoss] - What does the entire query node look like...

2005-04-07 Thread spoonman464
... in your ejb-jar.xml? With some more information I can tell what's wrong. You will also find that every app server vendor adds their own features to EJB-QL so some fancy things that work on one server might not work on another. It doesn't look like you are doing anything too fancy, but I'd

[JBoss-user] [EJB/JBoss] - Can you provide more info?

2005-04-07 Thread spoonman464
Like a code example of the code that is causing this error? Maybe it's the argument you are passing to the finder method? Spoon View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873157#3873157 Reply to the post : http://www.jboss.org/index.html?module=bb&op=p

[JBoss-user] [EJB/JBoss] - Have you tried redeploying the web apps, too?

2005-04-07 Thread spoonman464
I find that whenever I redeploy an EJB-JAR, any web apps that had already been using those EJBs also need to be redeployed. I don't know the true technical reasons for it but it seems pretty consistent to me. If it's true, the reason why it all seems to work after restarting the JBoss server i

[JBoss-user] [EJB/JBoss] - It's just a standard findByPrimaryKey(pk) method, yes?

2005-04-07 Thread spoonman464
Did you write code for this query? It's my understanding that you never have to write any SQL or EJB-QL for either findAll() or findByPrimaryKey() If you have written some SQL or EJB-QL, maybe you are making problems for yourself. public ComponentIntf findByPrimaryKey(primaryKeyDataType pk) t

[JBoss-user] [EJB/JBoss] - I have only succeeded using the JNDI lookup...

2005-04-07 Thread spoonman464
when accessing EJBs remotely from a separate JVM. I don't really know for sure but I've always worked from the assumption that one server's JNDI directory only listed things from the same JVM, but I don't really know a lot about JNDI. Every time I've had the client and the EJB server runni

[JBoss-user] [EJB/JBoss] - Two datasources, two different JNDI names

2005-04-07 Thread spoonman464
I realize that I'm not giving enough information right now for you to actually DO what I suggest, but I might be able to help with some details if you are interested in this approach. In JBoss, you can use XML files in the \deploy directory to declare datasources, for example, a file called mys

[JBoss-user] [EJB/JBoss] - Maybe it's a silly question but...

2005-04-07 Thread spoonman464
are you using a real hostname in your jndi.properties file or does your actual file look exactly as you posted it? If so, take a look at this line: java.naming.provider.url=jnp://:1099 You really need a hostname and cannot leave it as Let me know because I have lots of experience getting

[JBoss-user] [JBossCache] - Re: eviction errors

2005-04-07 Thread drosenbaum
Hi, There still has not been a response. Does anyone have a suggestion please how to clear the entire cache right now? And is it wrong to simply do cache.remove("/")? If so why is it wrong, will memory not be freed up or something like that? And why would the eviction class log these as err

[JBoss-user] [Beginners Corner] - Re: JBoss 3.2.7 with Tomcat 5.5.7

2005-04-07 Thread [EMAIL PROTECTED]
The guide is to use 4.0.2RC1 as this is the first to support tomcat 5.5.x. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873150#3873150 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873150 --

[JBoss-user] [Beginners Corner] - JBoss 3.2.7 with Tomcat 5.5.7

2005-04-07 Thread nvijayap
Hi, Could someone please guide me in using JBoss 3.2.7 with Tomcat 5.5.7 ? I am using jdk1.5 Thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873148#3873148 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873148

[JBoss-user] [EJB/JBoss] - stateless seesion beans RemoveCount alwayes be zero,cause me

2005-04-07 Thread jbTaba
There have some stateless seesion beans in my system,it work properly on websphere and weblogic,but it cause memory leak when I using JBOSS(3.2.x or 4.0),the beans RemoveCount alwayes be zero on web-console.anybody got the same with me?how can I solve this problem? View the original post : ht

[JBoss-user] [Management, JMX/JBoss] - Re: MBean waiting for Webapp - Deployment

2005-04-07 Thread mcorey
I'm seeing this exact issue with JBoss 3.2.7 (I realize the original thread is an old one)... is there a different way of doing this, or is this a known issue when trying to put a dependancy on a war that lives inside an ear? M View the original post : http://www.jboss.org/index.html?module=bb

[JBoss-user] [Beginners Corner] - Re: how to deploy my application

2005-04-07 Thread vashistvishal
There are lots of tutorials other one is JBoss Workbook with examples. Also i published this tutorial way back, with JBoss-3.2x you can always learn with this still a very good resource to learn http://www.tusc.com.au/tutorial/html/index.html View the original post : http://www.jboss.org

[JBoss-user] [Installation & Configuration] - multiple domains hosting with jboss 4.0.1 and one static IP

2005-04-07 Thread cgrahamatip
I have jboss 4.0.1sp1 running on RedHat 9.x. I can run a single domain without a problem. Or, I can run multiple domain however they don't have the correct landing point. Example: with domain "www.mysite.com" and "www.yoursite.com". I would have to set one of them up so it doesn't use the "/"

[JBoss-user] [JCA/JBoss] - Failing to register MDB (jca.name='null')

2005-04-07 Thread rossmason
Hi All, I'm using JBoss 4.0.sp1. I have a custom RA that I have deployed to the server successfully and can inspect it from the jmx console. I have simple ejb app that has a single session bean and a MDB. When the MDB is being registered Jboss tries to find the corresponding RA to register t

[JBoss-user] [Beginners Corner] - Re: import a class into jsp error - quick question ...

2005-04-07 Thread wiley173
Well, my xdoclet and packaging were really screwed up to say the least. I went back into the JBOSS IDE Quick Start Guide and modeled my app after the tutoria and found my error. After figuring that out it works beautifully. I still can't figure out why I don't have to add anything to the configu

[JBoss-user] [Beginners Corner] - Re: import a class into jsp error - quick question ...

2005-04-07 Thread wiley173
Let me just say I'm trying to understand the file system on jboss coming from tomcat. I have this simple application working great on tomcat but when I pack it up into an ear file it has a problem with ONLY import com.** . What am I not getting, I haven't put in any ejb's yet I'm just trying to

[JBoss-user] [Beginners Corner] - import a class into jsp error - quick question ...

2005-04-07 Thread wiley173
I can import org.gjt.mm.mysql.* into my jsp page but I always get "error package not found" when I try and import com.mypackage.* ... They are both setup the same way ? Will jboss only understand org.** thanks... in advance View the original post : http://www.jboss.org/index.html?module=bb&op

[JBoss-user] [Installation & Configuration] - WEB-INF/classes not reloaded

2005-04-07 Thread dhill
I am wondering howto config 4.0.1 to get an exploded war/web-inf/classes reloaded on a change in the class file. It seems that Deployment scanner only picks up the jars. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873133#3873133 Reply to the post : htt

[JBoss-user] [Persistence & CMP/JBoss] - Re: Why does JBoss load each column separately?

2005-04-07 Thread ereze
I am seeing this behaviour too in one of my entities where no matter what the CMP engine generates & fires a seperate SQL SELECT query for each cmp field accessed. I am too, using 3.2.6, why is it happening when the default load-group is set to '*'? Thanks in advance, Erez View the original

[JBoss-user] [EJB/JBoss] - java.io.WriteAbortedException: writing aborted; java.io.NotS

2005-04-07 Thread anu_katta
Hi All, I was wondering why i am getting this exception while starting my Jboss 4.0.0 with my core.ear file deployed on it. And if I close this and restart my jboss again then i didn't see this. but sometimes it was really time consuming to do this. So is there anyway I fix this problem? Anybod

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

2005-04-07 Thread dvobss
I've installed and used 3.2.x versions on Linux and Windows before without any problems. I've also installed and configured 4.0.1 on Windows XP with MySQL 4.1.0 database without any issues. I've been trying to get 4.0.1 to work with MySQL 4.0.21 on SUSE 9.2 and I get an error. JBoss starts up an

[JBoss-user] [Clustering/JBoss] - Re: Start JBoss-All fail

2005-04-07 Thread cruiz13
I think, this error because the another other the cluster have network blocking View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873129#3873129 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873129 -

[JBoss-user] [Beginners Corner] - Re: New to jboss aop

2005-04-07 Thread drakonis
I had to set in /default/deploy/jboss-aop.deployer/META-INF/jboss-service.xml EnableTransformer to true. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873126#3873126 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873

[JBoss-user] [EJB/JBoss] - Re: Creating CORBA wrapper servants for EJB objects

2005-04-07 Thread jiwils
"radl01" wrote : Using MBean is the good point but you can write your own CORB-to-EJB proxy servants and run this servants in separate CORBA server. It is very easy to write proxy generator which does all the work for you. This solution has one big advantage: | | You can use this scenerio f

[JBoss-user] [JCA/JBoss] - Re: Using JBoss jms-ra.rar in another application server

2005-04-07 Thread disrael
I have a JBossMQ.rar that I built out of jms-ra.rar but it is just a thin wrapper around jbossmq-client.jar. Since you are redoing JBossMQ anyway I will raise a feature request for the new development to keep JCA in mind. Thanks again. View the original post : http://www.jboss.org/index.html?

[JBoss-user] [JCA/JBoss] - Re: Using JBoss jms-ra.rar in another application server

2005-04-07 Thread [EMAIL PROTECTED]
Raise a feature request in JIRA or even better provide a patch. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873113#3873113 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873113 -

[JBoss-user] [Security & JAAS/JBoss] - Re: Share session

2005-04-07 Thread milkygto
I just lookup the servlet specIt looks like this isn't working with tomcat..? Anyone know how can I share the users principal in different web application in the same security domain without re-authenticate again? SRV.12.6 Server Tracking of Authentication Information As the underlying secur

[JBoss-user] Setting Virtualhost in jboss 4.0.1sp1

2005-04-07 Thread Will Clark
I have jboss 4.0.1sp1 running on Red Hat 9.x with a static IP. I am deploying the web apps using war and/or ear files. I want to host three sites from the same status IP request. Form reading on-line articals, it seems I need to use virtual hosts and setup aliases to point to the correct war file

[JBoss-user] [Installation & Configuration] - Re: ClassCastException when JBoss configures Log4j

2005-04-07 Thread parressh
At least the JBoss team is consistent with not finishing their replies. You can set the log4j.defaultInitOverride system property by adding -Dlog4j.defaultInitOverride=true to the JAVA_OPTS line your run.bat (windows) or run.conf (linux) file. View the original post : http://www.jboss.org/inde

[JBoss-user] [J2EE Design Patterns] - send messages from Statefull to anoteher one.

2005-04-07 Thread fabrefumi
Dear All, I have an easy question to resolve, Which is the better communication architecture between two Statefull beans. Statefull bean A (producer) MDB? Statefull bean B (consumer) its possible? i don't know how communicate the MDB who recibes de messages with the Statefulbean B (consumer.)

[JBoss-user] [Security & JAAS/JBoss] - Share session

2005-04-07 Thread milkygto
Is there any way I can share my principal/session across different war files within the same ear? or even in didn't ear files? I want to break up my huge web application into different war modules. I think websphere already have something like that. I wouldn't be suprise if jboss has and I don'

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: new InitialContext(remote) in servlet returns local jndi

2005-04-07 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBAS-1442 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873096#3873096 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873096 --- S

[JBoss-user] [Security & JAAS/JBoss] - Re: Flex + JBoss

2005-04-07 Thread fanchlelay
Actually step 3 in previous message was stripped, they advise adding a Valve tag in conf/server.xml: Valve className="flashgateway.security.TomcatValve" And step 4 doesn't matter, I'm using Jboss 4 with Tomcat 5 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p

[JBoss-user] [Security & JAAS/JBoss] - Flex + JBoss

2005-04-07 Thread fanchlelay
Hi all, I'm currently experimenting with Macromedia Flex, the application I am experimenting with is a sample available on Macromedia's website (http://macromedia.com/devnet/flex/articles/security_framework.html). The app is all about using custom authentication with RemoteObject and I'm stuc

[JBoss-user] [JBossWS] - Re: Problem with port-component-uri in two ejbs

2005-04-07 Thread acxsjones
Found some more information I looked at the war file that was generate off of both ejbs. They both gen'd the same jboss-web.xml | | | | /jboss-net | | So how do I get two ejbs working that use /jboss-net/services as the base context one with /jboss-net/services/helloworl

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: new InitialContext(remote) in servlet returns local jndi

2005-04-07 Thread justkeys
Adrian: i don't see which faq entry has anything to do with my question. I know there are some faq entries about MDB's listening to a remote jboss, but that is not what i am pointing out. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873089#3873089 Repl

[JBoss-user] [EJB/JBoss] - Re: jdom problems with 4.0.1sp1

2005-04-07 Thread fowlerb
Just in case anyone has a similar problem, tracked this issue down to the info.xml file inside the MANIFEST.MF in the jdom.jar. This seems to be causing JBoss to think it is something more than just a regular java archive. Anyway repackaging jdom without this file resolved the problem. Brian

[JBoss-user] [JBossWS] - Problem with port-component-uri in two ejbs

2005-04-07 Thread acxsjones
I am trying to test backward comp with EJBs that I created under jboss 3.2.4 under JBoss 4.0.2RC1. I am able to create an ejb from the old wsdl that and deploy it under jboss-ws and the old client works great. I had to use port-component-uri in jboss.xml to change the context to look like the

[JBoss-user] [JBossCache] - Re: JDBCCacheLoader feature

2005-04-07 Thread lac_raz
when using LRUPolicy as eviction policy I get the next exception : Caused by: java.lang.NullPointerException at org.jboss.cache.eviction.LRUPolicy.nodeVisited(LRUPolicy.java:100) at org.jboss.cache.TreeCache.notifyNodeVisisted(TreeCache.java:3208) at org.jboss.cache.TreeCac

[JBoss-user] [JBossCache] - Re: JDBCCacheLoader feature

2005-04-07 Thread lac_raz
when using LRUPolicy as eviction policy I get the next exception : Caused by: java.lang.NullPointerException at org.jboss.cache.eviction.LRUPolicy.nodeVisited(LRUPolicy.java:100) at org.jboss.cache.TreeCache.notifyNodeVisisted(TreeCache.java:3208) at org.jboss.cache.TreeCac

[JBoss-user] [Security & JAAS/JBoss] - Re: LDAP & JBoss outside the domain

2005-04-07 Thread radl01
What is your login-config look like ? Jan View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873073#3873073 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873073 --- SF

[JBoss-user] [Installation & Configuration] - Re: JBoss Deployment order within ear

2005-04-07 Thread mentiro
Yeah - I tried adding a element to the SAR to make my MBean start after the WAR. I tried adding depends tags like the following: jboss.management.local:J2EEApplication=tdi.ear,J2EEServer=Local,j2eeType=WebModule,name=tdi.war jboss.web:J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=

[JBoss-user] [EJB/JBoss] - Re: Jboss and Websphere problem !

2005-04-07 Thread radl01
And what about to use resource reference | * @ejb.resource-ref | * res-ref-name = "jdbc/MyDataSource" | * res-type = "javax.sql.DataSource" | * res-auth = "Container" | * res-sharing-scope = "Shareable" | * @jboss.resource-ref | *res-ref-name="jdbc/MyDataSource"

[JBoss-user] [EJB/JBoss] - Re: Creating CORBA wrapper servants for EJB objects

2005-04-07 Thread radl01
Using MBean is the good point but you can write your own CORB-to-EJB proxy servants and run this servants in separate CORBA server. It is very easy to write proxy generator which does all the work for you. This solution has one big advantage: You can use this scenerio for any J2EE App server. W

[JBoss-user] [Beginners Corner] - AutoIncrement Primary Key in CMP

2005-04-07 Thread mukti
Hello, I want to automatically increment the primary key field in the database(MySql) in a CMP bean. I have written the following lines in the jbosscmp-jdbc.xml java.lang.Integer userID userID INTEGER INT(11) But when i get a Nullpointer exception when i try to insert a record th

[JBoss-user] [Management, JMX/JBoss] - Re: MLet StackOverflowError

2005-04-07 Thread qdanfro
Oh, I forgot, I'm using JBoss 4.0.1 SP 1... /qdanfro View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873068#3873068 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873068 ---

[JBoss-user] [Management, JMX/JBoss] - MLet StackOverflowError

2005-04-07 Thread qdanfro
I try to load two MBeans via the javax.management.loading.MLet class and the getMBeansFromURL method. I keep getting an StackOverflowError, I guess caused by some class loading problem. This works on Sun AS 8.1 and on WebLogic 9.0... Here is the mlet tags: Some code: String dom

[JBoss-user] [HTTPD, Servlets & JSP] - Re: jboss classloading question

2005-04-07 Thread treespace
Class loaders are nested to provide isolation. WARs use war-local resources, EARs use ear-local, ditto for SARs and so on. The configuration is next followed by jars or classes in the server. WAR files have the added requirement of an option that stipulates that no classes outside of system

[JBoss-user] [JBossCache] - Re: JDBCCacheLoader feature

2005-04-07 Thread [EMAIL PROTECTED]
Look into your table schema, check for a PARENT column View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873065#3873065 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873065 --

[JBoss-user] [EJB/JBoss] - Server 4.0 and client 3.2.1 error

2005-04-07 Thread oysteinpettersen
Hi. I have ear application deployed on jboss 3.2.1 (CVSTag=JBoss_3_2_1 date=200305041533) The client code for this application uses the jbossall-client.jar to connect and use the ejb's. The problem is that when I deployed the application on jboss 4.0.1 (CVSTag=JBoss_4_0_1_RC1 date=200411041143

[JBoss-user] [JBossCache] - Re: Use of Fetch Flags for Cache Loaders

2005-04-07 Thread jiwils
Oops! I meant to ask about the CacheLoaderFetchTransientState attribute not the CacheLoaderFetchPersistentState attribute. I must have copy/pasted the wrong thing. When using CacheLoaderFetchTransientState set to true, the cache loader never has anything added to it when joining an extant clu

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JBOSS DLQ Exception

2005-04-07 Thread [EMAIL PROTECTED]
It never was ported from 3.2. It has been done for the 4.0.2 release. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873055#3873055 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873055 ---

[JBoss-user] [Installation & Configuration] - Re: tomcat 5.5 integration with jboss4

2005-04-07 Thread [EMAIL PROTECTED]
Use 4.0.2RC1 or latter. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873052#3873052 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873052 --- SF email is sponsore

[JBoss-user] [Clustering/JBoss] - Re: Shared JNDI between cluster nodes

2005-04-07 Thread anguyen
Try this: http://java.sun.com/products/jndi/tutorial/beyond/env/source.html You can specify the provider url in jndi.properties. Make sure the file is in the client's classpath. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873053#3873053 Reply to the post

[JBoss-user] [JBossCache] - Re: I think I didnÂt understand

2005-04-07 Thread lehphyro
Now I understood, it configures itself on create node. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873051#3873051 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873051 --

[JBoss-user] [JBossCache] - Re: JDBCCacheLoader feature

2005-04-07 Thread lac_raz
I tried to configure the JDBCCacheLoader with the next params : org.jboss.cache.loader.JDBCCacheLoader true / false false cache.jdbc.table.name=subscribers cache.jdbc.fqn.column=MSISDN cache.jdbc.fqn.type=VARCHAR2

[JBoss-user] [JBossCache] - Re: Using pre-configured CacheLoader

2005-04-07 Thread [EMAIL PROTECTED]
Actually, do another cvs update, because that code caused an NPE, the real code is: protected void createCacheLoader() throws Exception { if(cache_loader == null && cache_loader_class != null) { Class cl=Thread.currentThread().getContextClassLoader().loadClass(cache_loader_class);

[JBoss-user] [JBossCache] - Re: Problem with CacheLoader getChildrenNames

2005-04-07 Thread [EMAIL PROTECTED]
When a node gets evicted, the flag children_loaded goes with it (I made sure of that), so eviction is not a problem. It works for now, I might revisit this later. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873047#3873047 Reply to the post : http://www.jb

[JBoss-user] [Installation & Configuration] - Re: No ManagedConnections available and Connections are not

2005-04-07 Thread snvkgram
Hi, I am also getting the same problem. I am using Jboss 3.2.3 and Postgresql 8.0 windows version. I found that connections are not getting closed or they are returned to pool even though my code is seems to be right. Ultimately all connections are open and finally i need to restart th

[JBoss-user] [JNDI/Naming/Network] - Re: JBoss- or Java-Configuration Error?

2005-04-07 Thread Dumbledore
Thanks a lot! That's it. Seems to me like I need to learn more about linux-administration... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873045#3873045 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873045 ---

[JBoss-user] [Security & JAAS/JBoss] - Re: JBoss + Active Directory

2005-04-07 Thread gmeroz
update login-config.xml with the following: com.sun.jndi.ldap.LdapCtxFactor ldap://107.12.42.12.test.com:389/ simple simple false @test.com sAMAccountName

[JBoss-user] [JBossCache] - Re: Using pre-configured CacheLoader

2005-04-07 Thread akropp
That will do it. Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873039#3873039 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873039 --- SF email is sponsor

[JBoss-user] [JNDI/Naming/Network] - Re: JBoss- or Java-Configuration Error?

2005-04-07 Thread darranl
You need to edit the /etc/hosts of the Linux machine to contain the IP address of itself, at the moment it is set to 127.0.0.1. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873038#3873038 Reply to the post : http://www.jboss.org/index.html?module=bb&op=pos

[JBoss-user] [JBossCache] - Re: Problem with CacheLoader getChildrenNames

2005-04-07 Thread akropp
I agree that it is less than ideal. Also, there is an additional concern with any approach that relies on the state of the cache nodes -- if you flag that the children have been loaded, what happens when one of them gets evicted. Does the flag get cleared? For consistancies-sake, it would hav

[JBoss-user] [Security & JAAS/JBoss] - Re: LDAP & JBoss outside the domain

2005-04-07 Thread gmeroz
i forgot to say i'm using ActiveDirectory View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873036#3873036 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873036 --- SF

[JBoss-user] [Security & JAAS/JBoss] - Cactus secured

2005-04-07 Thread Dumbledore
Hi, I'm using the Cactus-framework for testing within eclipse. As I secured the ejb's in my application, I needed zu configure Cactus to login with username and password. I had already Cactus-testcases written, that ran before I secored the ejb's. I had configured Cactus in the web.xml of the

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: How to resolve error javax.jms.InvalidClientIDException:

2005-04-07 Thread bartvh
I am hesitating to install this ClientReconnectInterceptor, because of the change in semantics. My new question is : would a ClientMonitorInterceptor also work? The idea is that this interceptor would close the stale connection (the connection won't be used because the client side has thrown a

[JBoss-user] [JNDI/Naming/Network] - JBoss- or Java-Configuration Error?

2005-04-07 Thread Dumbledore
Hi, I use JBoss 4.0.1sp1. I wrote a server-application that is deployed, and a (rich-) client-application, which fetches remote-references of a bean. Running both applications (from within eclipse) on the same machine works well. The client connects to the server and retrieves the references. P

[JBoss-user] [Beginners Corner] - Re: how to deploy my application

2005-04-07 Thread ritusharma07
bye the way can u tell me how to make a simple aaplication in jboss becoz in our company they all use weblogic so no body has idea abt jboss!! i will be thankful to u!! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873032#3873032 Reply to the post : http://

[JBoss-user] [Beginners Corner] - Re: how to deploy my application

2005-04-07 Thread ritusharma07
hey thanks so much "vashistvishal" wrote : First of all u seemed to be having too many doubts and seems to be lost in somewhere. | You have to provide more details what u intend to do. | | As far as deploying an application in JBoss is considered | just need J2sdk that is the on

[JBoss-user] [JNDI/Naming/Network] - Re: Getting JNDI Context from remote machine per https

2005-04-07 Thread justkeys
(copied from a thread in MQ forum) Problem: Looking up the jndi tree of a remote jboss, over http (http://192.168.20.11:80/invoker/JNDIFactory), works fine from stand-alone java client. When doing that from inside a servlet in a local jboss, it returns local jndi tree of local jboss. Doing t

[JBoss-user] [Clustering/JBoss] - Re: Which Instance to use ?

2005-04-07 Thread sanjuthomas
Thank You Ben. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873027#3873027 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873027 --- SF email is sponsored by - The

[JBoss-user] [Installation & Configuration] - Netboot configuration with JBoss 4.0.1

2005-04-07 Thread yaronz
Hi, I'm trying to get a simple Netboot configuration to work with 4.0.1sp1, and facing a lot of problems - currently working with support to resolve them. However, has anyone besides JBoss core engineers successfully got a netboot configuration to work with 4.0.1sp1? If so, any advice on how to

[JBoss-user] [JCA/JBoss] - how to let jboss reload the changd oracle-ds.xml

2005-04-07 Thread hongfengsun
Hi, i am using oracle-ds.xml in deploy directory to point to my oracle server A. jdbc:oracle:thin:@serverA:1521:vector if I change the connection url to point to server B jdbc:oracle:thin:@serverB:1521:vector jboss cannot reload the connectionFactory, i have to restart jboss to let it pick

[JBoss-user] [Beginners Corner] - RequestDispatcher error

2005-04-07 Thread Asty
Hi, I am working on JBoss 3.2.1. I have a module Validation which has a servlet SystemController.java | HttpSession session = request.getSession(true); | System.out.println(loggerIdentity); | //System.out.println(postedAt); |

[JBoss-user] [Security & JAAS/JBoss] - LDAP & JBoss outside the domain

2005-04-07 Thread gmeroz
Hi, i installed JBoss with the same configuration on 2 computers (both in the same network one of them is outside the domain) And i'm using LDAP for authentication. from some reason, i can not login into the applicaiton on the machine which is not in the domain. does anyone know how to fix it?

[JBoss-user] [Installation & Configuration] - tomcat 5.5 integration with jboss4

2005-04-07 Thread veenaveena
How to integrate tomcat5.5 with jboss 4 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873019#3873019 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873019 --- SF e

[JBoss-user] [Management, JMX/JBoss] - Re: Anyone succeeded with monitoring-service.xml configurati

2005-04-07 Thread [EMAIL PROTECTED]
The EmailAlertListener works and is specific to the web-console. I think the name is a bit missleading because it doesn't actually 'listen' for notifications, it waits for notifications to be push to it, which is not correct, IMO and it expects a particular notification class. On the other hand

[JBoss-user] [JNDI/Naming/Network] - Re: Getting JNDI Context from remote machine per https

2005-04-07 Thread m.schiessl
In FAQ there is a solution to edit hosts file. But it did not work for us. Michael View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873015#3873015 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873015 -

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: new InitialContext(remote) in servlet returns local jndi

2005-04-07 Thread m.schiessl
We exactly have the same problem under windows platform and jboss4.01sp1. Changes to hosts did not solve our problem. Did it solve the problem to you ? Are there further possibilities to address the problem ? Michael View the original post : http://www.jboss.org/index.html?module=bb&op=viewtop

[JBoss-user] [EJB/JBoss] - Re: Entity bean failing as DataSource not deployed before be

2005-04-07 Thread darranl
You say that the sar makes use of the EJB3 entity bean, this in turn makes use of the datasource. Instead of making your SAR depend on the datasource that will be deployed early have you tried making it depend on the entity bean deployment instead? View the original post : http://www.jboss.org

[JBoss-user] [Installation & Configuration] - JBoss does not work with UML (User Mode Linux)

2005-04-07 Thread nicolaiwadstrom
Hi, I am trying to use JBoss with User Mode Linux on a server, and after some testing it seems to work with JDK 1.4.2, but not with Sun JDK 1.5 (also tried with 1.5.0 update 2). Running on the host itself works fine (both JDK 1.4.2 and 1.5.0), but not in the UML, running minimal config under

[JBoss-user] [Installation & Configuration] - Re: wrong language @JBoss startup on Linux

2005-04-07 Thread Rhodan
Found a solution: adding in the "run.conf" file Parameters for the JVM will forcing jboss to the desired language. add: JAVA_OPTS="$JAVA_OPTS -Duser.language=de -Duser.coutry=DE" View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873011#3873011 Reply to the po

[JBoss-user] [Installation & Configuration] - Logging problem with JBoss

2005-04-07 Thread chitrasrivats
Hi, Unable to start the application as the application server hangs at this line of the code: root.removeAllAppenders(); root is initialized with the following line Logger root = Logger.getRootLogger(); to retrieve the root logger. If the line root.removeAllAppenders() is commented, the app

[JBoss-user] [Management, JMX/JBoss] - Anyone succeeded with monitoring-service.xml configuration ?

2005-04-07 Thread ionel
Hi, I'm trying to get monitoring service working. I want JBoss to send me a mail when memory goes high. I changed the default parameters in the org.jboss.monitor.alerts.EmailAlertListener, uncommented it, uncommented org.jboss.monitor.services.NotificationListener and org.jboss.monitor.service

[JBoss-user] [JBossCache] - Re: Problem with CacheLoader getChildrenNames

2005-04-07 Thread [EMAIL PROTECTED]
Okay, I used the flag approach, although I'm not too happy to have to add a boolean children_loaded to Node. This flag is only used by the CacheLoaderInterceptor, so it breaks separation of concern. Well, for now anyway, it works. Thanks, View the original post : http://www.jboss.org/index.htm

[JBoss-user] [JCA/JBoss] - Re: DATASOURCE AND JNDI

2005-04-07 Thread salinaale
if this can help: in every definition of ejb in ejb-jar.xml i've put XX jdbc/MYDB javax.sql.DataSource Container and the only way i found to solve the problem is to create a jboss.xml like this... ... ... Y

[JBoss-user] [Installation & Configuration] - Re: wrong language @JBoss startup on Linux

2005-04-07 Thread Rhodan
a "env |grep NLS" gives me the following ouput... XNLSPATH=/usr/X11R6/lib/X11/nls ORA_NLS33=/opt/oracle/product/9ir2/ocommon/nls/admin/data View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873006#3873006 Reply to the post : http://www.jboss.org/index.html?m

  1   2   >