[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - How to keep the selected value of combo (drop down ) box as

2005-12-23 Thread sanu_82
Hi All I have done the coding of two combo box by using a submit button .After seleting value from first combo ,code is executed on submit button & value are added to second combo box.Now i want the first combo box value which was selected.I want that user should be able to see that this was t

[JBoss-user] [JBoss jBPM] - Re: Token reflects old node after a successful signal

2005-12-23 Thread enazareno
Hi Aron, anonymous wrote : | Yep, Elmo, I understand, but I would definitely like to use the session-per-transaction pattern. I really can't suggest much at this point on what you are trying to achieve. Anyway, I'm looking at the 3.1 version right now and they have a much different imp

[JBoss-user] [JBoss jBPM] - Re: How to make a process state blocking

2005-12-23 Thread enazareno
Dear Koen, Thanks for your reply. Anyway, I think I can implement it using a fork, however a blocking would be much more convenient. I will try to check on the code and see if I can do something. I know these are not your priorities. Merry Christmas and enjoy the holidays. Regards, Elmo

[JBoss-user] [Remoting] - Re: Compressing(Un)Marshaller - blocking read on server side

2005-12-23 Thread ron_sigal
Eric, This problem was of my creation. It's fixed, and the modified versions of SimpleClient and SimpleServer, as you described them, work. If you're working off CVS, you can get the corrected versions of CompressingMarshaller and CompressingUnmarshaller from the HEAD branch. Otherwise, th

[JBoss-user] [Management, JMX/JBoss] - Re: HELP ON ROOT.war

2005-12-23 Thread lepe
Please don't post same question on several forums. /L View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914225#3914225 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914225 --

[JBoss-user] [JBoss Portal] - Re: portlet 'include'ing JSP, HttpServletRequest.getHeaders

2005-12-23 Thread danch
OK, so I lied. But I am looking at this right now. What's the magic required to get the portlet tests running? I've gotten to the point where running './build.sh test' in the portlet module main directory gets me the error "javax.management.InstanceNotFoundException: portal:service=MainDeploye

[JBoss-user] [JBoss jBPM] - Jbpm config strategy

2005-12-23 Thread funkypiston
Greetings ! I have a dumb design question. Environment: Spring - Hibernate - JBPM Im persisiting the process definitions in the same database as my application tables are. In doing so, I was wondering if I have to configure two transaction managers and two session factories to be used for persi

[JBoss-user] [JBoss Seam] - Re: Datamodel update cycle

2005-12-23 Thread js8523
Sorry to be unclear in the original post. It is not about the datamodel field being refreshed in the stateful bean (which it is), it is about whether Seam see's fit to outject into the datamodel again to the http context or whether it doesn't bother because it thinks there is no change so it m

[JBoss-user] [JBoss Portal] - deploy forum on jboss portal

2005-12-23 Thread blackbird
hi, i am trying to use the forum inside jboss portal 2.2.0. After having deployed it following the documentation i don't understand how a user can then access the forum. It has been deployed but i don't know how to make it available to the users like the other core stuff. hope you can help me p

[JBoss-user] [JBoss Portal] - Re: CMS Portlet Issue

2005-12-23 Thread [EMAIL PROTECTED]
ok. If I'm understanding correctly, it sounds like the link is malformed. If it can't find the page, it'll send you back to the default page. Can you make sure the link is absolute, with no leading slash? default/folder/file.html. Also, you should be able to access this file by going to your b

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: org.jboss.deployment.DeploymentException

2005-12-23 Thread plieger
Solution can be found on: http://jira.jboss.com/jira/browse/JBAS-1366 There's a patch of JDBCStartCommand.java, rebuild with this and you're in business :-) I used it in version 4.0.3SP1 and it works fine. I hope JBoss will incorporate the patch in the next update? Cheers, Roel Plieger. View th

[JBoss-user] [JBossWS] - List all webservices (wsdl) with latest CVS jboss-head

2005-12-23 Thread Udo.Krass
Hi, how can I list all available webservices? I use the latest jboss-head release from the CVS. When i enter the URL: http://localhost:8080/jbossws i must see all available webservices. So i should see e.g. the jsr181-test-webservices. Why i don't see them? I want to use the jsr181 wsdl-files to

[JBoss-user] [JBoss Seam] - Re: Datamodel update cycle

2005-12-23 Thread [EMAIL PROTECTED]
Can't you just use the entity manager to persist the datamodel changes and then flush it. @PersistenceContext(type = EXTENDED) | private EntityManager em; | | em.persist(dataModel); | em.flush(); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914212#3

[JBoss-user] [JBoss Seam] - Datamodel update cycle

2005-12-23 Thread js8523
Hi All I recently ran into a problem where I displayed a list of items, I then edited one of those items and returned to the list (@Datamodel), however when I returned the list was not relecting the change. The reason was that each time you outject the datamodel, it checks to see whether the

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

2005-12-23 Thread yxw84
I managed to get rid of the deployment exceptions, by not using the option in persistence.xml but instead just deploying the ejb3 file containing my entity and session beans into the deploy directory. Then, the skeleton persistence.xml file in my EARs has no problem finding the required classes

[JBoss-user] [JBoss jBPM] - JpdlXmlWriter.toString() exception

2005-12-23 Thread fmuhlenberg
I've been working with jBPM3.0 and have attempted to upgrade to v3.0.2 but have run into a significant problem. My process definition is this: < transition name="tr1" to="SaveXMLDocument"> < node name="SaveXMLDocument"> < transition name="tr1" to="end">

[JBoss-user] [JBoss jBPM] - Re: How to make a process state blocking

2005-12-23 Thread [EMAIL PROTECTED]
Elmo, The implementation of the leave method of the ProcessState node learns me that there is currently no way of blocking the signal. If you want to have the feature, add a JIRA request for it. If you want it really badly, attach the implementation of it... ;-) Regards, Koen View the origina

