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

2006-01-03 Thread [EMAIL PROTECTED]
Gerhard, Your work sounds really cool! It has a slight disadvantage, tough: it is Visio-based, not web-based :-( Anyway, I'm particularly interested in the define your own template part. What'd be needed to create a BPEL editor? View the original post :

[JBoss-user] [Installation, Configuration Deployment] - Re: Xerces 2.7.1 and Xalan 2.7.0 on JBoss 4.0.3sp1

2006-01-03 Thread mortenholm
I have tried the 'isolation' and the 'isolation with overriding' configuration - but none of those have any effect on Xalan and Xerces specificly. I still get Xalan version 2.6.0 and Xerces version 2.7.0 from my servlets. Is it possible at all? View the original post :

[JBoss-user] [Security JAAS/JBoss] - Re: My LoginModule needs more than just j_username and j_pas

2006-01-03 Thread NigelWhite
I'm surprised that you suggest such a complex hack. In fact, using static methods of the the JACC javax.security.jacc.PolicyContext object, you can use | HttpServletRequest request = (HttpServletRequest)PolicyContext.getContext(javax.servlet.http.HttpServletRequest); | Using

[JBoss-user] [Installation, Configuration Deployment] - Re: Xerces 2.7.1 and Xalan 2.7.0 on JBoss 4.0.3sp1

2006-01-03 Thread jaikiran
If your application is packaged as an ear with classloader isolation, then have the entries similar to the following in the application.xml(present in META-INF): module | javaxerces.jar/java | /module | module | javaxalan.jar/java | /module Place these 2 jars directly under your

[JBoss-user] [Security JAAS/JBoss] - Re: Custom callback handler

2006-01-03 Thread NigelWhite
oglueck, see http://www.jboss.com/index.html?module=bbop=viewtopict=73854 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915247#3915247 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915247

[JBoss-user] [Security JAAS/JBoss] - Re: Need to programatically check access to a URL.

2006-01-03 Thread NigelWhite
Fluff! Back from holiday. Still need to do this. Any ideas? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915248#3915248 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915248

[JBoss-user] [Security JAAS/JBoss] - Principal is always passed as null

2006-01-03 Thread vinay_ven
Hi, I have written a custom login module that extends UsernamePasswordLoginModule. i've a java client that makes a call to an ejb. i set the user credentials and the other properties required -Djava.naming.security.principal=test -Djava.naming.security.credentials=test

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

2006-01-03 Thread DrHok
[EMAIL PROTECTED] wrote : Without more details I have no idea. Class loading configuration, full error stack trace is a starting point. The problem reappeared just now. As to the settings: I didn't change any of the global settings of JBoss except activating TRACE in log4j.xml. (I don' t even

[JBoss-user] [JBoss AOP] - Re: failed unserializing state

2006-01-03 Thread [EMAIL PROTECTED]
Hi, This is a jboss cache problem, please go to that forum. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915251#3915251 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915251

[JBoss-user] [EJB/JBoss] - Calling DB Stored procedure from SessionBean method

2006-01-03 Thread achetan
Hi all, I am calling a Stored procedure from stateless session bean method. Stateless bean's method is having Transaction attribute as RequiresNew. I have not done any commit/rollback in Stored procedure expecting ejb container to do it. But the db changes made by stored procedure are not

[JBoss-user] [EJB 3.0] - Re: JBoss EJB3 RC2 - Statefull session bean with extended en

2006-01-03 Thread sunnyyfl
As indicated in JIRA, this bug will be fixed in EJB3 RC4. When will RC4 be released? Thank you. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915253#3915253 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915253

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - SQL Error produced by NamedQuery

2006-01-03 Thread heinrich
Hi, I discovered a strange SQL statement. I created a named query to search by a given collection | @javax.persistence.NamedQuery(name=findAllPrscMainDrugByCategory, | queryString=SELECT OBJECT(o) FROM PrscMainDrug o WHERE o.prscDrugCategories = :prscDrugCategories) | Every

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

2006-01-03 Thread magacho
Hi, everybody I want to know if a cluster replicates data between HASingleton instances: I mean if a backup instance of a HASingleton contains the same data of an active node HASingleton. I?m asking this cause one of my applications controls session states, in a different way (not using the

[JBoss-user] [Beginners Corner] - Deploying WAR

2006-01-03 Thread ba02000
Hi guys, how can I deploy a war file in JBAS? (ex. webmodule.war) Regards, View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915257#3915257 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915257

[JBoss-user] [JBoss Seam] - Joined Conversations

2006-01-03 Thread drapierwim
I don't understand the joined conversation not well in the booking example. I see in the HotelSearchingAction a method with @Begin(join=true) this starts a conversation to be joinend with the HotelBookingAction that also starts a conversation, this conversation is terminated with when calling

[JBoss-user] [JBoss Seam] - Seam Startup Exception

2006-01-03 Thread js8523
Hi All Just got the latest version from CVs this morning and got the following error when starting up my app. 11:00:23,685 ERROR [[/Sales]] Exception sending context initialized event to listener instance of class org.jboss.seam.servlet.SeamListener | java.lang.IllegalArgumentException:

[JBoss-user] [Beginners Corner] - Re: Deploying WAR

2006-01-03 Thread jaikiran
Just place it in server/default/deploy directory View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915260#3915260 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915260 ---

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

2006-01-03 Thread magacho
I want to write an MBean that will be available in a JNDI service. How should I do it? When I extend a HASingletonSuport the MBean simple appears in HAJNDI, but I want to do it in a simple MBean. Is there any way to do it in a simple way? Or I should do it in the MBean code? Thanks Flavio

[JBoss-user] [JBoss jBPM] - Re: jbpm 3.1 alpha 2 (SAR) - no I/O problem

2006-01-03 Thread jeb
Alex, I will print out your sentence Perhaps you left a secondary Jboss installation running somewere and pin in to the edge of my Screen - as a troubleshooting aid for furture mental blackouts of myself. I can't send you a bottle of Beer for solving this problems, but I would send you one

[JBoss-user] [JBoss Seam] - Re: Seam Startup Exception

2006-01-03 Thread [EMAIL PROTECTED]
Put jBPM in your classpath. I'm already working on fixing this right now :-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915265#3915265 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915265

[JBoss-user] [JBossWS] - Re: WS Engine Versions and their matching to JBoss versions

2006-01-03 Thread [EMAIL PROTECTED]
Both Branch_3_2 and Branch_4_0 currently use a modified version of the axis-1.1 release. The library is called axis-ws4ee.jar. Apache-Axis version numbers no longer apply. In the near future the Axis based stack will be replaced by JBossWS our new WS implementation. Support for JBoss.NET will

[JBoss-user] [Security JAAS/JBoss] - Windows authetication using LDAP server

2006-01-03 Thread iitr_rohit
Hi , I am new to Jboss and wanted to know how to authenticate the users ( within a given domain ) with their account based login credentials . Do i need to use mod_ntlm ? Where does JAAS fit into the picture ( if at all it comes ) . Can somebody give me a clear picture ? Thanks in

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

2006-01-03 Thread jency
Hi I have installed JBoss Portal 2.2. The portal contains a page named default. I want to change its title to Home. Which files should I modify to change the page name? Also, I need to change the title of the portlet contained in the default page. Which all files should I modify to accomplish

[JBoss-user] [JBoss Seam] - Re: Seam Startup Exception

2006-01-03 Thread [EMAIL PROTECTED]
OK, just grab a CVS update now. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915269#3915269 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915269 --- This SF.net email

[JBoss-user] [JBoss Seam] - Re: whew! finally, a pattern for SelectItems using generics

2006-01-03 Thread armita
Is there a way to eliminate coding and registering one converter for every Lookup ? And alo is there anyway to implicitly assign the converter in the view instead of using the converter in every element? View the original post :

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

2006-01-03 Thread phantomass
It is possible that eclipse try to validate your xml process definition and then try to load on internet the process definition schema. Your proxy or firewall may be blocking eclipse. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915272#3915272 Reply to the

[JBoss-user] [JBoss Seam] - Re: Joined Conversations

2006-01-03 Thread [EMAIL PROTECTED]
@Begin(join=true) is a no-op if a conversation already exists. @Begin(join=false) throws an exception is a conversation already exists. @Begin(nested=true) is way, way, way more subtle and complex. It essentially gives you a stack of continuable states at a particular point of execution, and a

[JBoss-user] [JBoss Seam] - Re: Joined Conversations

2006-01-03 Thread [EMAIL PROTECTED]
In the booking example, the reason to have @Begin(join=true) is simply that I can press the search button multiple times. The conversation starts the *first* time i press it, and we stay in the same conversation no matter how many times we press. View the original post :

[JBoss-user] [JCA/JBoss] - Help me regarding cmpjdbc.xml file....

2006-01-03 Thread tiwari_p_k
I am developing a web application using JBOSS 4 . Previously it was in JONAS 4. Now i want it 2 run on JBOSS server. The Application has 2 parts EJB Web(jsp) part. Web part is running fine. Now i want to deploy the EJB into JBOss server. But problem is that my jonas-ejb.jar file is as

[JBoss-user] [JBoss Seam] - Re: Seam Startup Exception

2006-01-03 Thread js8523
Hi Gavin Sorry but I'm still getting the same error. I've got jBPM 3.1-alpha2 in the jboss-4.0.3SP1/server/default/lib directory as well as the .ejb3 file. I've just got the CVS version a moment ago, and done a clean and recompile on Seam. then restarted my app server. Sorry to be a pain.

[JBoss-user] [JBossWS] - problem in

2006-01-03 Thread itomer
hi, i am new in jbossWS. i followed the hello world tutorial in wiki, but i could not work it out. i think it would be some mis-config in my xml descriptor files. cause i could deploy the war with the example, and see it listed under ws4ee/services. My steps are as follows: 1. create

[JBoss-user] [Installation, Configuration Deployment] - Re: Xerces 2.7.1 and Xalan 2.7.0 on JBoss 4.0.3sp1

2006-01-03 Thread mortenholm
I still can't get it to work. I have an ear-archive with a isolated overriding classloader. I still get Xalan version 2.6.0 when i hit the url http://localhost:8080/jbossclass/version. I have constructed a small example that demonstrates my problem. The example builds an ear with one war and

[JBoss-user] [JBoss Seam] - Re: whew! finally, a pattern for SelectItems using generics

2006-01-03 Thread armita
Oops, I coul not implement it. Sorry for newbie question, could any body please tell me whet exactly this onCreate method is called? I couldn't see the log messages anywhere. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915281#3915281 Reply to the post :

[JBoss-user] [JBoss Seam] - Re: whew! finally, a pattern for SelectItems using generics

2006-01-03 Thread drapierwim
I don't understand your question well, but the onCreate() gets called when the Seam component selectItems instance is created by making use of the @create annotation, if you can't see logging than maybe your selectItems is not a Seam component make sure you have an @name annotation. If not

[JBoss-user] [Installation, Configuration Deployment] - Re: Is it possible to silent install (no gui)

2006-01-03 Thread osesm
You could just bypass the installer. 1. Use the tar.gz, tar.bz2, or zip versions. 2. Make your changes on your staged server 3. archive your changed jboss home 4. deploy to ubuntu servers. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915285#3915285 Reply

[JBoss-user] [JBoss jBPM] - Re: Is it possible to update a process def without versionin

2006-01-03 Thread RAlfoeldi
Hi Elmo, my ideas just a tiny bit different. I am always for using an API instead of directly going to the DB and changing things. What I would do is: - end the old processInstance - create a new processInstance and map the state of the old processInstance to the new one - I would NOT change

[JBoss-user] [JBoss Seam] - Re: Joined Conversations

2006-01-03 Thread drapierwim
So if I'm correct... @Begin(join=true) uses the same conversation if one available, if not it creates one @Begin(join=false) throws an exception if already started as for the @Begin(nested=true) I can't wait to read about it... Thanks View the original post :

[JBoss-user] [JBoss Portal] - Re: url problem in my portlet

2006-01-03 Thread mholzner
did you try http://localhost:8080/portal/carris/Registration ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915290#3915290 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915290

[JBoss-user] [Security JAAS/JBoss] - Authenticating RMI Cliente and saving session

2006-01-03 Thread juliocesar
Hi, I Have an EJB system that is acessed through RMI clients. In the first call to an EJB service these clients need to be authenticate and in the future acesses I wanted that the clients didnĀ“t needed to have to authenticate again. Of course, I would like to set the expiration time of this

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

2006-01-03 Thread mholzner
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. The title of each portlet is set in the portlet.xml descriptor Look for the portlets you want to change the title for (their title) and change

[JBoss-user] [Security JAAS/JBoss] - Single Signon

2006-01-03 Thread ralluri
I have been trying to implement single signon between two apps both running on the same app instance. I've added the following line in server/default/conf/jboss-service.xml : Still not working. Am I missing anything. Can some one advise me View the original post :

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

2006-01-03 Thread kukeltje
Alex, [EMAIL PROTECTED] wrote : What'd be needed to create a BPEL editor? http://www.eclipse.org/bpel/ but I'm sure you already knew this one. Can I now get a large bottle of XX? Nice mexican beer, then I send you a champagne sized bottle of Heineken View the original post :

[JBoss-user] [JBoss jBPM] - Re: Task Management

2006-01-03 Thread [EMAIL PROTECTED]
Thank you Alex. It had worked. Instead of using TaskAssignLog.class, I am using TaskCreateLog.class. And can you please elaborate more on these Log classes. Where they are being used in jBPM. Regards Pratap. View the original post :

[JBoss-user] [JBoss and NetBeans] - Re: Jboss 4.0.3 and Netbeans 4 beta2 ejb deployment problem

2006-01-03 Thread lkotouc
I also saw the similar question at http://jboss.org/?module=bbop=viewtopict=74636. The difference is only in using DTD instead of XML Schema. I created an EJB module in NetBeans - it automatically generated ejb-jar.xml with the same header as for you - and then deployed it on the JBoss4.0.3SP1

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

2006-01-03 Thread [EMAIL PROTECTED]
Hey this is great. It has been announced for almost half a year now, but it is the first time I actually see something... Finally I can begin to integrate it... ;-) Cheers, Koen View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915298#3915298 Reply to the post

[JBoss-user] [Installation, Configuration Deployment] - Failed to add deployable jar

2006-01-03 Thread Thomas_JW
Hi, I am getting this error when I start up a 3.2.7 server on an AIX machine. ... 14:38:57,644 WARN [JARDeployer] Failed to add deployable jar: file:/usr/sync40/jboss-3.2.7/server/default/tmp/deploy/tmp41175MANIFEST.MF java.util.zip.ZipException: Error opening zip file

[JBoss-user] [JBoss Seam] - Re: Seam Startup Exception

2006-01-03 Thread [EMAIL PROTECTED]
Oh, I guess if you are hitting anonymous CVS, it is probably some hours behind... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915300#3915300 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915300

[JBoss-user] [JBoss Seam] - Re: Joined Conversations

2006-01-03 Thread [EMAIL PROTECTED]
Right. There is an example app using nested conversations that I just checked into CVS. It is in examples/issues. This is still a bit of a work in progress, but it demonstrates the ideas, I suppose. View the original post :

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

2006-01-03 Thread plalloni
I wonder if you solved this issue and how you did it since we're having the very same problem right now and we're completely lost... Have you? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915302#3915302 Reply to the post :

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

2006-01-03 Thread dunks
Could someone please explain how the ContentTypeInterceptor, ModesInterceptor and the supports section of the portlet.xml file work to set the content type of the response. Looking at the ContentTypeInterceptor it appears that the response is always going to be text/html no matter what is put

[JBoss-user] [Installation, Configuration Deployment] - Re: Failed to add deployable jar

2006-01-03 Thread Thomas_JW
Nevermind, it was simply a folder in the deploy folder that should not exist and which contained only a Manifest file. ... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915304#3915304 Reply to the post :

[JBoss-user] [JBoss Eclipse IDE (users)] - JBoss Server main thread suspended with JBoss IDE

2006-01-03 Thread infectedrhythms
Every time I start JBoss through my server navigator at this exact point: 09:44:57,015 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS' ... the main thread gets suspended for an SQLException. All

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

2006-01-03 Thread nawad980
Unfortunately I haven't, because we've abandoned the whole jBPM and Implemented our own workflow solution. Because it seems that the jBPM is still immature and bug infested. Good luck View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915306#3915306 Reply to the

[JBoss-user] [JBoss and NetBeans] - Re: jboss, netbeans and sql server 2000

2006-01-03 Thread lkotouc
Please try to look at the NetBeans IDE Help topic 'Servers and Databases Servers JBoss Application Server Setting Up a Connection Pool ...' It talks about PointBase database server but it can be understood generally. Following steps must be done (basically): 1. create a data source (DS)

[JBoss-user] [JBossWS] - External WebServices

2006-01-03 Thread kdeboer
I have a problem for which i did not get an answer in the forum. Probably this wa because my question was unclear: I am trying to access external webservice in the J2EE client way. The WSDL have been generated using AXIS and some PL/SQL generation toolkit. A t first the WSDLs were generated in

[JBoss-user] [JBoss jBPM] - Process definition templating?

2006-01-03 Thread smeder
I'm looking for some advice on how to deal with a case where the process definition is essentially the same for all instances, with the variation (in my case) being different start/end times for one of the task nodes. I can see multiple ways to go about this and am wondering what the prefered

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

2006-01-03 Thread plalloni
Well... we really don't want to switch BPM engines ATM so here is my stack trace. As can be seen, the error occurs when I try to ask a ContextInstance from my just loaded ProcessInstance, obviously the problem refers to hibernate lazy loading but since I'm not familiar with JBPM hbm mappings I

[JBoss-user] [EJB 3.0] - Re: Bidirectional one-to-many resulting in multiple (identic

2006-01-03 Thread steverb
I'm not sure I understand what you are saying, but I did test out all combinations of Eager vs. Lazy fetching, and it made no difference. We are literally getting back multiple objects that have the same ID. View the original post :

[JBoss-user] [JBoss jBPM] - TDD and 3.1-alpha2 Websale example

2006-01-03 Thread dhartford
Hey all, I'm trying to get a better understanding as to the best 'test' setup for jBPM. Looking at the WebsaleTest class, it looks straightforward other than it extends org.jbpm.db.AbstractDbTestCase. AbstractDbTestCase then also needs org.jbpm.AbstractJbpmTestCase. Within

[JBoss-user] [JBossWS] - Re: External WebServices

2006-01-03 Thread kdeboer
I will repost the WSDL here: | | ?xml version=1.0 encoding=UTF-8? | wsdl:definitions targetNamespace=urn:ws.kgb.itude.com xmlns:impl=urn:ws.kgb.itude.com xmlns:intf=urn:ws.kgb.itude.com xmlns:apachesoap=http://xml.apache.org/xml-soap;

[JBoss-user] [Security JAAS/JBoss] - Re: Need to programatically check access to a URL.

2006-01-03 Thread [EMAIL PROTECTED]
Why don't u place resources that need to be accessed by management under /restricted/management/ and protect. Explain to me why an application based role like manager that is checked via isUserInRole(manager) to be mapped against an operational/deployment role- is a lot of hardcoding? You are

[JBoss-user] [EJB 3.0] - SQL Error produced by NamedQuery (Repost)

2006-01-03 Thread heinrich
Hi, I discovered a strange SQL statement. I created a named query to search by a given collection | @javax.persistence.NamedQuery(name=findAllPrscMainDrugByCategory, | queryString=SELECT OBJECT(o) FROM PrscMainDrug o WHERE o.prscDrugCategories = :prscDrugCategories) | Every

[JBoss-user] [Security JAAS/JBoss] - Re: Principal is always passed as null

2006-01-03 Thread [EMAIL PROTECTED]
See: http://wiki.jboss.org/wiki/Wiki.jsp?page=LoginInitialContextFactory http://wiki.jboss.org/wiki/Wiki.jsp?page=JndiLoginInitialContextFactory for InitialContextFactory implementations that accept credentials from the jndi env. The org.jnp.interfaces.NamingContextFactory does not. View the

[JBoss-user] [Beginners Corner] - Re: Deploying WAR

2006-01-03 Thread ba02000
I placed it in the mentioned directory then lauched JBAS but nothing happenedis war file supported by JBAS? beside EAR and JAR,and how can I make an EAR file. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915318#3915318 Reply to the post :

[JBoss-user] [EJB 3.0] - Re: Bidirectional one-to-many resulting in multiple (identic

2006-01-03 Thread epbernard
this means that display has 2 EAGER (or Group 1 EAGER and DISPLAY 1 EAGER) Check the executed queries View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915319#3915319 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915319

[JBoss-user] [Security JAAS/JBoss] - WSSecurity

2006-01-03 Thread new4jboss
Does JBoss accept WS security, namely the user token as an authentication mechanism ? Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915320#3915320 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915320

[JBoss-user] [JBoss.NET] - integrating axis 1.3 into jboss 3.2.6

2006-01-03 Thread gmeroz
anyone made it yet? i tried to replace the jars in server\all\deploy\jboss-net.sar, but i'm getting response with wrong characters View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915321#3915321 Reply to the post :

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

2006-01-03 Thread pedrosacosta
I've read all related posts, but i didn't get the solution for my problem. I've this file: ServerQueue.java | package com.sample.queue; | | /** | * Receives client messages and starts workflows | */ | import org.apache.log4j.Logger; | | import

[JBoss-user] [Installation, Configuration Deployment] - application-policy 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 application-policy 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

[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

[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

[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 ,

[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

[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

[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] [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] [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] [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=bbop=viewtopicp=3915333#3915333 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915333

[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] [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

[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 :

[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

[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

[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

[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: process-definition name=shopping | |start-state name=start | transition to=browse/ |/start-state | |page name=browse view-id=/browse.xhtml | transition name=browse to=browse/ | transition

[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: process-definition name=OrderManagement | start-state | transition to=decide/ | /start-state | | decision name=decide expression=#{orderApproval.howLargeIsOrder} | transition name=large order

[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=bbop=viewtopicp=3915342#3915342 Reply to the

[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 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

[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: entity-manager

[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

[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

[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 | entity | descriptionCUSTOMER

[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

[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=bbop=viewtopicp=3915351#3915351 Reply to the post :

[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

[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

[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 :

[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=bbop=viewtopicp=3915355#3915355 Reply to the post :

[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=bbop=viewtopicp=3915357#3915357 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915357

  1   2   >