[JBoss-user] [Installation & Configuration] - JBOSS ACCESS PROBLEM

2005-06-24 Thread vijayks
hI, i download the jboss3.2.3 an di install it I run the run.bat from command line, and then i entered "http://localhost:8080/jmx-console"; it is asking username and password , What should i give for this Pls help me View the original post : http://www.jboss.org/index.html?module=bb&op=viewtop

[JBoss-user] [Security & JAAS/JBoss] - Re: Multi-threaded and multi-user EJB client application

2005-06-24 Thread [EMAIL PROTECTED]
Its true that JAAS has nothing to do with setting identity, but there is nothing in J2EE that does. The only that this is even mentioned as an authentication mechanism in J2EE is JAAS, so that is what jboss uses. The Subjec that results is irrelevant in terms of an identity proxy. Doing a JAAS

[JBoss-user] [JBoss Portal] - what is the recommended way to reuse/extend default jboss po

2005-06-24 Thread yxyang
Hi, I am setuping my own web site based on jboss portal 2.0. I want to reuse jboss portal portlets such as user, admin and cms etc. It seems that there are two ways: (1)Setup ant build files from scratch and reuse Java codes by importing related jars into my own portal project. For this way,

[JBoss-user] [Security & JAAS/JBoss] - Re: Multi-threaded and multi-user EJB client application

2005-06-24 Thread tcherel
Scott, I do want to deal with JAAS on the client side (I want to use JAAS for authentication). But I also have a requirement for a multi-threaded and multi-user EJB client application and I am trying to understand how, within the same EJB client (same JVM) I can deal with multiple authenticatio

[JBoss-user] [EJB/JBoss] - Re: JBoss 4.0.2 CreateException

2005-06-24 Thread [EMAIL PROTECTED]
Invalid packaging for the servlet 2.3 default class loading model resulting in the ejb classes being loaded by multiple class loaders. See the release notes on the class loading change. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882687#3882687 Reply to t

[JBoss-user] [JCA/JBoss] - Re: Faulty warning: Closing a connection for you

2005-06-24 Thread [EMAIL PROTECTED]
Many fixes and many version have come and gone since 3.2.2. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882686#3882686 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882686 -

[JBoss-user] [Security & JAAS/JBoss] - Re: Servlet creates LoginContext, should be used by Web-Cont

2005-06-24 Thread [EMAIL PROTECTED]
This is not supported as it cannot be made to work in general. With CLIENT-CERT authentication that requires authentication at both the SSL transport level and the web container level, how are we going to push back the client cert neccessary? The problem with web authentication is that in genera

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: multiple hosts for JNDI providers

