[jboss-user] [JNDI/Naming/Network] - Datasource Problem

2006-12-22 Thread akmal
Hi, i am trying to deploy a project in Myeclips with Jboss Server. I am facing the error for jndiname. some one give me the solution. Caused by: javax.naming.NameNotFoundException: @db.jndiname@ not bound at org.jnp.server.NamingServer.getBinding(NamingServer.java:529) at

[jboss-user] [JBoss Seam] - Re: Vacation

2006-12-22 Thread lowecg2004
LOL - I'll look forward to normal service in the new year! Have a great Christmas and thanks again for all of your help. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995804#3995804 Reply to the post :

[jboss-user] [Messaging, JMS JBossMQ] - Howto connect a EJB3 MDB to a remote queue?

2006-12-22 Thread estiedi
Hi, I need to make a EJB3 MDB that listens for messages coming from another JBoss server. I'm pretty new to JBoss and an intense googling for examples and tutorials wasn't very helpful for me. Especially the possibility of doing things several different ways is confusing. Also it looks like

[jboss-user] [Messaging, JMS JBossMQ] - Error persisting message in DB2

2006-12-22 Thread kaobe
Hi there! I have a JBoss 4.0.3 SP1 that does JMS with MDBs. The persistance is done with DB2. There is a message sent to a topic, an MDB reacts and - as a result - sends another message to a Queue. The first message is being sent and received, it is being saved in the database (jms_messages).

[jboss-user] [JBoss jBPM] - Re: Sending Emails?

2006-12-22 Thread Saviola
See jBPM 3.2 in the CVS. It has build-in functionality for sending emails. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995810#3995810 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995810

[jboss-user] [JBossCache] - Re: PojoCache 2.0: New tree structure, optimistic locking

2006-12-22 Thread [EMAIL PROTECTED]
It is not that servere in 1.4 because __JBossInternal__ is used only for shared references. So if there is creation of shared reference POJO under concurrent tx, then it will rollback. Otherwise, thing as usual. View the original post :

[jboss-user] [JBossCache] - Re: java.lang.RuntimeException: java.lang.NoSuchMethodExcept

2006-12-22 Thread [EMAIL PROTECTED]
Can you also please double check your jboss-aop-jdk50.jar and jboss-aspect-library-jdk50.jar version from manifest? (Or if you are using jdk1.5, why don't you try the ejb3 bundle of which pre-compiled in JDK5?) View the original post :

[jboss-user] [JBoss jBPM] - Re: jBPM 3.1 + Spring 2.0 + Tomcat 5 + TX demo app

2006-12-22 Thread wanglg
Thank you! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995814#3995814 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995814 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - Queries work, persist does not work, in a Servlet

2006-12-22 Thread SmokingAPipe
Strange strange problem: I have a Servlet. Within this Servlet I get a hold of a EntityManager like this: Inside of init: entityManagerFactory = Persistence.createEntityManagerFactory(persistenceContextName); And then in the doPost() method, I get an actual EntityManager using the obvious

[jboss-user] [JBoss Seam] - Re: Vacation

2006-12-22 Thread thejavafreak
Merry Christmas. Have a great break Thanks for all the hardwork for creating great products such as Seam and Hibernate View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995817#3995817 Reply to the post :

[jboss-user] [EJB 3.0] - Re: Queries work, persist does not work, in a Servlet

2006-12-22 Thread SmokingAPipe
Ha, I figured this out. I need to do EntityTransaction transaction = entityManager.getTransaction(); | transaction.begin(); | entityManager.persist(...); | transaction.commit(); | entityManager.close(); Is that the right way to do it? It works! View the original post :

[jboss-user] [JBoss Seam] - Re: Seam Maven2

2006-12-22 Thread dviersel
I forgot to mention that I updated the dependencies list on the wiki. As with the ear-scoped libraries. Ant 1.7.0 now provides support for auto-generating the manifest entries. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995819#3995819 Reply to the post

[jboss-user] [JBoss Seam] - Re: Question on using @DataModelSelection open a page in a

2006-12-22 Thread petemuir
1) I think using h:dataTable you need to put a link in each column. In plain html you can (of course) put an onclick listener on the row. Perhaps an component set table (AFAICS trinidad can do this through a selection listener) 2) You'll need to make a non-faces request to open a new window

