[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Issue with Oracle Datasource

2007-10-22 Thread dmver
Sample below works fine (at least for me: JBoss4.2.1.GA Oracle 10g) ... | | XAOracleDS | | false | oracle.jdbc.xa.client.OracleXADataSource | jdbc:oracle:thin:@ORA_HOST:1521:ORA_SVC | jboss | * | | org.jboss.resource.adapter.jdbc.v

[jboss-user] [JBoss Seam] - Seam and JBPM with JTA enabled

2007-10-22 Thread mlsreekanth
Hi, My primary requirement is to work with EJB3 entities fro JBPM action handlers by using Session Facades. So, i need all the calls to these session facades to be in a single transaction. I am trying to use JBPM JTA transactions which are supported in JBPM 3.2 GA and configured as they descr

[jboss-user] [JBoss Seam] - Re: Very slow initialization of Captcha

2007-10-22 Thread modoc
I'm on a Mac without antivirus. I've just added Captcha to one of my projects and I now see a 17 second pause during startup that was not there before. This is out of 39 second total start time, so it's a significant pause. 00:01:13,660 INFO [Contexts] starting up: org.jboss.seam.captcha.ca

[jboss-user] [JBoss Seam] - Re: Claim: Seam is not for large Java EE applications

2007-10-22 Thread [EMAIL PROTECTED]
Recently I heard someone claim to have been abducted by aliens. What do you think? Seriously, we've designed Seam to be useful at all scales, from simple web apps to complex enterprise applications. You get more leverage from Seam on smaller apps, but that's mainly because traditional J2EE

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: port 8080 *only* works on the same machine

2007-10-22 Thread jaikiran
Have a look at the first question at http://wiki.jboss.org/wiki/Wiki.jsp?page=JBoss42FAQ. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097334#4097334 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097334 ___

[jboss-user] [JBoss jBPM] - Re: Integration with struts

2007-10-22 Thread dleerob
No one can really help you with your specific app, because no was has any idea what your app is doing. I have a Spring/Struts based web application, and I simply integrate the jbpm libraries. How to do this is covered in the documentation, I think under the deployment section. To get ideas how t

[jboss-user] [JBossWS] - Re: Cannot obtain wsdl service (problem in JBoss 4.2 used to

2007-10-22 Thread burakbayramli
That worked.. thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097337#4097337 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097337 ___ jboss-user mailing list jboss-us

[jboss-user] [JBossWS] - Re: Schema generation with jboss jaxb

2007-10-22 Thread [EMAIL PROTECTED]
Hi Gennady, currently there's no such commandline tool available in JBossWS. The only way how to get the XML schema generated via our tools is to provide java web service interface and use our wsprovide.sh(.bat) tool with --wsdl option. It will generate the wsdl file where's the types sectio

[jboss-user] [JBossCache] - Re: How TreeCacheListener works

2007-10-22 Thread spennec
Thanks for your reply, Manik! :) I think my understanding may not be correct after all: at the time, I was trying to recieve a notification when a pair key-value was removed from inside a given node. And this is not possible, is it correct? I now create a new node for each of my data and remove

[jboss-user] [JBossWS] - Re: web service not found

2007-10-22 Thread [EMAIL PROTECTED]
Hi, check your JBoss AS server log if there is some problem report available. Richard View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097339#4097339 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097339

[jboss-user] [JBoss Seam] - Re: Seam and JBPM with JTA enabled

2007-10-22 Thread thejavafreak
jBPM's transaction is handled by seam :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097340#4097340 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097340 ___ jboss-user mai

[jboss-user] [JBoss Seam] - Re: Claim: Seam is not for large Java EE applications

2007-10-22 Thread amitev
Maybe this is the place to define "seam design patterns"? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097342#4097342 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097342 _

[jboss-user] [JBoss Seam] - Re: Hide J2EE Seam Server

2007-10-22 Thread amitev
You cannot hide things like: | | which the form renders View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097344#4097344 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097344

[jboss-user] [JBoss Seam] - Re: Seam rule file problem

2007-10-22 Thread Stateless Bean
somethink changed? Why this works on jboss but on tomcat not? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097346#4097346 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097346 _

[jboss-user] [JBoss AOP] - Re: How can i see the activated

2007-10-22 Thread [EMAIL PROTECTED]
aop isnt a service/program you deploy on jboss so its not possible to view it in jmx etc. in the future we might create a manager-service that you can use to monitor which joinpoints/pointcuts/intercepted classes etc, but nothing is planned. View the original post : http://www.jboss.com/index.h

[jboss-user] [JBoss Seam] - Re: getting the id of the object inserted...

2007-10-22 Thread david.spark
If you use entityManager.merge(pojo) then it returns the persisted Pojo object from which you can get the ID. So, for example, you can do Pojo pojo = new Pojo(); | //Fill pojo with info | Pojo pojo2 = entityManager.merge(pojo); | pojo2.getId(); //There it is Actual code might need to

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Many Java process

2007-10-22 Thread calexo
Unfortunately : [EMAIL PROTECTED] root]# ps -eLf ps: error: Use -m to print threads, not Sun's nonstandard -L. usage: ps -[Unix98 options] ps [BSD-style options] ps --[GNU-style long options] ps --help for a command summary [EMAIL PROTECTED] root]# ps -emf ps: error: Thread display not implemented

