[JBoss-user] [Clustering/JBoss] - local_addr is null

2006-01-03 Thread okros
Hi, I have a JBoss 4.0.2 cluster consisting of two servers. In some time after deployment an ear file I got a warning messages: 2005-10-22 23:00:17,219 WARN [org.jgroups.protocols.FD - FD.up] I was suspected, but will not remove myself from membership (waiting for EXIT message) | 2005-10-22

[JBoss-user] [Installation, Configuration & Deployment] - local_addr is null

2006-01-03 Thread okros
Hi, I have a JBoss 4.0.2 cluster consisting in two servers. In some time after deployment an ear file I got a warning messages: 2005-10-22 23:00:17,219 WARN [org.jgroups.protocols.FD - FD.up] I was suspected, but will not remove myself from membership (waiting for EXIT message) | 2005-10-22

[JBoss-user] [Installation, Configuration & Deployment] - Re: How or where to changet the default deployment order in

2006-01-03 Thread jaikiran
As per the comment in the jboss-service.xml file, you might have to write your own URLComparator, which implements the java.util.Comparator interface. The you can modify the following attribute as follows: abc.xyz.myURLComparator View the original post : http://www.jboss.com/index.html?modul

[JBoss-user] [Installation, Configuration & Deployment] - Re: How or where to changet the default deployment order in

2006-01-03 Thread [EMAIL PROTECTED]
is it possible to change the order? if so where to change ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915437#3915437 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915437 -

[JBoss-user] [Management, JMX/JBoss] - HASingleton Schedulable

2006-01-03 Thread dionmcm
I've currently got a Scheduleable - ie a class that extends org.jboss.varia.scheduler.Schedulable and it is deployed in a SAR with the following sort of jboss-service.xml | | | | | | | | true | | | my.example.Schedulable

[JBoss-user] [Installation, Configuration & Deployment] - Re: How or where to changet the default deployment order in

2006-01-03 Thread jaikiran
The jboss-service.xml file in server/default/conf mentions the following: | org.jboss.deployment.DeploymentSorter View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915434#3915434 Reply to the post : http://www.jboss.com/index.html?module=bb&op=postin

[JBoss-user] [Installation, Configuration & Deployment] - How or where to changet the default deployment order in jbos

2006-01-03 Thread [EMAIL PROTECTED]
Hi As we know the following is default deployment order in jboss "sar", "service.xml", "rar", "jar", "ear", "war", "wsr", "zip","*" Is it possible to change the default deployment order in jboss? I want war fdeployment before jar deployment. Thanks Ramesh View the original post

[JBoss-user] [Clustering/JBoss] - Re: Cookies + clustering + 4.0.3 = ignored context.xml

2006-01-03 Thread coreyjohnston
Problem solved. It's not actually a problem in the new version, 4.0.3, as expected. The problem actually exists in 4.0.2 too, but its got nothing to do with clustering. Rather, the problem is to do with cookies. The problem occurred when I accessed a web app B on our server that explicitly "d

[JBoss-user] [Advanced Documentation] - Can we fetch all Jboss services from remote machine using JM

2006-01-03 Thread komspr
Can we fetch all Jboss services from remote machine using JMX. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915430#3915430 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915430 --

[JBoss-user] [EJB/JBoss] - Stateless Session Bean and EJBObject.remove method

2006-01-03 Thread rameshsr
I have a stateless session bean. Inside this bean, I have multiple ejb methods that the client app can invoke. The client invokes my ejb methods by doing a i) JNDI lookup of the EJB ii) EJBHome.create iii) invoke the ejb method on the remote The client does not call the EJBObject.remo

[JBoss-user] [JBoss jBPM] - About WSDL message's part name

2006-01-03 Thread fwshk
Excuse me, I would like to know what is the reason the message's part name cannot same? Part of WSDL | | | | | | | Read the deployed WSDL | 13:48:41,609 FATAL [InternalException] Exception: | java.lang.Exception: The OperationDesc for process was not synchronize

[JBoss-user] [JBossWS] - Re: problem in

2006-01-03 Thread itomer
this post is closed. it should be "webservices.xml", not "webservice.xml" now it works fine. Stupid mistypings sorry View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915425#3915425 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[JBoss-user] [JBoss Portal] - Re: jboss-portal-2.2.0-bundled / oracle

