[jboss-user] [JBoss Portal] - Tomahawk File Upload

2006-07-27 Thread angelo.dangelo
Hi all, I have to create a jsf portlet for file uploading, but I am not able to use inputFileUpload (Apache Tomahawk). It seems that it does not work inside a portlet. Do you know if there is a workaround for this issue, or if there are other JSF extensions that provide this kind of feature? Tha

[jboss-user] [EJB 3.0] - Re: Can you change the context root of a deployed ear?

2006-07-27 Thread wonnekeysers
Has this feature request been created already? I want to vote for it! :-) I am wondering where this feature, of prepending the .ear package name to the EJB names, is coming from. Is it in the specs of EJB 3 or JavaEE 5? Because I see a few problems that may occur in this approach. (Or is there a

[jboss-user] [Security & JAAS/JBoss] - Re: Custom principal in Web application

2006-07-27 Thread bdaniliuc
Configuration for custom login module configured in login-config.xml: | | java:/jaas/CoreApplication | core.rbac.BasicPrincipal | core.rbac.jboss.CertificateVerifier | | The custom login module is a subclass of BaseCertLoginM

[jboss-user] [JBoss Seam] - Re: Mixing Hibernate & EJB3

2006-07-27 Thread MSchmidke
Great ... Did not know that Hibernate Session is that simply available. Works great! This is the right solution for such small-brained people like me. Thank you very much! Marcus. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961484#3961484 Reply to the p

[jboss-user] [JBoss Portal] - Re: Hiding a portlet

2006-07-27 Thread dgallego
Thanks so much :). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961482#3961482 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961482 ___ jboss-user mailing list jboss-user@l

[jboss-user] [JBoss Seam] - Understanding Serialization

2006-07-27 Thread chane
After a conversation has sat idle for a while due to think time (or abondonment), I am seeing SerializationException errors in the log. Suggestions on where I can learn about serialization? A couple of specific questions that might clear up my issues: 1. Is it enough to add Serializable to a c

[jboss-user] [JBoss Seam] - Re: Hot Deploy Seam Apps on Tomcat?

2006-07-27 Thread RobJellinghaus
Basically Tomcat just can't reliably shut down a running webapp, because they are sloppy with their classloaders. You wind up with all kinds of static class references that aren't cleaned up properly, and the reloading of your webapp may or may not work. You can get weird ClassCastExceptions p

[jboss-user] [JBoss Seam] - Re: Mixing Hibernate & EJB3