[jboss-user] [JBossWS] - Re: Deployed service statistics

2007-10-22 Thread abdujaparov
Hi Alessio, I've read what you have highlited but I don't understand a lot. Does a tutorial/guide exist? If yes, where can I find it? With that informations I remain at the beginning point. Thanks, bye bye. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097354#

[jboss-user] [JBoss AOP] - Re: Where to run maven plugin in a ear

2007-10-22 Thread avihaimar
It didnt work. Maybee i dont do it correct. I have two jars - model, server. they two package in an ear. My "Interceptor" in the server (i need an access to data source) the intercepted classes are in the model. in load time i package additional jar with aop suffix that contain the jboss-aop.

[jboss-user] [Security & JAAS/JBoss] - Shibboleth integration with JBoss

2007-10-22 Thread lucianj
Has anyone integrated Shibboleth SP with JBoss? The only thing I can find on Google is that I have to use SPIE-JAAS but there's no walktrough for that. Hints anyone? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097358#4097358 Reply to the post : http://w

[jboss-user] [JBoss Seam] - Why is Authenticator.authenticate() called twice if it retur

2007-10-22 Thread appendix
Hi! I've just generated an application with seam-gen (seam-2.0.0.CR2) and modified the Authenticator.authenticate() method to return false as well: | public boolean authenticate() | { | log.info("authenticating #0", identity.getUsername()); | if ("Foo".equalsIgno

[jboss-user] [JBossWS] - Re: Deployed service statistics

2007-10-22 Thread [EMAIL PROTECTED]
Hi, unfortunately no tutorial available on this right now; however, once you understand a bit about JMX, it's quite straightforward. I suggest you to search a bit about jmx technology on the Internet. A brief JMX-console introduction is available here: http://wiki.jboss.org/wiki/Wiki.jsp?page=JMX

[jboss-user] [JBoss Portal] - Re: Portal and using openxchange ldap for users

2007-10-22 Thread Veroland
Hi I have checked the link you posted and changed my login-confix.xml as per http://wiki.jboss.org/wiki/Wiki.jsp?page=UsingAnLDAPSourceForPortalAuthentication However, I now get a NullPointer when I try to log in: | 10:21:40,514 ERROR [STDERR] java.lang.NullPointerException | 10:21:40,515

[jboss-user] [JBoss jBPM] - smtp server configuration

2007-10-22 Thread vishal423
hi everybody, i am new to jboss jbpm. as per user guide 3.2.2, i have configured jbpm.cfg.xml file for smtp settings. but, i am getting error message "Unable to connect to localhost, @ port 25". As per this message it tries to connect to localhost instead of smtp server that i have configured.

[jboss-user] [JBoss Seam] - Why not JAAS for security?

2007-10-22 Thread hubaghdadi
Hi. Why JBoss Seam decided to go with JBoss Drools to implement security? Why not JAAS? Wouldn't this give the illusion of JBoss products lock-in? Some architects like to stick with standards and don't like to stray from them. Thanks. View the original post : http://www.jboss.com/index.html?modu