2006-01-03 Thread kyokosaika
anybody help me View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915424#3915424 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915424 --- This SF.net email is sponsore

[JBoss-user] [JBoss Eclipse IDE (users)] - JBossIDE Eclipse Tutorial Problem with running XDoclet

2006-01-03 Thread [EMAIL PROTECTED]
Hi, I am new to JBoss have installed the JBossIDE-1.5RC2-Bundle-win32.zip file. I am now trying out the Fibo tutorial. I have created the XDoclet for FiboBean as per tutorial. However, when I try to run the XDoclet, I have the following error: anonymous wrote : | Message: | Error while ru

[JBoss-user] [JBoss Eclipse IDE (users)] - JBoss Eclipse IDE 1.5 Final Released!

2006-01-03 Thread [EMAIL PROTECTED]
The JBoss Eclipse IDE Team is happy to announce the final release of JBoss Eclipse IDE 1.5! A few quick links: JBoss Eclipse IDE 1.5 Online Installation Guide: http://docs.jboss.com/jbosside/install/build/en/html/index.html JBoss Eclipse IDE 1.5 Online Tutorial: http://docs.jboss.com/jbosside/t

[JBoss-user] [Javassist user questions] - static field initializer

2006-01-03 Thread moonusamy
Could someone help on how to initialize a static class field of array type as follows: private static final Foo[] _foos = {new Foo("a"), new Foo("b")}; Just feeding this string to CtField.make() causes a compilation error. On a related note, how would I add a static block of code in my class?

[JBoss-user] [JBossWS] - [DeserializationContextImpl] Ignoring invalid namespace mapp

2006-01-03 Thread rgimbel
Hello! First this is not a JBoss problem but I am hoping someone might help me understand this. I created a HelloWorld webservice that passes a string in and sends a string back. Nothing out of the normal. I have it deployed and am using a C# app to consume this webservice. The webservice w

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Failure when committing JTA transaction: status=STATUS_N

2006-01-03 Thread sprhodes
Oh, and in case it helps any, this is JBoss 4.0, Hibernate 3.1 and DB/2 8.1.0 being used. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915419#3915419 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915419 ---

[JBoss-user] [Clustering/JBoss] - Re: clustered statefull ejbs require HA-JNDI in colocated sc

2006-01-03 Thread [EMAIL PROTECTED]
Look at the org.jboss.invocation.InvokerInterceptor. You can write a customized version to avoid distribution, or write a custom load balancing policy. If you care about where the calls are going, why is the bean clustered? View the original post : http://www.jboss.com/index.html?module=bb&op=

[JBoss-user] [Security & JAAS/JBoss] - Re: powerfull/flexible => role per method ????

2006-01-03 Thread [EMAIL PROTECTED]
I would look at creating a custom java.security.acl.Group that was used as the Roles group in the authenticated subject to allow for use of the declarative security as a start. You could certainly use custom interceptors to add arbitrary security if this does not work. View the original post

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Failure when committing JTA transaction: status=STATUS_NO_TR

2006-01-03 Thread sprhodes
Hi all, having a little problem that I'm hoping someone can shed some light on. I have a servlet in which I'm trying to use JTA transactions, but when I call the commit() method on the UserTransaction, I get back: 2006-01-03 21:08:25,718 INFO [STDOUT] org.jboss.tm.JBossRollbackException: Unab

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Relationships - NullPointerException

2006-01-03 Thread [EMAIL PROTECTED]
It should be well known that only local ejbs can participate in relationships, so I guess its not something we have tested. I have created a feature request to provide better feedback. http://jira.jboss.com/jira/browse/JBAS-2625 View the original post : http://www.jboss.com/index.html?module=b

[JBoss-user] [Installation, Configuration & Deployment] - Re: java.lang.NoClassDefFoundError: java/lang/StringBuffer

2006-01-03 Thread [EMAIL PROTECTED]
Often the actual class not found is another one being triggered by the one reported in the error message. See the following for enabling trace level logging of the class loading categories: http://wiki.jboss.org/wiki/Wiki.jsp?page=EnableClassloaderLogging Look at the ucl.log around the NoClassD

[JBoss-user] [Security & JAAS/JBoss] - Re: WSSecurity

2006-01-03 Thread [EMAIL PROTECTED]
See: http://wiki.jboss.org/wiki/Wiki.jsp?page=WSSecurity View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915411#3915411 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915411 ---