2006-07-27 Thread RobJellinghaus
Personally I am doing it this way: /** | * Tiny sugar class for getting the hibernate session from an EntityManager. | */ | public class GetHibernateSession { |// wow, cool idiom! |private static final Logger log = Logger.getLogger(new Throwable().getStackTrace()[0].getClass()

[jboss-user] [Installation, Configuration & Deployment] - Re: Error when trying to raise max heap size

2006-07-27 Thread IO_303
I was right and able to fix the problem...the suggestion that PeterJ gave was a good one but did not fix my problem. His solution worked if I was using 32 bit, but as it turned out my server admin had installed 32 bit java(like I told him not to) because I told him to use the AMD64 package, he

[jboss-user] [JBoss Portal] - Re: User Input Req for 2.6 Usability and UI enhancements

2006-07-27 Thread [EMAIL PROTECTED]
Those are real world use cases, but there are as many use cases as Java developers... Self contained libs is the easiest way to deal with classloading stuff. We also realize that people do not want to copy/move libs around just to see an example running. You can share libs, but your different

[jboss-user] [Advanced Documentation] - Re: Help in executing Hello World BPEL example

2006-07-27 Thread doankhoavy
Thanks PeterJ Yeah, I have fixed this problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961471#3961471 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961471 ___ jboss-us

[jboss-user] [JBoss Seam] - Re: Get ServletContext in Session Bean

2006-07-27 Thread recycle_bin
Thank Cptnkirk. it works now when i call session bean through JSF. i made a mistake that i call such session bean in a servlet. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961470#3961470 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[jboss-user] [JBossWS] - Re: 1.0.2: Exception when client receives a JavaBean

2006-07-27 Thread Juergen.Zimmermann
My WSDL is generated by the ANT task provided by JBossWS. The schema definition looks as follows: | | | | | | | | | | | | | ... The server doesn't throw any exception, and log shows these entries: 2006-07-28 06:34:

[jboss-user] [JBoss Portal] - Re: Can't get Seam application to work as a Portlet

2006-07-27 Thread javajedi
Solved my problem. The problem was that inputFileUpload relies on a servlet filter, which doesn't work in a portlet. I found a patch for myfaces here: http://issues.apache.org/jira/browse/MYFACES-434 and it's working with the patch applied. View the original post : http://www.jboss.com/index.h

[jboss-user] [JBossCache] - cachelistener configuration

2006-07-27 Thread confuz
Hi All, How to configure the cache listener in the xml configuration file? and I tested the POJOCache with 1.4.0.GA use policy and cacheloader like follow | org.jboss.cache.aop.eviction.AopLRUPolicy | | | | | 5 | |

[jboss-user] [JBoss Seam] - Re: Get ServletContext in Session Bean

2006-07-27 Thread CptnKirk
How are you making this call? You'll only be able to lookup a Seam context after Seam has initialized and while you're within some web request. So calling this method via a startup servlet will probably fail. Calling this method via an EJB or MDB that is executed via a non-web request (ie exec

[jboss-user] [Clustering/JBoss] - Re: Need help trying to expose singleton mbean interface to

2006-07-27 Thread markfrench
I have also configured the RMIAdaptor configured as a singleton so that the clustered queues etc can be flushed by any node in cluster. Why does it's jndi name appear in all the global jndi namespace on each node? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[jboss-user] [JBoss Seam] - Get ServletContext in Session Bean

2006-07-27 Thread recycle_bin
I would preload system data to ServletContext for later use during system up. Then i will get those data in the Session Bean (both stateful and stateless). I use following code to retrieve Context context = Contexts.getApplicationContext(); But, context is NULL. Is there anything that i need t

[jboss-user] [Clustering/JBoss] - Re: Need help trying to expose singleton mbean interface to

2006-07-27 Thread [EMAIL PROTECTED]
The bean proxy should be visible in the regular JNDI tree in the node on which it is deployed. Clients needing to access the proxy should use HA-JNDI to find it -- anything bound in the normal JNDI tree on any cluster node will be visible on all nodes via the HA-JNDI service. View the origina

[jboss-user] [Clustering/JBoss] - Re: Need help trying to expose singleton mbean interface to

2006-07-27 Thread markfrench
Forgot to add the code and service descriptor is packaged in a sar and copied to the deploy-hasingleton directory if that make a difference. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961461#3961461 Reply to the post : http://www.jboss.com/index.html?mod

[jboss-user] [Clustering/JBoss] - Need help trying to expose singleton mbean interface to all

2006-07-27 Thread markfrench
Hi, I currently have an mbean deployed in the deploy-hasingleton directory which I need to have its interface accessible via jndi to all nodes. The following is it's related deployment descriptor: | | | | | | | | jboss:service=

[jboss-user] [Clustering/JBoss] - Re: Data file synchronization

2006-07-27 Thread [EMAIL PROTECTED]
Looks like these are configuration files that you are interested. Can you shared file system to do the job? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961458#3961458 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=39

[jboss-user] [JBossCache] - Re: problem getting pojocache to work

2006-07-27 Thread [EMAIL PROTECTED]
Has replication ever worked in other tests? For example, can you try out the JBoss Cache tutorial to see if you can get mcast to work first? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961457#3961457 Reply to the post : http://www.jboss.com/index.html?mod

[jboss-user] [JBoss Seam] - Re: ejb3trail persistence error

2006-07-27 Thread [EMAIL PROTECTED]
Don't use scriptlets. Use JSF. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961455#3961455 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961455 ___ jboss-user mailing list

[jboss-user] [JBossWS] - Re: 1.0.2: Exception when client receives a JavaBean

2006-07-27 Thread anatoly.osiko
I have found this feature of JBossWS empirically as well, whatever worked with the Axis based ws4jee stopped working JBossWS appears to be strictly adheres to XML Schema definitions. Which is good. The by definition defines not only the elements it contains, but also their order (compare w

[jboss-user] [JBoss Seam] - ejb3trail persistence error

2006-07-27 Thread mishelangelo
whenever i try running jsp files that use session beans to access and retrieve persistent (o/r) entities, i get exceptions usu with root cause: NullPointerException on the line where the an entity should have been initialized from a method call to a session bean. | HTTP Status 500 - | |

[jboss-user] [Beginners Corner] - Is there a way of configuring multiple application instances

2006-07-27 Thread steven.kitchen
>From a standing start on J2EE, never mind JBoss. We have a web service using a single SLSB to extract information through Hibernate. We want to be able to deploy separate instances of the same app. to JBoss (Live, Training) and potentially different versions (Live, Test next version). The co

[jboss-user] [Management, JMX/JBoss] - Unable to Obtain JMX MBean for Servlet Info

2006-07-27 Thread Martinator
Hi, I'm trying to pull servlet statistics from JMX. The process works great for ServerInfo as follows: MBeanServer lBeanServer = org.jboss.mx.util.MBeanServerLocator.locateJBoss(); | ObjectName lBeanName = new ObjectName("jboss.system:type=ServerInfo"); | Object lAttribute = lBeanServer.getAt

[jboss-user] [JBoss jBPM] - Re: JBPEL dependency on JWSDP

2006-07-27 Thread [EMAIL PROTECTED]
Effectively, JBossWS contains its own toolset making JWSDP unnecessary. JBoss BPEL beta 1 was tested with jboss 4.0.4 but switching to wstools (and rewriting the user guide, etc.) was postponed due to time constraints. Note there is no real dependency on JWSDP; we only use the wscompile tool. F

[jboss-user] [JBoss Seam] - Re: @OneToMany Question

2006-07-27 Thread Holger Prause
Hello anonymous wrote : | It sounds like you want a ManyToMany relation. If Tasks can have many TaskItems and a TaskItem can be associated with more than one Task this is a ManyToMany relation, not a OneToMany. | Hmm but the TaskItem dont have any information about the task it owns (no ge

[jboss-user] [JBoss Seam] - Re: Progress

2006-07-27 Thread chane
Your right. I went back and traced through the logs again and I thought it was being destroyed since I saw some context.destroy messages in the log. I mis-read them as being in the stateful context.Thanks for putting me on the right path. I'm really used to stateless frameworks and wrappi

[jboss-user] [EJB 3.0] - Re: Problem using SequenceGenerator

2006-07-27 Thread bryan_castillo
Ok, now I know whats going on. To summarize, I thought that a generated id coming from a sequence in EJB would be the same as the physical value of the sequence. But the sequence generator actually takes the value from the database sequence and multiplies it by the allocationSize. As long as

[jboss-user] [JBoss Seam] - Re: @OneToMany Question

2006-07-27 Thread CptnKirk
This is really an EJB3/JPA question, not a Seam one. You may get better support if you post your question in that forum. It sounds like you want a ManyToMany relation. If Tasks can have many TaskItems and a TaskItem can be associated with more than one Task this is a ManyToMany relation, not

[jboss-user] [JBoss jBPM] - Re: JBPM-BPEL 1.1-beta1 and JBOSS AS 4.0.4 helloworldservice

2006-07-27 Thread [EMAIL PROTECTED]
I was using JDK 1.5.0_05. I upgraded to JDK 1.5.0_07 and I hit the IncompatibleClassException. It looks like they changed the behavior at some release after JDK 1.5.0_05. A note in the javax.xml.namespace.QName source code explains: anonymous wrote : * Due to a historical defect, QName was

[jboss-user] [JBoss Seam] - @OneToMany Question

2006-07-27 Thread Holger Prause
Hello, i have a site where the uses can select TaskItems (entities from the database) and set it to a task. I use a OneToMany relationship (a task hast many taskitems) When i set the TaskItems to the task and save it, everything will be ok. But when i save another task whith the same TaskItems,

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Serving dynamically generated JSPs

2006-07-27 Thread PeterJ
I guess I could always point out that when you deploy an ear or war file that JBoss will explode the contents inot a subdirectory of server/xxx/tmp/deploy. The tricky part is determining the subdirectory name since the name contains a random 5-digit integer. But if you can overcome that obstac

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Serving dynamically generated JSPs

2006-07-27 Thread PeterJ
This is probably not the solution you are looking for, but have you looked into using Velocity templates (or some of the other templating mechanism) instead of JSPs? If you are already passing beans to the JSPs and using JSTL to extract the bean data and generate the HTML, this would be very ea

[jboss-user] [JBoss Eclipse IDE (users)] - Re: 2.0 alpha does not seem to like 0.0.0.0 as bind address

2006-07-27 Thread rpiaggio
Actually, it doesn't like any other value other than "localhost". View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961440#3961440 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961440

[jboss-user] [Installation, Configuration & Deployment] - Re: Error when trying to raise max heap size

2006-07-27 Thread PeterJ
See http://www.jboss.com/index.html?module=bb&op=viewtopic&t=86769 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961439#3961439 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961439

[jboss-user] [EJB 3.0] - Re: Enum attributes in Entity Beans ...

2006-07-27 Thread wcydaip
"dsouza" wrote : Ok, I tested it again for Oracle and it did work, however I did run into some other problems. | | SOME SECURITY | | I have a cactus test suite that inserts/updates/deletes entities in the database to make sure they're working and that they have the appropriate permissi

[jboss-user] [JBoss Seam] - Re: Progress

2006-07-27 Thread CptnKirk
An exception shouldn't implicitly kill the conversation. In fact you've proven that it doesn't. You might roll back a transaction on an exception, but conversations aren't the same as transactions and should survive your given use case (although if you wanted to, it wouldn't be hard to end a c

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

2006-07-27 Thread tdanecito
Hi Pramod, Thanks for the comment. I am on vacation right now but checking this thread. For what I can remember without my system in front of me for the server: Windows 2000 professional sp4 Mustang 1.6 b91 JBoss 4.0.4 GA Apache 2.2 Intel P4 3.0GHz HT Northwood core Regular DDR 400 Two hard driv

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Serving dynamically generated JSPs

2006-07-27 Thread mattgalvin
We have an appliacation that needs to dynamically generate JSPs and make them available for our customers to access. Can someone point me to how I can serve a jsp that is stored say in a database to an end user? Right now, we've deployed our application as an exploded war (well, actually an ex

[jboss-user] [JBossWS] - Re: Type Hiererchy

2006-07-27 Thread wconroy
I am looking at this http://www.ws-i.org/Profiles/BasicProfile-1.1.html and it doesnt mention anything about the complex types with extensions from what I can see. At any rate, is it really the policy of jbossWS to develop features that only work in the lowest common denominator? not adding f

[jboss-user] [Installation, Configuration & Deployment] - Re: Error when trying to raise max heap size

2006-07-27 Thread IO_303
Forgot a few important facts Java: JDK1.5.0_07 JBoss: 4.0.4.GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961431#3961431 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961431 ___

[jboss-user] [EJB 3.0] - Re: Problem using SequenceGenerator

2006-07-27 Thread Arno Werr
it looks like the postgres sequence returned 1. But the SequenceHiLoGenerated inserted a value of 50. I guess, it's because initialValue - default - 1 and allocationSize - 50. I have test table along with cabin table and this test table (you know, to test connections in pool) receives the firs

[jboss-user] [Installation, Configuration & Deployment] - Error when trying to raise max heap size

2006-07-27 Thread IO_303
I am needing to take the max heap size over 1563m, but whenever I try JBoss fails(see screen dump below). The dev server i am using right now is dedicated to getting this web app to run with a larger heap space, so there is nothing running that could even come close to using up the entire heap.

[jboss-user] [JBossWS] - Re: Generic Service

2006-07-27 Thread Doug.Palmer
Hi Heiko Is it possible to emulate the behaviour I'm looking for with a servlet? i.e. Deploy a servlet and deploy additional endpoints for the servlet at runtime. Regards Doug View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961428#3961428 Reply to the post

[jboss-user] [Clustering/JBoss] - Re: Failed to replicate sessionID

2006-07-27 Thread [EMAIL PROTECTED]
If you turn on DEBUG logging of org.jboss.web.tomcat.tc5.session do you see anything to indicate that the session has bee invalidated? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961426#3961426 Reply to the post : http://www.jboss.com/index.html?module=bb

[jboss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-07-27 Thread klsateesh
Hi All, I used the wrong JBoss Installer..Get the jar file from here http://labs.jboss.com/portal/jbossseam/gettingstarted/index.html ~Sateesh View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961425#3961425 Reply to the post : http://www.jboss.com/index.ht

[jboss-user] [EJB 3.0] - Re: Problem using SequenceGenerator

2006-07-27 Thread bryan_castillo
The more I look at the SequenceHiLoGenerator, the more I wonder whether it makes sense to use it be default at all in EJB3. What happens in a cluster? The SequenceHiLoGenerator uses state information when getting sequences. If you have 2 seperate boxes using a SequenceHiLoGenerator from the

[jboss-user] [JBoss Getting Started Documentation] - How do you run app in a Ear file that has a application-clie

2006-07-27 Thread scruffy323
I am trying to run an application in a ear file configured with application.xml specified by the testClient.jar J2ee says that I should be able to but how do I do that with jboss? Below is a example of what I am trying to accomplish but using another container. http://jonas.objectweb.org/curren

[jboss-user] How do you run app in a Ear file that has a application-client.xml

2006-07-27 Thread Steve Morin
I am trying to run an application in a ear file configured with application.xml specified by the testClient.jar J2ee says that I should be able to but how do I do that with jboss? Below is a example of what I am trying to accomplish but using another container. http://jonas.objectweb.org/current

[jboss-user] [EJB 3.0] - Re: Problem using SequenceGenerator

2006-07-27 Thread bryan_castillo
If you go to you database now (say through psql) and issue the query anonymous wrote : select nextval ('postmaster_sequence') I'm betting it would not be 51 and will probably be 2. >From your logs: anonymous wrote : 2006-07-27 16:09:40,004 DEBUG [org.hibernate.SQL] - select nextval ('postm

[jboss-user] [JBoss Seam] - Re: ejb-jar.xml for bookings example: hosed?

2006-07-27 Thread [EMAIL PROTECTED]
Because ejb3 is not part of J2EE 1.4. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961421#3961421 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961421 ___ jboss-user mailin

[jboss-user] [EJB 3.0] - Re: Problem using SequenceGenerator

2006-07-27 Thread Arno Werr
Checked my logs. | 2006-07-27 16:09:40,003 DEBUG [org.hibernate.jdbc.ConnectionManager] - opening JDBC connection | 2006-07-27 16:09:40,004 DEBUG [org.hibernate.SQL] - select nextval ('postmaster_sequence') | 2006-07-27 16:09:40,043 DEBUG [org.hibernate.id.SequenceGenerator] - Sequence

[jboss-user] [JBossWS] - Re: Type definition exception (bug?)

2006-07-27 Thread sbalmos
Bump. Seriously, any ideas, anyone? --Scott View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961419#3961419 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961419 ___ jboss-use

[jboss-user] [JBossWS] - Re: Type Hiererchy

2006-07-27 Thread wconroy
That doesnt make sense. If I have getCats() and getDogs(), then look at the wsdl, it creates a type Animal then, then has Cat and Dog that extends it. How non object oriented languages handle it is their own business, but the wsdl allows hierarchies as do the the SOAP messages. That being sa

[jboss-user] [JBoss Seam] - Re: ejb-jar.xml for bookings example: hosed?

2006-07-27 Thread sviergn
Let me see if I understand: "all" for some reason does not include "ejb3"? Can someone explain this? Why is EJB3 not part of all? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961416#3961416 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[jboss-user] [JBossWS] - Re: Type Hiererchy

2006-07-27 Thread Arno Werr
anonymous wrote : Looking at the WSDL generated for this I dont see Dog or Cat show up anywhere. Is that not valid for web services? Do I need to have separate getAllCats and getAllDogs methods that specify the exact return type? Me neither. Yet I think it's correct. Ask yourself for which pur

[jboss-user] [EJB/JBoss] - Re: Potential Issue with EntityInstancePool

2006-07-27 Thread uromahn
Hi, please forget my comment about the maxSize configuration of the InstancePool - I just learned that the server admin did not change the setting in standardjboss.xml and it was still set to the default of 100. However, I still do see the issue and I still have the question regarding the pool

[jboss-user] [Messaging, JMS & JBossMQ] - Send Message to Queue on Remote Broker From MDB

2006-07-27 Thread bhuste1
I am attempting to create a computing grid. I setup the grid servers to pull requests from the mutliple brokers using the instructions from "HowDoIConfigureAnMDBToTalkToARemoteQueue". Once the MDB running on the grid is finished processing the message, a message needs to be sent back to the b

[jboss-user] [Installation, Configuration & Deployment] - Re: Deployment Error

2006-07-27 Thread smithbstl
Thanks Peter, I was working off an example I found of the hibernate MBean and I guess the jboss-service.xml file was incorrect. I just removed the element and all is fine. Thanks again! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961412#3961412 Repl

[jboss-user] [JBoss Seam] - Re: DataModel issue

2006-07-27 Thread [EMAIL PROTECTED]
Note that there are plenty of other ways to implement clickable lists apart from @DataModelSelection. Arguably, using a request parameter (like in the blog example) is simply a better approach to begin with. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=39614

[jboss-user] [JBoss Seam] - Re: DataModel issue

2006-07-27 Thread CptnKirk
I think the original post is conceptually wrong. is an iterator. It can iterate over lists of things, including DataModels. However it doesn't modify the model that is iterates over. For example it will never set a DataModel's selected row and using @DataModelSelection with it will never wo

[jboss-user] [Installation, Configuration & Deployment] - Re: Deployment Error

2006-07-27 Thread PeterJ
Based on this statement in the stack trace: Caused by: org.xml.sax.SAXParseException: Already seen doctype. I would grep my xml files looking for where the term 'doctype' appears a second time. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961409#3961409 R

[jboss-user] [Clustering/JBoss] - Failed to replicate sessionID

2006-07-27 Thread muleal
Hello, I'm using JBoss 4.0.3SP1 under load balancer hardware and some times I have to log on twice inside my application. My application is based on Struts. I've checked the log created by Jboss and I saw some evidence of what can be causing the problem (see the log below). Does anybody have a

[jboss-user] [JBoss Portal] - Re: jar in .sar lib : bug or normal behavior ?

2006-07-27 Thread Antoine_h
ok Thanks. how can I "make sure the portal sar deploys first" ? is there some "depends" like for the services ? Antoine View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961407#3961407 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[jboss-user] [JBoss Seam] - Re: jboss seam example

2006-07-27 Thread ptmain
Just a followup question... Could I have used the JBoss 4.0.4 GA installation (or 4.0.3), but added the following to my components.xml? Would this override the use of the app server's implementation and instead use the one packaged with Seam? View the original post : http://www.jboss.com

[jboss-user] [JBossCache] - problem getting pojocache to work

2006-07-27 Thread lior.dra
Hi All I am trying to setup a clustered jboss cache solution, I am using pojo cache (1.4 latest release) For some reason I can't get replication to work between 2 machines. Replication is happening fine on one machine (more then one JVM processes) I am using the distribution?s pojocache-service.xm

[jboss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-07-27 Thread klsateesh
"klsateesh" wrote : Hi All, | | I Installed Patch1 with EJB3 Option and i ab able to deploy the App Successfully and when i enter the User details and try to register i am getting the following Error: | | | | 14:56:58,479 INFO [MyfacesConfig] No context init parameter 'org.apa

[jboss-user] [JBossWS] - Re: WS4EE documentation???

2006-07-27 Thread lking28
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961393 Reply to topic Not necessarily. AXIS 1.4 provides session management by exposing the 'scope' concept with it's wsdl2java tool. Just curious if WS4ee provides the same functionality. View the original post : http://ww

[jboss-user] [JBoss Portal] - Re: HTTP Status 403 error ocurred when I switch portal authe

2006-07-27 Thread winklosky
Those errors had nothing to do with the LDAP fix. The no null portlet accepted errors were due to another developer using the same Oracle DB for portal dev. And the Object not found PortletPreferencesInstance occurred with the standard install (no Oracle DB and no LDAP), I just hadn't noticed i

[jboss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-07-27 Thread klsateesh
Hi All, I Installed Patch1 with EJB3 Option and i ab able to deploy the App Successfully and when i enter the User details and try to register i am getting the following Error: | 14:56:58,479 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found, using de

[jboss-user] [JBoss jBPM] - Re: JBPM-BPEL 1.1-beta1 and JBOSS AS 4.0.4 helloworldservice

2006-07-27 Thread [EMAIL PROTECTED]
OK, I'll reinstall everything and see what's going on. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961398#3961398 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961398 ___

[jboss-user] [JBoss jBPM] - Re: Hello world example failed on junit test , throws ClassC

2006-07-27 Thread [EMAIL PROTECTED]
Product versions, please? I think this problem may be related to topic helloworldservice so you might want to follow up that discussion. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961397#3961397 Reply to the post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss Seam] - Re: Progress

2006-07-27 Thread chane
"[EMAIL PROTECTED]" wrote : Basically it just didn't work very well ;-) | | The trouble with @Conversational is that lots of methods of the component can get called before an action method. There may not even be an action method. I think I discovered that one my own. It seems like I have so

[jboss-user] [Installation, Configuration & Deployment] - Deployment Error

2006-07-27 Thread smithbstl
I am attempting to deploy an Ear that contains several jars, a war, and a hibernate har file. I keep getting this stack trace upon starting jboss 4.0.4GA I have searched the web and can't find any other mentions of this error. I don't know where to begin debugging it but suspect it has somethi

[jboss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-07-27 Thread klsateesh
HI All, I am getting the same error.. Insatlled JBoss-4.0.4GA and selected the ALL Option and the SEAM Version i am using is jboss-seam-1.0.1.GA When i don't use the below lines | | http://java.sun.com/xml/ns/j2ee";> | i am getting the error | 8907jboss-seam-registration

[jboss-user] [JBossWS] - Re: WS4EE documentation???

2006-07-27 Thread Arno Werr
RE: So far, all links i've found only discuss 'stateless' web services. Isn't that because only STATELESS session beans should implement SEI, i.e.provide web services? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961393#3961393 Reply to the post : http:

[jboss-user] [JBoss jBPM] - Re: task question

2006-07-27 Thread achesini
thanxs for your quick answer. Now i'm only using task, but i don't know what could happen tomorrow. I want to think that my process could be a group of task , nodes, or whatever. Look, i´m building a tier who comunicate with jbpm. So i want to call a signal method to my tier and this method c

[jboss-user] [JBossWS] - Re: Type Hiererchy

2006-07-27 Thread wconroy
It doesnt look like it. correct me if I am wrong, but it looks like JBWS-1010 has to do with exposing every method in every parent interface for the service. I am more talking about the return types on a method. Take the following interface public interface GetAnimals extends Remote { publ

[jboss-user] [JBoss Portal] - Re: User Input Req for 2.6 Usability and UI enhancements

2006-07-27 Thread wtff
anonymous wrote : However, one can spend weeks trying to arrange all the libs so that the technologies work well together and yet not find a way to do it. I menat to say: "... arrange all the libs OUTSIDE of one's JEE apps..." Take a look at the SEAM samples. All the libs are always contained wi

[jboss-user] [JBoss Messaging] - Re: SimpleMemoryManager Warning

2006-07-27 Thread timfox
"ONIT" wrote : Hi again, | | The JBoss Messaging system is working great. Performance is outstanding and memory usage is negligible even with 400K messages. Memory usage for the whole application never exceeds 50M. | Glad to hear it :) FYI the next release (1.0.1.RC4) which will be out

[jboss-user] [JBoss Seam] - Re: DataModel issue

2006-07-27 Thread [EMAIL PROTECTED]
I don't know the details of what works in facelets and what doesn't. You should ask about that in the facelets forum. But if it works when using h:dataTable, but not when using ui:repeat then it is definitely not a bug in Seam. View the original post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [JBoss jBPM] - Re: task question

2006-07-27 Thread cpob
I'm a little confused. If you say you only use Task Nodes, then why would you be worried about signalling a "state or other node" ? If you signal the tokens, the tasks will never end. It's technically ok if they are open, though it might be confusing. Why not just .end() the task, since you

[jboss-user] [JBoss Portal] - Re: User Input Req for 2.6 Usability and UI enhancements

2006-07-27 Thread wtff
another WYSIWYG / Drag and Drop portal page example similar to the google sample can be found here: http://www.netvibes.com/ I also like to be able to have a fullfledged way of layouting my portal page via a flexible UI /layout model as is the case with Jetspeed ( a portal I otherwise do not

[jboss-user] [JBoss Messaging] - SimpleMemoryManager Warning

2006-07-27 Thread ONIT
Hi again, The JBoss Messaging system is working great. Performance is outstanding and memory usage is negligible even with 400K messages. Memory usage for the whole application never exceeds 50M. My only question is that I get a series of these warning messages: 13:46:03,093 WARN [SimpleMe

[jboss-user] [JBoss jBPM] - Re: Task parameters

2006-07-27 Thread kukeltje
read the docs lots of 'events' including a TASK-CREATE etc.. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961379#3961379 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961379 __

[jboss-user] [JBoss Seam] - Re: DataModel issue

2006-07-27 Thread dbatcn
In the other topic I wrote: anonymous wrote : When pressing the "rename" buttons, the value that I expect to be injected is not there (the log.error() calls below are triggered). for instance (and yes, sorry for not including it in the previous post): anonymous wrote : 2006-07-27 10:51:56,946 D

[jboss-user] [EJB 3.0] - Re: Problem using SequenceGenerator

2006-07-27 Thread bryan_castillo
I found some documentation showing how to override the generator, by using hibernate specific annotations. @Id | @GeneratedValue(strategy=GenerationType.SEQUENCE, generator="VNDR_ID_SEQ") | @GenericGenerator(name="VNDR_ID_SEQ", strategy="org.hibernate.id.SequenceGenerator",

[jboss-user] [EJB/JBoss] - Potential Issue with EntityInstancePool

2006-07-27 Thread uromahn
Hi Experts! I am running into a weird problem and I think I might have found a bug in JBoss. Some brief background first: I am helping a company to migrate their application from WebLogic to JBoss. This application is a really BIG J2EE1.3 implementation that was running on WebLogic 5.1 and shou

[jboss-user] [JBoss Portal] - Re: HTTP Status 403 error ocurred when I switch portal authe

2006-07-27 Thread winklosky
I received the same error and to get past it I added one more module option: Authenticated Following the change I was able to log in with a user stored in LDAP and I did not have to create an Authenticated role in my LDAP. However, two portlets on the default page threw exceptions: An internal

[jboss-user] [JBoss Seam] - Re: DataModel issue

2006-07-27 Thread [EMAIL PROTECTED]
Unless you are sure there is a bug in Seam, and you know the nature of the bug, you should not create any JIRA issues. Nothing in this thread indicates you have found any kind of bug. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961370#3961370 Reply to the

[jboss-user] [JBoss jBPM] - Re: JBPM-BPEL 1.1-beta1 and JBOSS AS 4.0.4 helloworldservice

2006-07-27 Thread asaksena
The build note is about the jbpm-bpel.sar If you take a look at the build folder under the jbpm-bpel-1.1-beta root folder immediately after extracting the files from the download, 2 files are extracted: jbpm-bpel.war and jbpm-bpel-1.1-beta.jar First run ant.build.service.404 and the jbpm-bpel.s

[jboss-user] [Security & JAAS/JBoss] - Re: Custom principal in Web application

2006-07-27 Thread j2ee_junkie
Bogdan, Please give details about which login modules you are using. If you are using a custom login module, please show how you set your custom principal. cgriffith View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961368#3961368 Reply to the post : http://

[jboss-user] [JBoss jBPM] - task question

2006-07-27 Thread achesini
Hi everybody, i´m new in jbpm world. So if someone could help me , i`ll apreciate it. In our process we use only task, for the only reason that task supports the actorsID. Then the user of the task only send the signal method, to pass the procees to the next state. So we dont have to worried a

[jboss-user] [JBoss Seam] - Re: Handling input too large for an integer field using SEAM

2006-07-27 Thread [EMAIL PROTECTED]
Add a to the pagesize box if you like. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961366#3961366 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961366 ___ jboss-user mail

[jboss-user] [JBoss Seam] - Re: Progress

2006-07-27 Thread [EMAIL PROTECTED]
Basically it just didn't work very well ;-) The trouble with @Conversational is that lots of methods of the component can get called before an action method. There may not even be an action method. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961364#3961364

[jboss-user] [JBossWS] - org.jboss.ws.WSException: Cannot obtain endpoint for (using

2006-07-27 Thread DjHitItUp
I am using JBoss 4.0.4 and JBossWS 1.0.2 on an HP-UX system. I am getting an exception on a simple web service. The web service works when JBoss is started but if I redeploy the application or restart JBoss the web service no longer works. Below is the web service code: package com.company.d

  1   2   3   >