[jboss-user] [JBoss Seam] - Webservices ETA?

2007-03-25 Thread nekstrom
I'm sure you're tired being asked this but I am wondering when Seam will have built in Webservices support? Also thanks to Gavin and every one else who has put so much work into Seam. It is an incredible piece of software which makes my life much easier. Thanks View the original post :

[jboss-user] [JBoss/Spring Integration] - Re: Problem persisting data using Spring + Hibernate JPA

2007-03-25 Thread suneetshah
The exception is pasted below. Thanks. org.springframework.transaction.UnexpectedRollbackException: JPA transaction unexpectedly rolled back (maybe marked rollback-only after a failed operation); nested exception is javax.persistence.RollbackException: Error while commiting the transaction

[jboss-user] [JBoss Seam] - seam-gen build

2007-03-25 Thread atao
I work under Eclipse, with seam 1.2.0PATCH1 In the build.xml of a project created by seam-gen, the targets explode and buildtest are lauched after each change of a file. But then the target compile is not lauched. So after any change in a java file, compile must be lauched by hand. Is it on

[jboss-user] [JBoss Portal] - Re: t:inputfileupload inside a Myfaces JSF portlet on JBoss

2007-03-25 Thread pmoller
maybe take a look at http://palab.blogspot.com/2007/01/tomahawk-bridge-091-released.html This worked in our solution (which I didn't code, though, so I don't know the exact details) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031376#4031376 Reply to the

[jboss-user] [JBoss Seam] - Re: Webservices ETA?

2007-03-25 Thread [EMAIL PROTECTED]
I'm working on it right now. I can't say exactly when it will be ready, but I'm pretty sure that there will be at least some working functionality within the next couple of weeks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031379#4031379 Reply to the

[jboss-user] [JBoss/Spring Integration] - Re: Problem persisting data using Spring + Hibernate JPA