[JBoss-user] [JBoss Seam] - Re: Commandbutton doesn't work inside dataTable

2006-01-03 Thread [EMAIL PROTECTED]
Sure there are examples of that. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915409#3915409 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915409 --- This SF.net

[JBoss-user] [JBoss Portal] - Re: Changing Page name and Portlet title

2006-01-03 Thread vmarco
"mholzner" wrote : The title that is shown in the browser is set by the layout. | In the portal core war look for layouts/generic/index.jsp , and there for the title tag. Doesn't this prevent me from controlling the title per page? Doesn't it also means to control the title of my site I am

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Relationships - NullPointerException

2006-01-03 Thread chrisbitmead
Okay, it seems the problem was that I can't have relationships with remote interfaces. I had to change them to local interfaces. Why JBoss can't give a better error than NullPointerException I don't know. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915407

[JBoss-user] [JBoss Seam] - Re: Newb needs help...

2006-01-03 Thread [EMAIL PROTECTED]
AFAIK, JBoss IDE requires that things be deployed as an EAR, probably using Ant. This doesn't stop you doing interactive debugging in Eclipse. You simply start JBoss from the JBoss IDE Server Navigation view, deploy your app using Ant, and you can debug it. View the original post : http://www

[JBoss-user] [JBoss Seam] - Re: Commandbutton doesn't work inside dataTable

2006-01-03 Thread drapierwim
It's just when your datatable is wrapped inside a form button and link won't work anymore, why I don't know when a datatable is not wrapped in a table links works fine but button and everything else is useless. Is there an example of using a dataTable inside a form available in the provided sa

[JBoss-user] [EJB 3.0] - Re: @NamedNativeQuery

2006-01-03 Thread [EMAIL PROTECTED]
try www.hibernate.org View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915402#3915402 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915402 --- This SF.net email is sp

[JBoss-user] [JBoss Seam] - Re: Commandbutton doesn't work inside dataTable

2006-01-03 Thread [EMAIL PROTECTED]
I guess I don't really understand. There are lots of examples of clickable links in the example apps. Why not just start from something in one of the example apps, and work from there? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915401#3915401 Reply to t

[JBoss-user] [JBoss Seam] - Re: Breaking change

2006-01-03 Thread [EMAIL PROTECTED]
It is more a question of propagation, than of "reuse". And I don't think "unique" really captures it :) It's actually analogous to Transaction Required. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915400#3915400 Reply to the post : http://www.jboss.com/i

[JBoss-user] [JBoss Seam] - Re: Breaking change

2006-01-03 Thread drapierwim
As a result of my http://www.jboss.com/index.html?module=bb&op=viewtopic&t=74806 earlier post I didn't know we could make suggestions for the join() name. First the join confused me of thinking that it can be 'joined' with else...(silly me) so I'm thinking of reuseConversation ... maybe to long

[JBoss-user] [JBoss jBPM] - TaskNode.parseSignal - global or specific attribute

2006-01-03 Thread fmuhlenberg
In chapter 9.2.2 of the users guide, a reference is made to the signal-properties of a task-node. Is that property applied globally to all task-nodes or can it be narrowed to a specific task node (or better still narrowed to a process instance)? My situation is that I have a document approval p

[JBoss-user] [JBoss Seam] - Re: Commandbutton doesn't work inside dataTable

2006-01-03 Thread drapierwim
I've used the latest CVS version, and still no success with the commandButton in a datatable, also set the scopetype to UNSPECIFED and PAGE as well as the default CONVERSATION for my SFSB This is what i've done... I've created in the footer of the columns inputfields a link and a submitbutton n

[JBoss-user] [JBossWS] - Accessing web service from MBean

2006-01-03 Thread hlehtimaki
Hi I'm trying to access a web service from an MBean, but I get javax.naming.NameNotFoundException: env not bound My code looks like this: | InitialContext iniCtx = new InitialContext(); | SmsApiService service = (SmsApiService) iniCtx | .lookup("java:comp/env/service/SmsApiService"

[JBoss-user] [JBoss Portal] - Re: Changing Page name and Portlet title

2006-01-03 Thread [EMAIL PROTECTED]
we could add a default name property at the parent node that would say which page to look for as default page to handle that. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915393#3915393 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[JBoss-user] [JBoss Portal] - Re: Changing Page name and Portlet title

