[JBoss-user] [JBoss Seam] - Re: Some thoughts about the conversations

2006-03-08 Thread armita
"[EMAIL PROTECTED]" wrote : No, there are instructions in the Seam docs for how to leave a conversation scope. I could not find it, I don't think you mean calling the leave() method, do you? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928965#3928965 Reply

[JBoss-user] [JBoss Portal] - Re: More portlets

2006-03-08 Thread [EMAIL PROTECTED]
Did you look at portletswap http://www.portletswap.com? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928964#3928964 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928964 -

[JBoss-user] [JBoss Seam] - Re: Problem with bijecting

2006-03-08 Thread Newlukai
OK. I try to simplify it. Perhaps my description is too complex for my simple problem. I've two classes. The first has a factory method for a DataModel. @Stateful | @Scope(ScopeType.SESSION) | @LoggedIn | @Name("showListForDevelopers") | @Interceptors(SeamInterceptor.class) | public cl

[JBoss-user] [JBoss Seam] - Re: initial values

2006-03-08 Thread [EMAIL PROTECTED]
Perhaps this also works for you: @Name("foo") | public class Foo | { | |@In(create=true) Bar bar; | |public String action() |{ | ... |} | | } @Name("bar") | public class Bar{ | | private String string; | | @Create | public v

[JBoss-user] [JBoss Seam] - Re: initial values

2006-03-08 Thread [EMAIL PROTECTED]
@Create and @Factory are totally different things. Are you sure you have understood what @In(create=true) does? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928961#3928961 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[JBoss-user] [Beginners Corner] - Re: JBXB

2006-03-08 Thread [EMAIL PROTECTED]
Not yet, its only included in the jbossas download in the jboss-common.jar but will be seperated soon. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928960#3928960 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928960

[JBoss-user] [JBoss Seam] - Re: initial values

2006-03-08 Thread [EMAIL PROTECTED]
@Name("foo") | public class Foo | { | |@In(create=true) Bar bar; | |public String action() |{ | ... |} | | } @Name("barFactory") | public class BarFactory | { | | @Out Bar bar; | | @Factory("bar") | public void initBar()

[JBoss-user] [JBoss Portal] - Re: How to compile a simple portlet

2006-03-08 Thread sau
Add JbossPortalHome//deploy/jboss-portal.sar/lib/portlet-api-lib.jar, portal-portlet-lib.jar, portal-core-lib.jar. in classpath. Everything is same except that you will have to write some jboss-specific descriptors. (The JARs I listed is how I do, may be there are some other JARs too). V

[JBoss-user] [JBoss Seam] - Re: initial values

2006-03-08 Thread gnulp
sorry again, but still the problem is not solved ! (1) In seam-examples the @Factory method is always used with @DataModel - that works perfect - but there is no example where you want to set values of a injected bean ! (2) Adding a @Create in the bean is possible, but it changes the applicati

[JBoss-user] [Beginners Corner] - JBXB

2006-03-08 Thread elangovans
Is JBoss XML Binding available for download? Thanks Elangovan. S View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928953#3928953 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928953 --

[JBoss-user] [JBoss Portal] - Re: what is the best IDE to develop portlets?

2006-03-08 Thread rincewind23
Work is currently underway on a plugin for Eclipse which will allow easy creation of portlet projects. see this forum for details: http://www.jboss.com/index.html?module=bb&op=viewforum&f=239 Cheers, KEv. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=392895

[JBoss-user] [Installation, Configuration & Deployment] - RMI Invocation Behind Firewall on JBoss 4.0.3

2006-03-08 Thread tanwilliam83
Hi everyone, I'm currently running a JBoss 4.0.3 server behind a firewall. The firewall is configured to allow all the ports used by JBoss 4.0.3 according to this article as below: http://docs.jboss.org/jbossas/jboss4guide/r4/html/ch8.chapter.html#d0e21126 I'm also using all the default ports

[JBoss-user] [JBossCache] - Re: Collection proxy(Map) bug with Long values as keys

2006-03-08 Thread ratang2000
Thanks Scott, the workaround wouldn't be a good idea in our software since the structure is used nearly everywhere. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928950#3928950 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=re

[JBoss-user] [JBoss jBPM] - Re: Use of interfaces & classes

2006-03-08 Thread icyjamie
I hope the message was clear. We design by interfaces, we inject by interfaces. So using a class instead of a defined interface totally breaks this concept. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928949#3928949 Reply to the post : http://www.jboss.co

[JBoss-user] [Installation, Configuration & Deployment] - Re: Deploying Jdeveloper app on Jboss 4

2006-03-08 Thread treespace
Related advice: why waste time with an inferior product when you can save a bundle and get Net Beans, Eclipse or IntelliJ? My personal experience with JBuilder is that it's horribly designed, buggy as hell and extremely inefficient. It's the bottom of the barrel but ironically the most expensive

[JBoss-user] [EJB 3.0] - I really need a help on the issue, please.

2006-03-08 Thread gus888
Hi all, I have a join table Party_member: | table party_member ( | party_id int; | person_id int; | joined_on date; | } then according to a example of CategorizedItem on Hibernate in Action, I created the following entity bean: | | @Entity | @Table(name="Party_members") |

[JBoss-user] [Performance Tuning] - Re: JBOSS Stopped Automatically.

2006-03-08 Thread lokesh_tc
Hi All, Currently our application is deployed on jboss-4.0.1sp1 with jdk1.4.x and also the current heap size setting is using default (128MB). Server and the application works fine for few days and then after sometime it stops responding to the request. We have made the following observations

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Jboss-4.0.3SP1 and Hibernate

2006-03-08 Thread xhectorx
ok, It's not necessary in JB4.0.3SP1 the SAR jboss-hibernate.deployer. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928943#3928943 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928943 -

[JBoss-user] [JBossWS] - Web services client suggestions

2006-03-08 Thread zbaig
Hello - I am new to the JBoss platform (and web services) and wish to build a production quality web service application using JBoss. I'd like to prototype a Java client program that is not a J2EE application or another web service but wishes to invoke the functionality offered by the above

[JBoss-user] [JBossCache] - Re: Clearing the cache

2006-03-08 Thread [EMAIL PROTECTED]
hmmn... true enough. I had thought about it actually but was undecided. I will turn it into INFO then. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928938#3928938 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=392893

[JBoss-user] [EJB 3.0] - Re: EJB3 to RC5 context lookup confusion

2006-03-08 Thread [EMAIL PROTECTED]
deployment error messages would help, so would any persistence.xml files you are using. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928937#3928937 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928937

[JBoss-user] [JBoss Seam] - Re: Seam reverse engineering tool

2006-03-08 Thread vlasov01
Is it possible not to prefix class name with catalog name? Example: table ce.users result class name CeUsers. Also I've noticed that *EditorBean is not using right method names, which is causing compilation errors. Example: instance.getCeUsers().getCeProfiless().remove(instance); //error | ins

[JBoss-user] [JBoss Portal] - Configuring the User portlet

2006-03-08 Thread susitha
Hi all I am using JBoss 4.0.2, JBoss portal 2.0 and Oracle9i. I need to authenticate users that have been created in a separate Oracle database server. I have already created User and User_roles databases. Can somebody tell me how to configure to authenticate users and add users usin that

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Jboss-4.0.3SP1 and Hibernate

2006-03-08 Thread xhectorx
Hello, I have the same problem: nested throwable: (javax.management.AttributeNotFoundException: A ttribute 'HarUrl' is not writable) Why this attribute is read-only? How can I change this property? Anybody can help me? thanks. View the original post : http://www.jboss.com/index.html?module=bb&o

[JBoss-user] [EJB/JBoss] - Re: EJB not bound Exception

2006-03-08 Thread jyotitushir
After adding some client jars my code is running fine. Thanks for your support View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928933#3928933 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928933 --

[JBoss-user] [JBoss Seam] - Re: Seam reverse engineering tool

2006-03-08 Thread vlasov01
Thomas, Thank you a lot! Now it works after conversion to InnoDB. I think it will be helpful to warn users in case if database is not 100% compatible. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928932#3928932 Reply to the post : http://www.jboss.com/inde

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: store string and Timestamp data into oracle ,error?

2006-03-08 Thread peixubin
It seem to be a oracle bug. I tested on mysql 4.1,it is correct. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928931#3928931 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928931

[JBoss-user] [Javassist user questions] - Re: Incompatible object argument for function call

2006-03-08 Thread Wallslide
I ran some tests and was getting the same error as you. I believe that the problem lies in the fact that new Integer() expects a String or an int. When you use your original line: return new Integer((($2.get("Quantity")!= null) ? $2.get("Quantity") : "1").toString()); you leave the possibi

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - store string and Timestamp data into oracle ,error?

2006-03-08 Thread peixubin
I writen an entity bean,it have a Long key field,a String field,a Timestamp field... In my session bean ,I create a entity in a interface function createBug,update the String filed value and Timestamp field value in other function updateBug. I found the String field value is error,I update the

[JBoss-user] [EJB 3.0] - Re: EJB3 to RC5 context lookup confusion

2006-03-08 Thread khoyaraaz
Thanks for trying Bill, but still can't get it to work. The changes in the Wiki are for EJB3 RC4, and the jboss4.0.4rc1 bundle installs EJB3 RC5 (I wasn't prompted to choose a different EJB version). I have tried the changes mentioned on the Wiki, and the spec mentions annotations that are unr

[JBoss-user] [JBoss Seam] - Re: RessourceBundle for all Locals in APP-Scope

2006-03-08 Thread [EMAIL PROTECTED]
Yes, Java caches ResourceBundles, so you don't need to worry about caching them yourself. I have reworked the resourceBundle component as a SESSION scoped component, that uses the client locale, instead of letting you to set the locale in seam.properties. This is of course the correct way to d

[JBoss-user] [JBossCache] - Re: Collection proxy(Map) bug with Long values as keys

2006-03-08 Thread ScottMarlowNovell
Never mind, I created the Jira JBCACHE-496 for this problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928923#3928923 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928923

[JBoss-user] [EJB 3.0] - Re: EJB3 to RC5 context lookup confusion

2006-03-08 Thread gus888
In addition, you also need to change persistence.xml to the new struture: | | java:/DatabaseDS | | | | | | | | | | | | and it is better to change xxx.ejb3 to xxx.jar Details

[JBoss-user] [JBoss jBPM] - How to rollback failed timer.execute

2006-03-08 Thread enazareno
Dear All, How do we rollback a transaction just in case a timer execute method fails in the scheduler session? We do not want to rollback the entire scheduler session, just the failed timer. I was thinking of creating two sessions, one to lookup the timers and another to do the execution

[JBoss-user] [EJB/JBoss] - Proxy Server and EJBs - confused.

2006-03-08 Thread chrisbitmead
I'm still pretty confused about how to get JBOSS ejbs to talk through a http proxy and so on. I understand about setting these properties, that's fine: ava.naming.factory.initial=org.jboss.naming.HttpNamingContextFactory java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces java.nami

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Batching, Hibernate Stateless Session & JBoss...

2006-03-08 Thread achitre
Turns out that this is not really a JBoss issue, but a Hibernate issue. It looks like the 'AbstractBatcher' class in Hibernate is not quite set up correctly to handle batch updates. We changed the following method in this class to fix this issue: public boolean hasOpenResources() {

[JBoss-user] [JBoss AOP] - DynamicAOP not working with Examples

2006-03-08 Thread tpedone
I'm using the injboss example to try out DynamicAOP. I startup JBoss with the jboss-aop.xml file in the /server/all/deploy dir. I then drop in the aopexample.ear that was built from the example. The ear deploys and I can see the interceptors print to the console like they are supposed to. I

[JBoss-user] [JBoss Portal] - Re: PortletSession vs HttpSession

2006-03-08 Thread bulloncito
... just to complement, we've already tried this http://wiki.jboss.org/wiki/Wiki.jsp?page=DistributedPortletSession with no success. There is a reference to a " Portal Session " ... does this mean regular " HttpSession " ? or is there another session besides PortletSession and HttpSession View

[JBoss-user] [JBoss Portal] - Re: PortletSession vs HttpSession

2006-03-08 Thread bulloncito
--- Are your filter and your portlet deployed in the same WAR context ? --- Rembember: each context has its own distinct session! --- There is a config option to share the portal's session across all contexts though. Check the docs for how to activate that. What do you mean by that ? We've depl

[JBoss-user] [JBossWS] - emtpy argument becomes null?

2006-03-08 Thread [EMAIL PROTECTED]
One thing I've noticed is that the method I'm trying to call on my endpoint takes two parameters the second of which is a String[]. The client code I'm using passes an empty array for the second parameter. However, by the time it gets to the endpoint, the array is null. Is that an expected behav

[JBoss-user] [JBoss Seam] - Re: Problem with bijecting

2006-03-08 Thread [EMAIL PROTECTED]
Sorry, your example code is simply too complicated. Try and massively simplify it down to the bare concepts, and if it is not then obvious what the problem is, post the simplified code. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928913#3928913 Reply to t

[JBoss-user] [JBoss Seam] - Re: JSF 1.2 / Seam

2006-03-08 Thread simon.nicholls
I've rebuilt it on Java 5. I wonder if it's possible to overwrite the wiki attachments. Sandbox keeps asking me to log in, else I'd check. Am travel tired, so will test etc tomorrow. Cheers Gavin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928912#3928912

[JBoss-user] [JBoss Seam] - Re: RessourceBundle for all Locals in APP-Scope

2006-03-08 Thread [EMAIL PROTECTED]
Doesn't the JVM cache loaded resource bundles?! You have a great point about the Seam resourceBundle component. I should certainly make this a session-scoped component and use the browser locale, not a global locale. I suck at i18n stuff :-) Thanks! View the original post : http://www.jboss.

[JBoss-user] [JBoss Seam] - Re: Exception: java.lang.IllegalArgumentException: could not

2006-03-08 Thread [EMAIL PROTECTED]
What stacktrace? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928910#3928910 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928910 --- This SF.Net email is sponsor

[JBoss-user] [JBoss Seam] - Re: Class org.jboss.seam.jsf.SeamVariableResolver is no java

2006-03-08 Thread [EMAIL PROTECTED]
The classloading problem is that you are somehow loading the myfaces-api.jar from two different classloaders, so you have two different classes named "org.jboss.seam.jsf.SeamVariableResolver". Make sure you are not deploying the myfaces jars along with your application. JBoss already has them bu

[JBoss-user] [JBoss Seam] - Re: Method not found: isJndiName

2006-03-08 Thread scotttam
Should the JBoss IDE 1.5.1.GA solve the problem or will only the nightly builds? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928908#3928908 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928908 --

[JBoss-user] [EJB 3.0] - Re: EJB3 to RC5 context lookup confusion

2006-03-08 Thread [EMAIL PROTECTED]
the spec is your friend too it has a revision history View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928907#3928907 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928907 ---

[JBoss-user] [EJB 3.0] - Re: EJB3 to RC5 context lookup confusion

2006-03-08 Thread [EMAIL PROTECTED]
Google is your friend The wiki is your friend http://wiki.jboss.org/wiki/Wiki.jsp?page=EJB3 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928906#3928906 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928906 -

[JBoss-user] [JBoss Seam] - Re: @NotNull ignored in booking demo

2006-03-08 Thread [EMAIL PROTECTED]
@Length (min = 1, max = 500, message = "Email address is required and must be at most 500 characters long.") View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928905#3928905 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[JBoss-user] [EJB 3.0] - Re: datasource not found ...

2006-03-08 Thread nickthegreat
Thx to everyone for help -> it's highly apreciated :) Finally got it working, basicly via RTFM (more carefully) ;) Overead the J2SE-example-persistence.xml in HEM "doco" -> which helped solving this problem very quickly ... View the original post : http://www.jboss.com/index.html?module

[JBoss-user] [JBoss Seam] - Re: JSF 1.2 / Seam

2006-03-08 Thread [EMAIL PROTECTED]
Um. I don't seem to be able to figure out how to do that... Thomas? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928903#3928903 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928903 ---

[JBoss-user] [JBoss Seam] - Re: JSF 1.2 / Seam

2006-03-08 Thread simon.nicholls
Bottom of http://wiki.jboss.org/wiki/Wiki.jsp?page=SeamWithJSF1.2. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928902#3928902 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928902 -

[JBoss-user] [JBoss Seam] - Re: @NotNull ignored in booking demo

2006-03-08 Thread patrick_ibg
Can't you do: @Length (min = 1, max = 500, message = "Email address must be between 1 and 500 characters long.") View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928898#3928898 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=re

[JBoss-user] [JBoss Seam] - Re: JSF 1.2 / Seam

2006-03-08 Thread [EMAIL PROTECTED]
Remove which attachment from where? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928897#3928897 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928897 --- This SF.N

[JBoss-user] [JBoss Seam] - Re: annoying

2006-03-08 Thread [EMAIL PROTECTED]
Yeah, I've also been frustrated by this one. I *think* it is a bug in JBoss AS. I actually havn't seen it for a while and had thought it was fixed in 4.0.4RC1. If you can create any kind of reproducable testcase, report it in JBoss AS JIRA. I was never able to reproduce it reliably. View the or

[JBoss-user] [JBoss Seam] - Re: Request: fine-grained control over Server vs Client stat

2006-03-08 Thread [EMAIL PROTECTED]
... sounds a bit over-complex... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928895#3928895 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928895 --- This SF

[JBoss-user] [JBoss Seam] - Re: myfaces sandbox and seam/facelet

2006-03-08 Thread [EMAIL PROTECTED]
You would need to wrap SeamServletFilter around whatever servlet they use to process the AJAX request. As described here: http://docs.jboss.com/seam/reference/en/html/conversations.html#d0e2481 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928894#3928894

[JBoss-user] [JBoss Seam] - Re: Some thoughts about the conversations

2006-03-08 Thread [EMAIL PROTECTED]
I think what you guys may be grasping for is a concept of "conversation group", perhaps analogous to ThreadGroup. Do you think? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928893#3928893 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[JBoss-user] [JBoss Seam] - Re: @NotNull ignored in booking demo

2006-03-08 Thread [EMAIL PROTECTED]
It is VERY easy to extend Hibernate Validator and add your own annotations :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928892#3928892 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928892 --

[JBoss-user] [EJB 3.0] - Re: EJB3 to RC5 context lookup confusion

2006-03-08 Thread khoyaraaz
"gus888" wrote : TheInterface generateInt = (TheInterface) context.lookup("XXX/TheInterface/local"); | it seems the "XXX/TheInterface/local" should be "XXX/TheInterfaceBean/local". Nope, does not work. Seems like my My Beans are "not Bound" to JNDI. thanks for suggestion though. Is there a

[JBoss-user] [EJB/JBoss] - Questions about stateless session bean life cycle from clien

2006-03-08 Thread mossprescott
I have a bunch of stateless session beans running in JBoss 4.0.1sp1 which are being called by a Swing client via RMI. I would like the application to scale to hundreds of clients, and I'm beginning to look at performance tuning. So far, the results are encouraging; I've used Grinder 3 (incidenta

[JBoss-user] [JBoss Portal] - what is the best IDE to develop portlets?

2006-03-08 Thread masternet
what is the best IDE to develop portlets? I use Eclipse, (run packaging with Jboss IDE Eclipse) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928889#3928889 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928889

[JBoss-user] [JBoss Portal] - Re: Portlet development, just getting startet!

2006-03-08 Thread masternet
Oh!! Thanks. It's perfect to start View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=392#392 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=392 --- This SF.Ne

[JBoss-user] [JBoss Portal] - Re: Error creating new directory on CMS

2006-03-08 Thread masternet
JBoss Portal 2.2 on jboss-4.0.4RC1 with possgress 8.1 (using admin count) Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928887#3928887 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928887 -

[JBoss-user] [Clustering/JBoss] - HA-JMS and MDB question

2006-03-08 Thread jaridley
I'm currently running JBoss version 4.0.1 on Suse 8.0 with java version 1.4.2_10. I'm posting this to the clustering forum as we recently moved to a clustered deployment using HA_JMS with JBoss 4.0.1 from JBoss 4.0.0 and had not seen this problem at that point. To simplify our deployment, we a

[JBoss-user] [EJB 3.0] - Re: EJB3 to RC5 context lookup confusion

2006-03-08 Thread gus888
TheInterface generateInt = (TheInterface) context.lookup("XXX/TheInterface/local"); it seems the "XXX/TheInterface/local" should be "XXX/TheInterfaceBean/local". View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928885#3928885 Reply to the post : http://www.jbo

[JBoss-user] [EJB 3.0] - Re: EJB3 to RC5 context lookup confusion

2006-03-08 Thread khoyaraaz
BTW, the error I'm getting at start up of Jboss is: ObjectName: jboss.j2ee:service=EJB3,ear=XXX.ear,jar=XXX-beans.ejb3,name=TheInterfaceBean State: NOTYETINSTALLED Why? I don't know. and when trying to use the context.lookup in the servlet, I get: javax.naming.NameNotFoundException: TheInterf

[JBoss-user] [JBoss Portal] - More portlets

2006-03-08 Thread masternet
where I can find more example of portles? (with source code and without source code)? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928883#3928883 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928883 --

[JBoss-user] [Installation, Configuration & Deployment] - Deploying Jdeveloper app on Jboss 4

2006-03-08 Thread sphinx88
I have an application that is up and running on JBoss 3.2.3. For an IDE, I use JDeveloper 10g. to deploy to jboss. I need to deploy on Jboss 4. However when I deploy on JBoss 4 the depoyment fails and gives this error. 17:08:18,875 ERROR [URLDeploymentScanner] Incomplete Deployment listi

[JBoss-user] [EJB 3.0] - EJB3 to RC5 context lookup confusion

2006-03-08 Thread khoyaraaz
I am trying to migrate from jbossSP1 and ejb 3.0, to jboss4.0.4RC1 and EJB3.0RC5 for an enterprise application I'm launching in a couple of months. Loved the jbosssp1/ejb3 bundle, but this migration is driving me looney. I am currently stuck at trying to get the context lookup to work. I have

[JBoss-user] [JBoss jBPM] - Re: jbpm problem

2006-03-08 Thread jkraja
Change it to this and it works: ProcessDefinition definition = ProcessDefinition.parseXmlResource ("hello.par/processdefinition.xml"); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928879#3928879 Reply to the post : http://www.jboss.com/index.html?module=b

[JBoss-user] [JBoss Seam] - Re: JSF 1.2 / Seam

2006-03-08 Thread simon.nicholls
I'm not ;-) I'm sure the problem was that I was trying out Mustang amongst other things. Gavin, can you or another JBoss representative remove the attachment from the wiki page? I'll build a Java 5 version, but don't want to cause confusion with multiple attachments up there. View the original

[JBoss-user] [JBoss jBPM] - Persistence Best Practices?

2006-03-08 Thread jesse_sweetland
I've recently run into a situation where I've got a transaction that spans multiple requests and I receive a LazyInitializationException when I attempt to save and commit the changes to the object on the final request. Specifically, I load a TaskInstance in one request, and then (potentially se

[JBoss-user] [JBoss Seam] - Re: initial values

2006-03-08 Thread CptnKirk
Try populating your @Factory method, or adding a @Create method to your myBean. There are example in the Seam distro that show working @Factory used to populate initial values. -Jim View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928875#3928875 Reply to the

[JBoss-user] [JBoss Portal] - How to compile a simple portlet

2006-03-08 Thread ilangocal
Hi I want to compile a simple portlet from scratch. I have written a Porlet Java class, a JSP and I would like to compile the Java class,create the Jar file, write the portlet descriptors (or modify the descriptors available), set up the War file directory structure, package and deploy the port

[JBoss-user] [JBoss jBPM] - Re: Spring + jBPM 3.1 + Single Hibernate Session

2006-03-08 Thread criess
Also, You want to make sure your application context create an individual jbpmContext and not a singleton. So the new application context would be this: | | | | | | | | |

[JBoss-user] [JBoss jBPM] - Re: Spring + jBPM 3.1 + Single Hibernate Session

2006-03-08 Thread criess
icyjamie, No if you call JbpmConfiguration.getInstance() you will get a cofiguration instance other than that in Spring. Therefore, you want to use the application context with Spring. Here is an example of using Spring and jBPM: | | public class MyTest extends TestCase { | | p

[JBoss-user] [JBossCache] - Re: Collection proxy(Map) bug with Long values as keys

2006-03-08 Thread ScottMarlowNovell
Nice find! If you create a Jira for this, I'll fix it for the JBoss Cache 1.3 release. Assign it to me for release 1.3. This needs to be done today. The workaround is: System.out.println(guidMap2.containsKey(new Long("8225676592564383").toString())). View the original post : http://www.jb

[JBoss-user] [JBoss Seam] - annoying

2006-03-08 Thread coryvirok
I'm in the process of learning + developing my Seam enabled web app and I find myself needing to redeploy all the time. Since I'm also new to JSF, I sometimes need to redeploy because of a stupid JSF bug in my .xhtml files. Some of the time the error will occur right after a make a call to a @B

[JBoss-user] [EJB 3.0] - Re: @Embedded objects require @AttributeOverrides? WTF!?

2006-03-08 Thread [EMAIL PROTECTED]
i wouldn't know. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928862#3928862 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928862 --- This SF.Net email is sponsor

[JBoss-user] [JBoss Seam] - Re: initial values

2006-03-08 Thread gnulp
No - that won't work ! (1) I need the injection of myBean, because it holds the values of the form. If I remove the @In-annotation I have no access to the beanValues filled from the jsf-form within my controller ! (2) Assume you have a @Valid annotation for your bean for childvalidation. If yo

[JBoss-user] [Remoting] - Re: EJB3 remoting - RMI (good), HTTP (bad)

2006-03-08 Thread dhartford
Was a little fast on the submit - The problem with JNDI was 'authorization' not authentication. The test was done on CVS-snapshot of jboss-4.0.x on 3/7/2006. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928846#3928846 Reply to the post : http://www.jboss

[JBoss-user] [Remoting] - EJB3 remoting - RMI (good), HTTP (bad)

2006-03-08 Thread dhartford
Hey all, I have had great success with EJB3 test-application and using the remoting support for socket-based RMI with great success! Now I have moved on to test support for RMI-over-HTTP, and having some issues. Two problems specifically: * Using the servlet or EJB invoker over HTTP. * The JNDI

[JBoss-user] [EJB 3.0] - Re: @Embedded objects require @AttributeOverrides? WTF!?

2006-03-08 Thread mnewcomb
http://opensource2.atlassian.com/projects/hibernate/browse/ANN-279 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928844#3928844 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928844 -

[JBoss-user] [JBoss Seam] - Request: fine-grained control over Server vs Client state sa

2006-03-08 Thread emsa
I would like to to have a more fine grained control over what is saved on the client vs server, something like: |@Scope(SESSION, state=server) | I really like to keep, for example, the id of the loggedin user on the server for security reasons. Other state data can be saved on the clien

[JBoss-user] [JBoss jBPM] - success stories to sell to management

2006-03-08 Thread jbpmndc
I'm becoming a big fan of jbpm, but it can be difficult to sell to management without some success stories. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928842#3928842 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3

[JBoss-user] [EJB 3.0] - Re: @Embedded objects require @AttributeOverrides? WTF!?

2006-03-08 Thread mnewcomb
Give me a general direction to look in the code and I'll try to patch it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928841#3928841 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928841 ---

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Exception while generation code...

2006-03-08 Thread [EMAIL PROTECTED]
use 3.1beta4 or the just releasted jbosside 1.5.1 GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928840#3928840 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928840

[JBoss-user] [JBoss Seam] - Re: initial values

2006-03-08 Thread amarinis
I suggest you remove the @In annotation. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928839#3928839 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928839 --- Thi

[JBoss-user] [JBoss Seam] - Re: Tools & Documentation

2006-03-08 Thread [EMAIL PROTECTED]
Have you chekked the "use ejb3/annotations" checkbox in the console configuration ? (btw. would actually be nice if we autodetected this need depending on the contents of the hibernate.cfg.xml ...please put that in jira if you want it) ...and you should *not* add any hibernate related jars to t

[JBoss-user] [EJB 3.0] - Re: @Embedded objects require @AttributeOverrides? WTF!?

2006-03-08 Thread [EMAIL PROTECTED]
you have a very valid point. Add a feature request here: http://opensource2.atlassian.com/projects/hibernate/browse/ANN View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928837#3928837 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[JBoss-user] [JBoss Seam] - Re: myfaces sandbox and seam/facelet

2006-03-08 Thread gnulp
just tried inputSuggestAjax - nearly-works, but get nullpointerexception when calling remote-method. I believe it is because seam manages its objects invisible for jsf - thus the ControllerBean bean is not found by the ajax-implementation. somewhere in the forum there is a tip from Gavin how to

[JBoss-user] [EJB 3.0] - @Embedded objects require @AttributeOverrides? WTF!?

2006-03-08 Thread mnewcomb
JDK 1.5.0_06 JBoss 4.0.4RC1 @Embeddable | class Vector3f | { | double getX() | double getY() | double getZ() | } | | @Entity | class Foo | { | @Embedded | Vector3f getVelocity(); | @Embedded | Vector3f getOrientation(); | } I get some errors from Hiber

[JBoss-user] [EJB 3.0] - Re: How can I limit ANSI joins (resulting column #) in queri

2006-03-08 Thread tomcoker
I couldn't find this before, but I guess posting a question always raises the possibility of finding it in the doc. hibernate.max_fetch_depth - Set a maximum "depth" for the outer join fetch tree for single-ended associations (one-to-one, many-to-one). A 0 disables default outer join fetching.

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Exception while generation code...

2006-03-08 Thread wjmca
I have having the same problem. Did you ever figure out what the problem was? Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928833#3928833 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928833 --

[JBoss-user] [JBoss jBPM] - Re: Spring is in the air

2006-03-08 Thread etr480
"icyjamie" wrote : Of course. There was some glitches in the configuration for the session factory. It must depend on jbpmConfiguration, so: | | | - depends-on="jbpmConfiguration" for the sessionFactory (believe me, it is necessary :-)) | | - The addition of my favorite directories:-)

[JBoss-user] [JBossCache] - Re: Clearing the cache

2006-03-08 Thread drosenbaum
One comment though, could it be made into a debug or info message rather than a warning? I have my logs configured to show warnings and would rather not see such log messages at all, since it is not really a problem. I am not sure why it deserves a level of warn. View the original post : htt

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - org.jboss.hibernate.jmx.Hibernate seems redundent with Hiber

2006-03-08 Thread cdelashmutt
It seems that org.jboss.hibernate.jmx.Hibernate is now redundant with Hibernate 3.0 and later. Hibernate includes an MBean for the session factory, and so shouldn't JBoss AS try to use org.hibernate.jmx.HibernateService, or possibly extend that class to add the functionality it needs? It seems

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Message propagation form Oracle 10g AQ to JBoss MQ

2006-03-08 Thread anirudh.pandit
hi i am trying to implement the Patch set provided by P0six i am using 10gR2 data base and JBoss 4.0.3SP1 and i am getting the following error when i start JBoss, also similar errors apper for other Providers service, i have checked the classpaths in the deploy.xml for the patchset it seems to

[JBoss-user] [JBossCache] - Re: Collection proxy(Map) bug with Long values as keys

2006-03-08 Thread ratang2000
any ideas on this one anyone? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928823#3928823 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928823 --- This SF.Net ema

  1   2   3   >