[JBoss-user] [Management, JMX/JBoss] - Re: Port Listener Services on JBoss

2005-02-23 Thread opiegai
With 5000 simultaneous connections/threads, I guess you'll kill every os! This is why java NIO selector was introduced - you'll have a small thread pool (10) to handle the connections. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867708#3867708 Reply to t

[JBoss-user] [JBossWS] - Error: Multiple bindings for not supported for service

2005-02-23 Thread mrobin21
Hello. I am trying to implement a J2EE Web Service Client in a Session Bean. My JBOSS version is 4.0.1. I get this message when the Bean attempts to make it's first call: | 2005-02-24 16:58:19,612 INFO [STDOUT] {http://www.w3.org/2001/XMLSchema}schema already exists | 2005-02-24 16:58

[JBoss-user] [Persistence & CMP/JBoss] - Re: No such entity WHY?

2005-02-23 Thread jobor
Hello, I don't see the java code that is calling findByPrimaryKey(???). I would think that you are passing a non existing primary key. You can enable CMP logging in the log4j.xml by setting: | | | | Then you can see in the server log which value is passed as a parameter.

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Cannot find Servlet

2005-02-23 Thread efcorpa
Hola Bea, pueden ser mil cosas - entiendo que el JBoss està bien configurado: prueba http://localhost:8080 - entiendo que tu aplicaciÃn se llama tambiÃn HelloWorld y se despliega correctamente (revisa el log) - mira a ver si tu Servlet implementa doGet() - en el tag hay que meter la ruta complet

[JBoss-user] [Javassist user questions] - Re: Howto instrument print(a.toString()) ?!?

2005-02-23 Thread sirrurg
Yes ... thats the way i try to do it. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867704#3867704 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867704 --- SF emai

[JBoss-user] [Clustering/JBoss] - Re: A question on state replication among clustered JBoss se

2005-02-23 Thread mjkhan
I got around the problem by using a Message-driven Bean fetching the modified objects to the target SessionBean on state change. Thanks anyway. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867703#3867703 Reply to the post : http://www.jboss.org/index.html

[JBoss-user] [EJB/JBoss] - Jboss lightest Application server

2005-02-23 Thread anil_pathak
Can some one say me if jboss is the lightest server avilable for ejb/jsp in terms of server load. If there are other server avilable having low server load please suggest. Thanking you. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867701#3867701 Reply to

[JBoss-user] [JCA/JBoss] - Broken pipe

2005-02-23 Thread lee_yuki2000
Hi, I am using jboss-3.2.3 and oracle 9i. I have broken pipe error when the sql statement takes long time (more than 15 minutes) to execute. This problem will not happen if the sql execution is fast. The error log is as follows: 2005-03-06 18:57:58,959 WARN [org.jboss.resource.connectionm

[JBoss-user] [Persistence & CMP/JBoss] - Inserting encrypted data into Oracle 9i database using CMP

2005-02-23 Thread loowaikeong1982
I encrypted the data of login password before inserting into my Oracle 9i database. The encryption is working fine but the encrypted data was not committed into database correctly. Some characters do not seems to get inserted as they were. USING: - Java platform j2sdk1.4.2_01 - JCE 1.2.1 using

[JBoss-user] [Beginners Corner] - Deploy without ear/war ???

2005-02-23 Thread amith_pj
Hi, How to deploy an application without creating ear/war files ??? In Tomcat, it is very simple, i place the application in Tomcat_Home/webapps . How to do the same in Jboss ? I want to do this, because everytime i make some changes to my java/jsp files, i have to create a war, then a ear and

[JBoss-user] [Persistence & CMP/JBoss] - Re: Multiple Datasources CMP

2005-02-23 Thread Mr. M
Unfortunately, it appears that JBoss doesn't allow CMP beans to programatically set the bean datasource. I think this is a limitation of EJB and no other application server allows it either. The datasource is bound when CMP beans are first loaded. You can however, create multiple deployments o

[JBoss-user] [Messaging, JMS & JBossMQ] - JBOSS AND JMS FOR MOBILES

2005-02-23 Thread raja_habibkhan
Hi all, I'm new on this site and up until a week ago had never heard of JBOSS. I have been given the task of creating some sort of messaging service for my university as part of my final year dissertation in the uk. I am a little confused as to how I can create an application to send messages

[JBoss-user] [Installation & Configuration] - deployment problem?

2005-02-23 Thread ericmacau
Hello, I am going to deploy 3 applications into the JBoss: 1) app.ear, 2) myweb.war, 3) test.war How can define the myweb.war must be loaded after the app.ear loaded? The priority of the loading order is : app.ear, myweb.war, test.war If fact, the app.ear must be loaded prior all other .war !