2006-01-03 Thread mholzner
To my knowledge the 'default' is hard coded in 2.2. I don't know any way around it without coding. So I guess you did what was necessary. see also http://jira.jboss.com/jira/browse/JBPORTAL-465 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915392#3915392

[JBoss-user] [Installation, Configuration & Deployment] - Deploying Multiple EARs

2006-01-03 Thread yxw84
I have a working EAR which is a full J2EE application with EJB3, and I am trying to deploy multiple instances of this application onto the same JBoss server. The goal is to make each EAR completely independent from all the others. From reading the Wiki, the first step would be to give each EAR i

[JBoss-user] [EJB 3.0] - @NamedNativeQuery

2006-01-03 Thread silviu.marcu
Hi, I try to use the annotation: @NamedNativeQuery, can anybody give me a hint where to look for documentation/example? I did find anything on this forum. thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915390#3915390 Reply to the post : http://www.j

[JBoss-user] [JBoss jBPM] - Re: HibernateException when calling ProcessInstance.getTaskM

2006-01-03 Thread [EMAIL PROTECTED]
Another question: does your code snippet work with Hypersonic? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915389#3915389 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915389 --

[JBoss-user] [JBoss jBPM] - Re: HibernateException when calling ProcessInstance.getTaskM

2006-01-03 Thread [EMAIL PROTECTED]
I'm investigating the problem. In the meantime please tell me the version you are using. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915388#3915388 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915388 ---

[JBoss-user] [Installation, Configuration & Deployment] - Change default port

2006-01-03 Thread raed_taher
Hello, can any body help me on how to modify the default port from 8080 to ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915387#3915387 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915387

[JBoss-user] [Management, JMX/JBoss] - Re: How can I write an MBean object that register itself in

2006-01-03 Thread genman
http://www.huihoo.com/jboss/online_manual/3.0/ch13s26.html I don't think there is a standard class you can extend, but this is a good example. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915386#3915386 Reply to the post : http://www.jboss.com/index.html?

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Expiration time problem

2006-01-03 Thread genman
JBoss 4.0.4 will not have the problem of messages expiring on the client's side. 4.0.3 and lower, however, allow the message to expire on the client. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915385#3915385 Reply to the post : http://www.jboss.com/inde

[JBoss-user] [JBoss jBPM] - Re: Binding to java:comp/env context

2006-01-03 Thread [EMAIL PROTECTED]
Agreed, the environment context should be regarded as read-only. This is a bug that needs correction. Could you file a JIRA issue? I'm trying to figure out an alternative. Do you know if WebLogic supports binding to the initial and/or java: naming contexts? View the original post : http://www

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - JBoss Tomcat Application Server failing to start

2006-01-03 Thread annointed3
Hi, I get the following error when attempting to start JBoss: JBoss Bootstrap Environment JBOSS_HOME: /usr/SabaWeb/JBoss_Tomcat JAVA: /usr/jdk/jdk1.5.0_01/bin/java JAVA_OPTS: -server -Xms128m -Xmx512m -Dcom.saba.

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Question about XAConnectionFactory in 3.0.4

2006-01-03 Thread genman
The reason your XAConnectionFactory isn't bound is likely because your JMS configuration (DB configuration) is bad. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915382#3915382 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=r

[JBoss-user] [Security & JAAS/JBoss] - Re: Single Signon

2006-01-03 Thread [EMAIL PROTECTED]
Don't know what you did in conf/jboss-service.xml as it got dropped from your post, but in any case see http://wiki.jboss.org/wiki/Wiki.jsp?page=SingleSignOn View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915381#3915381 Reply to the post : http://www.jboss

[JBoss-user] [JBoss jBPM] - Re: HibernateException when calling ProcessInstance.getTaskM

2006-01-03 Thread fmuhlenberg
I ran into a similar problem when using the Hypersonic database within jBoss and my temporary solution when saving a ProcessDefinition was to catch the exception that is generated during the commit. As in: jbpmSession.beginTransaction jbpmSession.getGraphSession().saveProcessDefinition( pd ) tr

[JBoss-user] [Clustering/JBoss] - Re: HASingleton MBean replicates data in a cluster?

