[JBoss-user] [EJB/JBoss] - How to deploy customer extensions in EJB-Server?

2004-06-29 Thread mattinVS
Hello, I would like to know, what is the best way to deploy customer extensions to a J2EE application (which is deployed as an .ear file) . I am using a configurable dynamic class loading to allow product customization (usually implementations of interfaces). I know some possible solutions, bu

[JBoss-user] [Persistence & CMP/JBoss] - CMP and dynamic finder

2004-06-29 Thread thiagoSouza
Hi ppl, Any one knows if there's a way to implement a dynamic finder using CMP? Thanks in advance, Thiago Souza View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840399#3840399 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode

[JBoss-user] [EJB/JBoss] - Re: Creating EJB object of local interface from servlet

2004-06-29 Thread [EMAIL PROTECTED]
Thanks for the reply here are both the files: web.xml: TestLocalWar USERBEAN_JNDINAME UserBMBean UserStampServVar UserStampServVar EJB.TimeStamp.Servlets.UserStampServVar UserStampServVar /TestLocal 30 ---

[JBoss-user] [Javassist user questions] - Retrieve all the variable values ???

2004-06-29 Thread eric138
How can I get all the values of constant variables ??? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840397#3840397 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840397 ---

[JBoss-user] [Security & JAAS/JBoss] - Re: How does the cache policy get instatiated?

2004-06-29 Thread cbrettin
In case anyone was dying of curiosity, I happened to come across the definition of java:timedCacheFactory. It's in JaasSecurityManagerService- the factory is created (and JNDI-bound) when the MBean is started, so if you didn't have the factory then this service hadn't started properly (check con

[JBoss-user] [Messaging, JMS & JBossMQ] - speed up jms singleton failover

2004-06-29 Thread pucky
Totally loving 3.2.4!! I've got a system with 12 servers with 3 cluster partitions, and I'm having a problem with the length of time it takes for the jms singleton to fail over in the main cluster. Cluster1 name "DefaultPartition" all works fine except the failover take about 2mins Cluster2 na

[JBoss-user] [Nukes User] - Re: html standards compliance

2004-06-29 Thread joehobson
I did an entire system redesign around XHTML, CSS, and W3C Accessibility about a year and a half ago, for a ColdFusion system i run for my dayjob. It has many benefits and very few drawbacks so i would definitely reccommend it. Knowing you want to do it is the easy part, actually getting the cor

[JBoss-user] [EJB/JBoss] - JavaBean passing to a session between two different VM

2004-06-29 Thread tklivan
Hi all, I need some direction or answers if possible. I have a client that runs remotely (another vm) and JBOSS having some session beans on another VM. I instantiates a normal javabean and sets the properties in it and passes it as a parameter to the session bean, the value on the session bean

[JBoss-user] [Security & JAAS/JBoss] - Re: How to use RunAsLoginModule?

2004-06-29 Thread cbrettin
You don not use a seperate login context, you just stack the modules. Simply place the RunAs module before the other login module in the config - it sets up the runAs identity on initialisation and clears it during the commit phase. Thus the identity is active during the initialize and login phas

[JBoss-user] [Messaging, JMS & JBossMQ] - The hajms-examples.sar.zip does not work at 4.2.4 and 4.2.5

2004-06-29 Thread wangchen_ca
I'm testing the HAJMS in jboss 4.2.4 and 4.2.5. I find the example at http://www.jboss.org/wiki/Wiki.jsp?page=JBossMQHA I find the example can't be deployed correctly. Can the author double check it? The error shows : anonymous wrote : Failed to find META-INF/jboss-service.xml I try to make a

[JBoss-user] [Security & JAAS/JBoss] - Re: Roles Update Problem

2004-06-29 Thread auckyboy
Hi Nod/clcantrell, gorano, Can you please elaborate on how to clear the cache and change the time to live. Tthx View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840389#3840389 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=rep

[JBoss-user] [EJB/JBoss] - Re: Scoped Ear / EJB Access

2004-06-29 Thread jae77
are the DAOs behing the stateless session beans? or are they standalone POJOs? the reason to seperate the ejb impl classes to avoid deploying the classes twice (i believe jboss will complain about this) - this makes lots of sense if you have entity beans and are planning to have a read-only and

[JBoss-user] [JBoss.NET & SOAP] - Re: get rid of jboss-net/service and just have url have my g

2004-06-29 Thread cbrettin
An alternative is to add your own Axis servlet (JBoss.NETis basically Apache Axis), with it's own context. As the Axis libraries are already on the classpath as part of the jboss.net install the only files needed in the war for the axis servlet are web.xml and the axis config. This also allows y