2005-06-24 Thread [EMAIL PROTECTED]
Comma seperated hosts/urls in the Context.PROVIDER_URL are supported. | public class TestJNDI | { |public static void main(String[] args) throws Exception |{ | Properties env = new Properties(); | env.setProperty(Context.INITIAL_CONTEXT_FACTORY, | "org.j

[JBoss-user] [EJB/JBoss] - Re: Throwing RemoteException

2005-06-24 Thread [EMAIL PROTECTED]
RemoteException is deprecated on the bean implementation method. What happens when the implementation method is the target of a local interface? A RemoteException is a checked exception and as such an application defined exception. Its semantics are the same as any other app exception. View the

[JBoss-user] [Installation & Configuration] - Re: Verbose Classloading logging --> The file keeps growing

2005-06-24 Thread [EMAIL PROTECTED]
Class loading never stops. Look into a rolling log appender to control the log size. http://logging.apache.org/log4j/docs/ View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882682#3882682 Reply to the post : http://www.jboss.org/index.html?module=bb&op=postin

[JBoss-user] [Security & JAAS/JBoss] - Re: Multi-threaded and multi-user EJB client application

2005-06-24 Thread [EMAIL PROTECTED]
The pattern in jaas is: | // Set identity | LoginContext.login | ... | | // Clear identity | LoginContext.logout | A Subject is a by-product of authentication. It is not an authentication token that can be generally used in place of the username/password used to create the Subj

[JBoss-user] [HTTPD, Servlets & JSP] - Is per-host / root-to-context mapping possible ?

2005-06-24 Thread Teej
Using JBoss 4.0.2/Tomcat5.5. I've got a scenario where JBoss services several hostnames. It also listens on multiple public IPs that are associated with different hosts. For each host the url http://hostname/ needs to map to a different context. Is it possible, by juggling the Tomcat server.xm

[JBoss-user] [EJB/JBoss] - Re: EJBException:Invalid invokation Exception while accessin

2005-06-24 Thread vbnaik
04:03:33,724 INFO [STDOUT] at org.jboss.mx.server.Invocation.invoke(Invocation.java:72) | 04:03:33,724 INFO [STDOUT] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249) | 04:03:33,724 INFO [STDOUT] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.ja

[JBoss-user] [EJB/JBoss] - Re: Entity bean - managin large queiries

2005-06-24 Thread vbnaik
Well, If its just a question of querying out the data, i.e. firing a select statement, using ejbs wont serve your purpose. I would go for a direct JDBC operation, and only involve ejb when some transaction is being made. Using JDBC one also gets the benifit of exploiting the power of SQL ..

[JBoss-user] [EJB/JBoss] - Re: EJBException:Invalid invokation Exception while accessin

2005-06-24 Thread upankar
Following is the full trace : 04:03:33,714 INFO [STDOUT] java.rmi.ServerException: EJBException:; nested exception is: javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract test.ejb.TestEJBInterface test.ejb.TestEJBHome.create() throws jav

[JBoss-user] [EJB/JBoss] - Re: EJBException:Invalid invokation Exception while accessin

2005-06-24 Thread vbnaik
A complete stack trace would give more insight into your problem View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882672#3882672 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882672 -

[JBoss-user] [Performance Tuning] - Thread queue limitation when server capacity reached

2005-06-24 Thread rcostanzo
Hi all, I'm using JBoss 3.2.6 with the bundled Tomcat. I am using Apache with the AJP13 connection to Tomact. In situations where we have major traffic spikes, the rate at which requests come in can be faster than the rate at which they are fulfilled. In this situation, the jk thread pool curre

[JBoss-user] [JBoss Portal] - Re: Portlet resizing

2005-06-24 Thread kriscott
Martin, I am very glad that JBoss has the capability to do so. Thanks for answering and addressing my concerns. Is there new documentation coming out to describe how to go about doing that? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882670#388267

[JBoss-user] [EJB/JBoss] - EJBException:Invalid invokation Exception while accessing fr

2005-06-24 Thread upankar
Hi, I get the exception (pasted below), when I try to invoke the create on home from a war app. Also, this is happening only when both jar and war are in the same JBOSS instance. This doesnt happen if i deploy them into two separate JBOSS instances, and then access the EJB from the war. Also, i

[JBoss-user] [Installation & Configuration] - Re: Error....Please Help

2005-06-24 Thread agohar
Hi, Thanks for the reply... Yes i have made sure that JAVA_HOME environment is set and working. Any other idea? Thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882668#3882668 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mo

[JBoss-user] [JBoss Portal] - Re: Portlet resizing

2005-06-24 Thread mholzner
yes, there is. This behavior is encapsulated in the layout and theme . We ran out of time to deliver a better experience, but you can plug in your own very easily. write your own layout (jsp) that maps out the outer most frame (the markp), and lays out the regions that will be hosting portlets

[JBoss-user] [Nukes User] - JSF ConfigureListener ClassNotFoundException

2005-06-24 Thread gzhuye
Hi,all: My Jsf application was used in Jboss3.2.4 very well, now it is put in Jboss4.0, The following exception thrown when it is deployed: 17:22:23,848 ERROR [[/AlertServerGui]] Exception sending context initialized event to listener instance of class com.sun.faces.config.ConfigureListener jav

[JBoss-user] [JBoss Portal] - Portlet resizing

2005-06-24 Thread kriscott
When a porlet is resized, such as Test portlet, (i.e. from VIEW to EDIT) other porlets' width gets resized as well. Also, Hello porlet's height gets stretched all the way down to match the heght of the grid. This behavior gave me an illusion that I was looking at different page when it's not

[JBoss-user] [Beginners Corner] - Jboss on Free non-RedHat/SUSE/Mandrake Distrubutions

2005-06-24 Thread nmpdan
Hello everyone. I am new to Jboss and have been requested to setup a linux server with: Jboss ActiveMQ ActiveBPEL Stylus Studio It has been ordered that the Linux distrubution be a freely available version and FreeBSD is not an option either. We and others have recommended CentOS as a RedHat

[JBoss-user] [JBoss Portal] - granular authorization to CMS

2005-06-24 Thread opapo
Can you give a person rights to a single cms folder without giving him rights to the whole tree? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882662#3882662 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882662 ---

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0 Usability

2005-06-24 Thread mholzner
ok, got you. The (confusing) issue here is that 'test' is a page. Each page is completely independent from the page you came from. So when you go to the portal, you get to the default page. that page contains 3 portlets (user , menu, CMS) . When you click on the 'test' link in the menu portlet

[JBoss-user] [Messaging, JMS & JBossMQ] - Sending JMS Message to a 2nd Instance

2005-06-24 Thread rcarragher
I'm trying to test sending a JMS message from one JBoss Server (3.2.7) to another, while both servers are on the same machine (I used ports-binding.xml to sort the two instances out). The two servers run exactly the same ear, and have the same exact JMS destinations. An EJB is sending the mess

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0 Usability

2005-06-24 Thread kriscott
"kriscott" wrote : "mholzner" wrote : can you elaborate ? | | What version of portal? | | Is this with the default portal, or your own extensions? | | what page, what portlets are involved in this? | | | | In theory this is how it should work: maximized portlets take over t

[JBoss-user] [Beginners Corner] - Re: Error: Exception thrown by the agent : java.rmi.server.E

2005-06-24 Thread cruiz13
remove the run.conf -Dcom.sun.management.jmxremote.port=8000 and in run.sh in # Setup JBoss sepecific properties JAVA_OPTS="$JAVA_OPTS -Dprogram.name=$PROGNAME" by # Setup JBoss sepecific properties JAVA_OPTS="$JAVA_OPTS -Dprogram.name=$PROGNAME -Dcom.sun.management.jmxremote.port=8000" The error

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0 Usability

2005-06-24 Thread kriscott
"mholzner" wrote : can you elaborate ? | What version of portal? | Is this with the default portal, or your own extensions? | what page, what portlets are involved in this? | | In theory this is how it should work: maximized portlets take over the entire page, if normalized or minim

[JBoss-user] [JCA/JBoss] - Re: Nested deployment of message endpoints within .rar

2005-06-24 Thread mmindenhall
Thanks Adrian! That works. I swear I tried that 2-3 months ago, but it didn't work then...perhaps there was a bug in 4.0.0 or 4.0.1? Regardless, it now deploys, but there is a problem with XDoclet generating from the @jboss.depends tag. Here's a link to another post with more details on how t

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0 Clustering

2005-06-24 Thread [EMAIL PROTECTED]
right what is clustered in the session for portal not for portlets (not possible technically because of tomcat which cannot do that) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882649#3882649 Reply to the post : http://www.jboss.org/index.html?module=bb

[JBoss-user] [JBoss Portal] - PortletSession.APPLICATION_SCOPE has no effect

2005-06-24 Thread wetson
jboss-4.0.2. jboss-portal 2.0 PortletSession.setAttribute("key", "value", PortletSession.APPLICATION_SCOPE); does not make the session attribute available to other portlets in the same WAR. Will Etson View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882648#388

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0 Usability

2005-06-24 Thread mholzner
can you elaborate ? What version of portal? Is this with the default portal, or your own extensions? what page, what portlets are involved in this? In theory this is how it should work: maximized portlets take over the entire page, if normalized or minimized they go back to their original pos

[JBoss-user] [JBoss Portal] - JBoss Portal 2.0 Clustering

2005-06-24 Thread kriscott
I understand that in 2.0 clustering has been completed. Could you tell me what's being clustered? Is it the session clustering? If it is, can I use the all, instead of default? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882646#3882646 Reply to the pos

[JBoss-user] [JBoss Portal] - JBoss Portal 2.0 Usability

2005-06-24 Thread kriscott
Usability question - I am in the proces of evaluating uPortal, Jetspeed, and of course JBoss Portal. JBoss's maximize and minize behavior of Portlet is somewhat confusing to me. Why don't portlets normalize or minize back to its original position. Portlets seem to shift position whenev

[JBoss-user] [EJB/JBoss] - Use of Interceptors and ThreadLocal

2005-06-24 Thread vbnaik
Hello, The subject of my previous didnt manage to get any answers, so reposting the same with different subject line. Please check the original post at http://www.jboss.org/index.html?module=bb&op=viewtopic&t=6 Thanks, Vikram. View the original post : http://www.jboss.org/index.html?modul

[JBoss-user] [The Lizzard's corner] - Re: Your website redesign and nutch

2005-06-24 Thread [EMAIL PROTECTED]
Uh, I'm talking about the jboss site itself. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882644#3882644 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882644 ---

[JBoss-user] [Installation & Configuration] - JBoss starting problem

2005-06-24 Thread msf
Hi, guys! After I tried to find a solution to my problem at Beginners thread, i've come here to try for another kind of help. I've downloaded and installed JBoss 3.2.7 and i'm having problems when trying to execute it for a second time, or even a third time. There was something wrong with port

[JBoss-user] [The Lizzard's corner] - Re: Your website redesign and nutch

2005-06-24 Thread JanPrill
Great!!! The improvements you made on your website are noteworthy. In my opinion the jboss site looks really professional for the first time. I'm deeply impressed and grateful how the whole open source movement is pushing things forward! Many thanks to all of you... and keep up the great work.

[JBoss-user] [Beginners Corner] - Re: Moving from Websphere to JBOSS AS

2005-06-24 Thread fbiaggi
Hi, search for similar posts. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882639#3882639 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882639 --- SF.Net email is

[JBoss-user] [JBoss Getting Started Documentation] - Where exactly is jbossj2ee-src.zip

2005-06-24 Thread Solver
This file is referred to on page 13 of "Getting Started with JBoss 4.0 Release 4". I cannot see or find this file. I searched Google and had no more luck, this website for example links to it but its a dead link: http://www.zabox.com/pmwiki.php/Paul/HomePage Any ideas? Hugh View the origin

[JBoss-user] [JBoss Portal] - Error: No such resource key in resource file

2005-06-24 Thread Teej
Seeing these Error reports with 2.0 Final on JBoss 4.0.2/JVM 1.5 2005-06-24 19:01:19,000 ERROR [org.jboss.portal.core.servlet.jsp.PortalJsp] No such resource key in resource file: REGISTER_YOURAVATAR 2005-06-24 19:01:19,000 ERROR [org.jboss.portal.core.servlet.jsp.PortalJsp] No such resource key

[JBoss-user] [JBoss Portal] - Re: how to configure a layout for a jboss portal

2005-06-24 Thread mholzner
no this is not possible without changes to the code. The layout is a jsp or servlet that needs to be deployed. it also needs to be declared in a layout descriptor. The portal (or an individual page) points to the layout to use via a portal, or a page property. That property is not exposed via a

[JBoss-user] [JBoss Getting Started Documentation] - Clarification - Getting Started with JBoss 4.0 Rel 4

2005-06-24 Thread Solver
Page 11 of "Getting Started with JBoss 4.0 Rel 4" para 2, refers to supplementary code download found at http://www.jboss.org/doc/index I may be missing something obvious, but I can't see anything like a code download here. Thanks Hugh View the original post : http://www.jboss.org/index.html

[JBoss-user] [Beginners Corner] - Re: jbossj2ee-src.zip

2005-06-24 Thread Vinita
Login to jboss.com site . http://jboss.com/products/jbossas/docs Download JBOSS AS getting Started Guide.The guidestartguide40.zip has a zip of this file included in it . View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882631#3882631 Reply to the post : htt

[JBoss-user] [EJB/JBoss] - "Missing/invalid instance-cache" error with Stateless Sessio

2005-06-24 Thread pchandra
Hello! I have the following -jboss.xml for all of my stateless session EJBs. Trying to deploy on JBoss 4.0.1SP1 gives "org.jboss.deployment.DeploymentException: Missing or invalid Instance Cache (in jboss.xml or standardjboss.xml); - nested throwable: (java.lang.ClassNotFoundException: No ClassL

[JBoss-user] [Installation & Configuration] - Re: Custom configuration problems

2005-06-24 Thread darranl
I don't have anything to hand regarding building up the minimal configuration but if you want to go the other way and slim the default config the following may help: - http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossASTuningSliming View the original post : http://www.jboss.org/index.html?module=

[JBoss-user] [Beginners Corner] - Re: How to connect a remote client

2005-06-24 Thread radix_zero
works great thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882623#3882623 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882623 --- SF.Net email is sponsored

[JBoss-user] [JBossWS] - Re: WSDL duplicate operations

2005-06-24 Thread clairecostello
Thanks Max. I'll take a look at the article and see how it works out. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882620#3882620 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882620 --

[JBoss-user] [JBossWS] - Re: WSDL duplicate operations

2005-06-24 Thread mvlst2
Have a look at my article over here: http://www.devsource.com/article2/0,1759,1828651,00.asp It is mostly related to .NET, but everything about WSDL, messages, and methods would still apply to Axis / JBoss. Hope this helps [EMAIL PROTECTED] http://www.jbossfaq.com is h

[JBoss-user] [Security & JAAS/JBoss] - Re: Multi-threaded and multi-user EJB client application

2005-06-24 Thread tcherel
By the way, it will also be nice if, in multi-threaded mode, threads that have not been associated with an identity are consideres as unauthenticated (instead of using the identity of the last LoginContext.login). I think that such behavior makes more sense. Thomas View the original post : htt

[JBoss-user] [Security & JAAS/JBoss] - Multi-threaded and multi-user EJB client application

2005-06-24 Thread tcherel
With JBoss, using the default ClientLoginModule, it seems that I can achieve the following in a multi-threaded EJB client application using JAAS authentication: 1) All threads are sharing the same user identity, which is the one established by the last call to LoginContext.login. This is the d

[JBoss-user] [JBossWS] - WSDL duplicate operations

2005-06-24 Thread clairecostello
Hi All, JBoss 4.0.2 JDK/JRE 5 Win XP Advanced Server. I need help with my WSDL. I have duplicate operation names in my interfaces, but with different input params. When I deploy to JBoss it throws the following error: | org.jboss.deployment.DeploymentException: Cannot deploy webservice; - n

[JBoss-user] [JNDI/Naming/Network] - Placing Hibernate SessionFactory in JBoss JNDI

2005-06-24 Thread jgenchik
I would appreciate any advice on placing an object (Hibernate SessionFactory) in JNDI. I attempted to get local context and to bind SessionFactory: Context ctx = new InitialContext(); | ctx.bind(?java:hibernate/HibernateFactory?, sessions); but when I try to retrieve it later sessions = (Sessio

[JBoss-user] [Beginners Corner] - Re: Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.

2005-06-24 Thread jbosszone
Post Subject : Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.x and PostgreSQL-8.x on Windows XP Ref. 1 : Tutorial for building J2EE Applications using JBOSS and ECLIPSE http://www.tusc.com.au/tutorial/html/chap8.html (Chapter 8 : Web Clients - Servlet & JSP) Ref. 2 : Tutoria

[JBoss-user] [Security & JAAS/JBoss] - Re: Roles don't make it into Tomcat when using Windows

2005-06-24 Thread amissine
Please take a look at the UserAccounts service I posted lately, http://wiki.jboss.org/wiki/Wiki.jsp?page=UserAccounts It provides for managing user accounts via JMX Console, and comes with a sample webapp that uses J2EE security. Works like charm! View the original post : http://www.jboss.org

[JBoss-user] [JBoss Getting Started Documentation] - Problem with Dukes Bank Chapter 9 - hibernateRoster

2005-06-24 Thread RogerA
Getting Started JBoss4 Release 3 Chapter 9 HibernateRoster Jboss-4.0.2 j2sdk1.4.2_05 Hello The cmproster (C7) application is correctly deployed and database populated. The following errors occur when running the ant deploy target. Anyone know the cause? Is there a fix for this temporary or other

[JBoss-user] [JBoss Getting Started Documentation] - Re: Problem with Dukes Bank section 5.2

2005-06-24 Thread RogerA
Hi Claire. Tried that too but to no avail Thanks anyway for suggestion. I think problem is as suggested by norman in post on this topic above Roger View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882606#3882606 Reply to the post : http://www.jboss.org/index.

[JBoss-user] [JBoss Portal] - Re: NullPointerException in ResourceBundles

2005-06-24 Thread [EMAIL PROTECTED]
It has been fixed in 2.0 branch. I have also added a test case for it. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882607#3882607 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882607 --

[JBoss-user] [Beginners Corner] - Re: How to connect a remote client

2005-06-24 Thread schrouf
Try jbossall-client.jar (can be found in the clinet subdirectory of your server installation). This is an all inclusive client jar. If you want to minimize overall jar sizes that use the minimal working combination of the more specific client jars. Regards Ulf View the original post : http:

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

2005-06-24 Thread adrian.bigland
I can't seem to deploy a service with an XMBean descriptor containing | | | ... | | | | | The 1.2 version of the dtd seems to require id and setMethod subelements, but doesn't define them. Is the DTD broken, or have I missed something? View the original post : http:

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Sending Message causes InterruptedException

2005-06-24 Thread schrouf
| | 2005-06-22 10:46:40,134 WARN [org.jboss.tm.TransactionImpl] [11195188290166/PTSI20050622+0] Lock contention, tx=TransactionImpl:XidImpl [FormatId=257, GlobalId=seefdevbe02.ptsi.corppt.com//3, BranchQual=] | This seems to be a server side locking problem. Maybe within a receiving MDB

[JBoss-user] [Installation & Configuration] - Looking for jbossj2ee-src.zip for JBoss 3.2.x...

2005-06-24 Thread labbe-lavigne
Hi, I'm looking for the jbossj2ee-src.zip archive file for a JBoss 3.2.x server. This archive provides the suplementary JBoss files to the Sun's j2eetutorial 1.3 called Duke's Bank Application. Thanks in advance, Dominique Labbe-Lavigne [EMAIL PROTECTED] View the original post : http://www.jbo

[JBoss-user] [Installation & Configuration] - Re: Custom configuration problems

2005-06-24 Thread MetaTom
Ok, narrowing it down abit. That first one was do with the fact i hadded added a MainDeployer to the service.xml (stupid i know, but a slightly more informative error would hav helped here!). Still working on the other ones thou.. any idea? View the original post : http://www.jboss.org/i

[JBoss-user] [The Lizzard's corner] - Re: Your website redesign and nutch

2005-06-24 Thread [EMAIL PROTECTED]
http://www.jboss.com/search.jsp View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882600#3882600 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882600 --- SF.Net email

[JBoss-user] [Installation & Configuration] - Custom configuration problems

2005-06-24 Thread MetaTom
Hi all, In an attempt to learn more about the underlying JBoss and to get a more bespoke server i decide to start from stratch (copy of minimal config) and build up the services as i need them. But surprise surprise it has'nt all gone smoothly and am now staring at a long splurge of error mees

[JBoss-user] [JCA/JBoss] - Re: SET CHAINED MODE

2005-06-24 Thread venkitachalam_s81
Hi, Thanks for ur reply. I had worked out another method. I modified the new-connection-sql & check-valid-connection-sql tags as follows: SET CHAINED OFF SET CHAINED OFF I believe it should not have any other effects. If any please do reply. thanx Venki View the original post : http://w

[JBoss-user] [JBoss Portal] - Re: NullPointerException in ResourceBundles

2005-06-24 Thread dkfn
done: http://jira.jboss.com/jira/browse/JBPORTAL-287 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882597#3882597 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882597

[JBoss-user] [Installation & Configuration] - v3.2.3 vs v3.2.4 and web.xml

2005-06-24 Thread [EMAIL PROTECTED]
hi - ive done Google searches and looked through the WIKI. Perhaps soneone here can guide me. This deployment works on v3.2.3, but not on 3.2.4 - I'm trying to get up to 4.0.2 | | | http://www.jboss.org/j2ee/dtds/jboss-web_3_0.dtd";> | | | | | jdbc/assetwavedam |

[JBoss-user] [EJB/JBoss] - Entity bean - managin large queiries

2005-06-24 Thread eitangur
Hi I have a general question regarding entity beans, and entity beans with jboss 4.0 in specifically. Say I have an EJB application supporting large scale DB (say several hundred of thousands of users, allowing several hundred or thousands concurrent). Say there's a table T1 where each user ca

[JBoss-user] [JCA/JBoss] - Re: SET CHAINED MODE

2005-06-24 Thread adellechiaie
You could add a connection property in you sybase-ds.xml file after the tag: jdbc:sybase:Tds:SERVER_IP:SERVER_PORT/DB_NAME the tag: set chained off the SQLINITSTRING connection property, quoting the Sybase JConnect 5.5 documentation: | Use this property to define a set of commands to be passed

[JBoss-user] [JCA/JBoss] - Re: Connection Closing

2005-06-24 Thread adellechiaie
You got an exception: com.sybase.jdbc2.jdbc.SybSQLException: Stored procedure 'prc_wfa_login_check' may be run only in unchained transaction mode. The 'SET CHAINED OFF' command will cause the current session to use unchained transaction mode. telling you that the stored procedure called prc_wfa_

[JBoss-user] [JBossCache] - Is JBossCache good inside EJB model?

2005-06-24 Thread javaRipper
Hello everyone, i'm asking myself if using JBossCache inside a EJB container is correct according with EJB especification which avoid the creation of threads, static variables and so one. ¿what kind of problems could appears? ¿Why is able to be used inside a container? ¿is it a good idea create a

[JBoss-user] [JBoss Portal] - how to configure a layout for a jboss portal

2005-06-24 Thread yxyang
Hi I try to apply different layouts for a jboss portal. Is it possible to configure/choose the layout for a portal dynamically through jmx-console instead of deploy the whole portal? thanks advance. yang View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=38825

[JBoss-user] [JBoss.NET] - Accessing SOAP message through Jboss WS / Axis

2005-06-24 Thread RalfB
Hello everybody, I'm a student working with JBoss AS 4.0.1. We use Web Services (through built-in Axis) and we use JBoss AOP. We have deployed a "HelloWorld" webservice (it's an EJB with "sayHello" method, webservices.xml) and it's working fine. Now we would like to intercept with AOP extractin

[JBoss-user] [JBossCache] - Re: Jgroups. Can I set the unicast adress?

2005-06-24 Thread [EMAIL PROTECTED]
Yes, you can do that: use UDP and set bind_addr (or -Dbind.address=x.x.x.x), and bind_port. For lookup, PING still uses IP multicasting to discover the initial membership. If you want unicast-based lookup (a la UDPPING), this doesn't exist. But I wouldn't see the point ot that anyway, except in

[JBoss-user] [Beginners Corner] - Re: jbossj2ee-src.zip

2005-06-24 Thread jpalmisa
could you put it somewhere so it can be downloaded? i am looking for it too... thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882584#3882584 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882584 --

[JBoss-user] [JCA/JBoss] - SET CHAINED MODE

2005-06-24 Thread venkitachalam_s81
Can i comfigure sybase-ds.xml so that connection starts in Unchained Mode. Also my db default mode is unchianed, how come then Jboss connection begins it in chained mode thanks Venki View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882583#3882583 Reply to t

[JBoss-user] [JBossCache] - Re: Jgroups. Can I set the unicast adress?

2005-06-24 Thread dnielben
Hi, again! In fact I don't want to use TCP. I know that UDP generates a multicast socket and an unicst socket, as far as i understand the result of getLocalAddress is theunicast address. What i want is to tel UDP exactly what interface and port to use for the unicast address. Can I do this? D