2006-01-03 Thread [EMAIL PROTECTED]
No, there is no replication of data between HASingleton instances; there is only notification when a cluster node becomes a master and the instance needs to begin providing the service. Replication of state would have to be implemented as part of the singleton service (e.g. by deploying a JBoss

[JBoss-user] [JBoss jBPM] - Re: DB Error deploying the Sample BPEL process

2006-01-03 Thread [EMAIL PROTECTED]
Could you open a JIRA issue for incorporating these changes to the next release of the BPEL extension? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915378#3915378 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915378

[JBoss-user] [JBoss Portal] - Re: Changing Page name and Portlet title

2006-01-03 Thread vmarco
Martin, I had this same problem. I found the page names, however, the docs indicate there must be a page named "default". I would like my default page to be named "Home". Can I do this in configuration? I did code around it with a new NavigationPortlet, but if it can be done in configuratio

[JBoss-user] [JBoss Seam] - Re: Newb needs help...

2006-01-03 Thread bkyrlach
I have gotten the sample applications to run from deploying in ant. I havn't tried checking out a project into eclipse as you've suggested above however. I can post the startup log from JBoss, but there arn't any noticeable errors there. If the log would be helpful, I'll post it ASAP. I did real

[JBoss-user] [JBoss Portal] - Re: filters

2006-01-03 Thread lacp
Thanks .. I'm trying it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915374#3915374 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915374 --- This SF.net email is

[JBoss-user] [JBoss Seam] - Re: Newb needs help...

2006-01-03 Thread js8523
As an aside: 1) We should create a sample app hot deployable using the jboss-ide (rather than ant) that can be used a generic starting point for web apps. 2) We should do the same as 1 but for ear type developments. When I get a spare moment I will look at this. But in the mean time if anyone

[JBoss-user] [JBoss Seam] - Re: Newb needs help...

2006-01-03 Thread js8523
Could you add the error trace that occurs. This will help everyone see what is going wrong. As far as the example programs go, they all use ant for their deployment rather than eclipse wtp/jboss ide/myeclispe, so therefore : 1) Place the jboss-seam project in your workspace (download or cvs).

[JBoss-user] [JBoss Portal] - Re: problems with jportal installation

2006-01-03 Thread [EMAIL PROTECTED]
This thread is relevant to 2.0. Did this solve an Oracle deployment for you in 2.2? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915370#3915370 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915370

[JBoss-user] [JBoss Portal] - Re: Setting the response Content-type

2006-01-03 Thread mholzner
ahem, I guess in theory it should ;) You are right. It is hard coded for now. I wasn't aware of that. Time for some community contributions :) Since we're on this topic, does anyone have experince with CC/PP? How would that fit into this discussion. My current thinking is that this , or a m

[JBoss-user] [JBoss Portal] - Re: org.jboss.portal.property.nodecoration ignored??

2006-01-03 Thread mholzner
ooops, sorry. that should not have made it into the final doc. It's corrected in cvs. Sorry for that! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915368#3915368 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=391536

[JBoss-user] [JBoss Seam] - Newb needs help...

2006-01-03 Thread bkyrlach
I'm new to Seam (and web application programming in general) and I'm having troubles deploying one of the Seam example applications from within Eclipse. I've set up the project to (as closely as I can tell) mirror the structure of the example project, and I can indeed navigate to register.jsf (

[JBoss-user] [JBoss Portal] - Re: filters

2006-01-03 Thread mholzner
the only thing I can think of right now is to intrduce a component invocation interceptor that does what you are interested in. PortletFilter are one possible new feature for the future Portlet 2.0 spec. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915366

[JBoss-user] [JBoss Portal] - Re: org.jboss.portal.property.nodecoration ignored??

2006-01-03 Thread Anson.Smith
Thanks for the reply that worked like a charm. I got the Idea for the nodecoration prop from here. http://docs.jboss.com/jbportal/v2.2/reference-guide/en/html/themeandlayouts.html Section 5.6.3. Disabling Portlet Decoration Anyway, Thanks again Anson SMith View the original post : http://www.

[JBoss-user] [JBoss Portal] - Re: NavigationPortlet enhancements

2006-01-03 Thread mholzner
Thanks ! You spare me from having to write this ;) I started the tabbed nav very late in the 2.2 cycle so it didn't get very far. Some things I'd like to see in it are: * limit the amound of visible tabs ; add a paging mechanism for too many tabs to display * a bread crumb would be nice to

