[JBoss-user] [Management, JMX/JBoss] - Re: Problem locating an MBeanServer

2006-06-24 Thread deus.machinarum
ok, I get that now How would I be able to do something like: Beanname.methodxyz(); e.g.: world.tell(); i.e. How can I get a reference? Sorry if that is already explained and I'm just missing it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953169#3953169

[JBoss-user] [JBoss Messaging] - Re: Installation Validation Test Failure

2006-06-24 Thread timfox
In the mean-time to fix your installation you need to add the following to your login-config.xml: | | | | guest | messaging-users.properties | messaging-roles.properties | | | | Sorry about the i

[JBoss-user] [JBoss Messaging] - Re: Redeployed queue does not load messages from db

2006-06-24 Thread timfox
Ok I have found a problem in queue redeployment which accounts for this. The fix is fairly straightforward and will be in the next release (RC3) which should be out early next week. Sorry for the inconvenience. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p

[JBoss-user] [JBoss Messaging] - Re: Redeployed queue does not load messages from db

2006-06-24 Thread ashields
Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953172#3953172 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953172 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quick

[JBoss-user] [JBoss Seam] - Re: running Eclipse TestNG plugin on a Seam project

2006-06-24 Thread jtucker
Sounds like you are close! Hopefully the only thing you are missing now is a META-INF dir in your resources source folder. It should contain ejb-jar.xml and persistence.xml. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953173#3953173 Reply to the post :

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Source not found.

2006-06-24 Thread TMary
HI , the message on my joboss log is 16:10:24,828 DEBUG [Server] Failed to start java.lang.NoClassDefFoundError: org/dom4j/Element at java.lang.Class.getDeclaredConstructors0(Native Method) at java.lang.Class.privateGetDeclaredConstructors(Class.java:2328) at java.lang.Cla

[JBoss-user] [JBoss Seam] - Seam 1.0.1 GA - STATE_SAVING_METHOD Problem

2006-06-24 Thread umarzubair
Hi, My application was running perfectly using jboss-seam-1.0.0.CR3 with following property set in web.xml javax.faces.STATE_SAVING_METHOD server Today I integrated my application with jboss-seam-1.0.1.GA. I could browse to my first page - login page. But I was unabl

[JBoss-user] [JBoss Seam] - Re: Seam 1.0.1 GA - STATE_SAVING_METHOD Problem

2006-06-24 Thread umarzubair
I just configured another jsf-facelets.jar, and my application is working fine with javax.faces.STATE_SAVING_METHOD server I think there might be some problem in jsf-facelets.jat included in jboss-seam-1.0.1.GA Umar View the original post : http://www.jboss.com/index.

[JBoss-user] [JBoss Seam] - Re: Seam 1.0.1 GA - STATE_SAVING_METHOD Problem

2006-06-24 Thread [EMAIL PROTECTED]
Yes, we are trying to figure this one out. It appears to be some incompatibility b/w the versions of Facelets and MyFaces used in the GA releases. Jacob is looking into it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953182#3953182 Reply to the post : ht

[JBoss-user] [EJB 3.0] - Re: Problem with EAR and PersistenceContext in Jboss 4.0.4GA

2006-06-24 Thread Nico67
Well, may be i went too fast. Putting all classes in the same jar file didn't solve the problem. When i first call a EJB-method which performs a persist to the EntityManager i get : | javax.ejb.EJBException: javax.persistence.TransactionRequiredException: EntityManager must be access within a

[JBoss-user] [JBoss Seam] - Re: Problem injecting default resource bundle to session bea