2007-03-25 Thread alesj
suneetshah wrote : | Caused by: java.sql.BatchUpdateException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.service (STATUS, SERVICE_NAME, LOCATION_IP_ADDRESS, COMPANY_OWNER_ID, START_DAT' at line 1

[jboss-user] [JBoss Seam] - selectOneMenu Question

2007-03-25 Thread KoniKoni
I shoud like to implement selection from first selectOneMenu, object of which is supplied contains a list, this is spent with the second selectOneMenu. The first menu functions and the second not, maybe somebody can help me. Here is my code: Component: framework:entity-query name=allHer |

[jboss-user] [EJB 3.0] - Re: EAR file module SubDeployment ordering

2007-03-25 Thread jochenb
Hello pakemann, can you send an example of your jboss-app.xml which uses the module-order tag? If I have a look at the JBOSS_HOME/docs/dtd folder I cannot find a dtd for jboss-app.xml which contains the module-order tag. Best regards, Jochen View the original post :

[jboss-user] [JBoss Seam] - Re: seam-gen build

2007-03-25 Thread atao
I change my question... If I use the Eclipse clean command for the project, I get the compilation of all the project java files... and a little more: jboss seam's class files are also compiled under test-build and then copied under exploded-archives/[project].jar Is it on purpose? I tried

[jboss-user] [JBoss Messaging] - Re: JMS Exceptions / Mismatch of JBossSerialization version

2007-03-25 Thread rtm333
mskonda, I'm not sure whether the current discussion is still related to my original problem(s). In fact, we had two issues with SP2 that I described in this thread: 1) IOException: Mismatch version of JBossSerialization signature was thrown occasionally on the server side, although it worked

[jboss-user] [JBoss Seam] - How to truncate output?

2007-03-25 Thread henrik.lindberg
Hi, I would like to be able to truncate output of certain properties. I have a property called description that can be quite long, and in listings I want to limit the output to say 40 characters and then add ... after the truncated text. I would like to be able to do this in the view. I

[jboss-user] [JBoss Messaging] - Messaging Persistence and Multiple JBoss Instances

2007-03-25 Thread rtm333
We are using several JBoss instances concurrently. The instances use identical topic names and share the same Sybase database. Non-persistent messages are paged into this database, when slow subscribers are not able to keep up with the high message generation rate. It seems to us, that there

[jboss-user] [JBossCache] - Re: Questions regarding performance of read-only operations

2007-03-25 Thread [EMAIL PROTECTED]
All cache operations move through an interceptor stack that handles aspects like locking, transaction management, and interactions with cache loaders. Replication is just one of those aspects; if the cache is in LOCAL mode the other aspects still have to be properly handled. An

[jboss-user] [JBoss Seam] - Re: How to truncate output?

2007-03-25 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/RF-27 Until then: | public class WikiUtil { | | public static String truncateString(String string, int length, String appendString) { | if (string.length() = length) return string; | return string.substring(0, length-1) +

[jboss-user] [JBoss Seam] - Re: Seam security adds default messages

2007-03-25 Thread onyii5119
fernando_jmt wrote : The messages you should add to your .properties file are | | org.jboss.seam.loginSuccessful = Welcome, #0 | | and | | org.jboss.seam.loginFailed = Login failed | | | In case of login fails it is natural to add the message (which I can configure as I

[jboss-user] [JBoss Seam] - Re: How to truncate output?

2007-03-25 Thread atao
You can use jstl functions: | xmlns:fn=http://java.sun.com/jsp/jstl/functions; | | [...] | | h:outputText value=#{fn:substring(aString, 0, 5)}.../ | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031393#4031393 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Separate database for jBPM

2007-03-25 Thread irVega
Thanks Gavin. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031394#4031394 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031394 ___ jboss-user mailing list

[jboss-user] [JBoss/Spring Integration] - Re: Problem persisting data using Spring + Hibernate JPA

2007-03-25 Thread suneetshah
Thanks for the tip. The problem was with the annotation on the service class that was generated by the hibernate tool. @Entity @Table(name = service, catalog = mysql, uniqueConstraints = {}) When I got rid of the catalog tag, everything started to work. Thanks for the tip. Regards Suneet

[jboss-user] [JBoss Seam] - Re: How to truncate output?

2007-03-25 Thread henrik.lindberg
Great - thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031396#4031396 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031396 ___ jboss-user mailing list

[jboss-user] [Installation, Configuration Deployment] - Re: JBOSS CLUSTERING ON VIRTUAL MACHINE (LINUX)

2007-03-25 Thread [EMAIL PROTECTED]
The ports are the default ones, just using 45531 or so. The JVM is showing the error but only happens in a Virtual Machine instance so seems lower View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031397#4031397 Reply to the post :

[jboss-user] [EJB 3.0] - Problem with Entity Manager dependency injection in JBoss 5

2007-03-25 Thread heinza
Hi, everybody! I'm trying to perform EM dependency injection in servlet using JBoss 5 Beta 1 and get the following deployment exception: ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] | Error installing to Start: name=jboss.web.deployment:war=/simple-web state=Create

[jboss-user] [EJB 3.0] - Binding only on localhost

2007-03-25 Thread EdwardKelly
I installed jboss 4.0..4.GA using the installer ejb3-clustered. I start jboss using run.sh -bxx.xx.xx.xx I copy an EJB3 bean into the deploy directory and receive error messages: Could not bind stateless proxy Cound not obtain connection to any of these urls: localhost Why is

[jboss-user] [JBoss Seam] - interaction between Seam Scanner and VFS in JBAS5.0

2007-03-25 Thread [EMAIL PROTECTED]
I just wanted to start a discussion around the interaction between org.jboss.seam.deployment.Scanner, particularly the scan() method, and the Virtual File System (VFS) implementation which is used as part of JBAS5.0. Here is a JIRA describing a symptom of the problems with the current

[jboss-user] [EJB 3.0] - Forums via NewsReader?

2007-03-25 Thread EdwardKelly
Are JBoss forums available via a news reader? Thanks Edward View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031404#4031404 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031404

[jboss-user] [JBoss Seam] - Re: interaction between Seam Scanner and VFS in JBAS5.0

2007-03-25 Thread [EMAIL PROTECTED]
Does it make sense to simply write a Seam deployer for JBoss 5? The only question I have about that approach is whether deployers have access to the web application context... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031406#4031406 Reply to the post :

[jboss-user] [JBoss Seam] - Re: seam-gen build

2007-03-25 Thread [EMAIL PROTECTED]
We let Eclipse's compiler compile the classes that we package into the deployment - that way hotswap has a chance to work. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031408#4031408 Reply to the post :

[jboss-user] [Messaging, JMS JBossMQ] - problem with durable mdb - new client id every time

2007-03-25 Thread enesterov
Hi everyone, I have MDB annotated as follows: @MessageDriven(activationConfig = { @ActivationConfigProperty(propertyName = messagingType, propertyValue = javax.jms.MessageListener), @ActivationConfigProperty(propertyName = destinationType, propertyValue = javax.jms.Topic),

[jboss-user] [JBoss Seam] - Illegal use of mappedBy on both sides of the relationship: m

2007-03-25 Thread irVega
I have used seam-gen's generate-entities on a simple schema I knocked up (using HSQLDB), whilst I learn the basics of SEAM, with a view to prototype a system that will run against a legacy database. There is a many-to-many relationship between 2 tables A (the auto-generated PK is ID_) and B

[jboss-user] [JBoss Portal] - Re: Where XMLHTTPRequest

2007-03-25 Thread rabi_sultan
you need to setup a servlet and then get the portlet to execute Javascript code that will call the servlet for information. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031423#4031423 Reply to the post :

[jboss-user] [JBoss Seam] - cannot destroy component exception

2007-03-25 Thread henrik.lindberg
I keep getting exceptions when a session times out. The trace is below: What could be causing this? What should I do? | 20:49:53,343 WARN [Contexts] Could not destroy component: userSpaces | javax.ejb.EJBNoSuchObjectException: Could not find Stateful bean:

[jboss-user] [JBoss Seam] - Will Woodstock works with Seam some day? :)

2007-03-25 Thread trouby
Just wondering, If there are any plans to make Woodstock JSF components work with Seam one day... As it looks, Woodstock based on jsf-extensions (https://jsf-extensions.dev.java.net/) which doesnt live so well together with ajax4jsf, Any plans for these two to live near each other?

[jboss-user] [JBoss Seam] - Re: cannot destroy component exception

2007-03-25 Thread henrik.lindberg
I also get exceptions like this when using some ajax button on the page after the page has timed out. | 21:46:32,734 ERROR [ExceptionFilter] uncaught exception | javax.servlet.ServletException: /spaces.xhtml @58,35 first=#{userSpaces.first}: Exception getting value of property first of base

[jboss-user] [JBoss Seam] - seam-gen generated code gives: SEVERE: Error Rendering View[

2007-03-25 Thread irVega
I run the script below to generate some simple tables and insert a bit of data. I use seam-gen to create my project settings and then generate a project (m2m) and the entities. I use the generated ant script to deploy. I open the browser at the m2m home page. I click on the A List menu and see my

[jboss-user] [JBoss jBPM] - Re: Scheduled TaskInstances within a ProcessInstance?

2007-03-25 Thread perrylucas
Ok - you should be able to find a mini tutorial here now: http://wiki.jboss.org/wiki/Wiki.jsp?page=CustomTasks (Linked from the jbpm home wiki page under jbpm 3) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031430#4031430 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Illegal use of mappedBy on both sides of the relationshi

2007-03-25 Thread quilleashm
The @ManyToMany definition on one of the sides is incorrect. For bidirectional relationships one side must be the owner. The side using mappedBy is the inverse side, which means it updating it does NOT update the relationship. If this was generated it's probably a seam gen bug. To fix your

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

2007-03-25 Thread cdigiovanni
hello, i have the same problem. If you got a solution to the problem can you post it? Thank you! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031433#4031433 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031433

[jboss-user] [JBoss Seam] - Re: how to use modal

2007-03-25 Thread henrik.lindberg
where is the wiki example application - it is not included in the examples with seam 1.2 GA (or am I looking at the wrong place?) - confused? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031436#4031436 Reply to the post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Unable to save data with Hibernate - JPA

2007-03-25 Thread suneetshah
Hello, I am getting the following error when trying to update an object. An insert operation seems to work fine. The code for the bean was generated by the Hibernate eclipse plug in. Thanks for your help. javax.persistence.PersistenceException: org.hibernate.exception.SQLGrammarException:

[jboss-user] [JBoss Seam] - Re: Illegal use of mappedBy on both sides of the relationshi

2007-03-25 Thread irVega
javax.faces.el.PropertyNotFoundException: Bean: q.BHome$$EnhancerByCGLIB$$fe5689a5, property: bId I appreciate the detailed response, thanks Mike. I have tried that and it certainly gets me past the deployment stage. Now I can go to the B List and to the A List pages and Search works but, when

[jboss-user] [JBoss Seam] - Re: Illegal use of mappedBy on both sides of the relationshi

2007-03-25 Thread irVega
It's probaby on BHome (that's where the code generation created it). | public class BHome extends EntityHomeB { | | public void setBId(Long id) { | setId(id); | } | ... | The exception says Bean: q.BHome$$EnhancerByCGLIB$$fe5689a5, property: bId View

[jboss-user] [JBoss Seam] - Re: Illegal use of mappedBy on both sides of the relationshi

2007-03-25 Thread quilleashm
I can't see a bId property defined anywhere in the B entity? Or is it on BHome? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031439#4031439 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031439

[jboss-user] [JBossWS] - Accessing a secure WSDL

2007-03-25 Thread PeterJ
I have implemented the Echo web service, and client, described at http://jbws.dyndns.org/mediawiki/index.php/JAX-WS_User_Guide#Bottom-Up_.28Using_wsprovide.29. Once those were working, I added BASIC authentication to the web service by adding the following to the web.xml: security-constraint

[jboss-user] [JBoss Seam] - Re: how to use modal

2007-03-25 Thread fernando_jmt
You can find out Wiki example in getting Seam from CVS. Seam 1.2GA does not contain that example, I think this will be part of the 1.2.1 release. So wait next release or get Seam from CVS. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031442#4031442

[jboss-user] [JBoss Seam] - Re: how to use modal

2007-03-25 Thread fernando_jmt
Sorry, there was some typos in my last post. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031443#4031443 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031443 ___ jboss-user

[jboss-user] [JBoss Seam] - Problem on deploying Seam mail example on CVS20070324

2007-03-25 Thread gus888
Hi there, I downloaded Seam CVS20070324, run 'ant deploy' under examples/mail. When I start Jboss4.0.5, I got the following exception. I don't know whether I need to modify other settings or not. Any guidance is appreciative! 2007-03-25 19:25:02,062 ERROR

[jboss-user] [JBoss Seam] - Re: Problem on deploying Seam mail example on CVS20070324

2007-03-25 Thread gus888
Follow the first thread above When I began to run the mail program(input name and email address, and click button), I got the following exception. I ever successfully deploy the mail example in Seam1.2.0Pacth1 in the same deployment method. Thanks for any help. 2007-03-25 19:58:59,828 ERROR

[jboss-user] [EJB 3.0] - Re: Mapping String attribute in EntityBean to CHAR(size) in

2007-03-25 Thread [EMAIL PROTECTED]
I have the same problem. There is a char(3) column in my mysql database I cannot change. What's the right java type I can map this to in my @Entity? char[], Character[] etc/ gives me an Varchar expected exception. Thanks, Chris View the original post :

[jboss-user] [JBoss Seam] - Seam 1.2.0 on Tomcat 6.0.10 with Microcontainer

2007-03-25 Thread thejavafreak
Dear all, Environment Tomcat 6.0.10 Seam 1.2.0.Patch1 I tried deploying Seam apps on Tomcat 6.0.10 with Microcontainer without EJB3 embeddable container, just plain POJO and hibernate. At some stage I gain this error: Mar 25, 2007 4:01:52 PM org.apache.catalina.core.StandardContext

[jboss-user] [JBoss jBPM] - Installing jbpm in exsisting jBoss in Linux

2007-03-25 Thread anuabc
hi I have installed already jboss in linux environment. how to install jbpm in that without disturbing other services. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031459#4031459 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: JBpm-error in startup

2007-03-25 Thread anuabc
thank you it is working fine View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031460#4031460 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031460 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Two action in the same portlet

2007-03-25 Thread srinivasanj
Hai i am using JBoss Portlet for my application, i had to several doubts in the JBoss Portal 1. i am using two action in the same JSR 168 portlet . my first action i mapping if(name!=null){dispatch. b.jsp) else(dispatcha.jsp}. my second action in the b.jsp it need to move c.jsp.///rly i

[jboss-user] [EJB 3.0] - How to assign field value based on auto generated id

2007-03-25 Thread y_zl
I have a field named encryptId which is calcuated based on the id auto generated by mysql. Anybody could give some suggestion on when to set this value in EJB 3.0? any post constructor in EJB 3.0 ? Regards View the original post :

[jboss-user] [JBossWS] - Re: WSDL-location help?

2007-03-25 Thread oskar.carlstedt
Thanks!!! I will post this issue as a bug. //Oskar View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031470#4031470 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031470 ___