[JBoss-user] [EJB 3.0] - Re: is not mapped

2005-12-23 Thread onyii5119
Thanks yxw84, you are right, I was using the table name instead of the entity bean name. I gave them about the same name. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914210#3914210 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[JBoss-user] [JBoss Seam] - Re: JAAS and SEAM

2005-12-23 Thread patrick_ibg
SunFire, Nice work. As for taking out the LoggedIn interceptor, I wonder if using a servlet filter could do the same trick. This at least frees you of using the @LoggedIn annotation. Another thing is that you don't have to rely on a backing bean instantiation for the User to make it into the se

[JBoss-user] [Installation, Configuration & Deployment] - Re: violates loader constraints

2005-12-23 Thread xijia_chen
Basically, the error caused by unsafed java type if both of war and ejb-jar in your application try to access some "shared" java classes/objects, but the "shared" java classes are duplicated in war and ejb-jar. To fix the problem, you should try to reorganize the application structure and conf

[JBoss-user] [Installation, Configuration & Deployment] - Re: regarding the ROOT.war

2005-12-23 Thread lepe
http://wiki.jboss.org/wiki/Wiki.jsp?page=SetupARootContextApp View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914209#3914209 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914209 ---

[JBoss-user] [JBoss jBPM] - Re: Polling Workflow

2005-12-23 Thread [EMAIL PROTECTED]
>From the description you give I would go for a mechanism based on a real >scheduler such as Quartz. Your second option is not very robust as it depends >on a thread that is launched from the default jBPM webapp. Or you would have >to implement a scheduling mechanism based on the timer service a

[JBoss-user] [JBoss Portal] - Re: CMS Portlet Issue

2005-12-23 Thread jdestef
Hi Roy, Thanks for the response. The issue is I have multiple CMS portlet instances on different pages in my portal. In the *-object.xml I set the default page for a given instance. That took a little tweaking of the CMS portlet code. Now when the given CMS portlet instance renders content in u

[JBoss-user] [JBoss jBPM] - Re: intergrate jbpm into tomcat

2005-12-23 Thread [EMAIL PROTECTED]
You should either include your actionhandler classes in a jar somewhere on the classpath of your webapp or deploy them into the database. Regards, Koen View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914203#3914203 Reply to the post : http://www.jboss.com/in

[JBoss-user] [JBoss Portal] - Re: CMS Portlet Issue

2005-12-23 Thread [EMAIL PROTECTED]
You can set the default page in the portlet.xml: | | Default path to index page. | indexpage | /default/index.html | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914199#3914199 Reply to the post : ht

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: No Managed Connections Exception

