[jboss-user] [Clustering/JBoss] - how to replicate seesion

2008-04-01 Thread rajanikanta
hello i am using Jboss4.2.2GA application server. i already cluster the 2 server i have . 02:09:18,069 INFO [DefaultPartition] Dead members: 0 ([]) 02:09:18,070 INFO [DefaultPartition] New Members : 1 ([192.127.44.143:1099]) 02:09:18,070 INFO [DefaultPartition] All Members : 2

[jboss-user] [JBoss Portal] - Issue with doView() in case of multiple portlets

2008-04-01 Thread pshaktig
Hi all, I have a portal which contains 6-7 portlets. Each portlet, on some action redirects (requestdispatcher.include(req,res)) control to a jsp page. Each portlet has with it an associated jsp. The jsp page for each protlet calls a servlet whicd does some processing and sends back the

[jboss-user] [JBoss jBPM] - how to get the actorid of the starttask in home.jsp..JBPM-3.

2008-04-01 Thread mr.sathya
Hi All... In my requirement i want to display the start task actorid in my home.jsp.. could u pls provide me the code for that... | h:dataTable value=#{homeBean.latestProcessDefinitions} var=processDefinition headerClass=tableheader columnClasses=tablecell | h:column | f:facet

[jboss-user] [JBoss jBPM] - fileupload component in task.jsp page

2008-04-01 Thread mr.sathya
Hi all... i need to implement file upload component in my task.jsp.. i am using jbpm-3.1.4 and jboss-4.0.4.. pls provide me the suggestions and if possible with proper code.. i am seeking ur help... its very urgent requirement.. hope u will provide me code ... thanks regards, sathya

[jboss-user] [JBoss Portal] - Re: IPC with Spring portlet

2008-04-01 Thread skeletonkey
Can anybody help me? I's very urgent. Or someone can provide me some documents? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140339#4140339 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140339

[jboss-user] [JBoss Portal] - Re: Issue with doView() in case of multiple portlets

2008-04-01 Thread PMN
I believe that you let your portlets to choose what layout to use to render the final page with content of all pieces. JBP team claimed it is possible but never told how to ... It looks like 2.7, based on JSR 286, will fix most issues. In the meantime, you could perhaps rethink your work and

[jboss-user] [JBoss jBPM] - Start process from code

2008-04-01 Thread jagr
Hi. Somebody can tell me how can I start process from code, not from jbpm-console?, or where can I find tutorial or examples? I have process definition deployed and running on server. I have a webservice that receive variables, and I want to start process when ws is executed. Thanks. View

[jboss-user] [JBossWS] - Re: Error in generating WSDL