[jboss-user] [JBoss Seam] - Re: Using Captcha

2007-10-22 Thread hubaghdadi
Suppose the application uses Ajax for validation. If the user enters a wrong captcha value, how to get a new one with Ajax? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097365#4097365 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[jboss-user] [JBoss Seam] - Re: Claim: Seam is not for large Java EE applications

2007-10-22 Thread hubaghdadi
"modoc" wrote : | Can you be more specific about why Seam may not be for large apps? Actually, I'm not saying Seam is not for large projects, I hear it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097367#4097367 Reply to the post : http://www.jboss.com

[jboss-user] [JBossWS] - Re: avoid lazy-initialization exceptions

2007-10-22 Thread [EMAIL PROTECTED]
Hi John, please show us your SLSB and one of your entities. The JAXB default is to bind all public members. Please have a look at the JAXB spec for finer control. e.g. @XMLAccessType View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097369#4097369 Reply to th

[jboss-user] [JBoss Seam] - Re: Redirect on value change

2007-10-22 Thread thatrichard
1. This may sound like an unbelievably silly question, but: What do you mean by my "submit method"? With, for example, h:commandButton, you specifiy the method via the action parameter. The submit method in my example is a javascript call fired by the browser when the field changes. That, I

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Changing DB from mySql - oracle having persistance problems

2007-10-22 Thread gubisoul
Hey. We had our tests with EJB3 in an mysql db and it worked fine, but we have to change db to Oracle now, and that caused alot of problems. I hope someone can give me some pointers to what i am doing wrong, and what i am doing right, i have tried with transaktions, but without any effect. The

[jboss-user] [JBoss Seam] - Re: Why not JAAS for security?

2007-10-22 Thread fhh
AFAIK you cannot JAAS security policies do not allow you to grant permission depending on the runtime value of a parameter, e.g. a user may edit products that belong to "his" department. Regards Felix View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097375#40

[jboss-user] [Security & JAAS/JBoss] - Jboss Web wth SSl

2007-10-22 Thread Amit_verma
Hi Guys , Can someone help me to solve my problem given below, When i put my server.keystore file in the server/default/conf .i got this errror!!! java.lang.ClassNotFoundException: Error loading SSL Implementation org.apache.tomcat.util.net.puretls.PureTLSImplementation :java.

[jboss-user] [JNDI/Naming/Network] - java.lang.NoClassDefFoundError: java/net/SocketAddress

2007-10-22 Thread bablookk
All, When I tried to run a JMS main application using JBoss AS, java.lang.NoClassDefFoundError: java/net/SocketAddress occurs. We are using JBoss4.0 and jdk1.3 for running it. Please let me know the cause. Thanks, Babloo View the original post : http://www.jboss.com/index.html?module=bb&op=vi

[jboss-user] [JBoss Seam] - Re: getting the id of the object inserted...

2007-10-22 Thread nickarls
pojo = entityManager.merge(pojo) might also work perhaps also entityManager.refresh(pojo) depending on the state of the pojo View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097384#4097384 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[jboss-user] [JBossWS] - org.jboss.ws.WSException: Cannot find java method

2007-10-22 Thread ZazzaZ
Hi, I used wscompile to generate a webservice starting from a correct WSDL. Deploy went OK, but when I run the client class to test the service I got the following exception in server-side log. | | org.jboss.ws.WSException: Cannot find java method: controlloAccessoOperation | at

[jboss-user] [JBoss Seam] - restrict tag in pages.xml

2007-10-22 Thread slavach
Hi, I've encountered quite strange Seam behavior in my project. I setup security framework and it works great for restricting access to mehods (in EJB) and to UI elements (in *.xhtml with s:hasRole). All security exceptions redirected to default security page. Now I setup page security in page.xml:

[jboss-user] [JBossWS] - Re: How to handle namespace generation?

2007-10-22 Thread [EMAIL PROTECTED]
*push* Nobody has any hint for me? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097386#4097386 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097386 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Destroying Context Variable