2005-12-23 Thread maxota
Some people advise to adjust min-pool-size and max-pool-size. If you use more connections (either because you need this many, or because you forget to close them (didn't guard connection usage with try/finally for example), or even because of error in vendor's implementation of connection pool)

[JBoss-user] [JBoss Seam] - Re: CVS Noob question

2005-12-23 Thread Rorschach
Could I also get the current build? I'm having the same issue. [EMAIL PROTECTED] Thanks in advance! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914193#3914193 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914193

[JBoss-user] [EJB 3.0] - Re: is not mapped

2005-12-23 Thread yxw84
Just a guess, is "Feedback" the name of your entity bean which you are using? You have to use the entity bean name, not the table name. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914190#3914190 Reply to the post : http://www.jboss.com/index.html?module=b

[JBoss-user] [EJB 3.0] - how to configure my EJB to work over SSL connections?

2005-12-23 Thread joselitol
hi people, I´ve been looking the JBoss 4.0 documentation and I couldn´t make my EJB work with SSL. I configured the jboss.xml and jboss-service.xml files and I put the annotation @SecurityDomain at the Bean just like the documentation describbed. My EJB: package serpro.safe.server.operations;

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Limit AJP to only select webservers

2005-12-23 Thread anguyen
It's not clear from your post whether the firewall you have in fron of JBoss/Tomcat is a separate piece of hardware or is a software firewall running as part of the OS on the same machine. My suggestion was to use a software firewall that is part of the OS. There is no way to attach to AJP fro

[JBoss-user] [Security & JAAS/JBoss] - JAAS DatabaseLoginModule

2005-12-23 Thread sudha847
Hi Gurus.. I am implementing security to my application.As per the JBOSS spec i did the following changes. 1.Modified DatabaseLoginModule to login-config.xml file mssqlDS SEL

[JBoss-user] [JBoss Portal] - CMS Portlet Issue

2005-12-23 Thread jdestef
Hi, The doc for this portlet says that one can configure a starting page. Looking at the source code it doesn't appear that is currently possible. We made a small change to the code to take a starting page as an instance preference. This works fine. When we create a page with a link to another

[JBoss-user] [Beginners Corner] - Stop automatic persist of parents children?

2005-12-23 Thread pieterjan
Hi, I came upon this problem when looking at the hibernate queries that JBoss AS executes for bi-directional relations (i.e. parent-child). The problem is that when a method of a session bean is called and in that method a parent entity bean is used, then after finishing the method the server

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Limit AJP to only select webservers

2005-12-23 Thread dmazzella
"anguyen" wrote : How about running a firewall on the JBoss/Tomcat server machine? That would be the most secure way to handle it, IMO. | That is already in place, but security is still concerned about someone attempting to attach to ajp from within the firewall. (It is a government agency

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Batch update problem.

2005-12-23 Thread tzablock
The sequences are allright, and there is no data inserted without jboss... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914176#3914176 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914176 --

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Limit AJP to only select webservers

2005-12-23 Thread anguyen
How about running a firewall on the JBoss/Tomcat server machine? That would be the most secure way to handle it, IMO. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914179#3914179 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[JBoss-user] [JBoss Portal] - Navigating from one page (Login) to another page (Home)

2005-12-23 Thread windyguy27
Hi All, When the user access my applications he should get the login page in one portlet window. Once he clicks the submit we need to check his credentials present in the database upon validating, he should see the home page which contains different portlets. We are migrating our application

[JBoss-user] [EJB 3.0] - Re: Automatic deployment during development

2005-12-23 Thread clarif
Thanks! Best regards, Fabrice. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914177#3914177 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914177 --- This SF.net

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - EJB3 batch update persistance issue.

2005-12-23 Thread tzablock
Here is my irritating issue. I'm having two entity beans One is Film and another one is Copy. there is one to many relationship between them (there can be many copies of one film). I have created a web form were i put the film data and the count of copies. Then in the bussiness code I'm cr

[JBoss-user] [EJB 3.0] - EJB3 Batch update issue

2005-12-23 Thread tzablock
Here is my irritating issue. I'm having two entity beans One is Film and another one is Copy. there is one to many relationship between them (there can be many copies of one film). I have created a web form were i put the film data and the count of copies. Then in the bussiness code I'm cr

[JBoss-user] [EJB 3.0] - is not mapped

2005-12-23 Thread onyii5119
I am trying to run a query in EJB3.0 but I am getting an exception as displayed below. I can insert records into the table (Feedback) but can not perform any queries againts the table. Does any one know what I am missing? I am using MySql 5.0, mysql-connector-java-3.1.11-bin.jar and JBoss 4.0.3S

[JBoss-user] [Security & JAAS/JBoss] - Need Help for SSL Example Chap8 Ex4

2005-12-23 Thread Ralf Tepler
Hello, i've tryed unsuccessfully to run the SSL examples from the JBoss 4.0.2 documentation, chapter 8example 4a and 4b. First I tryed the code examples from the book itself. A big problem was this errormessage: WARN [ServiceController] Problem starting service jboss:service=invoker,type=jrmp

[JBoss-user] [JBoss Portal] - sql script to configure mysql for jboss portal

2005-12-23 Thread mpurdy1973
here is a sql script that will create the database for jboss portal. -- use mysql; drop database if exists jbossportal; create database jbossportal; delete from db where db='jbossportal'; delete from user where user='po

[JBoss-user] [EJB 3.0] - Re: ANT, Annotation, impossible to generate DDL with hbm2ddl

2005-12-23 Thread pprados
Super ! But, is it possible to use : Or, it's may be a good idea to add the par parameter ;-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914161#3914161 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914161 -

[JBoss-user] [EJB 3.0] - Quick and dirty patch

2005-12-23 Thread pprados
I propose to add in Configuration class in hibernate : | class Configuration ... | { ... | public Configuration addPar(File par) throws MappingException | { | log.info("Searching for mapping documents in par: " + par.getName()); | JarFile parFile = null; | try | {

[JBoss-user] [JBoss jBPM] - Re: Token reflects old node after a successful signal

2005-12-23 Thread aron.gombas
"enazareno" wrote : What I'm suggesting is dont use getCurrentJbpmSession(). Yep, Elmo, I understand, but I would definitely like to use the session-per-transaction pattern. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914160#3914160 Reply to the post : ht

[JBoss-user] [EJB 3.0] - Re: Automatic deployment during development

2005-12-23 Thread bwkennedy
For details on setting up your packaing check out the JBoss IDE trailblazer, it pretty much covers everything you need: http://trailblazer.demo.jboss.com/IDETrail/ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914167#3914167 Reply to the post : http://www

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Does setMaxResults() has effects on the query?

2005-12-23 Thread heinrich
Hi, i was wondering how em.createNamedQuery("MyQuery").setMaxResults(10) effects the underlying queries produced by JBoss. I fugured out, that at first the complete query is executed and all entities for that query is loaded into the cache and after this the first 10 results are picked and ret

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Batch update problem.

2005-12-23 Thread heinrich
Hi, have a look at your Sequences. Is there any data in the database which wasn't inserted by JBoss? You have to specify the sequence for each entity. Otherwise JBoss will use the hibernate_sequence which starts at 0 per default. View the original post : http://www.jboss.com/index.html?module=bb

[JBoss-user] [EJB 3.0] - Re: ANT, Annotation, impossible to generate DDL with hbm2ddl

2005-12-23 Thread [EMAIL PROTECTED]
[mapping jar="toto.par"/] would be nice, but it won't work since it scans for .hbm.xml's. [mapping par] is not a bad idea, but it would only be a workaround until I get around to add [ejb3configuration] support to the ant tools. View the original post : http://www.jboss.com/index.html?module

[JBoss-user] [EJB 3.0] - EJB3 Trailblazer with MySQL - Stack trace when accessing dat

2005-12-23 Thread sjb1973
I have worked through the EJB3 trailblazer, using people and phone numbers instead of articles and books and I am using a MySQL database. I get the stack trace at the end of this message when the following line of code is executed: Query q = manager.createQuery("from person"); I have created a

[JBoss-user] [JBoss jBPM] - Re: Token reflects old node after a successful signal

2005-12-23 Thread aron.gombas
"enazareno" wrote : please indicate the environment of your application ( the web server, version - are you using a J2ee container? are you using a datasource for your connections ? We're running Tomcat 5.5.9, so it's not a managed environment. Our datasource is provided by a JNDI entry in the c

[JBoss-user] [JBoss jBPM] - Re: Is jBPM BPEL extension allow...

2005-12-23 Thread [EMAIL PROTECTED]
I'll try to answer your questions before you do ;-) Altough the examples do not exercise it, the invocation subsystem is practically complete. There are a couple of test suites that demostrate it, altough you have to set them up manually. Wait 1-2 business days for alpha 4 to be released Go to

[JBoss-user] [EJB 3.0] - Re: Automatic deployment during development

2005-12-23 Thread heinrich
Hi Fabrice, i use the JBoss IDE for Eclipse. The "Run Packaging" command on the Project creates the files i configured and copies them to a directory which is linked into the JBoss deploy directory. I think thats the easiest way. Greetings martin View the original post : http://www.jboss.com/

[JBoss-user] [EJB 3.0] - Re: stateless-ssl-invoker for EJB3?

2005-12-23 Thread [EMAIL PROTECTED]
>From >jboss-head/ejb3/src/resources/test-configs/ejb3-ssl-advanced/deploy/ejb3.deployer/META-INF/jboss-service.xml | | | | | jboss.aop:service=AspectDeployer | | | | jboss.aop:service=AspectDeployer | socket://0.0.0.0:3873 | |

[JBoss-user] [JNDI/Naming/Network] - JBOSS JNDI from a standalone application

2005-12-23 Thread dreuzel
I'm finaly able to access my EJB's in a servlet. I would like to access the same EJB's from a standalone application This local as well as remote (Local is already a good help) I did find out how to setup the initialContext an this seems to work fine Jboss 4,03Rc1 /EJB3.0 As soon a

[JBoss-user] [JBoss jBPM] - Re: More than one external partnerLink

2005-12-23 Thread [EMAIL PROTECTED]
Funny. When you have more than one service catalog, the engine creates a composite catalog which searches all the "leaf" catalogs. There are even unit tests proving it... Some bug should have found its way. Sorry about the time you spent. And merry xmas :-) View the original post : http://www.

[JBoss-user] [EJB 3.0] - Re: stateless-ssl-invoker for EJB3?

2005-12-23 Thread [EMAIL PROTECTED]
Moved to EJB3 forum. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914148#3914148 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914148 --- This SF.net email is spo

[JBoss-user] [Installation, Configuration & Deployment] - WARN [WebappClassLoader] Failed to open JAR

2005-12-23 Thread rajeshchande
Hello, I have installed jboss 4.0.2 both on windows and solaris 8, running fine. I have also deployed WAR and EAR application, they are also running fine. For hot deployment, I have used remote files instead of deploying files in the "deploy" directory. The conf/jboss-service.xml looks like:

[JBoss-user] [JBossWS] - Re: JBoss WS -- Secure WS and UserNameToken

2005-12-23 Thread kcp
Hi, I want to use UsernameToken. I am using JB 4.0.2. I guess from the othe rposting that UsernameToken is not supported by this version? Best Regards Charly View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914151#3914151 Reply to the post : http://www.jboss

[JBoss-user] [JBossWS] - Adding custom headers to SOAP message

2005-12-23 Thread kcp
Hello, I have got the following problem: I call a webservice provided by an external partner. The service requires authentication via UsernameToken in the header (as desribed in "OASIS Webservice Security UsernameToken Profile"). Plus some additional headers with extra information. I found a p

[JBoss-user] [Security & JAAS/JBoss] - stateless-ssl-invoker for EJB3?

2005-12-23 Thread camunda
Hi, we have configured our EJB 2.1 SLSB with a stateless-ssl-invoker as described in http://docs.jboss.org/jbossas/jboss4guide/r3/html/ch8.chapter.html. Works fine :-) But how can we do this with our new EJB3-Beans in Jbos 4.0.3? I have tested it with a standard jboss.xml file: | |

[JBoss-user] [JBoss Seam] - Merry Christmas !

2005-12-23 Thread [EMAIL PROTECTED]
I am going away for vacations till January 3rd. I am scared to see all the good new things Gavin will add during that timeframe, i know he already have some great things boiling. Unfortunately beta 2 planed for this month might be delayed since we have dependencies on "not yet ready to release"

[JBoss-user] [EJB 3.0] - Re: ANT, Annotation, impossible to generate DDL with hbm2ddl

2005-12-23 Thread [EMAIL PROTECTED]
put [mapping class="blah/blah/ClassName"/] for each class. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914144#3914144 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914144 ---

[JBoss-user] [Installation, Configuration & Deployment] - Re: Configure MSSQL as DefaultDS

2005-12-23 Thread HolgerDanskeDK
Hello. For all other, read this thread and hope to find a solution: This little piece was missing: Add following to your mssql-jdbc2-service.xml: jboss.jca:service=LocalTxCM,name=DefaultDS Now it works fine. Holger View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopi

[JBoss-user] [EJB 3.0] - ANT, Annotation, impossible to generate DDL with hbm2ddl

2005-12-23 Thread pprados
I would like to generate the DDL with ANT and EJB3 annotated classes, but the generated file is empty. My hibernate.cfg.xml have only the connexion information. Here, http://www.hibernate.org/hib_docs/tools/ant/index.html, in 2.2, the sample say : But i don't know how to make that. Where I ca

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2005-12-23 Thread lyjjq
my env is eclipse +tomcat5.0,i find this same problem in this afternoon ,now i think it is jsf' bug , it now allow input http://localhost:8080/jsfselect/home.jsp, must forward this page from other page , for example index.jsp index.jsp content: home.jsp content: <%@ taglib uri="http:

[JBoss-user] [JBoss Seam] - EJB3 PFD is out ! any timeline for seam to get in sync ?

2005-12-23 Thread bjb
Dear all, Any chance to have seam aligned to it quickly ? (Santa ... santa ... santa seam ! :o ) As I reported ealier, the javax.ejb.Interceptor annotation has been remove in favor of the javax.ejb.Interceptors, I noticed two reference of it : Component.java and ejb3-interceptors-aop.xml files.

[JBoss-user] [JBossWS] - wscompile and EJB3 Entities

2005-12-23 Thread rudifr
I am trying to transfer EJB3 Entity Beans with J2EE 1.4 Web Services. Since EJB3 Entity Beans are POJO's it should be possible to transfer them directly instead of writing additional value objects. When I create the WSDL with wscompile from JWSDP 1.6 it doesn't find the annotation classes e.g. j

[JBoss-user] [JBossWS] - Re: problems with SEI method with arg type of String[]

2005-12-23 Thread kcp
Hi, I had the problem with a mthod that had and String[] as return value. I changed the return value to a new type called "StringArray ". It looked as follows: public class StringArray implements Serializable { private String[] array; public String[] getArray() {

[JBoss-user] [EJB 3.0] - Automatic deployment during development

2005-12-23 Thread clarif
Hi there, I am actually developing entity/session beans (EJB3) with JBossIDE/JBoss AS 4.0.3. During the development, each time I want to test the code I have to create a jar file and then deploy it to the server. I was wondering if an automatic way of doing that was existing. Any help will be

[JBoss-user] [Beginners Corner] - Re: Web services Deployment

2005-12-23 Thread E.L
I'm going to test with Jboss3.2.X... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914138#3914138 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914138 --- This SF.

[JBoss-user] [JBossCache] - Re: Scalability Of JGroups/JCache

2005-12-23 Thread [EMAIL PROTECTED]
I have never tested JGroups on hundreds of machines, as I don't have access to such a big lab. And network simulators only get you that far. I'd be interested in working with you to make it work if it doesn't. I know spead but haven't used it. I wrote JGroups to have a 100% Java solution, and no

[JBoss-user] [Clustering/JBoss] - Re: TreeCache error when node leaves network

2005-12-23 Thread [EMAIL PROTECTED]
If you see msgs discarded from other nodes, then that means you *haven't* cleanly separated your clusters. By default JBoss starts 3 clusters, so make sure you separate *all* of them View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914135#3914135 Reply to the

[JBoss-user] [JBossWS] - Re: Deserializer error on ArrayOfstring

2005-12-23 Thread kcp
Hi, I had the same with a method that returns a String[]. My solution was as follows. I changed the Returntype of the method to a new Type which I called "StringArray". This class looke like: public class StringArray implements Serializable { private String[] array; public Stri

[JBoss-user] [JBoss jBPM] - Re: Token reflects old node after a successful signal

2005-12-23 Thread enazareno
Hi Aron, What I'm suggesting is dont use getCurrentJbpmSession(). Regards, Elmo View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914130#3914130 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914130

[JBoss-user] [JBoss jBPM] - Re: Token reflects old node after a successful signal

2005-12-23 Thread enazareno
Hi Aron, BTW, before I forget, please indicate the environment of your application ( the web server, version - are you using a J2ee container? are you using a datasource for your connections ? stuff like that). I might be making the wrong assumptions - just in case Regards, Elmo V

[JBoss-user] [JBoss Portal] - JSF portlets in JBoss portal.

2005-12-23 Thread Rohini
Hi, i am facing problem while deploying JSF portlets in JBoss Portal. I am getting following exception javax.faces.FacesException: java.lang.ClassCastException at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:336) at org.apache.catalina.core.St

[JBoss-user] [JBoss Seam] - Re: Checkout jboss seam from cvs

2005-12-23 Thread RobJellinghaus
Apologies for my ignorance... I am trying to use jCVS II 1.4.2 to pull down the current CVS. I am using Checkout, with the following settings: PServer User Name: anonymous no password CVS Module: jboss-seam CVS Server: anoncvs.forge.jboss.com CVS Repository: /cvsroot/jboss Checkout Directory: c

[JBoss-user] [JBoss jBPM] - Closing topic

2005-12-23 Thread fwshk
I found the solution | | | http://localhost:8080/session/sessionFactory?wsdl"/> | http://localhost:8080/MyMath/MyMath?wsdl"/> | | | ._. I spend lots of time in finding the solution Anyway thank you very much And enjoy X'mas ^^ View the original

[JBoss-user] [JBoss Seam] - Re: CVS Noob question

2005-12-23 Thread [EMAIL PROTECTED]
You can checkout Seam from the CVS and build it later on offline, if it is what you meant. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914120#3914120 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914120 -

[JBoss-user] [JBoss jBPM] - Is jBPM BPEL extension allow...

2005-12-23 Thread fwshk
Excuse me, I would like to know is jBPM BPEL extension allow the following usage: 1. Invoke external partnerLink with only input (One-Way invoke)? 2. Invoke external partnerLink with int type in message's part | | | | 3. Invoke external partnerLink which message is a complexTyp

[JBoss-user] [Beginners Corner] - Questions for application deployment

2005-12-23 Thread FMP
hello everybody, i've deployed a application (.ear file) under my jboss server. OK. this application point to a database SQL Server (database in other server). how can i do if i want deploy for example 3 times the same application under the same jboss server (every application point to a d

[JBoss-user] [JBoss Seam] - Re: Checkout jboss seam from cvs

2005-12-23 Thread RobJellinghaus
Fixed it. Should have EMPTY password rather than no password at all. Too bad you can't edit or delete posts here ;-) Cheers! Rob View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914125#3914125 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[JBoss-user] [Installation, Configuration & Deployment] - Questions on Application deployment !

2005-12-23 Thread FMP
hello everybody, i've deployed a application (.ear file) under my jboss server. OK. this application point to a database SQL Server (database in other server). how can i do if i want deploy for example 3 times the same application under the same jboss server (every application point to a diffe

[JBoss-user] [JBoss Portal] - Re: portal 2.2 deployement warning/error

2005-12-23 Thread cpage
i think it's a problem with hibernate, oracle and the CLOBs is anybody succeed with a combination Oracle 9i / JBP2.2 ? thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914122#3914122 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[JBoss-user] [Installation, Configuration & Deployment] - Re: JAVA_HOME not set ERROR

2005-12-23 Thread anders.hedstrom
Hi, You should set the environment variable JAVA_HOME to your JDK directory. In my case it looks like this. JAVA_HOME=C:\jdk1.5.0_04 Merry X-mas View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914117#3914117 Reply to the post : http://www.jboss.com/index.h