[JBoss-user] [Beginners Corner] - Denial of Service & Server High Load

2005-02-23 Thread sunnyyfl
I am tyring out JBoss and Tomcat with a simple JSP page which consits of an EJB to access data from a backend database. When I repeatly pressed the refresh button on the browser to reload the page, I noticed multiple threads were created by JBoss/Tomcat to fulfil the request. At the same time,

[JBoss-user] [Beginners Corner] - Recompile with -deprecation

2005-02-23 Thread amith_pj
Hi, I am trying to deploy an application with Jboss. The same application runs fine with Tomcat. I am getting the following error org.apache.jasper.JasperException: Unable to compile class for JSP Generated servlet error: E:\Jboss 4.0.1 sp1\server\default\work\jboss.web\localhost\Bidla\org\apac

[JBoss-user] [Beginners Corner] - JBOSS and JMS FOR MOBILES

2005-02-23 Thread raja_habibkhan
Hi all, I'm new on this site and up until a week ago had never heard of JBOSS. I have been given the task of creating some sort of messaging service for my university as part of my final year dissertation in the uk. I am a little confused as to how I can create an application to send messages t

[JBoss-user] [EJB/JBoss] - Re: Remote client and EJB

2005-02-23 Thread mrobin21
I had the problem with the incompatible class error. I solved it by ensuring my client was compiled with the same version of JBOSS as the AS. It seems there is an incompatibility with Serialization IDs between 4.0.0 and 4.0.1 - much the same as the one reported between 3.2.x and 4.0.x. The cl

[JBoss-user] [Installation & Configuration] - help required please

2005-02-23 Thread sridharb
Hi, I am not able to view the response posted to the topic "shutdown jboss not possible". When I click on it, I am getting the message: "Cannot invoke the operation : the module threw an exception". Can someone help me? thanks in advance sreedhar. View the original post : http://www.jboss.or

[JBoss-user] [Beginners Corner] - Re: org.jboss.deployment.DeploymentException: Connection tim

2005-02-23 Thread taliz
Did you find the error? Im havin the folloging problem http://www.jboss.org/index.html?module=bb&op=viewtopic&t=60584 regards, View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867679#3867679 Reply to the post : http://www.jboss.org/index.html?module=b

[JBoss-user] [Installation & Configuration] - Re: Make each .war have their own classloader

2005-02-23 Thread ivanli
Hi, Since you are using an ear file, you will need to create a jboss-app.xml in your META-INF directory which should have an entry like the following: | | test.log:loader=xxx.war | java2ParentDelegation=false | | | See the Using your own log4j.xml file - cl

[JBoss-user] [EJB/JBoss] - Re: Removing a Stateless Session Bean

2005-02-23 Thread patelcr
The answer to your question "Will the Proxy take care of directing the call to a different SSB instance for every client used by it?" is more or less YES. You have to remember that with stateless session beans, your handle to the Remote Interface is nothing more than a proxy to JBoss. Calls on

[JBoss-user] [Beginners Corner] - Re: Orphan connections...

2005-02-23 Thread patelcr
Calls to Connection.close() don't necessarily close the connection. Rather, they return the connection to the connection pool, and JBoss determines when to release those connections. However, it seems curious that you are running out of connections. I assume your current testing is starting a

[JBoss-user] [Beginners Corner] - Re: JBoss bind ConnectionFactory.

2005-02-23 Thread patelcr
You don't explicitly create the ConnectionFactory, it is created for you at start up time as long as you are using a server configuration that has JMS deployed. Which JBoss are you using?? Check your server configuration's deploy directory for deployment descriptors for JMS services. Alternat

[JBoss-user] [Persistence & CMP/JBoss] - Multiple Entity Beans against multiple datasources - all fai

2005-02-23 Thread patelcr
I have a number of CMP beans running in JBoss 4.0.1, some which reference data in one database and some that reference data in another database. In the event that one of the databases is unavailable, I would still like the CMP beans for the other database to work. Currently, if JBoss is unable

[JBoss-user] [Clustering/JBoss] - Re: Clustering and EJB timers