[JBoss-user] [JBoss jBPM] - Binding to java:comp/env context

2006-01-03 Thread maximshwets
Hi! I'm trying to deploy JBPM/BPEL on WebLogic 8.1. The problem I encountered is that MessagerServlet via MessagerBuilder.bindPortInfo method is trying to bind PortInfo to java:comp/env naming context which is read-only according to j2ee spec and I got javax.naming.OperationNotSupportedExceptio

[JBoss-user] [JBoss jBPM] - Re: DB Error deploying the Sample BPEL process

2006-01-03 Thread kmecheri
Thanks a lot for the full clarification on the table. I made the changes and was successfully able to deploy. Once again, thanks a million for the help. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915360#3915360 Reply to the post : http://www.jboss.com/in

[JBoss-user] [JBoss Portal] - Re: org.jboss.portal.property.nodecoration ignored??

2006-01-03 Thread mholzner
where did you get the idea of using the nodecoration property ? This shouldn't be in the docs nore in the samples. If it is, please accept my appologies. The correct way to do this is by using the window properties, but instead of setting the nodecoration prop, you can now specify the renderSe

[JBoss-user] [JBoss Portal] - NavigationPortlet enhancements

2006-01-03 Thread vmarco
I was not satisfied with the NavigationPortlet for displaying my tabs, so I wrote a new one. It allows users to specify two properties on pages named, "navbar.DisplayName" and "navbar.SortOrder". These are not required, but if included will override the name displayed on the tab and allow cont

[JBoss-user] [Remoting] - Re: Example service.xml with 1.4.0 beta

2006-01-03 Thread [EMAIL PROTECTED]
Opps. Sorry about that. Thanks for letting me know. Has been corrected for next release. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915357#3915357 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915357

[JBoss-user] [JBoss Seam] - Re: booking demo problem

2006-01-03 Thread drapierwim
It's a bug in the hibernate3.jar, just replace the jar in your DIR/SERVER with a new one form CVS or from the one in Seam CVS View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915355#3915355 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[JBoss-user] [JBoss Portal] - Re: problems with jportal installation

2006-01-03 Thread fritzwf
You may want to update the JBoss Portal 2.2 User Guide pdf document. The things referenced in the message above that are in the html version are not in the pdf document. I would have saved a lot of time if I knew this. Thanks View the original post : http://www.jboss.com/index.html?module=bb

[JBoss-user] [JBoss jBPM] - Re: Why process editor plug in doesn't work very well on ecl

2006-01-03 Thread [EMAIL PROTECTED]
I agree with phantomass. You can work around this problem easily, tough: IIn Eclipse, go to Window->Preferences Look for the Web and XML tree on your left and expand it Click on the XML Catalog leaf Add a catalog entry for the jPDL schema. In the URI field, browse for the schema document in JBPM_H

[JBoss-user] [Remoting] - Re: question using Remoting TransportServer/Client

2006-01-03 Thread [EMAIL PROTECTED]
Sorry for the delay (been working on getting out the next release). I am a little lost as to the changes you've made. Would it be possible to send the source to the chagnes you've made ([EMAIL PROTECTED]) and I'll look into it. I do know that we fixed a bug where we were looking at the type o

[JBoss-user] [JBoss Portal] - filters

2006-01-03 Thread lacp
Somebody can give me a hint about how to do something similar to servlet filters in portlets. JBoss 4.02 JBoss portal 2.0 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915351#3915351 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[JBoss-user] [Remoting] - Re: Dynamic class loading of EJB3 entities

2006-01-03 Thread [EMAIL PROTECTED]
Sure. I'll also try to do a better job in the docs for the next release (as is only explained in the context of loading marshallers currently). The remote classloading (which only works from the client loading classes from the server, btw), is done via a seperate service, which is called the lo

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

2006-01-03 Thread madalvi
I am getting this error when I started migrating my project from JBoss 3.2.5 to 4.0.2 All the EJBs in the application are local. In JBoss 3.2.5 | JNDI name | public static final String CUST_LOCAL_HOME = "local/CustomerEJB"; | | ejb-jar.xml | | CUSTOMER table | C

[JBoss-user] [JBossWS] - Re: Deploy Problem Webservice

