[jboss-user] [JBoss Eclipse IDE (users)] - using i18n

2006-11-29 Thread weiming
Hi, there I am not quite sure if I am at the right place to ask this question. I was trying to use eclipse to create different versions of propertiy files so user can view the site in different language including Chinese. However, when I compiled the project, it shows that the ISO-8859-1 doesn't

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread [EMAIL PROTECTED]
You want to use the ProviderAdapterJNDI property. This groups the queue and topic connection factories together: so | @ActivationConfigProperty(propertyName = providerAdapterJNDI, propertyValue = YourJNDIProvider), | Of course you will have to deploy the Provider part as well. Take a

[jboss-user] [JBoss Seam] - Re: Seam remoting not working

2006-11-29 Thread sbryzak2
Can you turn on debugging and see that the request and response packets are correct? Instructions here: http://docs.jboss.com/seam/1.1CR1/reference/en/html/remoting.html#d0e5505 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989854#3989854 Reply to the post

[jboss-user] [JBoss Seam] - Re: no value for request parameter: taskId

2006-11-29 Thread [EMAIL PROTECTED]
You are not passing a taskId. You are not even in a task list! Go and read the documentation and look at the example applications. I don't know what you're trying to do here, but it has nothing to do with @StartTask. View the original post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Thanks for the quick reply. I have already tried that, and it was giving me troubles, but maybe I did something wrong. I had added this to the jms-ds.xml mbean code=org.jboss.jms.jndi.JMSProviderLoader name=jboss.mq:service=JMSProviderLoader,name=RemoteJMSProvider,server=queuehost |

[jboss-user] [JBoss Seam] - s:button VS h:commandButton / s:link VS h:commandLink

2006-11-29 Thread ngeadah
What is the difference between s:button and h:commandButton for simple things like calling an action? I have Seam 1.1CR1, JSF, Facelets all configured fine (at least I think), and the following works great: | h:commandButton value=Login action=#{loginClient.login}/ | While the following

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - When entities.jar updated = should not update persistence.x

2006-11-29 Thread olvin
Hello, I have one .jar with a lot of entities and a persistence.xml file with two persistence-unit. In production environment, there will be a lot of servers on different sites with the .jar. In the future, how can I extract and isolate the persistence.xml file from the .jar to update only

[jboss-user] [JBoss Seam] - Re: s:button VS h:commandButton / s:link VS h:commandLink

2006-11-29 Thread [EMAIL PROTECTED]
Injection (ie. @In) works just fine. I think it is the form submission that does not happen. Which is the whole point If you want the form to be submitted, use h:commandButton. If you want a bookmarkable URl, use s:button. View the original post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread [EMAIL PROTECTED]
I am assuming queuehost is up and running on the specified port and that you can actually seem the JNDIProviderAdapter bound into JNDI (JNDIView). Also, the Destination you want to access is deployed and bound into JNDI on the foreign host. Out of curiousity, are you attempting to access a

[jboss-user] [JBoss Messaging] - Re: where do i need to specify the JNP port which is used fo

2006-11-29 Thread davidrh
Can you post the exception and stack trace that you are getting. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989861#3989861 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989861

[jboss-user] [JBoss Seam] - Re: s:button VS h:commandButton / s:link VS h:commandLink

2006-11-29 Thread ngeadah
If s:xxx does not submit the form (which in turn prevents the injection from happening), does anyone have a recommendation on how to submit a form using a regular link (other than using h:commandLink, which works but uses JavaScript)? View the original post :

[jboss-user] [Installation, Configuration Deployment] - how to start heavy initialization tasks during container sta

2006-11-29 Thread mailinator
Hello, I have a non-EJB helper class that takes about 5-10 seconds to initialize and then lives until the container is shut down. It is only used from within EJB and is thus packaged in the ejb .jar. Basically there are two questions: 1) is there a preferred way to model a Singleton object

[jboss-user] [JBoss Seam] - Re: EntityManager: For newbies or to close gaps in your know

2006-11-29 Thread y_zl
Anybody can help to answer the above question? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989864#3989864 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989864 ___ jboss-user

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Ok, I'm new to all this, so some of your questions went over my head. I mapped queuehost to 127.0.0.1 in my hosts file, so the host is certainly up. I'm using ActiveMQ as my JMS provider, and it is up and running (on port 61616, jmx on port 1199). I'm not sure what you mean by JNDIView. How

[jboss-user] [J2EE Compliance] - using i18n