2008-04-01 Thread r12345_2003
Thanks for the reply. The following is the code for the POJO: | | package test.services; | | import javax.jws.WebMethod; | import javax.jws.WebParam; | import javax.jws.WebService; | import javax.jws.soap.SOAPBinding; | | @WebService | public class HelloService | { |

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Image not getting displayed in jsp

2008-04-01 Thread erasmomarciano
if the your is structured in this way yourweb images WEB-INF jsp try img SRC=/images/1234.gif WIDTH=505px HEIGHT=307px You use only Jboss? or also Apache? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140347#4140347 Reply

[jboss-user] [JBoss Messaging] - Re: question with rollback/redelivery semantics

2008-04-01 Thread timfox
If a consumer is closed (is that what you mean by destroyed?), before the session is acknowledged, then the messages won't be visible to any other session until the session commits/rolls back. This is normal JMS operation. Can you be more specific about a) What you are doing b) What you

[jboss-user] [JBoss Messaging] - Re: OutOfMemory exception in JMS server

2008-04-01 Thread timfox
FullSize is the maximum number of messages to hold in memory for that queue at any one time PageSize is the number of messages to to load from disk in one go So yes, pageSize must be less than downCacheSize View the original post :

[jboss-user] [JBoss Messaging] - Re: Messaging gets hung up getting sockey

2008-04-01 Thread timfox
Stack trace please? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140352#4140352 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140352 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - How do I know all the transitions done by one process instan

2008-04-01 Thread francis1970
Hi all ! I need to show in my web application all the transitions done by the Token of my process instance (So that I know which nodes are invoked and which aren't). In the JBPM_TRANSITION table there's some information about: FROM (Node) TO (Node) PROCESS_DEFINITION but I need to keep

[jboss-user] [JBoss Portal] - Re: Subject/Principal is not associated with (ajax)-request

2008-04-01 Thread CarstenRudat
Hi Julien, thanks for you posting. I thought, that a SSO should do it (I tried JOSSO - today I think about OpenSSO...). Anyway, I have in server/all/jboss-web.deployer/server.xml a . I think that this should do it?! Carsten View the original post :

[jboss-user] [EJB 3.0] - injection SFSB to SLSB

2008-04-01 Thread mindflyer
I have SLSB (TdwsPrinter) and SFSB (AdminPrintTask). TdwsPrinter uses AdminPrintTask (it invokes methods and then @Remove method). Sometimes they work correctly, sometimes I see error such as Could not find SFSB jboss.j2ee:service=EJB3,name=AdminPrintTask; key:

[jboss-user] [JBoss Messaging] - Re: OutOfMemory exception in JMS server

2008-04-01 Thread pschuebl
I had problems with OutOfMemory as well and the settings for Queues that receive potentially huge messages I use are attribute name=FullSize20/attribute | attribute name=PageSize5/attribute | attribute name=DownCacheSize5/attribute This works but you have to be aware of that a QueueBrowser

[jboss-user] [JBoss jBPM] - Re: Start process from code

2008-04-01 Thread jagr
I've tried whit this code and runs ok | ProcessDefinition processDefinition = ProcessDefinition.parseXmlString( | process-definition xmlns='urn:jbpm.org:jpdl-3.2' name='TestStart' + | | [.PROCESS DEFINITION...] | | /process-definition | ); |

[jboss-user] [JBossWS] - Re: Steps for implementing WS-Security in JBoss using Userna

2008-04-01 Thread bensonfungjava
Hi, I tried it before, but it doesn't work. 1. jboss-wsse-client.xml and jboss-wsse-server.xml must not be an empty files. 2. The client works fine, i.e. UserNameToken can be created in SOAP header successfully. However, server side cannot capture the UserNameToken from the soap header and

[jboss-user] [Management, JMX/JBoss] - Re: How to connect to a ServiceBean from a servlet on a diff

2008-04-01 Thread vijayabhaskarv
Iam also facing same problem: in my case, the MBean is doing SFTP. We are able to use it from JBoss JMX console. But while invoking through application, it throwing Illegal argument exception saying operation(method) not found. Any help is appreciated. View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JBoss JMS Message persistance with Ingres problems

2008-04-01 Thread Rawkaw
Hi, I am also facing problem while connecting Jboss with Ingress DB .The error message [org.jboss.ejb.txtimer.GeneralPurposeDatabasePersistencePlugin] Cannot create timer table java.lang.ArrayIndexOutOfBoundsException: 2 View the original post :

[jboss-user] [EJB 3.0] - Use of timer service in JMS context

2008-04-01 Thread tpawankumar
Hi All, I am using Timer Service in jboss 4.2.1 GA for sending notification messages every 60 secs.I want to notify this message to JMS server. I have used the jboss-service.xml with following code | server | | | mbean code=org.jboss.monitor.services.TimerService |

[jboss-user] [JBoss Portal] - Problem with JSF- Component IDs and JavaScript Element-Id

2008-04-01 Thread ameo
Hello, I have a JSF- Portlet with Richfaces, newest versions. Here is my Problem. I have three form tags on a jsf page. | form id=formA ... | form id=formB ... | Viewing the page a on browser the forms have the id | form

[jboss-user] [JBoss Portal] - Re: Performance with large CMS repository / cache preloading

2008-04-01 Thread Antoine_h
I am also interested in how to turn it off. or tune it. I will look also if there is something about that in the documentation... may be write a wiki about the cache management in the cms ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140373#4140373 Reply

[jboss-user] [JBoss Portal] - Re: InterPortlet Communication: one to many portlet communic

2008-04-01 Thread Antoine_h
here is the base thing about ipc : http://mus.purplecloud.net/portlets/thesis/ipc.php for what you want to do, I guess you'll have to manage something out of the JSR-168 ... may be with IPC by message (like in the library proposed on this site), you can have what you want. the only trouble is

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: compiling module connector

2008-04-01 Thread sharkfin
Hi Peter, thanx for the reply. I tried to compile jboss with jdk-6u5 (I think is the latest jdk, , no?) but i get the same output.. am not very familiar with java releases and I find them awfully confusing. Could you please tell me which jdk file to download or better still give me a link.

[jboss-user] [JBoss Portal] - Re: Wrong tx on thread in UserModule

2008-04-01 Thread HerQpapa
Thanks for your help! the first solution with the context lookup is working just fine! the latter solution does not work and it throws a NullPointerException in both use cases (for existing and non existing user). I only tried it in portal 2.6.2. | ex.getMessage() : null |

[jboss-user] [JBoss Portal] - Re: IPC with Spring portlet

2008-04-01 Thread Antoine_h
same as this post : http://jboss.org/index.html?module=bbop=viewtopict=132724 here is the base thing about ipc : http://mus.purplecloud.net/portlets/thesis/ipc.php you can integrate this with spring nothing special to do... spring is working aside of the IPC. what could be great is use some

[jboss-user] [Security JAAS/JBoss] - How to configure JBoss AS to use SSL (https)

2008-04-01 Thread pete007
Hello, I have two seam applications (EARs) and I want to secure only one of them to use the https-protocol. My knowledge of this is very small, so it would be nice, if someone can give me some hints. What type of certificate/key/whatever do I need for this? How can I generate it? Where do I

[jboss-user] [JBoss Portal] - milestone of realization the portral with jboss portal

2008-04-01 Thread khadijbal
Hello I have just begun a project for the realization of a portal with JBOSS Portal, I would like to know how we make to create and deploy a JBOSS Portal project. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140431#4140431 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Automatic deploy with MainDeployer

2008-04-01 Thread jefec
Hi all, I'm deploying my application from script, which is using MainDeployer. All works properly, but deploy is not permanent. After JBoss restart I must deploy application again. It is bug, feature of wrong setting or usage. Many thanks. Jefec View the original post :

[jboss-user] [JBoss Portal] - Re: Subject/Principal is not associated with (ajax)-request

2008-04-01 Thread [EMAIL PROTECTED]
Read this : http://www.jboss.org/wiki/Wiki.jsp?page=SingleSignOn View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140427#4140427 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140427

[jboss-user] [JBoss jBPM] - Re: Start process from code

2008-04-01 Thread jagr
I've tried whit this code and runs ok | ProcessDefinition processDefinition = ProcessDefinition.parseXmlString( | process-definition xmlns='urn:jbpm.org:jpdl-3.2' name='TestStart' + | | [.PROCESS DEFINITION...] | | /process-definition | ); |

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: deply from console

2008-04-01 Thread lafbarbosa
Hi people, I've being asking this in the thread http://www.jboss.com/index.html?module=bbop=viewtopicp=4139741#4139741, but I didn't could find an example in the Internet. So, what I need is, put a Servlet, with another auxiliar classes, into a .war archive in JBoss AS. So, I'll put a JSP

[jboss-user] [JBossWS] - JBossWS 3.0.1 Released

2008-04-01 Thread [EMAIL PROTECTED]
I'm happy to announce the release of JBossWS 3.0.1 GA that includes Native 2.0.4 (fully certified JAX-WS web services implementation), Metro 1.0.1 and CXF 1.0.1 Native runs on jboss-5.0.0.Beta4, jboss-4.2.2 and jboss-4.2.1 Both Metro and CXF run on jboss-5.0.0.Beta4 and jboss-4.2.2 JAXWS

[jboss-user] [JBoss Portal] - Re: Problem with JSF- Component IDs and JavaScript Element-I

2008-04-01 Thread wesleyhales
oops, that should be: | | document.getElementsByName('whatever')[0] | this is a collection which you should probably iterate to get the name you need. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140460#4140460 Reply to the post :

[jboss-user] [Beginners Corner] - Starting problem

2008-04-01 Thread jk7
Hi all, I'm a spanish newbie so, sorry for my english and inexperience. I've installed Jboss 4.2.2.GA (jboss-4.2.2.GA.zip) I've installed jdk1.6.0_05. All of that is under CentOS 5. When I Start JBoss, server runs ok (i think) but i cant reach it from other computer. I see Jboss in

[jboss-user] [Management, JMX/JBoss] - Re: Upload and Download to/from JBoss AS through JMX

2008-04-01 Thread lafbarbosa
Hi people, I've been reading the JBossConfigEditor's source code and I am in doubt about something. As you know I've been thought about a way: - to get (download) .esb archives from JBossESB server/default/deploy directory to store it in my web application; - to put (upload) .esb archives

[jboss-user] [JBossWS] - Re: javaEE5 JAX-WS web services - JBOSS 4.2.2

2008-04-01 Thread sajhak
yes , im using JDK 6 . does JBOSS not support that ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140473#4140473 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140473 ___

[jboss-user] [JBoss Portal] - Re: Problem with JSF- Component IDs and JavaScript Element-I

2008-04-01 Thread wesleyhales
give your element a name | form id= name=whatever | | ... | document.getElementByName('whatever') | ... | portal namespace and jsf generated id has to happen. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140444#4140444 Reply to the post :

[jboss-user] [JBossWS] - Re: JBossWS 3.0.1 Released

2008-04-01 Thread [EMAIL PROTECTED]
What's new in jbossws-3.0.1-native-2.0.4.GA -- Feature Request * [JBWS-925] - Provide initial support for FastInfoset * [JBWS-1124] - Scoped class loading domains for WS endpoints * [JBWS-1165] - Provide initial support JSON data binding *

[jboss-user] [JBoss Portal] - Re: Problem with JSF- Component IDs and JavaScript Element-I

2008-04-01 Thread ameo
Hi, thanks for reply. problem...the JSF- Component h:form have not a name-attribut. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140468#4140468 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140468

[jboss-user] [EJB 3.0] - Re: How to start a session bean as soon as it is deployed

2008-04-01 Thread tpawankumar
Hi oskar/wolfc I have tried both options suggested by you but it is not working. Following is the code of my stateless bean | @Service | @Stateless | @Remote(ConfigService.class) | @Local(ConfigService.class) | public class ConfigServiceBean implements ConfigService { | | |

[jboss-user] [JBoss Portal] - Re: Problem with JSF- Component IDs and JavaScript Element-I

2008-04-01 Thread wesleyhales
Ok, so I was wrong again. I forgot JSF namespaces the name attribute also. You can wrap your form in a div or span and access the child, or you can use the prototype.js library and they have the following: | document.getElementsByClassName('whatever')[0] | then you would have: | form

[jboss-user] [JBoss Cache: Core Edition] - Re: A basic question about concurrency

2008-04-01 Thread fatefree
Also I should mention that this cache is currently being replicated across two machines, possibly more in the future View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140483#4140483 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Problem with JSF- Component IDs and JavaScript Element-I

2008-04-01 Thread wesleyhales
yep, see my last post View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140488#4140488 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140488 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: How do I know all the transitions done by one process in

2008-04-01 Thread kukeltje
look at the jbpm logging which is also in the database. That contains all info you need View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140481#4140481 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140481

[jboss-user] [EJB 3.0] - Re: How to start a session bean as soon as it is deployed

2008-04-01 Thread oskar.carlstedt
Hi! When annotating with the service you have four life cycle methods that you can implement. *create *start *stop *destroy Try call test from start and you'll se that it will be called. Cheers /Oskar View the original post :

[jboss-user] [JBoss Cache: Core Edition] - A basic question about concurrency

2008-04-01 Thread fatefree
Our app is using the default level of concurreny (REPEATABLE_READ) but we are experiencing lock acquisition timeouts, and I believe this level of concurrency is higher than our app requires. Our app does not update or modify any element at all once it is put in cache, it only puts an element

[jboss-user] [EJB 3.0] - Re: How to start a session bean as soon as it is deployed

2008-04-01 Thread oskar.carlstedt
Here is a short eaxample: | @Service | @Management(MyServiceManagement.class) | @Depends(jboss.ws:service=DeployerInterceptorEJB3) | public class MyService implements MyServiceManagement { | |private Timer timer = null; | |@Resource |private EJBContext

[jboss-user] [EJB 3.0] - Using @Resource causes NPE at org.jboss.ejb3.JndiUtil.lookup

2008-04-01 Thread gsendt
Hello, In a stateless EJB im using: | @Resource(name = mail/localMail, mappedName = Mail, shareable = true, type = Session.class) | private Session m_mailSession; | Trying to connect the Bean from a Client I got an NullPointerException. Im using JBoss-4.2.2.GA default installation

[jboss-user] [Clustering/JBoss] - Re: How do servlets communicate with session beans across cl

2008-04-01 Thread yugantshah
Hello, Thanks for reply. I have done the look up programmatically as said below. The code works. I have one more issue, while testing one scenario: The current configuration is: I am having Two clusters clusterA and clusterB clusterA is having the war file and this is deployed one separate

[jboss-user] [Installation, Configuration DEPLOYMENT] - schedulable job blocks other schedulable jobs

2008-04-01 Thread skymic
Hi, I am running a JBoss V4.0.5 GA cluster on a LINUX platform. I have two schedulable jobs. The configuration in scheduler-service.xml is as follows: mbean code=org.jboss.varia.scheduler.Scheduler name=ch.skyguide.aim.schedulable:service=ISUPAgentProxy | attribute

[jboss-user] [JBoss Messaging] - Re: question with rollback/redelivery semantics

2008-04-01 Thread timfox
If you have consumed messages via a message consumer and then roll back, the same session will receive the same stream of messages. This behaviour is as specified in the JMS spec. (1.1, sectons 4.4.7 and 4.4.11) If you have the same message consumer(s) open on that session, then it will

[jboss-user] [EJB 3.0] - WebApplication fails to lookup SessionBean

2008-04-01 Thread [EMAIL PROTECTED]
Hi, I have an ear application that runs under jboss 4.2.0.GA version. I have implemented EJB3 session bean. The AdSetSchedule Session Bean is bound as shown below in jndi view +- DPDS-Enterprise (class: org.jnp.interfaces.NamingContext) | | +- AdSetScheduleBean (class:

[jboss-user] [JBoss Messaging] - Re: ClassLoader issue with user classes and JBM 1.0.1SP4

2008-04-01 Thread vishal423
Am i missing something in Jboss Messaging configuration? Or it has something to do with my listener configured inside web application? When i first send same object message using jsp/servlet, everything works fine. After this subsequent sending and receiving from plain java class works. But

[jboss-user] [JBoss jBPM] - No logging to JBPM_LOG when process instance ends

2008-04-01 Thread jbarrez
I know that in order to flush the logs to the JBPM_LOG table, one has to call the jbpmContext.save(processInstance) method (as described in the user guide) However, I found it strange that no call to this method is made when the processInstance is ended. More specifically, when one forgets to

[jboss-user] [JBoss Messaging] - Re: question with rollback/redelivery semantics

2008-04-01 Thread rlucente
I am not using MDBs. Also, Ray Ploski, RedHat/JBoss, was at my company location back in September for a week to review the implementation and help with performance optimization. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140522#4140522 Reply to the post :

[jboss-user] [JBossWS] - Re: JBossWS 3.0.1 Released

2008-04-01 Thread cavani
Good work JBossWS Team! Thanks, View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140509#4140509 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140509 ___ jboss-user mailing list

[jboss-user] [Javassist user questions] - Re: adding annotations

2008-04-01 Thread cat4hire
After a lot I found that the following is the code that works for me: | ClassFile classFile = newProxyClass.getClassFile(); | ConstPool constantPool = classFile.getConstPool(); | AnnotationsAttribute attr = new AnnotationsAttribute(constantPool,

[jboss-user] [JBoss Messaging] - Client Connect Fails with

2008-04-01 Thread jhd
My JMS client fails to connect with the following stack trace: [EMAIL PROTECTED] Apr 2008 08:53:33,802] [org.twia.jms.JMSProxy] : connectToJMS() - Exception occured: org.jboss.jms.exception.MessagingJMSException: Failed to invoke at

[jboss-user] [EJB 3.0] - Re: WebApplication fails to lookup SessionBean

2008-04-01 Thread jaikiran
Probably you have the local/remote interfaces packaged in more than one place (may be in the war and also in a jar)? See these for more details: http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassCastExceptions (that link mentions how to use the jmx-console to debug this)

[jboss-user] [JBoss Messaging] - Re: Client Connect Fails with

2008-04-01 Thread jmesnil
jmesnil wrote : | It seems that our configuration for jboss-remoting is broken. | I meant *your* configuration. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140562#4140562 Reply to the post :

[jboss-user] [EJB 3.0] - Re: Using @Resource causes NPE at org.jboss.ejb3.JndiUtil.lo

2008-04-01 Thread wolfc
This is a bug in AS 4.2.2 where if it can't find the name in JNDI and there is no cluster active it will give a NPE instead of NameNotFoundException. Fixed in AS 5.0. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140558#4140558 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: question with rollback/redelivery semantics

2008-04-01 Thread rlucente
I read the JMS spec but I didn't really see the description of a session/message affinity at rollback. Regardless, sessions are not thread-safe so using a thread-pool is an issue because it requires I have multiple sessions, only one of which can see its recently rolled back messages. We

[jboss-user] [JBoss Messaging] - Re: Client Connect Fails with

2008-04-01 Thread jmesnil
jhd wrote : My JMS client fails to connect with the following stack trace: | | ... | Caused by: java.lang.Exception: Error setting up client lease | at org.jboss.remoting.MicroRemoteClientInvoker.establishLease(MicroRemoteClientInvoker.java:405) | at

[jboss-user] [JBossWS] - Charset encoding problem from Linux to Windows with Dispatch

2008-04-01 Thread cavani
Hi, I am using JBossWS Native for client code implementation in a set of Eclipse plugins. At first, I used WSDL2Java approach to generate client code - this works fine with WS-Security and all. But now, I need take advantage of BIRT's WS/XML ODA driver (that uses something like XPath to map

[jboss-user] [JBossWS] - Re: WS-Security Usernametoken in a war file.

2008-04-01 Thread PeterJ
They should be the same, with the slight difference that in a web app the configuration files and keystores should appear in WEB-INF rather than in META-INF. Please post the locations of the relevant files inside both the EJB package and the web app package. Also post the contents of the

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Automatic deploy with MainDeployer

2008-04-01 Thread jaikiran
From what i remember, the MainDeployer deploys the application in %JBOSS_HOME%/server/ serverName/tmp folder. This tmp folder gets cleaned up on restarts. The last time, when i was playing around with a similar requirement on a sample application, i had deployed my own service using a

[jboss-user] [JBossWS] - Re: Error in generating WSDL

2008-04-01 Thread PeterJ
Try changing the url-pattern in to web.xml file: url-pattern/hello/url-pattern View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140580#4140580 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140580

[jboss-user] [EJB 3.0] - Re: ClassCastException with ActiveMQ RA

2008-04-01 Thread dbuchwal
I'm having the same problem using WebSphere MQ. Any solutions yet? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140581#4140581 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140581

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Automatic deploy with MainDeployer

2008-04-01 Thread jaikiran
jaikiran wrote : | All this piece of code does is it copies the application to the deploy folder of JBoss so that the server picks it up for deployment. | On second thoughts, this is tricky. If the copy does not complete before the next scan cycle of the deployment scanner (probably

[jboss-user] [JBoss Messaging] - Re: question with rollback/redelivery semantics

2008-04-01 Thread timfox
rlucente wrote : I read the JMS spec but I didn't really see the description of a session/message affinity at rollback. | 4.4.7: ... If a transaction rollback is done, its produced messages are destroyed and its consumed messages are automatically recovered. For more information on

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Potential problems with rewriting MVEL - DSL

2008-04-01 Thread PeterJ
OK, I'll bite. What is MVEL and what is DSL? And what do they have to do with JBossAS? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140564#4140564 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140564

[jboss-user] [JBoss Getting Started Documentation] - Re: Can't build using ant

2008-04-01 Thread leonidMir
Thx. Couldn't find the files in the svn path you gave (The path is incorrect), honestly I got lost there :). Can you please specify a correct path to these files ? Also I tried to compile in the same way (using the build.bat file) jBoss5_beta4 and got the same errors Very strange. Someone ?

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Silent application server crash with jboss-4.0.3SP1

2008-04-01 Thread jaikiran
anonymous wrote : Without any manual intervention (like stop being called), jboss starts undeploying all packages. | How do you detect this undeployment? Do you see anything in the logs related to undeployment? And how do you start JBoss? View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: deply from console

2008-04-01 Thread PeterJ
To access an MBean. see http://wiki.jboss.org/wiki/Wiki.jsp?page=HowDoIGetRemoteAccessToMyMBean View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140592#4140592 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140592

[jboss-user] [Beginners Corner] - Re: Starting problem

2008-04-01 Thread PeterJ
Have you opened port 8080 in your firewall? I have the following ports open: 8080, 1099, 1098, , 4445 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140599#4140599 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140599

[jboss-user] [Beginners Corner] - Re: Cannot instantiate class: org.jnp.interfaces.NamingCont

2008-04-01 Thread jaikiran
anonymous wrote : Yet, in all cases I am getting the deployment error: | *** DEPLOYMENTS IN ERROR: Name - Error | | vfsfile:/C:/jboss/server/default/deploy/simple_session.ear - java.io.IOException: invalid manifest format | -- | more specifically:

[jboss-user] [Beginners Corner] - Re: JBoss is caching JSPs and not detecting changes

2008-04-01 Thread jaikiran
scotthendo wrote : I am using eclipse to edit all my JSPs and Java files. | Scott, i don't use Eclipse (or any other IDE) for my applications on JBoss. Sorry, i wont be of much help here. Maybe someone familiar with Eclipse integration with JBoss might be able to help. View the original

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JBoss JMS Message persistance with Ingres problems

2008-04-01 Thread jaikiran
Rawkaw, Posting to a 2 year old thread without providing much information may not get you any replies. You will have to provide more details about your application, the JBoss server, the Java server and the entire exception stacktrace. P.S: While posting the logs or code or xml content,

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: compiling module connector

2008-04-01 Thread PeterJ
I repeat: you need JDK 1.5 to compile 4.2.2. http://java.sun.com/javase/downloads/index_jdk5.jsp, download JDK 5.0 Update 15 Why are you compiling the source? Why not just download the binary? With the binary, installation is simple: 1) Download binary zip file to your hard drive 2) Unzip the

[jboss-user] [JBoss Messaging] - Re: Client Connect Fails with

2008-04-01 Thread jhd
Jeff, I've been through the JBM 1.4.0 SP3 installation instructions. My jboss-remoting.jar is the patched version, 2.2.2 SP4. Also, on the client jboss-remoting is before jbossall-client.jar in the classpath. I might also add that I have a strictly server-side JMS use case that executes

[jboss-user] [JBossWS] - Re: javaEE5 JAX-WS web services - JBOSS 4.2.2

2008-04-01 Thread PeterJ
JBossAS 4.2.x is qualified only with JDK 5. See my responses at http://www.jboss.com/index.html?module=bbop=viewtopict=102355postdays=0postorder=ascstart=10 JBossAS 5.0 will support JDK 6 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140608#4140608 Reply to

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: deply from console

2008-04-01 Thread PeterJ
My first response (dated Jan 8) already answers your question. (or are you actually asking that someone post working code, and not just tell you which MBean and operation to use?) And a warning - if you deploy an application this way you will need to redeploy it every time you restart the app

[jboss-user] [JBoss Messaging] - Re: Client Connect Fails with

2008-04-01 Thread jhd
Here is my remoting-bisocket-service.xml file. I'm using the file as is from JBM 1.4.0 SP3. | server | |!-- Standard bisocket connector - the bisocket transport only opens connection from client-server | so can be used with firewalls where only outgoing connections are

[jboss-user] [JBossWS] - Re: JBossWS 3.0.1 Released

2008-04-01 Thread PeterJ
Will JBossAS 5.0.0.GA use JBossWS 3.0.x or will it continue using 2.0.x? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140610#4140610 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140610

[jboss-user] [JBoss Getting Started Documentation] - Re: Can't build using ant

2008-04-01 Thread PeterJ
Do you have Subversion installed? Is svn in the PATH? Click this link: http://anonsvn.jboss.org/repos/jbossas/tags/JBoss_5_0_0_Beta4/, what do you see? You should see a list of links very similar to the directories in the source download. The beta4 bundled source will not compile. Might I

[jboss-user] [JBossWS] - Re: Error in generating WSDL

2008-04-01 Thread r12345_2003
Thanks for the response again. Well I had tried that.. in fact had tried several combinations of the URL Pattern but its all the same ! I wouldnt have thought that creating a simple web serivce would be so frustrating :-( Personally, I dont think there is anything wrong with the code, the code

[jboss-user] [Beginners Corner] - Re: JBoss is caching JSPs and not detecting changes

2008-04-01 Thread PeterJ
Based on your file naming convention, I assume you are using Windows. Windows has some rather strange file locking issues. Here is what I think is happening. The last time you updated the JSP successfully, and JBossAS noticed that and updated it, for some reason Windows kept the file locked.

[jboss-user] [JBossWS] - Re: WS-Security Usernametoken in a war file.

2008-04-01 Thread [EMAIL PROTECTED]
Please consider this: http://jira.jboss.org/jira/browse/JBWS-1999 In few words, the jaas authentication is supposed to work with EJB3 endpoints only until that issue is fixed (and it's scheduled for the next release, 2.0.5 native). View the original post :

[jboss-user] [JBoss Getting Started Documentation] - Re: Can't build using ant

2008-04-01 Thread leonidMir
Thx, I will try it tomorrow. I want to learn the code because I will contribute to the project in a future. Compiling is a first stage :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140622#4140622 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Re: How to configure JBoss AS to use SSL (https)

2008-04-01 Thread jaikiran
See this thread http://www.jboss.com/index.html?module=bbop=viewtopicp=4125636 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140611#4140611 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140611

[jboss-user] [Security JAAS/JBoss] - Re: How to configure JBoss AS to use SSL (https)

2008-04-01 Thread jaikiran
pete007 wrote : | | ps: not that important, but interesting: if I have a domain, where do I get a trusted key for it? Certificate Authorities http://en.wikipedia.org/wiki/Certificate_authority. View the original post :

[jboss-user] [JBoss Getting Started Documentation] - Re: Can't build using ant

2008-04-01 Thread PeterJ
And the answers to my other questions? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140627#4140627 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140627 ___ jboss-user mailing

[jboss-user] [JBossWS] - Re: Steps for implementing WS-Security in JBoss using Userna

2008-04-01 Thread pramod_bs
This will be fixed in 2.0.5 http://www.jboss.com/index.html?module=bbop=viewtopicp=4140626#4140626 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140628#4140628 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140628

[jboss-user] [JBoss jBPM] - Re: Dynamic task creation

2008-04-01 Thread massimiliano_cuccia
Actually I doesn't understand the problem. All the above code is inside a par file. You could test it by deploying the par on your jbpm engine. Should I upload the par file here? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140630#4140630 Reply to the post

[jboss-user] [JBossWS] - Re: WS-Security Usernametoken in a war file.

2008-04-01 Thread PeterJ
Oops. my goof. I saw WS-Security authentication and automatically thought message signing, which I have done with both EJBs and POJOs. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140626#4140626 Reply to the post :

[jboss-user] [JBossWS] - Re: Error in generating WSDL

2008-04-01 Thread PeterJ
As far as I can tell, your code looks just like mine, and it works for me. What JDK are you using? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140623#4140623 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140623

[jboss-user] [JBoss jBPM] - Re: Dynamic task creation

2008-04-01 Thread massimiliano_cuccia
kukeltje wrote : how to 'bind' new tasks to a process is in the example in the wiki can you post a link? I cant find the exact paragraph I need thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140632#4140632 Reply to the post :

[jboss-user] [JBossWS] - update: works in glassfish ! Re: help help! - cant get basic

2008-04-01 Thread wiggy
guys, seen no answer to this or any other of the threads. so I had a go downloading glassfish - had to fiddle with a couple of the support libraries, imported the same code into a new workspace (glassfish cant handle a workspace path with any spaces in the fully qualified path if any one else

  1   2   >