2006-01-03 Thread asbin88
Sorry the Error I get during startup of a clean server is here :) | java.net.SocketException: bad argument for IP_MULTICAST_IF: address not bound to any interface | at java.net.PlainDatagramSocketImpl.socketSetOption(Native Method) | at java.net.PlainDatagramSocketImpl.setOption(P

[JBoss-user] [JBossWS] - Re: Deploy Problem Webservice

2006-01-03 Thread asbin88
Thanks for the replies. I tried using a new Jboss version 1.0.3SP1 and it didn't help. During the startup of the server i got following error anonymous wrote : | 19:33:10,962 WARN [HANamingService] Failed to start AutomaticDiscovery | I tried reducing the complexity of the Bean so the Co

[JBoss-user] [EJB 3.0] - Re: Multiple datasource deployment issue

2006-01-03 Thread yxw84
Still stuck, but I found out that both EAR files are connecting to the DefaultDS hypersonic database that is setup with JBoss. How would I specify exactly what database each EAR should connect to? Here are the persistence.xml files within my skeleton ejb3 files within each EAR: | Context

[JBoss-user] [JBoss jBPM] - Re: web based GPD

2006-01-03 Thread [EMAIL PROTECTED]
I thought it was a continuation of the awful BPEL "designer" that IBM offered in alphaWorks along with their (non-open source) BPEL4J engine, and disregarded it. Now I see the effort is led by Oracle people. Ronald, you got it - where do I send your Dohs-Eh-Keys to? Koen, from the integration p

[JBoss-user] [JBoss jBPM] - Re: web based GPD

2006-01-03 Thread gwittwer
Hello Alex "[EMAIL PROTECTED]" wrote : Gerhard, | | Your work sounds really cool! It has a slight disadvantage, tough: it is Visio-based, not web-based :-( Visio is not webbased, that's true and this could be a disadvantage. It was a requirement of our customer to use Visio. But you know,

[JBoss-user] [JBoss Seam] - Re: booking demo problem

2006-01-03 Thread newca
With jboss-4.0.3SP1 you have to load data in database manually due to a bug. You could use JMX console and Hypersonic Service to load en execute import.sql Hope this help. Olivier. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915342#3915342 Reply to the

[JBoss-user] [JBoss Seam] - Re: New stuff in CVS

2006-01-03 Thread [EMAIL PROTECTED]
And here is an example of a business process definition: | | | | | | | | | | | | | | | | | | | | | |

[JBoss-user] [JBoss Seam] - Re: New stuff in CVS

2006-01-03 Thread [EMAIL PROTECTED]
By the way, here is an example of a page flow: | | | | | | | | | | | | | | | | | | | | This replaces the role of JSF navigation rules, for applications with complex

[JBoss-user] [JBoss Seam] - New stuff in CVS

2006-01-03 Thread [EMAIL PROTECTED]
So, if you take a look in CVS today, you will find the following new features: * Workspace management (conversation switcher/conversation list/breadcrumbs) * Nested conversations * The PAGE scope * jPDL pageflows * Massively better jBPM integration - including support for JSF-EL expressions inside

[JBoss-user] [JBoss Portal] - org.jboss.portal.property.nodecoration ignored??

2006-01-03 Thread Anson.Smith
I have successfully deployed a portlet but I want it to have no decorations, i.e. borders, here is a snippet of my -object.xml file using the org.jboss.portal.property.nodecoration property but when the page containing this window is displayed I have full decorations. can someone point me in the

[JBoss-user] [JBoss/Spring Integration] - Modifying *.ds.xml in JBoss produces null ManagedConnectionF

2006-01-03 Thread nivek
I get the following error when a change is made to my *-ds.xml in JBoss V4 while my Spring app is deployed: org.springframework.transaction.CannotCreateTransa ctionException: Could not open JDBC Connection for transaction org.jboss.util.NestedSQLException: You are trying to use a connection fac

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

2006-01-03 Thread [EMAIL PROTECTED]
That was actually a bug, solved here: http://jira.jboss.com/jira/browse/JBAS-2501. i.e. you couldn't use 'injection' with a standalone xmbean descriptor. The xml parser validation phase was failing. It worked ok with an embeded xmbean descriptor. View the original post : http://www.jboss.com/

[JBoss-user] [JNDI/Naming/Network] - Re: ConnectionFactory not bound

2006-01-03 Thread pedrosacosta
When i start the AS, i get the following error: | javax.naming.CommunicationException: Receive timed out [Root exception is java.net.SocketTimeoutException: Receive timed out] | at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1302) | at org.jnp.interfaces.Nam

[JBoss-user] [JBoss Portal] - Re: Setting the response Content-type

2006-01-03 Thread dunks
mholzner wrote : | the content type interceptor determines the content type that the browser requested / can handle | I guess I'm just not seeing how the ContentTypeInterceptor actually does what you said. | ... | try | { | // Set UTF-8 for parameter decoding |

[JBoss-user] [Installation, Configuration & Deployment] - Re: Deployment status for unknown deployment units

2006-01-03 Thread [EMAIL PROTECTED]
Related JIRA issue: http://jira.jboss.com/jira/browse/JBAS-1023 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915333#3915333 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915333 -

[JBoss-user] [Installation, Configuration & Deployment] - Apache->JBoss redirection

2006-01-03 Thread olegkon
Hi, We have powerful Solaris server which hosts 2 sets of Apache 2.0.48 -> JBoss 3.07 with Tomcat 4.1.18 using mod_jk2 2.0.2, running a bunch of web applications. They are configured to run independently (2 server names, 2 virtual servers, different ports, etc.) Used to run without a single glitch

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Apache->JBoss redirection

2006-01-03 Thread olegkon
Hi, We have powerful Solaris server which hosts 2 sets of Apache 2.0.48 -> JBoss 3.07 with Tomcat 4.1.18 using mod_jk2 2.0.2, running a bunch of web applications. They are configured to run independently (2 server names, 2 virtual servers, different ports, etc.) Used to run without a single glitch

[JBoss-user] [JBoss Seam] - booking demo problem

2006-01-03 Thread ShaunA
I'm back looking at the demo again and all appears to work fine, under jboss-4.0.3SP1 (it appears to deploy OK and I can register myself as a user ). However when I search for hotels (using NY for example) I get no results. Apart from 17:07:55,419 INFO [HotelBooking] 0 hotels found There is

[JBoss-user] [JBoss Portal] - Re: Can portlets be put in header?

2006-01-03 Thread mholzner
there are at least two ways to get this result: 1) create a new layout that places this special portlet whereever you want, using the theme's portlet tag 2) add a special layout region to your layout that will host this special portlet. Each page then has to have a window definition for this