[jboss-user] [JBoss Seam] - Re: Using the pages.xml to pass a parameter

2006-12-22 Thread petemuir
Ok, you don't need to use pages params for the EL enhancement, they are for @RequestParam stuff and you pass in the parameter to the link using f:param As for why the EL enhancement doesn't work... There have been quite a few forum posts on it, perhaps you can get help there... View the

[jboss-user] [JBoss Seam] - Re: s:conversationPropagation with t:navigationMenuItem

2006-12-22 Thread petemuir
I had problems with this (months) ago, I think its to do with the class hierachy of t:navigationMenuItem being weird. Anyway, you should ask this on the myfaces-user mailing list rather than here - but use an f:param rather than the seam tag as the problem is more easily understandable then.

[jboss-user] [JBoss Seam] - Re: Mapping between form field and database fields

2006-12-22 Thread petemuir
or of course you could reinvent the wheel :p N.B. Most o f the date selectors will include a converter and a validator to check/convert the date from the random-user-format to your desired format. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995823#3995823

[jboss-user] [Messaging, JMS JBossMQ] - Re: Howto connect a EJB3 MDB to a remote queue?

2006-12-22 Thread estiedi
I think I found the solution http://www.jboss.com/index.html?module=bbop=viewtopict=88899 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995824#3995824 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995824

[jboss-user] [JBoss Seam] - Re: Change Locale sequence

2006-12-22 Thread petemuir
Huh? I don't really understand, can you show the code where you call the action and the whole of the action. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995825#3995825 Reply to the post :

[jboss-user] [JBoss Seam] - Re: 'Remember me' features

2006-12-22 Thread petemuir
The new security framework will most likely address this in some way. You could log the user into JAAS and then use UserPrincipal, or just write a simple bean yourself. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995827#3995827 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Is presentation layer part of Business Process design?

2006-12-22 Thread kukeltje
what is the difference? Tying the presentation layer to the tasknode is done via the jbpmcontext View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995828#3995828 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995828

[jboss-user] [JBoss jBPM] - Re: Question on User Manual section 7.1

2006-12-22 Thread mjuteau
Apologies, I just realized JbpmConfiguration is a factory: JbpmConfiguration.getInstance() View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995829#3995829 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995829

[jboss-user] [JBoss jBPM] - Re: Sending Emails?

2006-12-22 Thread kukeltje
it can be done with 3.1 to. Just create a simple basic actionhandler that sends an email on the node-leave event of a tasknode. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995830#3995830 Reply to the post :

[jboss-user] [JBoss jBPM] - Question on User Manual section 7.1

