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

[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

[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=bb&op=viewtopic&p=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=bb&op=viewtopic&p=4031379#4031379 Reply to the po

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

[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 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 : http://www.jboss.com/index.html?module=

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

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

[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) + appendS

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

[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"; | | [...] | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031393#4031393 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=repl

[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=bb&op=viewtopic&p=4031394#4031394 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031394 ___ jboss-user mailing list jboss-user@lists.

[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=bb&op=viewtopic&p=4031396#4031396 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031396 ___ jboss-user mailing list jboss-user@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=bb&op=viewtopic&p=4031397#4031397 Reply to the post : http://www.jboss.com/index.h

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

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

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

[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=bb&op=viewtopic&p=4031404#4031404 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=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=bb&op=viewtopic&p=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=bb&op=viewtopic&p=4031408#4031408 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[jboss-user] [JBoss Portal] - session through cookie configuration

2007-03-25 Thread radzish
How can I force jboss portal to use cookie in order to maintain session (so i have no jsessionid in the URL)? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031409#4031409 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[jboss-user] [JBoss jBPM] - Re: Best practices for cancelling a workflow

2007-03-25 Thread dslevine
I am handling this in my workflow application similar to the second way you are considering, by adding a "cancel" node and linking that with transitions. I only link it to the major nodes though, and assume that it can make it to a major node before being cancelled. I would be curious to hear

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

[jboss-user] [JNDI/Naming/Network] - Bind 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 tryin

[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=bb&op=viewtopic&p=4031423#4031423 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[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: 5c4o02s-uuy9ij-ezpt3ppk-1-ezpt5hbx

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

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

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

[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=bb&op=viewtopic&p=4031430#4031430 Reply to the post : http://www.jb

[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=bb&op=viewtopic&p=4031433#4031433 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=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=bb&op=viewtopic&p=4031436#4031436 Reply to the post : http://www.jboss.com/index.html?m

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

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

[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 EntityHome { | | 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=bb&op=viewtopic&p=4031439#4031439 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=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: | |

[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=bb&op=viewtopic&p=4031442#4031442 Rep

[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=bb&op=viewtopic&p=4031443#4031443 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031443 ___ jboss-user

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

2007-03-25 Thread atao
ok, but I don't understand why as: - the seam's classes compiled by Eclipse are redundant with those inside jar archive - is there any need to hotswap seam's class from a project? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031444#4031444 Reply to the

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

2007-03-25 Thread fernando_jmt
Simply, if you want to add your custom messages (in any locale) for authentication or whatever in Seam and you don't like (or you don't need) messages Seam adds as default, you should add in your resource bundle an empty key (Seam key message) in order to avoid that message be rendered. In the

[jboss-user] [JBoss Seam] - Re: s:fileUpload whit portal

2007-03-25 Thread czhao07
I've posted a fix on this issue, check it out: http://jira.jboss.org/jira/browse/JBSEAM-947. -Chunyun View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031447#4031447 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031447

[jboss-user] [JCA/JBoss] - Re: MySQL Connection Problems under heavy load

2007-03-25 Thread mrchit_2000
Hi Bob, I have the exact same error. Could you tell me how I should change the Timeout value? I tried increasing it to 600 or even 900 but the problem still exists. Thanks, LNgo View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031448#4031448 Reply to the pos

[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 [org.hibernate.tool.hbm2ddl.SchemaExpor

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

2007-03-25 Thread gus888
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 [org.jboss.seam.example.mail.Mai

[jboss-user] [JBoss Seam] - lost parameter after login/forwarding

2007-03-25 Thread henrik.lindberg
I have implemented "search" in the general fashion of the "blog" seam example - and it works fine. When I added restriction that the user must be logged in to perform the search, the user (if not logged in) is redirected to the login page, and when logged in, the user is forwarded to the search

[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 : http://www.jboss.com/index.html?modul

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

[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=bb&op=viewtopic&p=4031459#4031459 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mo

[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=bb&op=viewtopic&p=4031460#4031460 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031460 ___ jboss-user mailing list j

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

[jboss-user] [Messaging, JMS & JBossMQ] - Re: import org.jboss.mq.server.jmx.Queue

2007-03-25 Thread milind.uc
Dear Victor, Feel glade to see the way you reply and sorry as I am replying so late because sat. and sun. was holiday here... Well as ur able to send message to queue and not able to recive.So there are 2 to 3 possiblity... 1)Might be u r usinng diffrent Queue(Queue Name) while creating the re

[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 : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=403

[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=bb&op=viewtopic&p=4031470#4031470 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031470 ___

[jboss-user] [JBoss Seam] - Re: conversation switcher and pageflow

2007-03-25 Thread venkateshbr
Hi gavin, I was able to reproduce this with the dvd store example. i added new facelet conversations.xhtml | http://www.w3.org/1999/xhtml"; | xmlns:s="http://jboss.com/products/seam/taglib"; | xmlns:ui="http://java.sun.com/jsf/facelets"; | xmlns:f="http://java.sun.com/jsf/c

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

2007-03-25 Thread [EMAIL PROTECTED]
known bug with many-to-many reveengineering and annotations. (issue is that it does not really have info to choose which side should "win") View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031474#4031474 Reply to the post : http://www.jboss.com/index.html?modu

[jboss-user] [JBoss Seam] - Re: Documentation issues

2007-03-25 Thread thejavafreak
version: Seam 1.2.0.Patch1 chapter: 21.5.1 page: 192 Does it suppose to be: jboss.beans.xml or jboss-beans.xml ? Thanks in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031476#4031476 Reply to the post : http://www.jboss.com/index.html?module=bb

[jboss-user] [JBoss Seam] - Re: lost parameter after login/forwarding

2007-03-25 Thread thejavafreak
What context are you using? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031477#4031477 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031477 ___ jboss-user mailing list jbo

[jboss-user] [JBossWS] - Re: @WebServiceRef jbossws 1.2.0.GA

2007-03-25 Thread biroj
Hi, Do you have an exact list what is NOT supported in JBoss 4.0.5 among features of JBossWS 1.2? We could avoid such a misunderstandings in the future... since it is very time consuming to continously browse what is supported and what is not. Thanks a lot for your help, Bye, Janos View the o

[jboss-user] [JBoss jBPM] - Re: console url changed to http://localhost:8080/jbpm-consol

2007-03-25 Thread fuligj
Can somebody check this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031479#4031479 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031479 ___ jboss-user mailing list jboss-

[jboss-user] [JBoss jBPM] - Re: problem with jbpm-3.2.Beta2

2007-03-25 Thread fuligj
I think, i found the problem. In the websale example the first task's source is form.create.xhtml. In this file the second line is anonymous wrote : http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd and when your computer has no internet connection, this is unreachable. Can anybody check