2006-11-29 Thread weiming
Hi, there I am not quite sure if I am at the right place to ask this question. I was trying to use eclipse to create different versions of propertiy files so user can view the site in different language including Chinese. However, when I compiled the project, it shows that the ISO-8859-1 doesn't

[jboss-user] [JBoss Seam] - seam setup fails with java.lang.NoClassDefFoundError

2006-11-29 Thread dustismo
I got everything set up until I tried to run $ ./seam setup from within the seam dir. I get Exception in thread main java.lang.NoClassDefFoundError: org/apache/tools/ant/launch/Launcher | I have looked at the seam script and it looks very straight forward. I have not moved anything any

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread [EMAIL PROTECTED]
Let's start with the simple stuff. What type of configuration do you want to support? I am assuming that what you want to do is deploy an MDB into JBoss that is listening on an ActiveMQ destination (queue || topic) . Is this correct? Small steps ;-) Don't get too frustrated, it's just a

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Whew, thank you. :) Yes, you are correct. Right now, I have a simple MDB that is called when a message hits a queue. It is working using the queues built in to JBoss, but now that my bean is working, I would like to migrate to ActiveMQ as my queue provider. View the original post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread [EMAIL PROTECTED]
Ok, excellent ;-) So, first off go here: http://www.activemq.org/site/jboss-integration.html Again, let's take it one step at a time. First, deploy the ActiveMQ RAR file. Rather than bother with setting up an embedded broker which requires modifying the RAR file, let's just deploy it as is.

[jboss-user] [JBoss Seam] - Re: seam setup fails with java.lang.NoClassDefFoundError

2006-11-29 Thread dustismo
Ok, I got it to work by changing the seam script to the following: | #/bin/sh | | # | # seam-gen | # | | | cd seam-gen | if [ ${1} = ] | then |cat USAGE | elif [ ${1} = help ]

[jboss-user] [Messaging, JMS JBossMQ] - Re: Changing delivery policy

2006-11-29 Thread felipeal
I thought about selectors too, but I don't think it would work, as the values of the properties are dynamic (i.e., there could be hundreds of different domains)... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989878#3989878 Reply to the post :

[jboss-user] [Beginners Corner] - org.jboss.logging.Logger?

2006-11-29 Thread lightbulb432
Why is there another logging option thrown into the mix? How does this differ from Java Logging or log4j? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989879#3989879 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989879

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread [EMAIL PROTECTED]
Can you go to http://hostname:8080/jmx-console I want to make sure the RAR is deploying. You should see it listed under jboss.jca: anonymous wrote : | name='activemq-ra-4.0.2.rar',service=RARDeployment | View the original post :

[jboss-user] [Installation, Configuration Deployment] - configuring QA and prod context in same jboss instance

2006-11-29 Thread dkuehner
I have an app which uses both web and ejb components. I want to be able to run 2 versions of my app in the same jboss instance. I use an ear file which has been expanded. The plan is to just copy this ear directory to a second directory in the deploy directory and then make a few

[jboss-user] [Installation, Configuration Deployment] - Re: configuring QA and prod context in same jboss instance