[JBoss-user] [EJB/JBoss] - Re: Creating EJB object of local interface from servlet

2004-06-29 Thread john_anderson_ii
"[EMAIL PROTECTED]" wrote : | public void init(ServletConfig config) throws ServletException | { | ServletContext sctx = config.getServletContext(); | | try | { | InitialContext initialContext = new InitialContext(); | |

[JBoss-user] [EJB/JBoss] - Re: Scoped Ear / EJB Access

2004-06-29 Thread [EMAIL PROTECTED]
The desire to limit access to the DAOs, etc is more from a design perspective, not a security one. Your approach is essentially the same, except that I have always bundled my "lib" classes in with the "ejb" jar descriptors. This approach has always worked in weblogic and I assumed it would wo

[JBoss-user] [EJB/JBoss] - Re: Scoped Ear / EJB Access

2004-06-29 Thread jae77
i'm confused about how this is going to be deployed. are you going to "host" the server side of things and then have a client connect over some type of vpn, etc? if they were to "host" both sides, there's nothing that would prevent them from unpackaging the ears, and decompiling your classes - a

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS+HAIL+XA: Pooled Connections Never reconnects on sing

2004-06-29 Thread arisa
Excellent. I see now why the ManagedConnections do not get flushed from the pool on a ConnectionError. Thanks all again. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840381#3840381 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&

[JBoss-user] [EJB/JBoss] - OutOfMemoryError - Singleton PK Generator

2004-06-29 Thread john_anderson_ii
As a learning project, I'm writing an OSS J2EE application for help desk call tracking. The "tickets" use their ticket number as their primary key in the database, and the TICKETS table is access via a CMP bean. For several reasons I've decided to not use the auto-increment method for generati

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Redirect from Apache to JBoss losing request/session inf

2004-06-29 Thread monocongo
Thanks for the suggestion. This was remedied by putting all of the servlets, and not just the first one which did an initial authentication, into the of the web.xml of the JBoss web application. The remote user information is now available to all of the servlets which need it (as long as they

[JBoss-user] [Clustering/JBoss] - Re: JBoss 3.2.2 Clustering Issues After Servers are Running

2004-06-29 Thread [EMAIL PROTECTED]
You could provide some helpful data for example: CPU/System/Config -- such as Dell Precision 650 (P-IV 3.0 Ghz, 2G Ram), 3-Drive RAID (striped set) OS = RedHat Linux 9 Network -- Single 3Com NIC card with Gigabit Ethernet Switch -- HP ProCurve 2424M === Just some simple stuff to get me groun

[JBoss-user] [Installation & Configuration] - Re: test & prod environments on same Jboss box

2004-06-29 Thread jagertee
Thanks Janilsal Yes, I agree - separate prod from the others. Probably will be done, lets say they have 2 boxes for 3 systems (test, demo and prod). OK, like you say, combine test and demo. Same question applies - what's the method or approach people have made to solve this? Instances of JBOSS

[JBoss-user] [Clustering/JBoss] - Re: JBoss 3.2.2 Clustering Issues After Servers are Running

2004-06-29 Thread [EMAIL PROTECTED]
Okay... you have the correct config file... cluster-service.xml See the section that says PING Timeout---change the 2000 to 5000 (which is 5 seconds) (Bela may have other insight or preferences here... but this works for me). PING Msgs is how J-Groups performs its status checks. Upping the time

[JBoss-user] [HTTPD, Servlets & JSP] - Re: How to integrate Apache and JBoss

2004-06-29 Thread janilsal
Apache can run as port 80 [need root privileges] Jboss can run on other ports. Apache--->mod_jk2--->Jboss View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840373#3840373 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Redirect from Apache to JBoss losing request/session inf

2004-06-29 Thread janilsal
As far as I remember, redirecting always creates new sessions and forwards retains the session/request info. Can't u use mod_jk as a connect b/w Apache and Jboss/Tomcat? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840372#3840372 Reply to the post : http:

[JBoss-user] [Installation & Configuration] - Re: JBoss-3.2.5 Startup Failure

2004-06-29 Thread janilsal
If u change JDK to 1.4.x, does the behavior appear? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840371#3840371 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840371 -

[JBoss-user] [Installation & Configuration] - Re: Installation on Mandrake Linux

2004-06-29 Thread janilsal
JBoss uses Java. As long as you can figure out how to tweak the scripts, and able to run JBoss on the Mandrake box, it should not be a big thing. Try it out... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840370#3840370 Reply to the post : http://www.jbos

[JBoss-user] [JBoss.NET & SOAP] - Re: RemoteAdaptor - invoke(ObjectName, String, Object[], Str

2004-06-29 Thread cbuckley
Found the answer I was looking for in an article. // The connection URL. String endpoint = "http://roosevelt/jboss-net/services/RemoteAdaptor";; Service service = new Service(); Callcall= (Call) service.createCall(); c

[JBoss-user] [Installation & Configuration] - Re: test & prod environments on same Jboss box

2004-06-29 Thread janilsal
Keep production seperate from unrelated installations. Dont' want to bring down prod by others. Maybe you can combine the test and demo instances into one. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840368#3840368 Reply to the post : http://www.jboss.o

[JBoss-user] [Clustering/JBoss] - Re: JBoss 3.2.2 Clustering Issues After Servers are Running

2004-06-29 Thread rcostanzo
A couple of questions on which configs to change. My current jgroups settings in cluster-service looks like: ProductionPartition False

[JBoss-user] [Clustering/JBoss] - Fail-Over on EJB stateless fails (!!) (UndeclaredThrowableEx

2004-06-29 Thread twingocerise
Hi, i got a problem, and i know you got the solution (please ;) ). In order to study clustering in JBoss, i need to create a EJB stateless and show, using 2 instances of JBOSS on my pc, how fail-over operates when one node is down. I use this code (my remote ejb interface is called Clustered):

[JBoss-user] [Clustering/JBoss] - Re: JBoss 3.2.2 Clustering Issues After Servers are Running

2004-06-29 Thread rcostanzo
We do have an issue where servers will randomly drop out of the cluster. I will try adjusting the JGroups settings as you've recommended. I don't have a lot of faith in the environment that our production boxes are currently hosted in, so I wouldn't be surprised if we are dropping a good amount

[JBoss-user] [Clustering/JBoss] - Re: JBoss 3.2.2 Clustering Issues After Servers are Running

2004-06-29 Thread [EMAIL PROTECTED]
I re-read your log again. A server name being thrown out could be the j-groups dropping you and re-adding you. Do you see a message indicating a new generation of the cluster being formed? Again, I am thinking that the multi-cast messages are getting dropped due to traffic conditions. Multi-

[JBoss-user] [Persistence & CMP/JBoss] - Re: Optimistic Transactions Spanning Web Requests

2004-06-29 Thread atait
Regarding older EJBs using 1.0 deployment descriptors but deployed into 3.2.3 container, can the container manage optimistic locking for these? Does documentation exist re: the config for Optimistic using the 1.0 EJBs? Regarding last post, this seems to contradict what is printed in the Admin/de

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: 3.2.4 / JMS / Transacation is not active

2004-06-29 Thread genman
If it's running in a POJO and there is no transaction, then why do this: // since transacted_session=true (transacted mode), the 2nd arg is ignored // and the session.commit() is required to delete the recieved message. QueueSession session = conn.createQueueSession(tr

[JBoss-user] [Performance Tuning] - Re: jboss starts getting slower after 150 form submissions

2004-06-29 Thread WebSel
This could be your database that needs vacuuming. Don't know if that's in MySQL as well. If you are using index on many colums inserting new data tends to become slower as the db grows. Wessel View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840361#3840361 R

[JBoss-user] [EJB/JBoss] - Re: Scoped Ear / EJB Access

2004-06-29 Thread [EMAIL PROTECTED]
I think you might be right, but that seems kinda crazy to me. The unified classloader is ok, but it seems to depart from the encapsulation concept. The main reason I want to do this is so I can produce a client jar for my client that will not include DAO/JDBC code, etc, etc. I want to be strict

[JBoss-user] [Clustering/JBoss] - Re: JBoss 3.2.2 Clustering Issues After Servers are Running

2004-06-29 Thread [EMAIL PROTECTED]
We modeled and tested various combinations of entity beans and used session-wrapped transactions to cure/avoid most race conditions. We noticed though, that there are still ways to get into deadlock states. We cured our remaining deadlocks by selecting MySQL (and thus InnoDB) and using the bui

[JBoss-user] [Clustering/JBoss] - Re: JBoss 3.2.2 Clustering Issues After Servers are Running

2004-06-29 Thread [EMAIL PROTECTED]
Ignore my last post. I re-read this specific fault and noticed the first exception to start you down the path to destruction is the database commit deadlock detection. The last post could be useful, but only if you are using persistent messages. There was a similar quirk and deadlock detection

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: File-pm and Zero length files

2004-06-29 Thread TheImmortal
We found that the problem had to do with our applications and JBoss shutdown. If JBoss is being shutdown while the applications are still running (sending messages, etc), then the messages are not flushed to disk properly; thus creating 0 length files. Our fix was to change the machine's rebo

[JBoss-user] [EJB/JBoss] - Generated SQL for calling methods on remote objects

2004-06-29 Thread jgkenned
I have an EJB that manages cities in the US. Examining the debug logs yielded the following SQL SELECT state_abbr, county, city,alt_county_descr, state_name FROM city_names WHERE (state_abbr=? AND county=? AND city=?) OR (state_abbr=? AND county=? AND city=?) OR (state_abbr=? AND county=? AND

[JBoss-user] [Beginners Corner] - Re: deploying two identical webapps independently

2004-06-29 Thread enesterov
I am experiencing exactly same problems and have tried everything you mentioned above too. Do you have the solution yet? Ed View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840354#3840354 Reply to the post : http://www.jboss.org/index.html?module=bb&op=postin

[JBoss-user] [Clustering/JBoss] - Re: JBoss 3.2.2 Clustering Issues After Servers are Running

2004-06-29 Thread [EMAIL PROTECTED]
We noticed similar quirks/execptions thrown when running similar loads over long periods of time. With testing and artificial loads, I was able to reproduce a similar fault within 15-30 minutes. With MySQL transactions (InnoDB tables) and tree-cache in use -- it was observed that there are tim

[JBoss-user] [Persistence & CMP/JBoss] - Read-ahead cache and transactions

2004-06-29 Thread sblaes
I was having a lot of problems with internal locking in JBoss, so I changed most of my get methods to "Supports" rather than "Required" transactions. However, since I've done this, it appears that read-aheads are no longer working. Namely, each time a finder gets called, it is then following b

[JBoss-user] [HTTPD, Servlets & JSP] - Web Services

2004-06-29 Thread gleydson
JBoss suports fully Web Services?? If yes, It supports too Business Transaction Protocolo (BTP) to propagate transaction context into web services to use in complex business scenarios? Thanks, Gleydson Lima View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840

[JBoss-user] [Security & JAAS/JBoss] - How to use RunAsLoginModule?

2004-06-29 Thread fairall
I am attempting to write a custom LoginModule that will authenticate the user using a secured EJB. From the documentation I have read, it appears that the RunAsLoginModule should be used to set the role used during the authentication phase. Could someone provide details as to how to use the Ru

[JBoss-user] [Messaging, JMS & JBossMQ] - JBossMQ

2004-06-29 Thread trickard
Using jboss 3.2.4 on win2k with the file persistence manager. When I shut down jboss with a queue that has messages in the store, the queue is not restarted correctly when jboss restarts. I get the message MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM: ObjectName: jboss.mq:service=PersistenceMan

[JBoss-user] [EJB/JBoss] - Re: Scoped Ear / EJB Access

2004-06-29 Thread jae77
hrm - i'm not really sure how to correct your issue. i was in somewhat of the same situation as you are, using scoped ears w/ the need to communicate and did not have much luck, even w/ setting the pass-by-value attribute to true. hence the reason i did away w/ scoped ears and packaged my code

[JBoss-user] [HTTPD, Servlets & JSP] - getRemoteUser() not working in Apache/JBoss

2004-06-29 Thread erobles
I searched all threads, but I could not figure out this : I have an Apache talking to a Jboss 3.2.4, using JK2. My problem is, if I use request.getRemoteUser(), I get "null" instead of the username entered in Apache. I had solved this problem in the old Tomcat we are replacing, adding a line to

[JBoss-user] [Beginners Corner] - container managed Relationships in Jboss

2004-06-29 Thread danl_thompson
of course JBoss CMR is more complete and powerful than most (all?) the others... is it possible to have a left outer join in a CMR definition? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840335#3840335 Reply to the post : http://www.jboss.org/index.html

[JBoss-user] [Beginners Corner] - Help! How to get JBoss API doc?

2004-06-29 Thread manhattan
Hi, Could anyone tell me where/how to get JBoss API doc? Thanks! Rebeka View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840334#3840334 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840334

[JBoss-user] [Installation & Configuration] - Re: newbie; how to install and run JBOSS ?

2004-06-29 Thread kabkhan
Go into the bin directory and run run.bat. Also download and read the gettting started guide :-) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840339#3840339 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840339 ---

[JBoss-user] [Beginners Corner] - Re: Web Console not working in JBoss 3.2.3

2004-06-29 Thread dheerajchugh
Is anyone able to run web console in jboss? Since i am not able to run this. And even i am not able to find any such option to enable/disable JRE in browser settings. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840344#3840344 Reply to the post : http://ww

[JBoss-user] [News & Announcements] - Re: 3.2.4 Release

2004-06-29 Thread gshifrin
Where's the summary of what's new since 3.2.3? This just shows what's new since RC4. Also, where's the summary of what's new in 3.2.5? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840345#3840345 Reply to the post : http://www.jboss.org/index.html?module=bb

[JBoss-user] [Beginners Corner] - reality check

2004-06-29 Thread jbone
I have been reading the forums re: datasource config and wanted to make sure I'm not making a dumb assumption. It is recommended that your JBOSS EJB's connect to a datasource at the beginning of whatever method you are going to use it with, and close that source at the end of the method. In o

[JBoss-user] [Persistence & CMP/JBoss] - Re: CMR / EJB-QL problem?

2004-06-29 Thread loubyansky
Right. This is fixed. Could you please try revision 1.6.2.7? Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840328#3840328 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840328

[JBoss-user] [Beginners Corner] - Problem connecting to Hypersonic using JBoss 4.0

2004-06-29 Thread rprueter
I'm running JBoss 4.0, attempting to run the Duke's Bank j2ee tutorial. I've modified my hsqldb-ds.xml file as instructed in the jbossj2ee.pdf document (comments removed for brevity): | | | | DefaultDS | jdbc:hsqldb:hsql://localhost:1701 | org.hsqldb.jdbcDriver |

[JBoss-user] [Messaging, JMS & JBossMQ] - 3.2.4 / JMS / Transacation is not active

2004-06-29 Thread jdefelice
We just upgraded from 3.2.3 to 3.2.4, and are now getting exceptions when trying to send JMS messages. We're using file-based message persistence, and a point-to-point transacted session. Here's a snippet of stack trace: 2004.06.29 12:47:55.812 GMT-05:00 DEBUG [org.jboss.mq.server.JMSDestinatio

[JBoss-user] [Persistence & CMP/JBoss] - Foreign key constraint not added as requested

2004-06-29 Thread greiezer
Hei all, This is a question for JBoss 3.2.3 I have an application running with several EJB that use CMP/CMR. At server startup i see the following output in the log, which makes me worrying if there is something wrong here: 20:12:44,126 DEBUG [Customer] Executing SQL: CREATE TABLE t_customer (u

[JBoss-user] [JCA/JBoss] - Re: mssql-ds.xml vs mssql-xa-ds.xml

2004-06-29 Thread chalakanth
I've never read the book, but I looked up Humpty Dumpty this morning. http://www.sabian.org/Alice/lgchap06.htm Alice mumbles "of all the unsatisfactory people I ever met ..." as she walks away from Humpty Dumpty. Summed up the way I feel sometimes when working with all this high-tech stuff.

[JBoss-user] [Persistence & CMP/JBoss] - ConcurrentModificationException with CMP

2004-06-29 Thread mds939
Hi Iam using 3.2.4. Have a simple EntityBean CMP 2 spec. Trying to exercise the findAll method on the LocalHome interface in the bean. I get a ConcurrentModificationException thrown. Bean deploys fine and all. ejb-jar.xml findAll [CDATA[

[JBoss-user] [HTTPD, Servlets & JSP] - Solution

2004-06-29 Thread charleschr
This was probably pretty obvious to everyone but me, but removing the "ROOT.war" folder from the jbossweb-tomcat50.sar folder under deploy did the trick - there were probably conflicts because we deploy our application under the root context that this WAR was apparently using View the original

[JBoss-user] [Installation & Configuration] - newbie; how to install and run JBOSS ?

2004-06-29 Thread sharmaji
Hi, I have downloaded jboss-3.2.3.zip file. Unzipped to directory called: D:\jboss-app-server\jboss-3.2.3 But how can i start the server ??? Iam on WIN2000 machine. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840321#3840321 Reply to the post : http://ww

[JBoss-user] [Management, JMX/JBoss] - What's the best Adaptor - RMI, SOAP, HTTP...

2004-06-29 Thread cbuckley
It seems to me the http adaptor seems like it would be the easiest to use as it just uses a URL to invoke MBean methods (how is data returned?), the SOAP adaptor seems like the best choice for a standards type solution, RMI seems like it has overhead (passing stubs, lookups...). The HTML adaptor

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

2004-06-29 Thread marekss
Hi All, please, how to configure JVM to make JBoss to use more than one processor on multiprocessor HP UX box. Or is there anything else I have to do ? I use HP PA RISC JDK 1.4.2. Thank you all. Marek View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840331#3

[JBoss-user] [JBoss.NET & SOAP] - Re: RemoteAdaptorInvocationHandler - No Serializer Error

2004-06-29 Thread cbuckley
For those who care. I found my own solution using "Calls" // The connection URL. String endpoint = "http://roosevelt/jboss-net/services/RemoteAdaptor";; Service service = new Service(); Callcall= (Call) service.createCall();

[JBoss-user] [EJB/JBoss] - Re: Scoped Ear / EJB Access

2004-06-29 Thread [EMAIL PROTECTED]
Yes. The App.ear would use the home and remote interface in the core-client.jar to invoke services that will execute within the Core.ear where the actual core-ejb.jar resides. *-client.jars contain the homes, remotes, vos, exceptions. *-ejb.jars contain everything for that system, homes, remotes

[JBoss-user] [JBoss.NET & SOAP] - RemoteAdaptor - invoke(ObjectName, String, Object[], String[

2004-06-29 Thread cbuckley
Hello, I am trying to use the invoke method from the RemoteAdaptor, I can get it to work if I call an MBean method that takes no parameters like follows. // The connection URL. String endpoint = "http://roosevelt/jboss-net/services/RemoteAdaptor";; Servi

[JBoss-user] [JBoss Getting Started Documentation] - Re: Getting Started on JBoss 3.2.x

2004-06-29 Thread ulinux
Hello, I downloaded 3.x and clicked on run. That is on winxp which gave me the following error. any clues? === . JBoss Bootstrap Environment . JBOSS_HOME: C:\ApacheGroup\jboss-3.2.5\bin\\.. . JAVA: C:\Progra~1\Ja

[JBoss-user] [Nukes User] - html standards compliance

2004-06-29 Thread k-dub
I've been out of the HTML loop for a while, but I'm getting up to speed again. Forgive me if this is silly or out-of-line. I've noticed that the HTML in Nukes is out of date compared to the latest W3C standards. Current trends seem to indicate that XHTML is the new standard for HTML and CSS 2.1

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Use JCA or IL? (java:/JmsXA or java:/XAConnectionFactory

2004-06-29 Thread jardia
So the question was asked wrong? Assumption: All the ConnectionFactories we are talking about are dishing out javax.jms.Connection objects. Perhaps my confusion is related to the fact that we have Connections and Connection factories in both JCA and JMS worlds? ok, so you are saying (trying t

[JBoss-user] [Nukes User] - Re: html standards compliance

2004-06-29 Thread cooper
first you submit patch then you have RW access to the CVS View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840316#3840316 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840316 ---

[JBoss-user] [Beginners Corner] - How To ThreadPool ?

2004-06-29 Thread darthjoe
Hi all, I've searched and searched and haven't been able to find out how to set up and use a thread pool in jboss. I am using jbos 3.2.3 I found this link on the wikki http://www.jboss.org/wiki/Wiki.jsp?page=ConfigBasicThreadPool Unfortunately, I get a class not found exception. What jar is t

[JBoss-user] [EJB/JBoss] - Re: Scoped Ear / EJB Access

2004-06-29 Thread jae77
just to clarify - are you trying to invoke ejbs across ears? ie: App.ear calls ejbs in Core.ear View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840311#3840311 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840311

[JBoss-user] [EJB/JBoss] - Re: Scoped Ear / EJB Access

2004-06-29 Thread [EMAIL PROTECTED]
The "commons" jar contains a singleton that I wanted scoped at the ear level, not server level. It also contains, general utility type classes that will not hurt if they are thrown in and redeployed out across the system. I am aware of the pass by value aspect of using remote stateless session

[JBoss-user] [Installation & Configuration] - I'm dying!!! Please help me find where error is coming from.

2004-06-29 Thread casperjeff
Jboss 3.2.3. Windows. starting jboss... log4j:ERROR A "org.jboss.logging.util.OnlyOnceErrorHandler" object is not assignable to a "org.apache.log4j.spi.ErrorHandler" variable. AHH! I'm not even sure where to start looking for what is causing the problem Suggestions on where to

[JBoss-user] [Management, JMX/JBoss] - Re: how to make MBean dependent from EAR application?

2004-06-29 Thread cigno5e5
sigh sigh... "louis_ja" wrote : Hello, | | I'm not sure this is the 'correct' way of doing it, neither do I know if it works for an EAR, however, it worked to make MBeans dependant from an EJB: | (...) | Otherwise, I guess I just showed my ignorance :-) | my ignorance is greater than y

[JBoss-user] [Clustering/JBoss] - PartitionConfig attribute is set as WRITE-ONLY

2004-06-29 Thread mfrost
Hi Is there a reason for the PartitionConfig attribute of org.jboss.ha.framework.server.ClusterPartition to be write-only? You can see this from the jmx-console. Bring up the console. Find your Cluster service (usually service=DefaultPartition). Then scroll down to PartitionConfig. You'll notic

[JBoss-user] [Installation & Configuration] - AttributeNotFoundException when using ServiceBinding to chan

2004-06-29 Thread mfrost
Hello, I am trying to use the ServiceBindingManager to change the mcast_addr setting. We use this service successfully to allow us to run more than 1 JBoss node on a machine but also want to do this so that we can run independent clusters. Ideally I only want 1 version of cluster-service.xml an

[JBoss-user] [Installation & Configuration] - commons logging in jboss

2004-06-29 Thread snavjot
Hi, I am using apache commons to log from my EJBs. I have also added the following tag in my conf/log4j.xml But my log statements are not getting printed on console. Although server.log contains the log statements. Am i missing anything? What should i do to make it on console? A

[JBoss-user] [EJB/JBoss] - Re: Creating EJB object of local interface from servlet

2004-06-29 Thread snavjot
can you post you web.xml and jboss-web.xnl here? in short do you have ejb-local-ref tag in web.xml and the correponding jndi mapping in jboss-web.xml and if they present. are they right? navjot singh View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840301#384

[JBoss-user] [Management, JMX/JBoss] - Re: Scheduler problem

2004-06-29 Thread louis_ja
Hello, I'm replying here, because my problem is not yet completly solved. Since last time, I managed to make the scheduler start with the correct settings of Locale and date format. However, using French(Belgium) as my locale, with daylight savings activated (moves us from GMT+1 to GMT+2 durin

[JBoss-user] [Management, JMX/JBoss] - Re: how to make MBean dependent from EAR application?

2004-06-29 Thread louis_ja
Hello, I'm not sure this is the 'correct' way of doing it, neither do I know if it works for an EAR, however, it worked to make MBeans dependant from an EJB: If you look into the jmx-console, your ear should appear somwhere like that, under "jboss.management.local": | J2EEServer=Local,j2eeTy

[JBoss-user] [Beginners Corner] - Re: Clustered MDB

2004-06-29 Thread [EMAIL PROTECTED]
Only one node can connect to a topic subscription at any one time. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840298#3840298 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840298 --

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: successive consume of messages

2004-06-29 Thread [EMAIL PROTECTED]
I doubt it, if you don't know yourself. You know better than us what you are tring to achieve. An MDB is something that takes a single message and does something with it. Any correlation across multiple messages you have to write yourself. This includes any error recovery, e.g. what happens if me

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Use JCA or IL? (java:/JmsXA or java:/XAConnectionFactory

2004-06-29 Thread [EMAIL PROTECTED]
Your question is should you use the resource adaptor or a plain connection: http://www.jboss.org/wiki/Wiki.jsp?page=IWantToConnectToXYZShouldIUseJCA JMS like databases are "legacy" systems. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840296#3840296 Reply

[JBoss-user] [Clustering/JBoss] - Re: how to bind a serializable object into HA-JNDI

2004-06-29 Thread maroni
Sorry, thatÃÂs a misunderstanding. I was not precise enough. Using port 1100, thatÃÂs what I did, and the name IS definitely in HA-JNDI. When I do a lookup on all the nodes of the cluster, the name is bound and there. But when I want to access the returned object, itÃÂs null. For binding, I u

[JBoss-user] [EJB/JBoss] - Creating EJB object of local interface from servlet

2004-06-29 Thread [EMAIL PROTECTED]
Hi, I am trying to create a object of local interface from a servlet but not getting results. I am deploying servlet in a WAR file and beans in JAR file, packaging them in a EAR file. For packaging, I am using Deploytool of SUN's J2EESDK 1.3. Any helps ? Suraj ---

[JBoss-user] [EJB/JBoss] - Re: cmp-field and case sensitivity in 3.2.5

2004-06-29 Thread jbone
2004-06-28 20:49:56,681 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.JDBCCreateEntityCommand.PresenceBean] Executing SQL: SELECT COUNT(*) FROM PresenceBean WHERE ID=? 2004-06-28 20:49:56,681 TRACE [org.jboss.resource.connectionmanager.TxConnectionManager] subject: null 2004-06-28 20:49:56,681 TRACE [o

[JBoss-user] [Persistence & CMP/JBoss] - Re: ejbPostCreate and ejbSelect quick question

2004-06-29 Thread jbone
Wow thanks - that was a quick turnaround. Do I need to get this one from the CVS or is there a compiled version available? Thanks again View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840292#3840292 Reply to the post : http://www.jboss.org/index.html?module=

[JBoss-user] [JCA/JBoss] - Re: mssql-ds.xml vs mssql-xa-ds.xml

2004-06-29 Thread [EMAIL PROTECTED]
You obviously never read "Alice through the looking glass". http://www.google.com/search?hl=en&ie=UTF-8&q=what%27s+in+a+name+humpty+dumpty&btnG=Google+Search View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840291#3840291 Reply to the post : http://www.jboss.or

[JBoss-user] [Clustering/JBoss] - Re: Failover Server has Old Replicated Session

2004-06-29 Thread pjaromin
Is there going to be a separate patch for 3.2.4 or do I have to upgrade to 3.2.5? My concern is that I started a major migration to JBoss a couple months ago using 3.2.3. I discovered an issue with 3.2.3 that prevented me from using it, so I delayed a few weeks until 3.2.4 final was released. T

[JBoss-user] [HTTPD, Servlets & JSP] - Struts 1.1 on JBoss 3.2.3 - Parsing error processing resourc

2004-06-29 Thread udayaprakash
I have an applicaiton on Struts 1.1. When I Start the server I am getting the following exception. Any help will be greatly appreciated Regards Uday 09:45:57,594 ERROR [Digester] Begin event threw exception java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 at java.util.ArrayList.R

[JBoss-user] [JCA/JBoss] - Re: mssql-ds.xml vs mssql-xa-ds.xml

2004-06-29 Thread chalakanth
of all the unsatisfactory people I ever met -- View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840288#3840288 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840288 --

[JBoss-user] [EJB/JBoss] - Re: Scoped Ear / EJB Access

2004-06-29 Thread jae77
call by value is going to kill your performance. have you read this wiki page? http://www.jboss.org/wiki/Wiki.jsp?page=HotDeployClassCastExceptions is there any reason you need to be running scoped ears? for example, if each ear is sharing the same version of "common.jar" you'd be better off ex

[JBoss-user] [Jobs@JBoss] - Inside Sales Representative - Atlanta, GA

2004-06-29 Thread jbossroy
Inside Sales Representative Come join a rapidly growing enterprise software and services company and the home of Professional Open SourceÂ. JBoss, Inc. has immediate openings for Inside Sales Representatives to join our Atlanta, Georgia based team. This is a tremendous opportunity to be a pa

[JBoss-user] [Clustering/JBoss] - clustering 3.2.5

2004-06-29 Thread amdonov
Too bad 3.2.5 still ships with the same broken jgroups.jar from 3.2.4 despite reporting a problem. If your having a problem getting your nodes to see each other try upgrading to jgroups 2.2.5. It worked for me. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=

[JBoss-user] [Nukes User] - Re: nukes 1.1RC2 available

2004-06-29 Thread jae77
p.s. i also added a "deploy-all" target to the master build.xml in "build" so you can build and deploy all the released components in one shot, instead of compiling them all from the 'build' directory and then going into each directory to execute the "deploy" target. View the original post :

[JBoss-user] [Nukes User] - Re: Something wrong with manage HTML page in rc2?

2004-06-29 Thread jae77
can you offer some more details on this? are there any exceptions thrown in logs? i can not reproduce this locally - if i click the 'manage html' menu link, i see the main window w/ a list of html files and images in the database. if i click 'list pages' i see the same window. View the origin

[JBoss-user] [Persistence & CMP/JBoss] - CMP storing serialized object in relation instead of integer

2004-06-29 Thread amarpatel
Please advise on the following issues described below: 1. no ejb-relationship-role-name defined error. 2. serialized UserType being stored in RDBMS table users, instead of foreign key integer. I have 2 entities: User and UserType. The relationship between the User entity and UserType etity is a

[JBoss-user] [Management, JMX/JBoss] - programmatic way to clear cache

2004-06-29 Thread ekaye
I'm sure if I read the right manual the answer would be there, but can someone permit me to be lazy and point me to a way to programmatically clear the cache for a specific EJB as well as for all EJBs in the container? Thanks View the original post : http://www.jboss.org/index.html?module=bb&o

  1   2   >