2007-10-22 Thread terryb
How can one destroy or reinitialise say seam session context variable. I've got values (extracted from database) in List, for a pulldown menu outjeced to session in @factory method. When I add/update record in db, I would like to refresh the session var. I manullay invoke the @factory methods a

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-22 Thread nickarls
try Contexts.removeFromAllContexts("organisationListAll"); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097388#4097388 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097388 ___

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-22 Thread terryb
magic, thanks Nick! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097390#4097390 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097390 ___ jboss-user mailing list jboss-user@

[jboss-user] [Messaging, JMS & JBossMQ] - Re: Using DeliveryMode.NON_PERSISTENT

2007-10-22 Thread ejb3workshop
You are absolutely correct. I was just surprised by the unexpected results. I would have thought that without persistence messages would be processed faster. However it seems that in my case it is irrelevent wether the message is persisted or not. It's like you said. The bottleneck must be elsew

[jboss-user] [JBoss Seam] - Re: seam security and Restful parameters

2007-10-22 Thread vas_opel
If you have any tips on the problem stated above please give me a hint because I couldn't find any possible solutions. Thanks in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097396#4097396 Reply to the post : http://www.jboss.com/index.html?module

[jboss-user] [JNDI/Naming/Network] - Re: java.lang.NoClassDefFoundError: java/net/SocketAddress

2007-10-22 Thread itsme
java.net.SocketAddress was introduced with 1.4 \sandor\ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097395#4097395 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097395 __

[jboss-user] [JBoss jBPM] - Re: smtp server configuration

2007-10-22 Thread dleerob
hmake sure you are editing the correct jbpm.cfg.xml file. Just a thought: if you are deploying the jbpm-console from the jbpm-console.war, try renaming the file to jbpm-console.zip, unzipping it, editing the file 'jbpm-console\WEB-INF\classes\jbpm.cfg.xml', and then re-zipping it with t

[jboss-user] [JNDI/Naming/Network] - Re: java.lang.NoClassDefFoundError: java/net/SocketAddress

2007-10-22 Thread bablookk
Thank You Sandor! We fixed the problem by upgrading jdk to higher version. ~Babloo View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097399#4097399 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097399 ___

[jboss-user] [JBossWS] - AOP with web service