2005-02-23 Thread [EMAIL PROTECTED]
If you wrap the timer as a singleton (deploy.singleton) then ti will get picked up on a different host when X crashes. This assume schedules are stored in a shared storage area, e.g. the DB. Oops, I'm talking JBoss Scheduler here, don't know much about EJB Timers, probably the above applies too

[JBoss-user] [Security & JAAS/JBoss] - Re: from MDB (RunAs) to SB (custom security), how to?

2005-02-23 Thread gdemir
Thank you for the clarification. Can I, by any means, call a session bean from an MDB just like I call this session bean from an EJB client (therefore, forcing a new security context to be created)? Thanks, Gokhan View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic

[JBoss-user] [Clustering/JBoss] - Clustering and EJB timers

2005-02-23 Thread MLipp
Hi, I have tried -- without success -- to find some information about the handling of ejb timers in a cluster. Is there a failover mechanism? I.e. will a timer created on node X of the cluster be executed by another node if node X fails? - Michael View the original post : http://www.jboss.

[JBoss-user] [Javassist user questions] - Re: How to replace this??

2005-02-23 Thread javasvada
"chiba" wrote : I think you want to replace cascaded method calls | with another expression. | | But I'm wondering whether or not such replacement | is used frequently enough to be included in the Javassist | API. Do you think the Javassist API includes a method | for replacing two-ca

[JBoss-user] [Performance Tuning] - Re: Remote Tomcat->JBoss comm performance

2005-02-23 Thread katsteve
Thanks for your insights! After some experimenting, I'm not sure I understand your solution. I can't find any documentation for a "--host ip" startup parameter (or any startup params for that matter) in the Admin/Dev guide. I did find UseHostName option in the Http Invoker service, but I thou

[JBoss-user] [Clustering/JBoss] - Clustering in JBoss 4.0.1