2006-12-22 Thread mjuteau
In the User Manual section 7.1, we see several sample code snippets such as this one: | JbpmContext jbpmContext = jbpmConfiguration.createJbpmContext(); | try { | | // Invoke persistence operations here | | } finally { | jbpmContext.close(); | } | All the examples use a

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How contribute to Freemarker plugin and add my Plugin ec

2006-12-22 Thread [EMAIL PROTECTED]
azerr wrote : anonymous wrote : Yes, I received it; but please send it as a *patch*. | That's done. | I saw JBIDE-428, is that what you refer to ? It's not a patch it is the complete project... anonymous wrote : We don't have those implemented (except bean), but nothing in the tools

[jboss-user] [JBoss Seam] - Re: Change Locale sequence

2006-12-22 Thread rengar
-Page: | !DOCTYPE composition PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN | http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; | | html xmlns=http://www.w3.org/1999/xhtml; | xmlns:ui=http://java.sun.com/jsf/facelets; | xmlns:h=http://java.sun.com/jsf/html; |

[jboss-user] [JBoss Seam] - Re: Change Locale sequence

2006-12-22 Thread petemuir
Can you do this in #{inicio.inicio} (the action method) instead? By then the locale should be updated... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995833#3995833 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995833

[jboss-user] [JBossCache] - Re: java.lang.RuntimeException: java.lang.NoSuchMethodExcept

2006-12-22 Thread jagadeeshvn
I am not using jboss-aspect-library-jdk50.jar in my project. However I understand that the problem is with AOP and so I checked out the latest AOP source from SVN and build it locally. Now I am using that jar and I found that 3 additional interceptions are defined somewhere in the unix

[jboss-user] [JBoss Seam] - session handling of users

2006-12-22 Thread ask4saif
Greetings to all: I am making an application with jboss-seam, I have a problem with session handling of users. I am using a stateful session bean which is authenticating users from db. this bean has two fields in it username and password. on authentication I destroy the password and use

[jboss-user] [JBoss Portal] - where to configure error pages

2006-12-22 Thread purna_cherukuri
Hi, I am using jboss-portal-4.2.0. I want to configure error pages for different error codes. Where should i configure it? I tries by configuring in jboss-tomcat55.sar/conf /web.xml and jboss-tomcat55.sar/root.war/web-inf/web.xml. But it is not working. Where else can i configure?

[jboss-user] [JBoss Eclipse IDE (users)] - Re: JBoss IDE Out of memory error

2006-12-22 Thread [EMAIL PROTECTED]
try to up the permgen memory also. p.s. what is the full stacktrace ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995837#3995837 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995837

[jboss-user] [JBoss Seam] - Re: Change Locale sequence

2006-12-22 Thread rengar
No. I enter in browser : http://localhost:8080/reservas/inicio.seam?asociacionesId=17 When change language page is refresh. I don't call action inicio yet. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995839#3995839 Reply to the post :

[jboss-user] [JBoss Messaging] - Failed

2006-12-22 Thread hendra_netm
Hi all, I just installed jboss messaging 1.2.0 beta1 and try the queue-failover example. When it tried to copy application-server-killer.jar, I get this message | --- Packages waiting for a deployer --- | [EMAIL PROTECTED] {

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Remove item from CMR

2006-12-22 Thread murtuza52
The correct way to remove an item from the OneToMany relation is as follows: | @Entity | public class A | { | private CollectionB bees; | @OneToMany (mappedBy=a) | public CollectionB getBs() | { | return bees; | } | public void setBs(CollectionB b) | { | this. bees = b;

[jboss-user] [Messaging, JMS JBossMQ] - How to kill JMS Queue

2006-12-22 Thread chaituu
I am doing load testing to upload certain files .So when i stoped the server i will clear all the uploaded files from server location,and on restart the MDB is looking for the files which are deleted from server location , and throwing exepection file not found. So i need to stop MDB to

[jboss-user] [JBoss Seam] - Re: 'Remember me' features

2006-12-22 Thread sbryzak2
This functionality is typically implemented with a client-side cookie. I've got plans to include support for this, but not in the initial release of the Seam security API in a few weeks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995845#3995845 Reply

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Hibernate loads all entities on manager.merge()

2006-12-22 Thread murtuza52
Current setup: JBoss 4.0.5, MySQL 5.0, Windows XP SP2 The application we have developed has about 50 entities with inheritence. Each entity is mapped to a table and most OneToMany and ManyToMany relations are LAZY fetched except for few where application requires them to be EAGER fetched. Some

[jboss-user] [JBoss Seam] - Db-Dump for Seam Examples ?

2006-12-22 Thread BerndSchmid
Hi, is there a possibility to get the whole db-dump for the seam examples ? (also create table, ... ) I like to change on mysql instead of hsql. Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995842#3995842 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Change Locale sequence

2006-12-22 Thread petemuir
My only other is idea is to use immediate=true on the locale selector. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995840#3995840 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995840

[jboss-user] [JBoss Eclipse IDE (users)] - Re: How contribute to Freemarker plugin and add my Plugin ec

2006-12-22 Thread azerr
anonymous wrote : I saw JBIDE-428, is that what you refer to ? It's not a patch it is the complete project... I have post a comment. anonymous wrote : What do you mean another architecture ? Have you even tried to use the tools and looked at the code to see how it works ? For me architecture

[jboss-user] [JBoss Seam] - Re: HelloWorld-Ajax with Facelets

2006-12-22 Thread hispeedsurfer
Hello folks, can please someone reply whether it's possible to solve the problem with parameters and facelets. Or is it not possible to use blueprints library with facelets? thx andi View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995849#3995849 Reply to

[jboss-user] [JBoss Portal] - JBoss Portal 2.4 and MySQL UTF-8 problems

2006-12-22 Thread wgross
The problem: JBoss Portal installation fails to create a variety of required tables, specifically those tables required for the CMS system. This causes Portal to either fail to load, or to load, but throw an exception when the administrator tries to log in for the first time (using the

[jboss-user] [JBoss Seam] - Re: Seam Maven2

2006-12-22 Thread mzeijen
Great work :D Christmas is coming, so I don't know if I will spent a lot of time on this issue the next 4/5 days. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995854#3995854 Reply to the post :

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Error on XDoclet Configuration dialog when try tutorial

2006-12-22 Thread danielmesser
I have the same error. Where you able to solve this problem? Thanks, Daniel View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995870#3995870 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995870

[jboss-user] [JBoss Seam] - Removing jaxws in ejb3-all jar

2006-12-22 Thread daleth
I have two sets of code that I need to integrate. One is a web service client using XFire and the other is a SEAM 1.1 application. Turns out there is a conflict between the javax.ws.WebService annotation in the XFire library and the ejb3-all.jar. I certainly understand that the WS code is

[jboss-user] [JBoss Eclipse IDE (users)] - XDoclet shortcoming?

2006-12-22 Thread scramer
Hello and merry christmas to everybody. I'm using JBossIDE 2.0.0beta2. The problem I am facing is with relations and the unknown-pk feature. I have two CMP EJBs: | package de.chitec.physio.server.ejb; | | import java.rmi.RemoteException; | import java.util.Date; | | import

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Open connections with Apache 2.2+mod_proxy_ajp+JBoss/Tom

2006-12-22 Thread skeumurian
Thanks for the suggestion. I haven't tried that yet, but I can test that on my other server. I'll post the rests here when I have them. For the most part the performance of proxy_ajp has been fine for what we need, but these dangling connections are annoying. -= Stephen =- View the original

[jboss-user] [JBoss Eclipse IDE (users)] - remote debugging

2006-12-22 Thread gowricp
hi, My java application has a bit of JNI C++ code. We use eclipse for java and visual studio 2005 for C++. We used to use tomcat earlier and VC6. We could easily set up a remote debugging session from eclipse and start tomcat from within VC. The problem with JBoss is that I am not able to

[jboss-user] [JBoss Seam] - Re: Seam And ICEFaces menubar

2006-12-22 Thread Newlukai
Perhaps you should return something? And not null. Or you change the scope to APPLICATION? Here's my menu bean: @Stateless | @Name(sideNavigationMenu) | @Scope(ScopeType.APPLICATION) | public class SideNavigationMenu implements SideNavigation { | @In | private FacesContext

[jboss-user] [EJB/JBoss] - Re: Scheduler vs. EJB Timer Service

2006-12-22 Thread t_kishore
arggg.. one more time. | *** jboss-app.xml | jboss-app | module | servicekns-scheduler-service.xml/service | /module | /jboss-app | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995864#3995864 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: Scheduler vs. EJB Timer Service

2006-12-22 Thread t_kishore
service.xml got truncated in the previous post. | server | mbean code=org.jboss.varia.scheduler.Scheduler name=:service=Scheduler | attribute name=StartAtStartuptrue/attribute | attribute name=SchedulableClasscom.mybiz.scheduler.NotificationSchedule/attribute |

[jboss-user] [JBoss jBPM] - Re: Sending Emails?

2006-12-22 Thread jainer
Hi: This is a code to send mails.. obviously you must to have your own mail jar | package controlcorrespondencia.handlers.actions; | | import java.util.Iterator; | | import javax.naming.*; | import javax.rmi.PortableRemoteObject; | | import org.apache.commons.logging.Log; |

[jboss-user] [EJB/JBoss] - Re: Scheduler vs. EJB Timer Service

2006-12-22 Thread t_kishore
Add this entry to jboss-app.xml for your EAR jboss-app my-scheduler-service.xml /jboss-app Keep my-scheduler-service.xml directy under the EAR with entries like this: ?xml version=1.0 encoding=UTF-8? true com.mybizz.scheduler.NotificationSchedule 0 !-- start now

[jboss-user] [JBoss Seam] - Re: Seam And ICEFaces menubar

2006-12-22 Thread david.alves
Thanks, It finally works!!! I had already tryed that but I always kept the property not only the getter. I don't seam to have the session expired warning, the only thing I'm doing different is that I keep may menu in the SESSION scope. View the original post :

[jboss-user] [JBoss Portal] - modifying the jboss portal programatically with portal core

2006-12-22 Thread FredF
I am developing some portlets using JBoss seam 1.0 and JBoss Portal 2.6. A want to use the Portal Core API in order to add portal objects programatically, e.g. portlet instances to pages and pages to portals. I have looked at how the included manager portlet accomplishes this. I figured out that

[jboss-user] [JBoss Eclipse IDE (users)] - Documentation for EJB 3

2006-12-22 Thread mjremijan
I am very interested in the eclipse ide project but I'd like to be able to start working with EJB 3 and the latest version of the JBoss Application Server. The documentation on the JBoss Eclipse IDE is a little old. The installation guide doesn't even seem to be applicable anymore because the

[jboss-user] [JBoss Seam] - Re: Db-Dump for Seam Examples ?

2006-12-22 Thread [EMAIL PROTECTED]
Just change the datasource/persistence.xml and the tables will be created in whatever database you are using. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995875#3995875 Reply to the post :

[jboss-user] [EJB 3.0] - Re: JBoss 5.0 Beta 1

2006-12-22 Thread Wolfgang Knauf
Yes, it does. Best regards Wolfgang View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995879#3995879 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995879 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: Removing jaxws in ejb3-all jar

2006-12-22 Thread [EMAIL PROTECTED]
Why is there a conflict? Are the two libraries using different versions of the annotation? Are they being loaded by different classloaders? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995878#3995878 Reply to the post :

[jboss-user] [JBoss Seam] - Re: ASync calls stays in JBoss queue after restart

2006-12-22 Thread m_hess
Hi, I tried to fix this by calling timer.cancel() during the destroy method, which seems to me is the way to handle timers during shutdown if I don´t want them to get persisted. Now I´m having the Could not destroy component: componentName EJBNoSuchObjectException: Could not find stateful

[jboss-user] [Installation, Configuration Deployment] - Re: JBOSS Vs JAVA 6.0

2006-12-22 Thread [EMAIL PROTECTED]
Jdk5 is the safest bet. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995881#3995881 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995881 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Removing jaxws in ejb3-all jar

2006-12-22 Thread daleth
They seem to be using different versions. The XFire library seems to indicate they are using jsr181 maintenance release 1. If you'd like to try and work through the problem I'd be happy to help in any way I can. I have to admit that I'm not terribly familiar with either code set (which is

[jboss-user] [JBoss Seam] - Re: Db-Dump for Seam Examples ?

2006-12-22 Thread BerndSchmid
Thank you very much !!! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995883#3995883 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995883 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - jBPM BPEL Beta2: invoke an external web service

2006-12-22 Thread SergStone
Hi everyone! I'm in trouble. I can't invoke any webservice other than deployed on the same JBoss AS (as is in ATM example). I couldn't find any information about setting up this stuff. Could someone please say what options and where should be set? I have two web services deployed on another

[jboss-user] [Security JAAS/JBoss] - Re: Extra files in .sar

2006-12-22 Thread diippi
Actually I did find a solution to this. local-directory path=xxxentry explainedas follows : !-- The optional path attribute gives the prefix of the sar entries that should be copied into the data directory. If it is not specified the entire sar contents will be placed into the data directory.

[jboss-user] [JBoss Seam] - Re: Seam Maven2

2006-12-22 Thread dviersel
I have a child coming up so I won't spend much time either. Still, let me know if I can help. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995884#3995884 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995884

[jboss-user] [JBoss Seam] - Re: session handling of users

2006-12-22 Thread quilleashm
ask4saif wrote : | how can i restrict users from unauthorized access of pages. | Probably use a servlet filter for your web application. The filter intercepts all requests to the URLs it is mapped to. If you place something in the session context when a login is succesful the filter can

[jboss-user] [JBoss.NET] - Re: NoClassDefFoundError: org/jboss/axis/encoding/ser/BaseSe

2006-12-22 Thread eogreen
Oops - the second sentence above should read I have scoured the web to NO productive end. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995888#3995888 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995888

[jboss-user] [JBoss.NET] - Re: NoClassDefFoundError: org/jboss/axis/encoding/ser/BaseSe

2006-12-22 Thread eogreen
The error occurs on the below call: _call.registerTypeMapping(cls, qName, sf, df, false); private org.apache.axis.client.Call createCall() throws java.rmi.RemoteException { | try { | org.apache.axis.client.Call _call = |

[jboss-user] [EJB 3.0] - EXTENDED persistence and partial rollbacks

2006-12-22 Thread ekusnitz
I have a page in which the user can make multiple edits, which goes back to the server for validation on certain actions (without persisting). If validation fails, I want the last edit to be rolled back. However, when I use extended persistence and expose my managed entities on my JSF page, the

[jboss-user] [JBoss Seam] - Re: s:conversationPropagation with t:navigationMenuItem

2006-12-22 Thread pdpantages
OK, thank you for the suggestion. I will let you know what I find out. I hadn't thought of trying f:param to see if that does/doesn't work. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995892#3995892 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Removing jaxws in ejb3-all jar

2006-12-22 Thread daleth
Testing shows that removing the WS code from the jar isn't sufficient. As I was worried about it, those classes are at least loaded during the container startup. | 2006-12-22 10:19:25,953 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/portal]] Exception sending

[jboss-user] [JBoss jBPM] - Locating timers from process instance

2006-12-22 Thread arshadnj
I am wondering how can I locate timers associated with a process instance. Here is more detailed information about our requirement and wondering how JBPM timers will fit in. Basically, the application is kind of Order management system. When the order goes into to 'Wait for approval from

[jboss-user] [JBoss Seam] - Re: Change Locale sequence

2006-12-22 Thread [EMAIL PROTECTED]
If you can simplify this example a bit, removing the irrelevant details, it would be easier for people to understand exactly what you are trying to do. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995896#3995896 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - my login method is accessed twice

2006-12-22 Thread sionut2
Hi, I have the following configuration in my login-config.xml file: | ?xml version=1.0 encoding=UTF-8? | !DOCTYPE policy PUBLIC | -//JBoss//DTD JBOSS Security Config 3.0//EN | http://www.jboss.org/j2ee/dtd/security_config.dtd; | policy | application-policy name=emp-mft

[jboss-user] [JBoss Seam] - Re: session handling of users

2006-12-22 Thread [EMAIL PROTECTED]
If you can't wait for the seam security stuff, have a look at the Seam DVD Store app. I think it does a good job of showing how to accomplish programatic access control. It uses page actions in pages.xml to accomplish this. View the original post :

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Problem in init ::: java.lang.StringIndexOutOfBoundsExceptio

2006-12-22 Thread abhinav19
Hi all I am using struts 1.3.5 with jboss 4.0.5 I get this trace when i try to deploy the war file.. I am unable to figure out the reason Regards an 10:59:52,997 ERROR [Tomcat5] Problem in init java.lang.StringIndexOutOfBoundsException: String index out of range: 0 at

[jboss-user] [JBoss Seam] - Re: Using the pages.xml to pass a parameter

2006-12-22 Thread fmi2
Thanks for the response. I'm using the @RequestParameter annotation and all work fine. Cheers View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995900#3995900 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995900

[jboss-user] [JBoss Seam] - Re: Db-Dump for Seam Examples ?

2006-12-22 Thread BerndSchmid
Not thank you ! It seems than other people in the forum have also problems to access the database. It is really intransparent, how Seam generates the database. I succeeded now to create half the db of dvdStore on mysql (break with the import-script) with changed configuration in

[jboss-user] [JBoss Seam] - Re: Removing jaxws in ejb3-all jar

2006-12-22 Thread daleth
Disregard the above exception, I didn't have the XFire JAX-WS jar in place when I did that. So, it seems that the EJB container will start and run okay with the XFire version of the JAX-WS APIs in there, but XFire won't start with the EJB3 version. View the original post :

[jboss-user] [JBoss Seam] - Re: EL enhancement of parameters working?

2006-12-22 Thread dandiodati
So this is true even when using facelets? So I have to access the parameters passed via the FacesContext.getCurrentInstance().getExternalContext(). getRequestParameterMap().get(... Why doesn't this tag support actionListeners? I was hoping to change all commandLinks to use this link

[jboss-user] [JBoss Seam] - Re: Seam cannot find my components

2006-12-22 Thread jdaggs
It looks like I have solved this problem and the next one. So please consider this issue closed. Thanks, Jason View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995905#3995905 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Removing jaxws in ejb3-all jar

2006-12-22 Thread [EMAIL PROTECTED]
In general, you should not count on being able to replace/override core Java EE classes in your application. I don't know anything about XFire, but I do know that code that is intended to be run in a Java EE server should NOT have their own copy of the annotations. So, don't add the

[jboss-user] [JBossCache] - Re: PojoCache 2.0: New tree structure, optimistic locking

2006-12-22 Thread chasta
Thanks for your reply. Unfortunately, I need to use optimistic locking because in my usage scenario, deadlock prevention and/or recovery will be very hard when using pessimistic locking... That was one of the reasons for us to use JBossCache in the first place... Any chance this will get

[jboss-user] [JBoss Seam] - Alternative_FileUpload - upload action never gets called

2006-12-22 Thread scotttam
I am trying to get the Alternate File Upload example from the wiki working: http://wiki.jboss.org/wiki/Wiki.jsp?page=Alternative_FileUpload I have copied the sample project into my Eclipse workspace, built and deployed but the upload action method is never called when I hit the submit button.

[jboss-user] [JBoss Seam] - Re: Removing jaxws in ejb3-all jar

2006-12-22 Thread daleth
Sure thing. This is bundled up as a war for deployment in any ol' servlet container. Our customer happens to be using Tomcat. | META-INF/ | META-INF/MANIFEST.MF | WEB-INF/ | WEB-INF/classes/ | WEB-INF/lib/ | images/ | layout/ | stylesheet/ | AdvancedSearch.xhtml |

[jboss-user] [JBoss Seam] - Re: Db-Dump for Seam Examples ?

2006-12-22 Thread [EMAIL PROTECTED]
Sorry - I have no idea what you are talking about. Hibernate supports automatic table generation and automatic data import if you want to use it. You don't have to use it. Hibernate supports a number of other mechanisms for creating the database or even reverse engineering a model from the

[jboss-user] [JBoss Seam] - Re: Removing jaxws in ejb3-all jar

2006-12-22 Thread [EMAIL PROTECTED]
OK - you are right. In your situation your choices appear to be to get jbossws and XFire to compatible versions. You'll have to ask on the EJB3 and/or JBoss WS forums for help there. Are you actually using EJB3? If not, you can drop the JBoss embedded EJB3 altogether, which should eliminate

[jboss-user] [JBoss Seam] - Re: EL enhancement of parameters working?

2006-12-22 Thread [EMAIL PROTECTED]
You can access request parameters using @RequestParameter. You can also access request parameters from the EL: | s:link action=#{bean.action(param.myData)} value=now | f:param name=myData value=#{item.someValue} / | /s:link | However, you obviously can't pass whole

[jboss-user] [JBoss Seam] - Re: Removing jaxws in ejb3-all jar

2006-12-22 Thread daleth
Yeah, we are. The XFire stuff is just for a client that goes out and pulls some data. The meat of the app is a normal SEAM app (session beans for actions, entity beans for persistence, etc). Thanks for the help Norman. I'll spend some time poking around the other projects and hopefully post

[jboss-user] [JBoss Seam] - Re: Db-Dump for Seam Examples ?

2006-12-22 Thread BerndSchmid
Ok, but where in the DVDStore app the autogeneration of the database starts, where are the files, hibernate (?) reads, to generate the database ? This is complex. Is there another way not to use autogeneration ? Generate the db manually and just start the app ? How can I do this ? What files I

[jboss-user] [Security JAAS/JBoss] - Re: SSO in JBoss 4.0.5

2006-12-22 Thread ycindepalle
Thanks Sohil for your inputs. We are going ahead for a small prototype. Yugandhar View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995919#3995919 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995919

[jboss-user] [JBoss Seam] - Re: Db-Dump for Seam Examples ?

2006-12-22 Thread [EMAIL PROTECTED]
It automatically generates them from the entities. There are no files involved.If you don't want to generate the database, set hibernate.hbm2ddl.auto to none in persistence.xml. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995920#3995920 Reply to the

[jboss-user] [JBoss Seam] - Re: Db-Dump for Seam Examples ?

2006-12-22 Thread BerndSchmid
Thank you, now it is clearer for me. I will try again. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995921#3995921 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3995921 ___

[jboss-user] [JBoss Seam] - best practice question: SMPC, @OneToOne and h:selectOneMenu

2006-12-22 Thread hstang
I am encountering PersistenceException in designing a web form that results from using Seam-managed persistence context(SMPC) + @OneToOne and h:selectOneMenu. I am trying to use the entity as a pure JSF backing bean. The problem is modifying the department's ID, which is still managed by

[jboss-user] [JBoss Seam] - pageflow step description problem

2006-12-22 Thread spambob
The EL in the pageflow description list isn't working! I use the latest CVS version and my page is configured like this: page name=edit view-id=/editUsecase.xhtml redirect=true no-conversation-view-id=/home.xhtml | descriptionEdit Usecase: #{usecase.name}/description | transition

[jboss-user] [JBoss Seam] - Re: Seam generate-entities failing

2006-12-22 Thread [EMAIL PROTECTED]
I can confirm the same problem with the jms tables. I missed out where they were generated from, but they are the ones causing the problem. When you drop those tables, at least the seam generate-entities will succesfully finish. mysql select table_name, table_schema from

[jboss-user] [JBoss jBPM] - Re: jBPM BPEL Beta2: invoke an external web service

2006-12-22 Thread [EMAIL PROTECTED]
Hi Serg, You are right ? somehow, when I updated the user guide for version 1.1.Beta2, I left out the explanation of the bpel-application.xml descriptor. You can find the missing explanation in section 4.3.6.2 of the user guide for 1.1.Beta1. In addition, the XML Schema document for this

[jboss-user] [JBoss Messaging] - Re: Exception by getting a reference to the ConnectionFactor

2006-12-22 Thread vvd
were you able to resolve the error received below, I also getting similar error. java.lang.RuntimeException: Failed to config client side AOP at org.jboss.jms.client.JBossConnectionFactory.ensureAOPConfigLoaded(JBossConnectionFactory.java:251) at

[jboss-user] [JBoss Seam] - Re: EL enhancement of parameters working?

2006-12-22 Thread spambob
I was wondering myself too some days ago why one can't use actionListeners with s:link s:button. Is there a reason for this? If no could it please be added?! ;) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3995929#3995929 Reply to the post :

[jboss-user] [JBossWS] - Re: Cannot find child element: int_1

2006-12-22 Thread cmaclachlan7
I am having exactly the same problem; works just fine when using a Java Client but when using a VB client (SoapClient30) I get a Cannot find child element error. Calls with no parameters work fine. Calls with any parameter, regardless of the type cause the cannot find child element error. I

  1   2   >