2007-10-22 Thread abdujaparov
Hi I heve developed a web service for jbossws and I would apply an aspect to the methods of this web service. I have written the aspect code and the xml file for jbossaop and I have installed jboss aop on jboss4.2.1 following the jboss aop instruction (I've copied this directory jboss-aop-jdk50.

[jboss-user] [JBoss Portal] - Re: problem appearing with 2.6.2 but not with 2..6.1

2007-10-22 Thread [EMAIL PROTECTED]
On which application version of AS are you testing ? When you restart it works fine ? Please add as many details as you can, it would help us. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097401#4097401 Reply to the post : http://www.jboss.com/index.htm

[jboss-user] [JBoss AOP] - Jboss AOP with web services upon jboss

2007-10-22 Thread abdujaparov
Hi I heve developed a web service for jbossws and I would apply an aspect to the methods of this web service. I have written the aspect code and the xml file for jbossaop and I have installed jboss aop on jboss4.2.1 following the jboss aop instruction (I've copied this directory jboss-aop-jdk50.

[jboss-user] [JCA/JBoss] - Re: How to configure two ManagedFactorys in ra.xml of one re

2007-10-22 Thread liujw2001
Hello: I now answer this question by myself. If someone who meets the same problem, I hope it can help you. | | http://java.sun.com/xml/ns/j2ee"; | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; | version="1.5" | > |

[jboss-user] [JBoss jBPM] - Re: Missing project file in 3.2.2

2007-10-22 Thread dleerob
Here's a link to a thread which can help get the source using the web client: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=114954 I also couln't access CVS from work, but the thread mentioned above helped. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopi

[jboss-user] [JBoss jBPM] - Swimlane, actor-id, tasks

2007-10-22 Thread sdore
Hi everyone, i'm try to understand the logic that jbpm assigns tasks to user/group. In my application i defined 2 swimlanes : and i define 2 tasks... | | |

[jboss-user] [JBoss Seam] - Facelets variable injection?

2007-10-22 Thread paradigmza
Hello, I am busy building a custom facelets component that I will use like this | | | Where testList and anotherTestList are List objects that has been outjected by seam. Now on the component side of things I can use the variable "compvar" | . | . | . | | http://www.jbo

[jboss-user] [JBossWS] - Re: Deployed service statistics

2007-10-22 Thread oskar.carlstedt
Hi! Just take a look in the source code for the jbossws web application and you´re up and running. It's really simple when you find the correct source. Anyway, here is a code snippet ... | // get SPI provider and endpoint registry | SPIProvider spiProvider = SPIProviderResolver.getInstance(

[jboss-user] [JBoss Portal] - Re: problem appearing with 2.6.2 but not with 2..6.1

2007-10-22 Thread PMN
IIn both cases I run the bundle provided from download site with jdk 1.5.0.11 and Postgresql 8.2. I have to modify jbossjta-properties.xml to set the transaction timeout greater than default to prevent the portal to timeout when registering my 1700 or more portlet instances. I am just think

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-22 Thread jamesjmp
Where should Contexts.removeFromAllContexts be used? I´ve a clean seam-gened app. No scopes or annotations added up to now. I´ve added some data in the database. If I go the the list of a POJO and view the details they are showed. But if after that I want to create a new register of that POJO th

[jboss-user] [JBoss Portal] - Re: problem appearing with 2.6.2 but not with 2..6.1

2007-10-22 Thread [EMAIL PROTECTED]
Yes you have to increase the transaction timeout if you are deploying all your portal definition (-object.xml) at once. That's expected. It should be the same in 2.6.1, it was probably succeeding by chance. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=40974

[jboss-user] [JBoss jBPM] - Re: Swimlane, actor-id, tasks

2007-10-22 Thread kukeltje
'known issue' (currently as designed, so no 'bug' ... the console does currently not support this... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097422#4097422 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097422

[jboss-user] [JBoss jBPM] - Re: Swimlane, actor-id, tasks

2007-10-22 Thread kukeltje
vote for http://jira.jboss.com/jira/browse/JBPM-1022 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097423#4097423 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097423 ___ jb

[jboss-user] [JBoss Seam] - Re: RuntimeException using @Pattern

2007-10-22 Thread vlaugier
Hello, my experience I have also meet the invalidStateException with a non required email field The field is an email field with a @Email annotation in the entityBean and a s:validateAll in the form If I submit the form with an invalid email pattern I receive a nice jsf error message as expec

[jboss-user] [JBoss Seam] - Benelux JBoss User Group: Rotterdam, 2nd of November : Seam

2007-10-22 Thread pepite
Hi, I am not sure this is the right place to mention it. We will hold our second JBoss Benelux User Group meeting: Date: Friday, 2nd November 2007 Time: Arrive 1700-1800, presentations start 1800, finish 2000-2100. Location: Lunatech Research, Heemraadssingel 70, 3021 DD Rotterdam The Netherl

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: how to qualify java properties with jboss server instanc

2007-10-22 Thread jesso1607
"PeterJ" wrote : The jboss.server.config.url property is only available when running JBoss AS. It is not available in standalone Tomcat. | | I suggest you define your own system property for the location of the properties file and pass it in on the JVM command line. How do I do that for mul

[jboss-user] [Advanced Documentation] - Time of Jboss Server

2007-10-22 Thread snascimento
I have a Linux server with Debian installed and this is running a Jboss server. Although the time of Linux is correct, Jboss starts with one hour more. How can I configure my Jboss server to get the system date? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Hooking to JBoss Shutdown

2007-10-22 Thread arunkrishnank
Hello Dimitris, I made my business session bean depend on the MBean service which calls the session bean. So as you suggested before my session beans are undeployed stopService is executed. As long as this call returns the JBoss shutdown sequence will be suspended. Thanks for the help! Best

[jboss-user] [JBoss jBPM] - Re: smtp server configuration

2007-10-22 Thread vishal423
if i follow your guidelines, then jbpm-console application does not work. regarding correct jbpm.cfg.xml file, i am editing my current project's file for smtp settings. thanks & regards, vishal View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097427#4097427

[jboss-user] [JBoss Seam] - Re: RuntimeException using @Pattern

2007-10-22 Thread vlaugier
just to be able to watch the forum View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097434#4097434 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097434 ___ jboss-user mailing l

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Problems deploying JBoss ESB to AS

2007-10-22 Thread FabianW
Hi there I'm writing my master thesis about service-oriented architectures. As part of this thesis I want to implement a business-process using JBoss software, but I'm having some problems at configuring the whole environment. I want to use JBoss AS 4.2.1 + JBoss ESB 4.2. + ActiveBPEL + Red Hat

[jboss-user] [JBossWS] - Jboss Annotation: WebContext package and JAR location.

2007-10-22 Thread ptenn10
Hi All, Quick question: I would like to use WebContext for EJB3. However, it seems like the packaging has changed on this annotation. Under the examples for jbossws-1.2.1GA, I saw the annotation being imported as: org.jboss.ws.annotation.WebContext However, I could not find this anywhere in j

[jboss-user] [JBoss Portal] - Re: problem appearing with 2.6.2 but not with 2..6.1

2007-10-22 Thread PMN
It was my mistake, I was running 2.6.2 with a database initialized by 2.6.1. Starting over wit ha new fresh one works. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097438#4097438 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[jboss-user] [Installation, Configuration & DEPLOYMENT] - deploy ActiveBPEL to JBoss AS?

2007-10-22 Thread FabianW
I want to deploy ActiveBPEL to my JBoss AS. The ActiveBPEL installation script needs the CATALINA_HOME environment variable to run. Is Tomcat integrated in JBoss AS? If yes, which path do I have to set, to get this working? Or do i need to install Tomcat first? View the original post : http://

[jboss-user] [EJB/JBoss] - org.jboss.tm.JBossTransactionRolledbackException

2007-10-22 Thread typo_user
Good morning, I have an application deployed in Jboss, the access to postgres DB is succeful. The requests GET are succeful again. But when I tray to execute one UPDATE Request (ex: update the lastname of an user), I have this message : /**/

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Killing problem in deployment!!!

2007-10-22 Thread kamal.soni
Hi I an facing a problem in deploying a Tomcat 4 project in JBoss 4.0. This is working Perfectly fine with Tomcat .To deploy in JBOSS4 after creating a war file I Placed it in D:\jboss-4.0.2\server\default\deploy. But when i try to access the projevt by giving url http://localhost:8080/MyProj

[jboss-user] [JBossWS] - Re: org.jboss.ws.WSException: Cannot find java method

2007-10-22 Thread ZazzaZ
I just modified my WSDL like this | | | http://j2ee.netbeans.org/wsdl/ControlloAccesso"; | xmlns="http://schemas.xmlsoap.org/wsdl/"; | xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"; | xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; | xmlns:xsd="http://www.w3.org

[jboss-user] [JBoss AOP] - Re: Please add missing artifactories to the JBoss maven repo

2007-10-22 Thread afloom
Bump. Any likelyhood of having this fixed soon? The pom should be ready to go so it should be a quick task. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097447#4097447 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4

[jboss-user] [JBoss Portal] - Re: problem appearing with 2.6.2 but not with 2..6.1

2007-10-22 Thread [EMAIL PROTECTED]
It should work though, we took care of not changing the schema. If by chance you figure out what went wrong i would be interested to hear about it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097448#4097448 Reply to the post : http://www.jboss.com/index.h

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: away from console setup for jmx-console?

2007-10-22 Thread ztaps
The solution was the setting in RedHat SELinux. I needed to check the "WWW (HTTP)" option on the Security Level Configuration screen in order to get JBoss to run from desk. Nothing wrong with port 8080 being opened. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtop

[jboss-user] [Security & JAAS/JBoss] - ActiveDirectory for login, DB for roles-query?

2007-10-22 Thread soema3
Hi everybody, thas my big problem: The users are saved in the ActiveDirectory on a central server. I can login with JBoss with the login-config.xml: | | | java:/DefaultDS | com.sun.jndi.ldap.LdapCtxFactory |

[jboss-user] [JNDI/Naming/Network] - automatically reconnecting to LDAP-server using MBean Extern

2007-10-22 Thread axismundi
We get an exception after not using the JNDI-connection for a few minutes: javax.naming.CommunicationException: connection closed [Root exception is java.io.IOException: connection closed]; | How can I instruct the MBean to reconnect automatically? | | external/ldap/swm |

[jboss-user] [JBoss jBPM] - Re: Bug in Mail.java

2007-10-22 Thread fady.matar
Very true. The attribute 'to' does not resolve EL expressions, use the attribute 'actor' instead. The documentation needs to be updated View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097458#4097458 Reply to the post : http://www.jboss.com/index.html?module=

[jboss-user] [Beginners Corner] - How is shutdown.sh related to jmx-console?

2007-10-22 Thread konstandinos
Hi I've figured out that in order to call shutdown.sh correctly from my /etc/init.d/jboss script (ie: when I type /etc/init.d/jboss stop) I need to use the arguments: -S -u username -p password ... and that this username/password pair is defined in JBOSS_HOME/server/default/conf/properties/jmx

[jboss-user] [JBoss Seam] - Re: Question - Can't save outjected DataModelSelection until

2007-10-22 Thread jfrankman
Here is the ClientTransmittalVO class: @Entity | | @NamedQueries | ( { | @NamedQuery(name = "findClientTransmittalByOfficeId", | query = "select clientTransmittal from ClientTransmittalVO clientTransmittal " + | "jo

[jboss-user] [JBoss Seam] - custom servlet independent from Seam

2007-10-22 Thread axismundi
We need a custom servlet that is completely independent from the application. The problem ist that the Seam-filter is configured to intervene in every request: | | Seam Filter | /* | What is best practise to make the Seam-filter ignoring a certain pattern? Vie

[jboss-user] [JBossWS] - JBoss and Apache Axis compatibility

2007-10-22 Thread sarunb4u
I'm in the midst of integrating two components, one runs in JBoss and other components exposes some web services deployed in Axis. When i integrate them, there will be a communication between component deployed in JBOSS and Web services exposed via Axis. If i understand correctly, AXIS by defau

[jboss-user] [JBoss Messaging] - Failed to download and/or install client side AOP stack

2007-10-22 Thread monk2009
Hello All, Some one must've hit this problem - seems like configuration issue. Here it goes. OS: WinXP Java: 1.6 JBoss AS: 4.2.1 GA JBM: 1.4.0.GA When JMS over HTTPS is used locally (Clent and the server reside on the same machine) it works. When client is on another machine it fails and get t

[jboss-user] [JBoss Seam] - doesn't work in pages.xml

2007-10-22 Thread mnrz
Hi though, I put the following tag in pages.xml but when this exception is thrown, the specified message won't be displayed and an unexpected page which is from the browser, is displayed instead. | | | #{messages['org.jboss.seam.NotAuthoriz

[jboss-user] [JBoss Seam] - Exception:Transaction is not active

2007-10-22 Thread mnrz
Hello I have a form in which some information will be saved or retrieved from database. sometimes, when I am going to save new information, an exception from database will prevent from inserting data, for example, in my case, a duplicate entry exception is thrown the problem is after this exce

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Configure Jboss on CentOS 5.0 (Linux) with MySQL.

2007-10-22 Thread sfone_vn2007
I use CentOS 5.0. (Linux). I can access My Database on MySQL by Webmin. And Jboss can run with default configuration. but Jboss can't connect DB (mysql). Please guide me configure this problem! Thanks you so much! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Problems deploying JBoss ESB to AS

2007-10-22 Thread [EMAIL PROTECTED]
Better post to the EJB Users Forums: http://www.jboss.com/index.html?module=bb&op=viewforum&f=246 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097473#4097473 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097473 _

[jboss-user] [JBossWS] - Newbie with JbossWS

2007-10-22 Thread AnisBM
Hi all, Do the WSTools generate web services conform to Seam 2.0 web services ? PS : I'm using those integrated in JBoss 4.2.1. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097476#4097476 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[jboss-user] [JBoss Seam] - Re: Problem with @Asynchronous

2007-10-22 Thread damianharvey
It's due to the fact that since JBoss 4.2 (or so) you can't have more than one local-tx datasource. You have a few options: 1. Use the default Seam dispatcher (no persistent timers) 2. Change your datasources to have at least one as xa 3. Change the database policy for the ejb timer to be non-pers

[jboss-user] [JBoss jBPM] - Re: A tutorial to deploy a Netbeans created BPEL process und

2007-10-22 Thread ZazzaZ
I forgot one important thing. In webservices.xml substitute the param-value with the name of the partner-link on which you perform the receive name of the partner link served by this port partnerLinkHandle partnerlinkname View the

[jboss-user] [JBoss jBPM] - Communication between JBoss jBPM application and a web appli

2007-10-22 Thread kamleshkr
Hi, I have to trigger my jBPM application from a web application deployed in JBoss. In other words if i want to invoke my jBPM application from a JSP or Servlet and vice versa, what steps should i follow? Thanks Kamlesh View the original post : http://www.jboss.com/index.html?module=bb&op=v

[jboss-user] [JBoss jBPM] - Re: jBPM-BPEL as a JBI component in a JBI ESB environment ?

2007-10-22 Thread y(oYo)
I'm trying to integrate BPEL as a service in the Petals ESB, which is JBI compliant. I really dont know how and where to start because I had never developped any ESB component before... Any help or advice would be much appreciated ! View the original post : http://www.jboss.com/index.html?modul

[jboss-user] [JBoss Seam] - Using Seam and Groovy together question

2007-10-22 Thread samdoyle
So I have just started to look at Groovy to see what the hype is about. It is interesting to see what appears to be pretty much a dynamically typed version of Java. Why this is happening alone has me wondering. I have worked with some large scale projects awhile ago that were done in Perl and T

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-22 Thread terryb
james, I call it in @override persist, update, remove methods in MyEntityHome class. after success of corresponding operation. Since in my case I wanted data lists to be rebuilt from database at next use. I guess in your case, you could have bean action method which gets invoked by your New Rec

[jboss-user] [JBoss Seam] - Re: doesn't work in pages.xml

2007-10-22 Thread IGx89
That's unfortunately a known bug (see http://www.jboss.com/index.html?module=bb&op=viewtopic&t=105236&start=0), though I don't know if anyone's created a JIRA report yet. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097487#4097487 Reply to the post : http

[jboss-user] [Beginners Corner] - web.xml vs jboss-web.xml ?

2007-10-22 Thread konstandinos
Hi What is the difference between web.xml and jboss-web.xml ? I have this webapp that uses... | | BASIC | REALM-NAME | | ... and I don't see why it needs to have specified when I've already set the in jboss-web.xml like so: | | java:/jaas/REALM-NAME |

[jboss-user] [JBoss Seam] - Class Loading problem using jrockit

2007-10-22 Thread maeste
I'm experiencing class loading problem deploying a seam 1.2.1/richfaces 3.1.2 apps on jrockit VM (jboss 4.0.5). All works perfectly using same environment with sun jdk 1.5 (I need jrockit because we have a lot of PermGenSpace out of memmory with sun's). There is the stack trace: javax.faces.Fac

[jboss-user] [JBoss Seam] - JBoss Seam in production?

2007-10-22 Thread burtoncarl
Hi all, I've got an enterprise project coming along shortly and I believe that JBoss Seam would be an excellent framework to build it on. What I'm not seeing are any testimonials or success stories from enterprises who are using Seam in large scale production environments. Is anyone using Sea

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Regarding Connetion pooling

2007-10-22 Thread Chinni
In jboss-4.2.1 I am able to execute a Stored Procedure by taking connection normally like this, Connection con = null; Class.forName("com.inet.tds.TdsDriver"); con = DriverManager.getConnection( "jdbc:inetdae:172.16.72.46:1433?database=Main?, "sa", ??);

[jboss-user] [JBoss jBPM] - Re: Communication between JBoss jBPM application and a web a

2007-10-22 Thread kukeltje
the same steps you would do in just using the api, or the ones done in the webconsole or in the struts example in the wiki: Get a reference to a JbpmContext and perform all operations on that api. Look at the examples/source/testcases a little and all will become clear ;-) View the original pos

  1   2   3   >