2005-02-23 Thread MLipp
Hi, there is a nice assembly of clustering features vs. JBoss version in the wiki (http://www.jboss.org/wiki/Wiki.jsp?page=ClusteringInJBossVersions). It doesn't cover JBoss 4.0.1, however. Am I right in assuming that everything listed for 3.2.6 is available in 4.0.1 as well? - Michael Vie

[JBoss-user] File management in jboss

2005-02-23 Thread Anil Pathak
Hi all. Is there any thing such as file container offerd by jboss. I need to put the web user file [images ..]. I saved my file in other part of my server but I had trouble to serve those files in later time.     Listening you. Anil Pathak.

[JBoss-user] [Beginners Corner] - How to configure LocalEJB via XDoclet

2005-02-23 Thread jbosser2005
I have a Servlet which uses a LocalEJB Address. For the web.xml I configured this EJB like * @web.ejb-local-ref name="ejb/Adress" * type="Entity" * home="de.aukt.interfaces.AdressLocalHome" * local="de.aukt.interfaces.AdressLocal" * and for JBoss * @jboss.ejb-local-ref ref

[JBoss-user] [Security & JAAS/JBoss] - Re: LoginModule not invoked

2005-02-23 Thread ffray
Got it! It was a really thumb error! Wasn't the config, but the JSP! Thanks anyway! FF View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867657#3867657 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867657

[JBoss-user] [JCA/JBoss] - value of rar-name element in *-ds.xml file for Jboss4

2005-02-23 Thread rakmoh
I am trying to deploy a rar in jboss-4.0.1sp1. My question is regarding the rar-name element in *-ds.xml file. >From the examples and wiki, it seems that the rar-name must be the archive >name: http://www.jboss.org/wiki/Wiki.jsp?page=HowDoIDeployMyResourceAdapter http://www.jboss.org/wiki/Wiki.j

[JBoss-user] [HTTPD, Servlets & JSP] - Slow and high load with Refresh button

2005-02-23 Thread sunnyyfl
I have JSP page which create an instance of a EJB to access a backend database (MySql). The problem I am facing is when I keep the refresh button on my browser firmly down, the server load increaes and the page take a long time to render on screen. My question is, how can I cache the output of

[JBoss-user] [Clustering/JBoss] - Socket Write Errors on JBoss 3.2.5 clustered

2005-02-23 Thread thadsmith
We have developed an application that makes use of JBoss HA facilities by deploying the main application as an hasingleton app. On one machine in our production environment we started seeing the following error messages two days ago: 2005-02-22 15:43:25,139 ERROR [org.jboss.ha.jndi.HANamingSer

[JBoss-user] [HTTPD, Servlets & JSP] - Cannot find Servlet

2005-02-23 Thread Bea
Hello I've successfully deployed my HelloWorld servlet, but when I try to execute it I get a 'not found' error. The name of the war file is Proyecto.war and I do this: localhost:8080/Proyecto/HelloWorld/HelloWorld and localhost:8080/HelloWorld/HelloWorld and it doesn't work :( the web.xml fi

[JBoss-user] [Installation & Configuration] - Re: Implementing EAR based logging

2005-02-23 Thread scottsadlo
tkrug0210's code listing has points to the answer. If you read through this http://www.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration you should find that: anonymous wrote : Only the top level deployment may specify scoping. If you have an ear, containing other modules, only scoping sp

[JBoss-user] [Persistence & CMP/JBoss] - Re: Dependent Value Classes as CMR?

2005-02-23 Thread efliu
Okay I found another problem inserting into table with the EJB that has DVC as it's primary key. The DVC field is broken into two different columns in the database these columns are also used for CMR fields. JBoss seem to work just fine if the CMR columns are also CMP columns. But if CMR column

[JBoss-user] [Security & JAAS/JBoss] - Re: LoginModule not invoked

2005-02-23 Thread ffray
Hello Scott! This was my first idea, too! I edited the server/all/conf/login-config.xml. I checked whether I got the wrong one: I've added a filter creating a LoginContext with my newly added security-domains' name and it works. I really have no idea what's wrong. FF View the original post : h

[JBoss-user] [Installation & Configuration] - Re: NPE deploying Hibernate service

2005-02-23 Thread matek
I have kinda the same problem - unfortunately this:file://file.har .. colud not solve my problem. Did anyone found a solution to this ? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867644#3867644 Reply to the post : http://www.jboss.org/index.html?module=

[JBoss-user] [Persistence & CMP/JBoss] - HibernateContext and Transaction

2005-02-23 Thread ansonau
I have created a Har and depoly with a ear succesfully according to the Jboss doc. http://docs.jboss.org/jbossas/jboss4guide/r2/html/ch13.html Now, I would like to call Hibernate in servlet and do some saveorupdate ,but I failed. I tried this code InitialContext ctx = new InitialContext()

[JBoss-user] [JBossWS] - Re: Should WSDL2Java be used with JBossWS?

2005-02-23 Thread quasistatic
First off, thank you both for the replies. I'm finally starting to understand how all the pieces fit together. I was able to successfully use WSDL2Java to generate the necessary classes and WSDD files. With that in place, I was able to get the service working fine in Axis 1.2RC2. I would r

[JBoss-user] [Installation & Configuration] - Re: Request for help (URGENT) JBOSS ON LINUX

2005-02-23 Thread frankgrimes
Duplicate post. See http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867638 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867640#3867640 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867640

[JBoss-user] [Installation & Configuration] - Re: problem while running Jboss on redhat linux 8.0

2005-02-23 Thread frankgrimes
It looks like the linux kernel that linux 8.0 runs lists threads as separate processes when doing ps. I see the same behaviour on Redhat ES 2.1, but not e.g. on FreeBSD-5.3. If I remember correctly, it depends on the kernel's threading model I think linux threads list each thread as a separat

[JBoss-user] [Security & JAAS/JBoss] - Re: LoginModule not invoked

2005-02-23 Thread [EMAIL PROTECTED]
Your editing the wrong login-config.xml I would guess. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867637#3867637 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867637 --

[JBoss-user] [Installation & Configuration] - Re: Request for help (URGENT) JBOSS ON LINUX

2005-02-23 Thread [EMAIL PROTECTED]
Search the web for 'java redhat too many process' View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867636#3867636 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867636 --

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: How to Restrict the View of HyperSonic

2005-02-23 Thread akilsubramanian
i figured this out myself.thanks anyways . View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867635#3867635 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867635 --- SF

[JBoss-user] [Security & JAAS/JBoss] - Re: from MDB (RunAs) to SB (custom security), how to?

2005-02-23 Thread [EMAIL PROTECTED]
The run-as identity does not support a custom principal as the run-as identity is a temporary grant to an identity that has at least the run-as role. You will need to create a feature request to allow the run-as identity to be an augmentation of the existing caller principal. http://jira.jboss.

[JBoss-user] [Persistence & CMP/JBoss] - left join result ignored in the read ahead cache with DYNAMI

2005-02-23 Thread jobor
Hello, I'm using JBoss 4.0.1 and MySQL 4.1.9. I have two simular queries with the same read ahead strategy. But one is normal and the other is dynamic-ql. The first one I can see loads all data and related data from the result set in the read ahead cache. This is nice because that is what I ex

[JBoss-user] [Messaging, JMS & JBossMQ] - How to Restrict the View of HyperSonic

2005-02-23 Thread akilsubramanian
hello I want to find out if we can configure in some way that ,the end user cannot view the Hypersonic GUI thro the Application Server. I want to use this as a diagonostic tool for the support team to see if the messages went thro or not,thus restricting the end users(in this case the client)

[JBoss-user] [Management, JMX/JBoss] - Re: Incomplete Deployment Listing

2005-02-23 Thread [EMAIL PROTECTED]
So writing to the jboss forums can be therapeutic, in many cases :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867626#3867626 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867626 -

[JBoss-user] [Management, JMX/JBoss] - Re: Incomplete Deployment Listing

2005-02-23 Thread guurk
Once again my own stupidity get's in the way. Instead of putting the deployment descriptor in jboss-services.xml I created my own deployment descriptor in my own *-service.xml file and then placed it in my deploy directory. This worked great. I really should read the example build.xml file more

[JBoss-user] [Beginners Corner] - JBoss-IDE Guide Example Deploy Exception

2005-02-23 Thread taliz
Hi all, I installed, ECLIPSE AND JBoss IDE I followed JBossIDE guide and when trying to deploy FiboApp.ear im having the following exception: org.jboss.deployment.DeploymentException: Connection timed out: connect; - nested throwable: (java.net.ConnectException: Connection timed out: connect

[JBoss-user] [JBossWS] - Re: NullPointerException in SOAPBodyAxisImpl.addDocument

2005-02-23 Thread agdolla
"[EMAIL PROTECTED]" wrote : | SOAPBody.addDocument(Document) is suposed to work. | Could you create a jira issue with simple test cases that show your problem? | Hi OK I can try that but I'm not sure if I can create a simple test case. I have a complex schema (3gpp MMS) and I created java

[JBoss-user] [Javassist user questions] - Re: Is CodeIterator.insertGap(int length) is supposed to ins

2005-02-23 Thread chiba
Well, if your post is really true, that behavior is a bug. Can you show me a test case (simple one is fine)? Thank you, View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867619#3867619 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mod

[JBoss-user] [Security & JAAS/JBoss] - Re: from MDB (RunAs) to SB (custom security) to CMP (custom

2005-02-23 Thread gdemir
My real scenario indeed has one CMP too. It is called from the session bean. I think the problem is, JBoss does not propagate the caller identity to the CMP. Therefore, txn commit fails. It might be a JBoss bug. Or it might be my custom security implementation. I am not sure. Thanks, Gokhan Vi

[JBoss-user] [Management, JMX/JBoss] - Re: Deploy HAR Standalone

2005-02-23 Thread matek
I've got exaclty the same problem - still no solution on hibernate forums - did anyone find out what is the cause of this error ? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867617#3867617 Reply to the post : http://www.jboss.org/index.html?module=bb&op=p

[JBoss-user] [Security & JAAS/JBoss] - Re: Different j_username and getRemoteUser

2005-02-23 Thread jits_1998
thanks, I will try this out. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867616#3867616 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867616 --- SF email is spon

[JBoss-user] [Messaging, JMS & JBossMQ] - where goes msg, if the only queue consumer client does not a

2005-02-23 Thread justkeys
I don't understand what happens, if a queue-consumer does not ack a message, if the session is client_acknowledge. I would think there is some kind of timeout, after which the message is considered "lost" + a resending to one of the queue's consumers? If you throw an exception in a message con

[JBoss-user] [Beginners Corner] - JBoss bind ConnectionFactory.

2005-02-23 Thread samver
Hi, I would like to write a JMS application, using the JBoss server, but I can't find out where to create new ConnectionFactory's (??in the JBose JMX Console??). I've used Sun's Application Server PE 8 and had no problems there but the JBoss server just doesn't seem to support this operation.

[JBoss-user] [Javassist user questions] - Re: Has somebody used javassist to perform Data Flow Analysi

2005-02-23 Thread chiba
Even the lower-level API does not directly support data flow analysis. But it is definitely possible to implement a data flow analyzer on top of it. Your contribution is welcome! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867612#3867612 Reply to the post

[JBoss-user] [JCA/JBoss] - database connection fails

2005-02-23 Thread aibo
Hi, I use JBoss 4.0.0 with an Informix Database. I think, the configuration of the database is ok, because having a look at the JMX-Console (or at the server startup) I can see the following: jboss.jdbc datasource=DefaultDS,service=metadata datasource=informix_jdbc_1,service=metadata But when

[JBoss-user] [HTTPD, Servlets & JSP] - How do i get the value from multipil checkbox`s

2005-02-23 Thread potdl
Hi I`m trying to get the values from multipil select boxes. the checkboxses are created dynamically, so i cant really label them and retrieve the value back via the name parameter. If i put the name attribute to say : 'selected' and the the value attribute gets set from the database. If i th

[JBoss-user] [Javassist user questions] - Re: How to replace this??

2005-02-23 Thread chiba
I think you want to replace cascaded method calls with another expression. But I'm wondering whether or not such replacement is used frequently enough to be included in the Javassist API. Do you think the Javassist API includes a method for replacing two-cascaded method calls, three-cascaded, ...

[JBoss-user] [Management, JMX/JBoss] - Incomplete Deployment Listing

2005-02-23 Thread guurk
I have created a service MBean to do some threaded monitoring for me. The bean works and deploys. I've created it using the ServiceMBean/ServiceMBeanSupport method with startService() and stopService() implemented. Like I said, it does deploy and work. However, as it's deploying I get (LoomMoni

[JBoss-user] [Security & JAAS/JBoss] - from MDB (RunAs) to SB (custom security), how to?

2005-02-23 Thread gdemir
Hi, I call a session bean (with custom security proxy and CMT) from an MDB (with run-as role and CMT). In my security implementation, I construct a custom Principal class. In Session Bean, I see that JBoss's RunAsIdentity principal class has been propagated from the MDB, as expected. My very s

[JBoss-user] [JBossWS] - Re: Almost there

2005-02-23 Thread [EMAIL PROTECTED]
There is no requirement of custom exception extending RemoteException. A service endpoint method must declare RemoteException in its throws clause, in addition it may throw any other checked exception. ant -Dtest=org.jboss.test.webservice.exception.ExceptionTestCase one-test View the original p

[JBoss-user] [JBossWS] - Re: Should WSDL2Java be used with JBossWS?

2005-02-23 Thread [EMAIL PROTECTED]
If wscompile doesnt understand your schemas it would either be a problem with the schema or a bug in wscompile. Both of which is beyond our control. What is wscompile complaining about? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867605#3867605 Reply to

[JBoss-user] [JBossWS] - Re:

2005-02-23 Thread [EMAIL PROTECTED]
NPEs are not acceptible. Could you please show me the stack trace and the descriptor in question? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867604#3867604 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867604 --

[JBoss-user] [JBossWS] - Re: what is jbossws exactly?

2005-02-23 Thread [EMAIL PROTECTED]
In short, it is a J2EE-1.4 compatible implementation of the required WS4EE specs. It passes >2100 tests from the Sun compatibility testsuite. It is currently undergoing a complete redesign, which will decouple it from the underlying Axis implementation. View the original post : http://www.jbos

[JBoss-user] [JBossWS] - Re: NullPointerException in SOAPBodyAxisImpl.addDocument

2005-02-23 Thread [EMAIL PROTECTED]
SOAPBody.addDocument(Document) is suposed to work. Could you create a jira issue with simple test cases that show your problem? thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867602#3867602 Reply to the post : http://www.jboss.org/index.html?module=b

[JBoss-user] [JBossWS] - Re: jbossws Duplication of init-param web.xml

2005-02-23 Thread [EMAIL PROTECTED]
This is assigned to http://jira.jboss.com/jira/browse/JBWS-126 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867601#3867601 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867601

[JBoss-user] [JBossWS] - Re: JBOSS WS serialization error

2005-02-23 Thread [EMAIL PROTECTED]
I might have seen this issue. If it is related to case sensitivity you could try the current Branch_4_0 codebase, it should be fixed targeted for jboss-4.0.2 cvs co -r Branch_4_0 jboss-4.0 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867600#3867600 Reply t

[JBoss-user] [Javassist user questions] - Re: Howto instrument print(a.toString()) ?!?

2005-02-23 Thread chiba
Did you assign the result of method.invoke() to $_? e.g. $_ = ($r)method.invoke($0, null); Regards, View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867598#3867598 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867598

[JBoss-user] [JBossWS] - Re: Server custom exception not comming through to client

2005-02-23 Thread [EMAIL PROTECTED]
You could create a simple sample deployment that shows your problem and attach it to a jira issue. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867597#3867597 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867597 -

[JBoss-user] [JBossWS] - Re: JBossWS with Axis 1.2 Client (Flawed architecture?)

2005-02-23 Thread [EMAIL PROTECTED]
You could have a look at the road map http://jira.jboss.com/jira/browse/JBWS?report=com.atlassian.jira.plugin.system.project:roadmap-panel View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867595#3867595 Reply to the post : http://www.jboss.org/index.html?modul

[JBoss-user] [JBossWS] - Re: Cached authentication problem, possible solution

2005-02-23 Thread [EMAIL PROTECTED]
This is assigned to http://jira.jboss.com/jira/browse/JBWS-106 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867594#3867594 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867594 -

[JBoss-user] [Javassist user questions] - Re: Constructor modification?

2005-02-23 Thread chiba
Ah... the statements must be surrounded by {}. So setBody("{ System.out.println(...); ...println(...); }"); is correct. I agree this spec. should be changed. :-( View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867593#3867593 Reply to the post : http://www.j

[JBoss-user] [Javassist user questions] - Re: Can I get info about containing object of some methodCal

2005-02-23 Thread chiba
I hope my reply is not too late. anonymous wrote : The question is: How can I get such static information about "someObj" using javassist? The real static information of the target object is quite restricted probably more than you expect. The only information is the static type of the target ob

[JBoss-user] [Installation & Configuration] - Request for help (URGENT) JBOSS ON LINUX

2005-02-23 Thread mlsrikanth
Hi all, I am able to run jboss 3.2.6 on linux (RH 8.0) with j2sdk1.4.2_06. But, i noticed that too many processes are running with the name /usr/local/j2sdk1.4.2_06/bin/java -server -Dprogram. Please show us the work around to solve this problem regards, Srikanth View the original post

[JBoss-user] [J2EE Design Patterns] - Re: Database access from the web tier

2005-02-23 Thread jamesstrachan
Hi, See also my response to your other query. Direct access from the web tier is probably undesirable because it breaks the model and will probably make it difficult to generate ther correct HTML within Struts. A better solution is to introduce an application server tier and to store the vari

[JBoss-user] [Security & JAAS/JBoss] - LoginModule not invoked

2005-02-23 Thread ffray
Hi guys! I'm really stuck with configuring a LoginModule for my web-app. I did the following: 1. Created a Custom login module, JARed it and put it into server/all/lib 2. Edited server/all/conf/login-config.xml and added an element (name = "webrealm") referencing my LoginModule. 3. Added , a

[JBoss-user] [J2EE Design Patterns] - Re: Web tier - App tier separation

2005-02-23 Thread jamesstrachan
Hi. If anybody has firm metrics on this, they are keeping them to themselves. There are definite advantages in introducing an application tier. It allows you to set up entity beans representing validation data (see your other query) which greatly reduces the load on the database and thus respo

[JBoss-user] [EJB/JBoss] - Re: SQLException on Transaction Manager commit

2005-02-23 Thread francois.le.droff
After further investigation it looks like the connection was indeed interrupted, but not by a time out but by a socket write error. So all of these above might just come from an unstable/unreliable network ?!!? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p

[JBoss-user] [EJB/JBoss] - EJBException

2005-02-23 Thread giupel
Hello, when I try to do this operation, I have this error : 11:41:53,843 ERROR [LogInterceptor] EJBException: javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract de.danet.an.workflow.ejbs.WorkflowEngine de.danet.an.workflow.ejbs.WorkflowEngineHome.

[JBoss-user] [JCA/JBoss] - Problem with security-domain and JAAS ?

2005-02-23 Thread [EMAIL PROTECTED]
A View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867578#3867578 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867578 --- SF email is sponsored by - The IT Product

[JBoss-user] [EJB/JBoss] - Re: SQLException on Transaction Manager commit

2005-02-23 Thread francois.le.droff
It looks like I found a track to follow: thos exceptions we had yesterday were followed by other 'Operation interrupted' exceptions. It looks like this entry: [url] http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3825685#3825685 [/url] and the reply was: anonymous wrote : The opera

[JBoss-user] [Management, JMX/JBoss] - Re: Port Listener Services on JBoss

2005-02-23 Thread sandeep_multani
Thanx for the thread pool thing Little help with connection to the port part and integration of the service as a JBoss service would be highly appreciated ... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867572#3867572 Reply to the post : http://www.

[JBoss-user] [Beginners Corner] - CMR Many-Many relationship -> link table not populating

2005-02-23 Thread fifihead
i have a scenario where there is a many to many unidirectional relationship. i.e. ReportEJB has many FieldEJB and FieldEJB can be associated with many ReportEJB. Reports need to know about fields but not the other way around I have followed numerous examples on how to configure both the jbosscmp

[JBoss-user] [EJB/JBoss] - Re: SQLException on Transaction Manager commit

2005-02-23 Thread francois.le.droff
A few months later, it's our turn, our development team is suddenly facing the same understandable behavior from a production code which was running smoothly until today. >From time to time we are thrown the same exception [ ORA-17412: Bigger type length than Maximum ] on simple jdbc calls like

[JBoss-user] [Installation & Configuration] - No ManagedConnections available

2005-02-23 Thread chakrapani001
hi, i am using jboss-3.2.4 with Oracle9i database.my Oracle-ds.xml is OracleDS jdbc:oracle:oci:@oracl oracle.jdbc.driver.OracleDriver xx xx 50 1 50 0 3 15 false org.jboss.resource.adapter.jdbc

[JBoss-user] [JBoss Getting Started Documentation] - Re: Error when deploying dukes bank application

2005-02-23 Thread fire-fly
Hi I got the same the problem. you mentioned " I screwed up the unzip of the guide into the tutorial's directory structure." my j2eetutorial is in srcCode/j2eetutorial14. cd srcCode/j2eetutorial14 unzip jbossj2ee-src.zip which directory you purpose to unzip jbossj2ee-src.zip ?? View the origi

[JBoss-user] [Management, JMX/JBoss] - Re: Port Listener Services on JBoss

2005-02-23 Thread [EMAIL PROTECTED]
With that number of threads/requests you'll almost certainly need a thread pool. I don't think there is some "official" JBoss API exposed for this kind of stuff, but you could use as starting points: common/src/main/org.jboss.util.threadpool.BasicThreadPool.java This is a re-usable simple threa

[JBoss-user] [JBossWS] - cannot load wsdl files

2005-02-23 Thread princeofjboss
I am trying to port the java blueprint adventure builder application to jboss 4.0 . It uses webservices. The wsdl file is located in the folder "wsdl" inside the WEB-INF of a war file (adventure.war). This war file itself is inside an ear file (consumerwebsite.ear). On deploying the application,

[JBoss-user] [JBossWS] - cannot load wsdl files

2005-02-23 Thread princeofjboss
I am trying to port the java blueprint adventure builder application to jboss 4.0 . It uses webservices. The wsdl file is located in the folder "wsdl" inside the WEB-INF of a war file (adventure.war). This war file itself is inside an ear file (consumerwebsite.ear). On deploying the application,

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: how to tunneling jms to 80 port?

2005-02-23 Thread wallace
Refere to the "JBoss tutorials" which can be found in "Documents"! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867564#3867564 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867564 --

[JBoss-user] [Javassist user questions] - Re: Is CodeIterator.insertGap(int length) is supposed to ins

2005-02-23 Thread ivangarcia44
I find out what was not allowing insertGap to work well. I am instrumenting a method using CodeIterator. With the same iterator that I use to insert gaps into the method I also use writeByte to modify bytes. When I do this the gaps are inserted at the end. I used two separate iterators to solv

[JBoss-user] [Persistence & CMP/JBoss] - Not unique table/alias with cmr field and read-ahead

2005-02-23 Thread jobor
Hello, I'm using JBoss 4.01 and MySQL 4.1.9. I get this message from MySQL : "Not unique table/alias: 't3_c_contractor'" This is happening when you ask : give me all EJB's where "cmr field" = "parent EJB" and you have also the parent EJB in the read-ahead element with a left outer join. jbosscm

[JBoss-user] [Beginners Corner] - Re: Tool to convert weblogic-ejb-jar.xml to jboss.xml

2005-02-23 Thread vashistvishal
I'm not aware of any tool for that may be there are.. What i will do is use Xdoclet tags so that it generates the tags for both the app server. http://xdoclet.sourceforge.net/ http://xdoclet.sourceforge.net/xdoclet/tags/bea-tags.html http://xdoclet.sourceforge.net/xdoclet/tags/jboss-tags.html I ho

  1   2   >