2006-11-29 Thread dkuehner
Oops, I forgot to mention. I am using jboss-3.0.4_tomcat-4.1.12 right now, but we are just about to upgrade to the latest / greatest - new java, jboss, etc. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989884#3989884 Reply to the post :

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-29 Thread fabiocsilva
Nothing... :(:(:( The wiki of JBoss AOP has an example of annotation-introduction. However it did not execute in my pc. I am using JBoss IDE 2.0-Beta2 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989883#3989883 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Please help me! The page cannot change when jbpm is used

2006-11-29 Thread kumachan
Thank you for the reply! It is a server log when the following describe it in component.xml. pageflow.jpdl.xml is in WEB-INF as well as component.xml. ## Server Log ## 09:43:57,119 INFO [Component] Component: pageflow, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Pageflow

[jboss-user] [JBoss Seam] - Re: Component-driven events scope

2006-11-29 Thread cavani
I realize now that I misundestood the concept of this kind of event. Originally, my idea was that I should create Components in one conversation context and a raised event just reached this created components that observe it. But, this doesn't work that way! Reading the Seam code (this help a

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Yep, it's there. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989885#3989885 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989885 ___ jboss-user mailing list

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Yep, it's there. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989887#3989887 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989887 ___ jboss-user mailing list

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-29 Thread fabiocsilva
Somebody would have some ready example of annotation-introduction to order for me? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989893#3989893 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989893

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread [EMAIL PROTECTED]
Ok, now it's time to put the *-ds.xml file in place. The panacya-ds.xml from the link I sent is a good starting point. Also, because we are using the non-embedded server, you should have ActiveMQ installed and up and running. Do you have this? View the original post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Yes. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989895#3989895 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989895 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread [EMAIL PROTECTED]
Ok, so let's deploy the *-ds.xml file. Drop it in your deploy directory. Note, the *-ds.xml file has an entry for the RAR you should use. This should be set to the RAR name that you previously deployed. So |tx-connection-factory |

[jboss-user] [JBoss Eclipse IDE (users)] - Eclipse Server config for AppServer-5-Beta1

2006-11-29 Thread [EMAIL PROTECTED]
I'm wondering when there will be a AS5 Beta1 server config file available. Right now you can just see server configs for 3.2.3 and 4.0. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989897#3989897 Reply to the post :

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-29 Thread [EMAIL PROTECTED]
fabiocsilva wrote : Nothing... :(:(:( | THis is not a proper description of your problem fabiocsilva wrote : I am using JBoss IDE 2.0-Beta2 Do not use the IDE, I have no idea if it would have any bearing on your problem or not, but it has not been maintained for over a year. fabiocsilva

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Got it. connection-factories | |tx-connection-factory | jndi-nameactivemq/QueueConnectionFactory/jndi-name | xa-transaction/ | track-connection-by-tx/ !-- Thanks to Adrian Brock for pointing this one out! -- | rar-nameactivemq-ra-4.0.2.rar/rar-name |

[jboss-user] [Clustering/JBoss] - Re: Non-sticky-session clustering not working for me in 4.0.

2006-11-29 Thread nekop
You have to set jvmRoute value to localhost or portalvm. The jvmRoute attribute must match the name specified in workers.properties. http://wiki.jboss.org/wiki/Wiki.jsp?page=UsingMod_jk1.2WithJBoss View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989901#3989901

[jboss-user] [JBossWS] - Re: Log4j and Web Service question

2006-11-29 Thread stevenh
actually you wont be able to move the soap messages to the info level as such. You will need to set the level on your appender to debug and use categories to filter out what you dont want. http://docs.jboss.org/process-guide/en/html/logging.html Also do you really want your soap messages

[jboss-user] [JBoss Seam] - Seam generate-entities failing

2006-11-29 Thread Azavia
Hi, I'm trying to use the seam-gen tool, but am getting some errors. When I go to generate entities from the database, i get the following: C:\jboss-seamseam generate-entities | Buildfile: C:\jboss-seam\seam-gen\build.xml | | validate-workspace: | | validate-project: | |

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-29 Thread fabiocsilva
Ok, I used the expression ?Nothing?: (: (: (? to indicate that the suggestion ?ElementType.TYPE? did not correct the problem. I go to make tests with the cited examples and later I publish the result. View the original post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread [EMAIL PROTECTED]
Ok, assuming that guy deployed ok, the infrastructure is set up to do what you want. Now it's time to develop/deploy your MDB. Take a look at: http://www.activemq.org/site/inbound-communication.html This gives the basics on how to hook things up. There is also a sample project attached that's

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Yes, it deployed. anonymous wrote : 21:38:11,781 INFO [testQueue] Bound to JNDI name: queue/testQueue | 21:38:11,968 INFO [UILServerILService] JBossMQ UIL service available at : /0.0.0.0:8093 | 21:38:12,015 INFO [DLQ] Bound to JNDI name: queue/DLQ | 21:38:12,359 INFO

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread [EMAIL PROTECTED]
Not a problem. A word of advice on this, keep it simple to start. I was able to get a simple MDB up and running so if you need it I can send it as a fallback. Working through those examples is a good thing. What I woud do is a SLSB that just posts a message to ActiveMQ Queue. This way you can

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
One thing I noticed was that the examples all seem to be using EJB2. We're using EJB3, so I'll have to convert the examples, but I'm hoping that's a fairly trivial process. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989908#3989908 Reply to the post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread [EMAIL PROTECTED]
Shouldn't be an issue. You just need to set the appropriate annotations. The EJB3 MDB container will just pass them along to the ActiveMQ Activation spec. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989909#3989909 Reply to the post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread [EMAIL PROTECTED]
The most important configuration piece in the puzzle is the destination name in your activation config. This *has* to point to the physical queue name on ActiveMQ, not the JNDI name. This has been known to trip people up. Also, while ActiveMQ does support dynamic Queue/Topic creation via JNDI,

[jboss-user] [JBoss Seam] - Excessive [could not destroy component] 1.1B1 to 1.1CR1

2006-11-29 Thread rdewell
We've been running Seam in production for many months now. During that time we've VERY intermittently seen the Seam warning Could not destroy component in the logs. Due to its low occurrence and seemingly benign nature, we've ignored it. After the upgrade to CR1, however, we're receiving

[jboss-user] [JBossCache] - Re: Updating the data model for a distributed cache

2006-11-29 Thread genman
I believe the answer is yes, if Java on cache 1 can deserialize the value from cache 2. It's almost trivial to experiment yourself. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989912#3989912 Reply to the post :

[jboss-user] [JBossCache] - Re: Associating multiple keys with same object without stori

2006-11-29 Thread genman
I believe the Pojo cache takes care of the referencing issues? So, you should only have a single copy of the object persisted. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989913#3989913 Reply to the post :

[jboss-user] [JBossCache] - Re: Associating multiple keys with same object without stori

2006-11-29 Thread haribaasha
yep, the reference is only stored, but i am also writing it to file, cant do anything there, just have to write it twice.. thanks guys hari View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989914#3989914 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Excessive [could not destroy component] 1.1B1 to 1.1CR1

2006-11-29 Thread [EMAIL PROTECTED]
Increase your SFSB timeout to be slightly longer than the HttpSession timeout. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989916#3989916 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989916

[jboss-user] [JBoss Seam] - Re: Seam generate-entities failing

2006-11-29 Thread [EMAIL PROTECTED]
You can't reverse engineer tables that don't have primary keys. You should not have tables w/o primary keys anyway. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989917#3989917 Reply to the post :

[jboss-user] [Messaging, JMS JBossMQ] - How to publish a message to a certain subsciber?

2006-11-29 Thread bluesky999
(All I need is to repost message from DLQ. ) So when repost message from DLQ to the original topic, can I publish it to a certain subscriber? If yes, how to do it? Many thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989918#3989918 Reply to the post

[jboss-user] [Beginners Corner] - Re: org.jboss.logging.Logger?

2006-11-29 Thread visolvejboss
Hello, Refer the following links. http://jboss.com/developers/guides/logging http://wiki.jboss.org/wiki/Wiki.jsp?page=Logging http://wiki.jboss.org/wiki/Wiki.jsp?page=UsageOfLoggingLevels View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989919#3989919 Reply

[jboss-user] [JBossCache] - Please vote for your favorite issues -- mine :-)

2006-11-29 Thread genman
There's two features I came up with solutions for: JBCACHE-880 - Add per node expiration This is essentially an eviction (or removal) policy that allows you to specify when a node is automatically evicted. It is simply activated by adding a policy to your configuration, and by setting a key

[jboss-user] [JBoss Seam] - Re: Seam generate-entities failing

2006-11-29 Thread Azavia
Hi, It does have a primary key. The create table statement was: CREATE TABLE users | ( |username character varying(50) NOT NULL, |email character varying(255) NOT NULL, |CONSTRAINT username PRIMARY KEY (username) | ) WITHOUT OIDS; | ALTER TABLE users OWNER TO Brandon;

[jboss-user] [EJB 3.0] - Re: Records in database vanish upon restart

2006-11-29 Thread lightbulb432
Removing the file worked, thank you very much. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989922#3989922 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989922 ___ jboss-user

[jboss-user] [Beginners Corner] - Re: org.jboss.logging.Logger?

2006-11-29 Thread lightbulb432
Did you even bother to read the question? Where is even a single mention of org.jboss.logging.Logger in those links? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989924#3989924 Reply to the post :

[jboss-user] [Installation, Configuration Deployment] - Shared classpath within an EAR?

2006-11-29 Thread lightbulb432
I was surprised to discover that a classpath is automatically shared within an EAR file...i.e. a WAR file can directly use classes located elsewhere in some parts of the EAR (e.g. classes in the EJB-JAR, specifically.) Where else within the EAR is the classpath shared? (i.e. Can any class

[jboss-user] [Installation, Configuration Deployment] - Re: Shared classpath within an EAR?

2006-11-29 Thread [EMAIL PROTECTED]
JBoss classloading can be tricky. As a rough intro: Everything in an EAR sees everything else, with the exception of the WAR file. Nobody outside of the WAR sees what is inside the WAR. (there is a configuration option to change this) Classes are shared between EAR files, which can lead to

[jboss-user] [JBoss jBPM] - Re: JBPM3 with tomcat

2006-11-29 Thread diwa_pv
hi, please go through the entire thread. iam sure you will find the solution at the end. thanks and regards diwa View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989926#3989926 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Understanding Conversations

2006-11-29 Thread [EMAIL PROTECTED]
Sorry for the delay. I reported the only Seam issue I could identify here: http://jira.jboss.com/jira/browse/JBSEAM-541 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989927#3989927 Reply to the post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: Messages get stuck in queue

2006-11-29 Thread Byorn
Have you tested the remote procedure call to the Corba service with multiple threads? i.e Simulataneous calls to the rpc Corba service ??? Our MDS all access the ftp service, and then our JMS Queue gets stuck. But when we restart the ftp service , the messages get clear. We suspect it could be

[jboss-user] [JBoss Seam] - Re: Excessive [could not destroy component] 1.1B1 to 1.1CR1

2006-11-29 Thread rdewell
Added 5 minutes to @CacheConfig. So it's at 35 minutes now. Was 30 minutes. No change in frequency. This was occurring maybe 5-10 times a day on B1 and older, and now it's occurring about 50 times per hour. Other ideas? View the original post :

[jboss-user] [JBoss Portal] - CMSAdminPortlet is locale sensitive?

2006-11-29 Thread jaejong
I wrote html page through CMSAdminPortlet. before saving, preview display right charactor according to language. After saving, I can right context. It seams to save uncurrect encoding. for me, uploaded file has the same problems. jboss2.4 on jboss4.0.4 EJB3 on win-XP. View the original post :

[jboss-user] [JBoss Messaging] - Re: where do i need to specify the JNP port which is used fo

2006-11-29 Thread phanisekhar
hi Davidrh this is the exception i am getting javax.naming.CommunicationException [Root exception is java.lang.ClassNotFoundException: No ClassLoaders found for: org.jboss.jms.client.JBossConnectionFactory (no security manager: RMI class loader disabled)] at

[jboss-user] [JBoss Messaging] - Re: where do i need to specify the JNP port which is used fo

2006-11-29 Thread [EMAIL PROTECTED]
The exception is telling you that the JBossMessaging classes cannot be found in the client classpath. Check your classpath settings on the client and make sure you have the appropriate client jars added. Which version of JBossMessaging are you using? View the original post :

[jboss-user] [Security JAAS/JBoss] - Redeployment of JaasSecurityContext fails

2006-11-29 Thread Cyberax
Redeployment of JaasSecurityContext on JBoss4.0.5GA fails because of line JaasSecurityManagerService.java:435: | // Register the JAAS CallbackHandler JACC PolicyContextHandlers | CallbackHandlerPolicyContextHandler chandler = new CallbackHandlerPolicyContextHandler(); |

[jboss-user] [EJB/JBoss] - JMS in JBoss 4.0.1

2006-11-29 Thread Byorn
Hi, Using a test program i am posting emails via JMS. A Single MDB will upload an attachment to ftp server and will send the email. the test program will post messeages , creating a single thread. I discoverd that the JMS gets disconnected from the provider. Following is the error i am

[jboss-user] [EJB 3.0] - Getting reference on Persistence Unit

2006-11-29 Thread straiver
I have 2 jar files. The first one is dao and the second one is domain logic. After deployment DAO sets own persistence unit. But when I'm trying to get reference on it from domain.jar: anonymous wrote : @PersistenceContext(unitName = name_from_dao) | private EntityManager manager; Jboss issue

[jboss-user] [JBoss Eclipse IDE (users)] - Re: JSP in JBoss IDE??

2006-11-29 Thread lightbulb432
I downloaded JBossIDE-1.6.0.GA-Bundle-win32.zip and it doesn't have the WTP functionality...why does the description say that then? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989938#3989938 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: Messaging test suite unavailable

2006-11-29 Thread Byorn
Tim, Is there a way we can find out why our JMS Queue gets full ? (i.e msgs in the db table) ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989939#3989939 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989939

[jboss-user] [EJB 3.0] - Re: Getting reference on Persistence Unit

2006-11-29 Thread andydale
How are you deploying the jar files, in a single ear, or as 2 seperate jar files in the deploy directory ? Andy View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989940#3989940 Reply to the post :

<    1   2   3