[JBoss-user] [JBoss Portal] - Re: Setting the response Content-type

2006-01-03 Thread mholzner
the content type interceptor determines the content type that the browser requested / can handle. The portal takes this content type as the allowed content type for the current request. Portlets that want to set a particular content type need to first check if the current request supports that c

[JBoss-user] [JBoss Portal] - Re: change layout only in my portlet

2006-01-03 Thread mholzner
not sure, but I think your definition of layout is probably different from mine, so I don't know if what I can tell you makes sense to you. Let's try anyway: The layout is the jsp that renders the returned markup (the entire page). So it is the part that creates the HTML, TITLE, BODY , etc

[JBoss-user] [EJB 3.0] - Re: Multiple datasource deployment issue

2006-01-03 Thread yxw84
I am still stuck on this. In my session bean, I print out a few lines of debug messages. 09:10:25,481 INFO [STDOUT] Start check, does user exist? 09:10:25,482 INFO [STDOUT] We are using manager: [EMAIL PROTECTED] 09:10:25,500 INFO [STDOUT] Finished checking. User does not exist. 09:10:39,313 I

[JBoss-user] [JBoss and NetBeans] - Re: Netbeans, JBoss and Hibernate

2006-01-03 Thread lkotouc
There is really something wrong with the running of a project with JSF support created in NetBeans. I have just filed the issue for it, http://web.netbeans.org/issues/show_bug.cgi?id=70952, the scenario is very simple, so if you have any comments or additional information, please feel free to a

[JBoss-user] [Installation, Configuration & Deployment] - outside login-conf.xml

2006-01-03 Thread leitao
Hello, I am used to deploy a .ear inside jboss, and this ear requires some modification in jboss, like adding some elements within login-conf.xml. So, I want to see if is it possible to put this tag in some file inside my ear. Does anyone know if is it possible? Thanks in Advance, Breno Le

  1   2   >