2006-06-24 Thread [EMAIL PROTECTED]
Show me the stack trace of the NPE, does it come from your code, of inside Seam? Does org.jboss.seam.core.Messages.getMessages() ever get called? (Try putting a breakpoint there. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953184#3953184 Reply to the post

[JBoss-user] [JBoss jBPM] - [new] How can i do a back with jbpm?

2006-06-24 Thread qujiakang
Hello everyone : I 'm new user of jbpm. I've a problem of jbpm ,how can i go back previous task of a workflow e.g someone find errors data of in current task execution ,he might require to go back to previous steps to modify the data . can someone tell me !? View the original post : h

[JBoss-user] [JBoss Seam] - Return to the page where I came from?

2006-06-24 Thread liudan2005
I have 2 pages: item_list.xhtml and item_detail.xhtml. User can modify the item detail when clicked a link in item_list page. In item_detail page, user modifies the item details and submit the changes by triggering myItemAction.submitChange(). Once the changes have been made, the user will be d

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: DerbyDatabase mbean in 4.0.3 missing?

2006-06-24 Thread engelsen
I get the same error. ITS SO FINE TO SEE EVERYONE POSTING THE FIX WHEN THEY FINALLY FIND WHY THEIR ERROR OCCURED NOT ! please remember to post how you fixed it ! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953187#3953187 Reply to the post : htt

[JBoss-user] [JBoss Seam] - Re: Return to the page where I came from?

2006-06-24 Thread [EMAIL PROTECTED]
The Redirect component was made conversation-scoped for this reason. Just call Redirect.instance().setViewId("/returnPage.xhtml") when you go to the item_detail page. Then when you are done, call Redirect.instance().execute(); View the original post : http://www.jboss.com/index.html?module=bb&

[JBoss-user] [JBoss Seam] - Re: Return to the page where I came from?

2006-06-24 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : The Redirect component was made conversation-scoped for this reason. | | Just call Redirect.instance().setViewId("/returnPage.xhtml") when you go to the item_detail page. | | Then when you are done, call Redirect.instance().execute(); Note that you would nee

[JBoss-user] [JBoss Portal] - Re: Portal context and Servlet mapping

2006-06-24 Thread Silicio
there was a problem a text truncation in the last post. I post zipped log file: (187 kb) www.overmodding.org/files/log-2006.06.24.zip View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953191#3953191 Reply to the post : http://www.jboss.com/index.html?module=bb&

[JBoss-user] [JBoss Seam] - Re: Explicit conversation ID redirect question

2006-06-24 Thread [EMAIL PROTECTED]
But you already have control over what view-ids get set. If you don't specify a page description in pages.xml, the view-id won't be updated. So only specify a description on the first page. Or, probably safer, don't specify descriptions/view-ids in pages.xml, instead call Conversation.instance(

[JBoss-user] [JBoss Messaging] - Re: Can not find a free port for use

2006-06-24 Thread timfox
Also, I have changed the code so that less callback servers wil be created. This means we will be able to support more concurrent open jms connections on the client side. This will be available in RC3 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953194#395

[JBoss-user] [JBoss AOP] - Re: Problem with @Bind annotation

2006-06-24 Thread [EMAIL PROTECTED]
Yes i checked this, in netbeans it points to {build.classes.dir}. The question is wether someone has been successful in using the @Bind annotation at all. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953197#3953197 Reply to the post : http://www.jboss.com/

[JBoss-user] [JBoss AOP] - Re: Problem with @Bind annotation

2006-06-24 Thread [EMAIL PROTECTED]
The jboss aop dist comes with a few examples under docs/aspect-framework/examples/ all ones starting with "annotated-" show how to use annotations, so use those as a starting point. Just a thought, it will only look for annotations within a class that has been annotated with @Aspect or @Interc

[JBoss-user] [Security & JAAS/JBoss] - Security realm for ExternalContext

2006-06-24 Thread peter_p
Hello, I would like to bind an external ldap server into the jndi-tree. In the documentation I found the class ExternalContext which is designed to do this. I would like to protect the access to the ldap server using a technical useraccount for connection to the server: | | | external

[JBoss-user] [Security & JAAS/JBoss] - Re: Programmatic Login

2006-06-24 Thread japplicoon
I try doing similar things and I'm stuck, too ;-( In a way I'd like to replace j_security_check - Unfortunately I can't find the source code of that servlet ... This is my first trial: A backing bean creates a LoginContext and uses the security-domain I specified in login-config.xml (with Data

[JBoss-user] [Security & JAAS/JBoss] - Re: Multi threading client to log EBJ3 with ClientLoginModul

2006-06-24 Thread mehdi105
Hi All, I have used ClientLoginModule using jboss4.0.1 with tomcat standalone in seperate tier. The way I have done is regardless of mutli-threaded=true|fase , I always invoke ClientLoginModule in a filter configured in tomcat. Initially if there no user stored in session, i take anonymous and

[JBoss-user] [JBoss Seam] - Re: DataTableSelection and Seam-managed Transaction problem

2006-06-24 Thread cavani
Hi, I know one exception is because operationFiling.operation is null, but I am setting this property with a value from monitoring.selectedOperation. This last property has a @DataModelSelection on it, but seem to me that Seam is not injecting it before I call operationFiling.select (the first

[JBoss-user] [JBoss jBPM] - Creating a new instance from an application

2006-06-24 Thread abdielj
hi, i defined a process and deploy it to the jbpm local server then i made an application that creates a new instance and then assigns values to a couple of variables. i assign the start node to user ernie, but when i login to the web application as user ernie i have no new instances in the ta

[JBoss-user] [JBoss Messaging] - Re: IllegalStateException: Cannot find consumer

2006-06-24 Thread ONIT
Ovidiu, Thanks for the follow-up. I have a jsp that requests data using the following code (cdCountyData is the stateless EJB): try { String sessionKey = request.getRequestedSessionId() + (10 + System.currentTimeMillis()%10); int intCounties = cdCountyData.sendDataRequest(sessionKey,

[JBoss-user] [Beginners Corner] - Call Web Service from Servlet, error with

2006-06-24 Thread cpowers
I have a servlet that is calling a Web Service, through a proxy generated in Eclipse (New, Web Service Client wizard). It works fine when I run under Tomcat 5.5. However, when I run under JBoss 4.0.4 GA, I get the following errors: [EngineConfigurationFactoryFinder] Factory org.apache.axis.con

[JBoss-user] [Beginners Corner] - Problem: java.net.SocketException: Network is down: create w

2006-06-24 Thread challa_himabindu
Hi All, I installed jboss 4.0.2 in my personal computer. When I started the jboss, the following error occurred. . 19:01:45,421 INFO [Server] Starting JBoss (MX MicroKernel)... 19:01:45,421 INFO [Server] Release ID: JBoss [Zion] 4.0.4.GA (build: CVSTag=JBo ss_4_0_4_GA date=200605151000) 19:0

[JBoss-user] [Installation, Configuration & Deployment] - Problem: java.net.SocketException: Network is down: create w

2006-06-24 Thread challa_himabindu
Hi All, I installed jboss 4.0.2 in my personal computer. When I started the jboss, the following error occurred. . 19:01:45,421 INFO [Server] Starting JBoss (MX MicroKernel)... 19:01:45,421 INFO [Server] Release ID: JBoss [Zion] 4.0.4.GA (build: CVSTag=JBo ss_4_0_4_GA date=200605151000) 19:0

[JBoss-user] [JBoss Portal] - Newbie question: How to install the HelloPortal.zip

2006-06-24 Thread bakshia
Hi, I have no experience with JBoss or JBoss Portal. I do have JBoss Portal 2.2 up and running. I got the sample HelloPortlet.zip. Can someone point me to the steps for installing this sample Portal? Thanks, Anupam. View the original post : http://www.jboss.com/index.html?module=bb&op=viewt

[JBoss-user] [JBoss Portal] - Re: Newbie question: How to install the HelloPortal.zip

2006-06-24 Thread [EMAIL PROTECTED]
well, the zip should contain a README file with simple steps how to build the portlet and then just drop the .war file into your server/default/deploy directory and it will be deployed. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953218#3953218 Reply to t

[JBoss-user] [EJB 3.0] - EJB injection dependencies failure...

2006-06-24 Thread trouby
Hello, I'm trying to deploy an EAR file with some EJBs into Jboss 4.0.4GA, I have two Stateless beans: AccountBean/UserBean, As it seems, if no EJB injection is done between those two, both are deployed correctly, even if one EJB is injected into another things work fine, But at the moment I a

[JBoss-user] [JBossWS] - wscomple features in wstools?

2006-06-24 Thread kvbisme
Is there a way to perform the functionallity of the "searchschema" feature in wscompile with wstools? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953220#3953220 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953220

[JBoss-user] [JBoss Seam] - OneToOne and EL (Error during model data update.)

2006-06-24 Thread conny.lundgren
Im trying to make a simple page in seam, and i got a OneToOne in my pojos like this Event 1 -- 1 EventDetail The pojos are mapped | @Entity | @Name("event") | @Scope(SESSION) | public class Event implements Serializable { | | private Long eventId; | | @Id | @Gen

[JBoss-user] [JBoss Seam] - Re: OneToOne and EL (Error during model data update.)

2006-06-24 Thread [EMAIL PROTECTED]
cost is of type int, but you don't have required=true on the inputText. I hope you are not trying to do something silly like thinking null==0. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953222#3953222 Reply to the post : http://www.jboss.com/index.html?m

[JBoss-user] [Installation, Configuration & Deployment] - Re: Convenience class not printing Log4J debug statements

2006-06-24 Thread CasaDelNorte
Problem solved. I feel silly - I had the console appender filtered to INFO when it should have been DEBUG. | | | | | | | | | | | Thanks for the extra eyes. View the original post : http://www.jboss.com/ind

[JBoss-user] [JBoss jBPM] - Re: Creating a new instance from an application

2006-06-24 Thread kukeltje
no, but it is a good habit in these kinds of circumstances to at least post the processdefinition and relevant parts of the code you created. Otherwise it would be shooting in the dark View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953224#3953224 Reply to th

[JBoss-user] [JBoss Seam] - Re: Explicit conversation ID redirect question

2006-06-24 Thread rdewell
I need to keep using pages.xml as it's the only way to provide a URL abstraction for action methods. I hope someday it supports even more free-form URL patterns, actually. It appears to me that when I navigate around within the same conversation, Seam keeps track of the last viewId for that co

[JBoss-user] [JBoss jBPM] - Re: [new] How can i do a back with jbpm?

2006-06-24 Thread kukeltje
put a transition in the process from where you are to the previous task View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953226#3953226 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953226 Using Tomcat but need to do mo

[JBoss-user] [JBoss Seam] - Re: OneToOne and EL (Error during model data update.)

2006-06-24 Thread conny.lundgren
"[EMAIL PROTECTED]" wrote : cost is of type int, but you don't have required=true on the inputText. I hope you are not trying to do something silly like thinking null==0. Setting required="true" gives the same result, and no I know that null isn't 0. :) One thing to note is if I get to the eve

[JBoss-user] [EJB/JBoss] - Accessing serial ports from jboss

2006-06-24 Thread meme
Hi, I've got the need for an component wich accesses the serial port, aquiring data from this port. The standard-beans (such as Stateless or Stateful Session beans are not possible) So wich is the best approach to access the serial-port from jboss to get these data? The data should be collect

[JBoss-user] [JBoss Seam] - Re: Explicit conversation ID redirect question

2006-06-24 Thread [EMAIL PROTECTED]
You can use pages.xml without providing description text for every page! Seam ONLY updates the view id when we hit a page that has a description in pages.xml. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953229#3953229 Reply to the post : http://www.jboss

[JBoss-user] [JBoss Seam] - Re: OneToOne and EL (Error during model data update.)

2006-06-24 Thread [EMAIL PROTECTED]
The relationship must be null. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953230#3953230 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953230 Using Tomcat but need to do more? Need to support web services, securit

[JBoss-user] [EJB 3.0] - Re: 4.0.4 GA Bug

2006-06-24 Thread meme
Some people think it's a but some doesn't. I had the same problem and found this as a workaround: http://jroller.com/page/eyallupu?entry=hibernate_exception_simultaneously_fetch_multiple To make a long story short: Instead of Bags like collections use list :) View the original post : http://www

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Recommendation of web.xml xsd version to use

2006-06-24 Thread logankiefer
The answer to this is to not use web-app_2.5.xsd if your using the embedded Tomcat with JBoss-4.0.4.GA. That version of Tomcat is 5.5 and it supports the Servlet 2.4 specification not the Servlet 2.5 specification. So, you'll get all sorts of problems if you use the web-app_2.5.xsd. Use the w

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: cant locate remote session ejb3

2006-06-24 Thread hheller
i face the same error. im pretty sure, that it means were using the wrong remoting library. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953237#3953237 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953237 Using Tom

[JBoss-user] [JBoss jBPM] - Consuming Web Services

2006-06-24 Thread sajid08
Hey All, I am new to Jboss and jBPM, just downloaded the jBPM starters kit and started working on it. Now we want to develop a prototype using jBPM, that'd integrate two sample applications, one in .net and the other in java, both'd be exposed using a web service. I want to know how to call o

[JBoss-user] [JBoss Seam] - Re: @SelectItems and @SelectItemsSelection annotations?

2006-06-24 Thread CptnKirk
It should be, however your SelectItemsSelector will need to be smart enough to handle either the SelectOne or SelectMany case. Since the SelectMany's will allow different value types to be returned than SelectOne, this could be slightly more work, but should be possible with a little type check

[JBoss-user] [JBoss jBPM] - Problem in the starters kit of jBPM

2006-06-24 Thread sajid08
I was developing the process made in the video demo available on the jboss site http://docs.jboss.com/jbpm/v3/demos/movies/jbpm-overview.htm It works fine until I go into configure the task, If I try to define variables for the form in the 'Controller' , It gives me error when I am saving the c

[JBoss-user] [JBoss jBPM] - Re: Consuming Web Services

2006-06-24 Thread kukeltje
search the forum, has been asked and answered before. In short: you have to write some code View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953241#3953241 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953241 Using Tom

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - mod_jk/Apache/JBoss redirection issue (localhost vs. hostnam

2006-06-24 Thread asack
I've setup a basic worker with the following properties: worker.list=node1 worker.node1.port=8009 worker.node1.host=acme worker.node1.type=ajp13 acme is the hostname of the JBoss server (its localhost). I have a redirect rule thats basically forced the URL to go to: http://acme/app For some re

[JBoss-user] [JBoss Eclipse IDE (users)] - Support generic(jdk 1.5 feature)

2006-06-24 Thread roger1975
Any knows how to set the tags so that the interfaces geneated from the bean file have the same genric return type as the beans. for example, Collection View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953246#3953246 Reply to the post : http://www.jboss.com/in

[JBoss-user] [EJB 3.0] - Re: ejb-jar.xml Schema verification fails

2006-06-24 Thread logankiefer
Refresher. I'm using JBoss 4.0.4GA with EJB RC7. My current ejbs are all 2.0 ejbs and I want to keep using the deployment descriptors. When I change the ejb-jar.xml to use ejb-jar_3.0.xsd the context.lookup(jndiName) is returning a proxy that does not extend the EJBHome interface. If I chang

[JBoss-user] [JBossCache] - Re: Replicated field values not 'sticking' in clustered POJO

2006-06-24 Thread [EMAIL PROTECTED]
Are you sure you are reading your config file properly? | PropertyConfigurator config = new PropertyConfigurator(); | config.configure(cache, "./WEB-INF/replSync-service.xml"); | will look in your classpath for ./WEB-INF/replSync-service.xml. I don't think this is what you want. Try pu

[JBoss-user] [JBoss Portal] - Re: Portal context and Servlet mapping

2006-06-24 Thread Silicio
I'm going crazy... If I map a servlet by extension, I should reach it. For example if I have: | | Servlet1 | mywork.Servlet1 | | | | Servlet1 | *.jhk | In my jsp page located in /web-app-root/user/uploadfile.jsp I sh

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Support generic(jdk 1.5 feature)

2006-06-24 Thread roger1975
Collection View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953252#3953252 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953252 Using Tomcat but need to do more? Need to support web services, security? Get stuff done qu

[JBoss-user] [EJB 3.0] - Re: ejb-jar.xml Schema verification fails

2006-06-24 Thread logankiefer
The schema verfication works for me now. The solution for me was to just use the correct version of the schema: ejb-jar_3_0.xsd for the ejb.jar.xml jboss_4_0.dtd for the jboss.xml Then I needed to change CONTAINER to Container in the ejb-jar.xml file. I also had to ensure that the jboss.xml

[JBoss-user] [EJB 3.0] - ClassCastException when updating ear-jar.xml schema to be EJ

2006-06-24 Thread logankiefer
I'm using JBoss 4.0.4GA with EJB RC7. My current ejbs are all 2.0 ejbs and I want to keep using the deployment descriptors. I'm updating the ear-jar.xml schema to use ear-jar_3_0.xsd instead of the ear-jar_2_0.xsd. When I change the ejb-jar.xml to use ejb-jar_3.0.xsd the context.lookup(jndiName

[JBoss-user] [JBossWS] - Soap:Header element using default namespace [JBoss 4.0.3 Sp

2006-06-24 Thread rfoyle
Hi, I'm developing a webservice that uses soap headers with JBoss 4.0.3 Sp1. I have followed the jboss (test) examples that do not use custom type mappings in the wsdl. The namespace does not appear to be correct in the soap envelope. My problem with this approach is that since the output head

[JBoss-user] [Clustering/JBoss] - Re: (another) XAConnectionFactory not bound

2006-06-24 Thread [EMAIL PROTECTED]
You may try to upgrade jgroups.jar from 2.2.7 to 2.2.9 (or later). Looks like the problem lies in the group membership. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953256#3953256 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[JBoss-user] [EJB 3.0] - Re: ClassCastException when updating ear-jar.xml schema to b

2006-06-24 Thread logankiefer
Some more testing shows that the exact same lookup will return an object that implements a Home interface when using ejb-jar_2_0.xsd and it will return a an object that implements the Remote interface when using the ejb-jar_3_0.xsd Lookup Code below: EJBHome home = (EJBHome)PortableRemoteObject

[JBoss-user] [Clustering/JBoss] - Re: JBoss Cluster issue

2006-06-24 Thread [EMAIL PROTECTED]
The best way to troubleshoot is to turn on log tracing for both tomcat (org.jboss.web.tomcat.tc5.session) and ejb3 (I assume? org.jboss.ejb3). This way you are sure whether the states have been replicated or not. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=

[JBoss-user] [JBossCache] - Re: Replicated field values not 'sticking' in clustered POJO

2006-06-24 Thread [EMAIL PROTECTED]
I'd suggest that you troubleshoot this one step at a time. First is to make sure the real standalone mode (e.g., outside of any container) works first with your POJO. Then you are sure that POJO instrumentation is done correctly. The second step will be to turn on all log tracing to debug (yes,

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - IllegalAccessError initializing ehcache.CacheManager

2006-06-24 Thread masonoise
I'm wondering if anyone else has run into this problem; some searching showed similar reports using other JBoss products, but nothing quite the same as what I'm seeing. This may or may not actually be a Hibernate issue, but I thought folks in this forum would be most likely to have run into this

[JBoss-user] [JBoss Portal] - Re: Newbie question: How to install the HelloPortal.zip

2006-06-24 Thread bakshia
Thanks it works. Two things that were throwing me off were : 1. There is a HelloPortlet.zip sample that doesn't seem to work. The HelloWorldPortlet.zip does work. 2. The HelloWorld Portlet appears at the bottom of the page, I didn't see it and though that it wasn't showing any results. Thanks, I

[JBoss-user] [Performance Tuning] - Re: JBoss Performance Tuning

2006-06-24 Thread tdanecito
Okay, I am tuning to a new level (network) and decided to mention a few things. Use a tool such as TCPOptimizer. Adjust your MRU, MTU such that it meets you needs. For example if you transmit only a couple hundred bytes you can adjust it to that size say versus the standard 1500 bytes. If you t

[JBoss-user] [JBoss Seam] - Re: Seam 1.0.1 GA - STATE_SAVING_METHOD Problem

2006-06-24 Thread [EMAIL PROTECTED]
Upgrading to the latest release of facelets fixes this problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953264#3953264 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953264 Using Tomcat but need to do more? Need