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

2005-02-25 Thread Jarva55
Yeah, you can!!! This is the method you talk about: | public void actualizarBalance(long idCliente, double importe) | { | //Se actualiza con la parte Entity | actualizarBalanceEntity(new Integer(+idCliente),importe); | } which call to: private void

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

2005-02-25 Thread MLipp
I'll skip the definition. If it isn't on the road map, it can't be near future ;-). View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867869#3867869 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867869

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

2005-02-25 Thread [EMAIL PROTECTED]
The JAXRPC DII API is not designed with WS4EE in mind. You will also have the problem of your DII client not beeing jaxrpc-mapping.xml aware. There is a wiki on DII http://www.jboss.org/wiki/Wiki.jsp?page=WSClientDII It all boils down to using |/** | * Create a codeService/code

[JBoss-user] [Management, JMX/JBoss] - Re: Cannot view my MBean in JMX-console

2005-02-25 Thread jkashyap
MBeanServer server = (MBeanServer)MBeanServerFactory.createMBeanServer (null); MySubclass mbean = new MySubclass(); ObjectName name = new ObjectName(Jboss.dmonitor:name=SystemUsage); server.registerMBean(mbean, name); View the original post :

[JBoss-user] [Security JAAS/JBoss] - Re: DBMS_OBFUSCATION_TOOLKIT.MD5(....)

2005-02-25 Thread zufemc
Hi, do I have to integrate into the login-config.xml a OracleFunction (with response OK or FALSE), to check the client PWD? Marco View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867887#3867887 Reply to the post :

[JBoss-user] [Management, JMX/JBoss] - Re: Cannot view my MBean in JMX-console

2005-02-25 Thread [EMAIL PROTECTED]
Well, this is a typical mistake. You need to create your MBean *on the server side* and access it from the client. You are just creating a local mbean on the client side, so it's normal you see nothing on the jmx-console. To create an MBean (or service in jboss jargon) the jboss style and

[JBoss-user] [Installation Configuration] - JBoss 3.2.3 Source Code Compilation error

2005-02-25 Thread k_s_ashok
I changed JBoss 3.2.3's source code, when i run ./build.sh under messaging. i got the following error Why? compile-parsers: [javac] Compiling 8 source files to /./jboss323SC/jboss-3.2.3-src/messaging/output/classes [javac]

[JBoss-user] [JBossWS] - Re: axis or jwsdp

2005-02-25 Thread [EMAIL PROTECTED]
anonymous wrote : | so I installed Axis-1_2RC2 on my box. | why? That JBossWS uses Axis internally is an implementation detail that is going to be removed. If you want to do J2EE compliant portable WS, you do not need to install any other Axis version then the one we provide. Of course

[JBoss-user] [Installation Configuration] - Re: JVM Crash

2005-02-25 Thread DaveyS
Do you mean:anonymous wrote : -XX:MaxPermSize=64m I've set this higher and it makes no difference. Relevant parts of the error trace are below: | Heap | def new generation total 26240K, used 23310K [0x02a2, 0x0469, 0x0469) | eden space 23360K, 99% used [0x02a2,

[JBoss-user] [EJB/JBoss] - Re: EJB Performance

2005-02-25 Thread kamal_tavant
Where are you running this code. If you run this code in the context of an existing transaction it will use only one sql query. If the code is being executed without an existing transaction each get method would lead to a new transaction being started and committed once the get method is

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

2005-02-25 Thread Jarva55
Ok, i've found the answer. The problem was that i thought that the method i will not implement wasn't necessary to be included on the bean that will be autogenerated with Xdoclet. So those methods weren't included: ejbActivate, ejbPassivate, ejbLoad, ejbStore, ejbRemove. When i have included

[JBoss-user] [Installation Configuration] - configuring cookie domain in jboss

2005-02-25 Thread prem_kumar_p
Is there a way to configure session cookie domain in jboss? We set the same in weblogic thru the following attribute in weblogic.xml session-param param-nameCookieDomain/param-name param-value.upromise.com/param-value /session-param View the original post :

[JBoss-user] [Installation Configuration] - Configuring 'null' values as blank string in jsp

2005-02-25 Thread prem_kumar_p
Can i have some configuration in JBoss-3.2.4 which would set all the null values in jsp as blank string. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867897#3867897 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: jboss shutdown error

2005-02-25 Thread [EMAIL PROTECTED]
| [EMAIL PROTECTED] bin]$ shutdown.sh -h | A JMX client to shutdown (exit or halt) a remote JBoss server. | | usage: shutdown [options] operation | | options: | -h, --helpShow this help message | -Dname[=value]Set a system property | --

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

2005-02-25 Thread agdolla
Hi From the stack trace the problem is in: org.apache.axis.message.SOAPElementAxisImpl.setAttribute(SOAPElementAxisImpl.java:1170) It might related to your problem, though Gabor View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867743#3867743 Reply to the

[JBoss-user] [Clustering/JBoss] - Clustering is not simple

2005-02-25 Thread tmg
I am using Jboss4.0.1RC2 version. I tried to setup two-node cluster where each node is setup on different Linux machine. I am using out of the box all config. Both of the nodes started independently and never see or communicate each other, instead both are starting independently and listing

[JBoss-user] [HTTPD, Servlets JSP] - IndexOutOfBoundException with jsp:include chain

2005-02-25 Thread erikture
Hello! I am running Jboss, both 3.2.5 with jetty and 3.26 with tomcat. In some of my jsp pages I have a chain of jsp:include, i.e one jsp does include on another jsp that does include on yet another jsp. This works fine in 3.2.5 with jetty but fails in 3.2.6 with tomcat. In tomcat I am

[JBoss-user] [Performance Tuning] - Re: GARBAGE COLLECTOR PROBLEM

2005-02-25 Thread Thoennes
In the first quick browse, I noticed that parallel GC does not make much sense with just 2 processors. It may even slow down things a bit. Use it if you have 4 procs or more. But this is not the cause of your problem. In addition, the per thread stack size (-Xss:1024k) seems quite big. How

[JBoss-user] [JCA/JBoss] - Re: Oracle 10g Fast Connection Failover

2005-02-25 Thread dtauzell
Perhaps this would be fine if the following line from the sample code was removed: ods.setConnectionCachingEnabled(true); Maybe ayampols can create a test client to prove this true. From what I'm reading on this thread the fact that Oracle manages a pool is the main problem. The

[JBoss-user] [Beginners Corner] - Re: Dukes bank application error

2005-02-25 Thread Jagadeesh
Hi, I am Jagadeesg from india. and a beginner in j2ee. Now im trying to deploy sun's Duke's Bank application on j2ee server. It gets deployed succusfully. and when im trying to run the application..it shows errors. Loging into the application is ok.but logged in it shows the following

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

2005-02-25 Thread fbiaggi
Hi, do you have a: static serialVersionUID nnn in your bean class ? If not different compilers may generate differents uid. just for info. Ciao. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867809#3867809 Reply to the post :

[JBoss-user] [Persistence CMP/JBoss] - Re: HibernateContext and Transaction

2005-02-25 Thread sviluppatorefico
hi ansonau.the line Session hsession = HibernateContext.getSession is used only in a transaction. It take the current transaction and it continue with it. After if i execute a session.close(), anyhow i have to wait the end of the transaction, if no no commit will be executed. Then the

[JBoss-user] [EJB/JBoss] - Re: RMI Error : NoSuchObjectException

2005-02-25 Thread sdanig
I'm having the same problem; can you describe what you mean by export? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867812#3867812 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867812

[JBoss-user] [Security JAAS/JBoss] - Is the webcontainer ( Tomcat 5.0 ) security turn on for jbos

2005-02-25 Thread vgoudar
Hi I am using jboss 4.0.1. I want to know whether the secuiryt is turned by default or not. How do you turn on/off ? Thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867806#3867806 Reply to the post :

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

2005-02-25 Thread [EMAIL PROTECTED]
Where do you see this code? It is probably incorrect to assume that the element the name is created from will be qualified. The current implementation in Branch_4_0 is like this |/** Recursive function | */ |private SOAPElementAxisImpl importDOMElement(SOAPElementAxisImpl

[JBoss-user] [Beginners Corner] - How to retrieve the deploy URL in a ServiceMBeanSupport bean

2005-02-25 Thread sgallet
Hello, I'm looking for a way to retrieve the deploy URL in ServiceMBeanSupport bean. Any idea ??? TIA View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867894#3867894 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867894

[JBoss-user] [Installation Configuration] - PrefixDeploymentSorter and EARDeployer

2005-02-25 Thread madeonmoon
hello all, i am noticing odd behavior and was hoping you can shed some light on it: i have two ear files (3-Core.ear and 4-client.ear). each contains sars and jars . i use PrefixDeploymentSorter to ensure that 3-Core.ear is deployed first. this works fine when JARDeployer is doing its job but

[JBoss-user] [Messaging, JMS JBossMQ] - XAConnectionFactory not bound on Startup

2005-02-25 Thread sunshineDev
Hi. I know that this question has been posted a great number of times. But for the life of me I haven't been able to see what could be wrong in my case. I've gone to the READ THIS FIRST section and I've set the TRACE logging for org.jboss.mq, org.jboss.logging.XLevel and

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

2005-02-25 Thread dpegram
Correct, I'm testing the client app via Eclipse which (I believe) only creates one instance of the client at a time. The XML config file is pretty simple. I've attached a copy. Thanks for your help! local-tx-datasource jndi-namecom/icoria/jdbc/DiscoDevDS/jndi-name

[JBoss-user] [Security JAAS/JBoss] - Using remote client to access JBOSS naming service

2005-02-25 Thread madhu_n
Hi, I get the following exception when I try to use a remote java client to access the JBOSS naming service. Please let me know what kind of JAAS related configuration I need to do. Exception as below:- ava.rmi.ServerException: RemoteException occurred in server thread; nested exception is:

[JBoss-user] [Persistence CMP/JBoss] - Re: Generated SQL Sentence too big

2005-02-25 Thread pablojavierpy
I don't think it has anything to do with ejb-jar and/or jbosscmp-jdbc.xml since it is wornking just fine for Order EJBs with few OrderDetails EJBs. Anyway, I am still researching and wondering if it is a BUG in JBOSS CMP engine. Anyway, I have found that since Jboss 3.2.4 there is a new

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

2005-02-25 Thread justkeys
http://www.jboss.org/products/remoting View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867871#3867871 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867871 --- SF email

[JBoss-user] [Messaging, JMS JBossMQ] - Re: javax.jms.InvalidDestinationException

2005-02-25 Thread pankilshah82
hi kenshin81, vist the link below. http://www.jboss.org/wiki/Wiki.jsp?page=HowDoIConfigureAnMDBToTalkToARemoteQueue View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867872#3867872 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: JBoss API documentation (JavaDoc)

2005-02-25 Thread monocongo
Why can't someone at JBoss just create the JavaDocs and package them for download, as is the case for the Java API documentation ? --James View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867768#3867768 Reply to the post :

[JBoss-user] [Beginners Corner] - HELP!

2005-02-25 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:

[JBoss-user] [JCA/JBoss] - DS problems while Deploying multiple EAR's

2005-02-25 Thread sk4567
Hey, When I attempt to deploy more than one EAR file on the server (3.2.3) ( with ther own DS-xml files ) I am gettign classloader problems at runtime..i.e one of the applications is unable to connect to datasource..even thogh the server console shows the JNDI bindings to the

[JBoss-user] [Installation Configuration] - Re: re - Deployment failing

2005-02-25 Thread teclis
Hi, I am having the same problem under JBoss 3.2.6 I try to deploy a war file on the running server and I get the same error | 2005-02-25 15:01:26,815 DEBUG [org.jboss.deployment.scanner.URLDeploymentScanner] Failed to deploy: [EMAIL PROTECTED]

[JBoss-user] [EJB/JBoss] - entity-beans / finders EJB1.1

2005-02-25 Thread aibo
I hope someone can help me. I use JBoss 4.0.0 with EJB1.1 and CMP1. For EntityBeans: which deployment descriptors do I need and where are the finder-Methods declared? I currently use ejb-jar.xml (bean-declaration), Jboss.xml (jndi names of beans) and jaws.xml: jaws |

[JBoss-user] [Installation Configuration] - Jboss and MS Mappoint

2005-02-25 Thread pnichols_sr
Greetings all. I am attempting to use Axis 1.1 and access the Mapoint Web services using JBoss 4.0.1. To use Axis, you have to deal with the Authentication headers MS uses for Mappoint. Basically, this means extending the basic HTTPServlet Axis uses. I tried creating a War file structure

[JBoss-user] [Management, JMX/JBoss] - /invoker/JNDIFactory in 4.0.1sp1

2005-02-25 Thread [EMAIL PROTECTED]
Hi folks. I was using jndi lookups over http in 3.0.6 and 3.2.5 by referencing http://localhost:8080/invoker/JNDIFactory as my proxy servlet. Suddenly, in 4.0.1sp1, I get the stack trace at the bottom of this message. This is a signed applet, can someone tell me what might have changed?

[JBoss-user] [JBossWS] - Re: unable to deploy web service..null pointer

2005-02-25 Thread [EMAIL PROTECTED]
The implementation for WebserviceDescriptionMetaData.replaceAddressLocations(...) has changed in Branch_4_0. We now support multiple services. Are you still seeing this with the current (unreleased) codebase? cvs co -r Branch_4_0 jboss-4.0 View the original post :

[JBoss-user] [EJB/JBoss] - Re: General query - usage of stateless session bean

2005-02-25 Thread kamal_tavant
Using plain java classes instead of using SessionBeans would actually make testing the component easier. You can write component tests as normal Junit tests. You can run them outside the container (IDE, build script etc) by using mocks for the dependent entity beans and if you want to test in

[JBoss-user] [Installation Configuration] - Re: JBoss source code

2005-02-25 Thread ricardoarguello
Don't run Ant on the build.xml file. You just need to run build/build.bat or build/build.sh to build the whole server. If you are on a module directory, run ./build.sh or build.bat to build just the module. Read this http://www.jboss.org/wiki/Wiki.jsp?page=JBossInstallation Ricardo View the

[JBoss-user] [J2EE Design Patterns] - MVC and a multiple client applictation

2005-02-25 Thread zephyr
All, I am trying to apply the MVC pattern to an application in which: 1. Multiple clients (10) simultaneously connect over the internet to the same server. Clients are typical internet users with a standard web browser. 2. The server processes requests from any one client, and then updates

[JBoss-user] [Security JAAS/JBoss] - DBMS_OBFUSCATION_TOOLKIT.MD5(....)

2005-02-25 Thread zufemc
Hi all, I try to login with: application-policy name = ReportingLogin login-module code = org.jboss.security.auth.spi.DatabaseServerLoginModule flag = required module-option name = unauthenticatedIdentityguest/module-option

[JBoss-user] [Nukes User] - Re: problem to change language!!

2005-02-25 Thread cnovara
Hi. Localization issues has been discussed here, try a search : i18n and localization. I think for you the problem is the way Nukes recognizes the language to use. By default it's the language given in your browser. Unfortunately, ES should be added to the known list in coremodule.java. For my

[JBoss-user] [Persistence CMP/JBoss] - Re: Multiple Entity Beans against multiple datasources - all

2005-02-25 Thread sviluppatorefico
hi patei know that using a cmp with more resource reference is not recommended. Then I think that it can to give collateral effects. But you can to use two entities of same type and different name that using different databases. The important thing is that for each entity must to exist a

[JBoss-user] [Messaging, JMS JBossMQ] - Re: XAConnectionFactory not bound on Startup

2005-02-25 Thread sunshineDev
Here is some additional information regarding our Queues and configuration. We're using Jboss 3.2.3. We do not use the jbossmq.xml file, we use an xml file which is located in the deploy directory with entries such as the following: depends

[JBoss-user] [Installation Configuration] - Re: JBoss 4: bug in SecurityAssociationValve?

2005-02-25 Thread edikus
I fiinally got around to creating a test case, only to find that the problem has been fixed, both in the final release of 3.2.7 and in 4.0.1sp1. I haven't found the bug that specifically addressed it, so it must have been related to some other issue (such as JBAS-1165). View the original post

[JBoss-user] [Persistence CMP/JBoss] - Re: Bug in deletion with 2nd CMR when first is a batch-casca

2005-02-25 Thread hirowla
Reported as JBAS-1519 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867845#3867845 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867845 --- SF email is sponsored by -

[JBoss-user] [Clustering/JBoss] - Re: Implementing node affinity for a stateless session bean

2005-02-25 Thread fredrikbromee
If I understand your question correctly, it would be OK if the session bean were deployed on all nodes but only was called on one of the nodes. One way to do this in JBoss would be like you did in WLS, to use a custom load balancer that dispatches all requests to the bean to one of the nodes

[JBoss-user] [Installation Configuration] - jboss 3.2.5 and gentoo 2.4.26

2005-02-25 Thread ruddy
I just have installes JBoss on my Gentoo server. JBoss start well. But using web-console, I get the following error: 21:17:09,874 ERROR [Engine] StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception | java.lang.NoSuchMethodError:

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

2005-02-25 Thread agdolla
I'd like to try that version but cvs cannot check it out cvs checkout: [13:15:54] waiting for jboss-build's lock in /cvsroot/jboss/jbosstest/src/main/org/jboss/test/webservice/hello 4.0.1SP1 also contains this modification ? Gabor View the original post :

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

2005-02-25 Thread chiba
I see. Your approach is right. However, your approach might complicate a program if the search pattern is complex. For example, if you want to find both boolean b = Display.getDisplay(some expression).getCurrent() and Display d = Display.getDisplay(this); boolean b = d.getCurrent(); Then

[JBoss-user] [Installation Configuration] - Jacorb version

2005-02-25 Thread Andy_Wagg
Is there anyway I can find out which version of jacorb has been used in the different JBoss releases. Our production server is currently running 3.2.3. I am currently having some IIOP issues which may have been fixed in a later version Jacorb. Thanks, Andy View the original post :

[JBoss-user] [Persistence CMP/JBoss] - Re: Generated SQL Sentence too big

2005-02-25 Thread triathlon98
You can configure the aximum number of records which are fetched in one go using fetch-size (probably in the default section of your jbosscmp-jdbc.xml file. Joachim View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867888#3867888 Reply to the post :

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

2005-02-25 Thread justkeys
The way to get JMS over HTTP(S) working (tested on jboss-4.0.1sp1): 1) download jboss4guide = the examples sources You get there by clicking the first icon next to JBoss AS, and then the code link under jboss 4 - JBoss 4 Application Server Guide (v2) HTML code 2) make an

[JBoss-user] [Nukes User] - Re: How to Get Rid of

2005-02-25 Thread cnovara
cnovara wrote : You can take a look at that : | http://www.jboss.org/index.html?module=bbop=viewtopict=54735 | Hope this helps see http://enfanceetcroissance.com see http://gitesprovence.fr.to View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867781#3867781

[JBoss-user] [Messaging, JMS JBossMQ] - XAException: tx=TransactionImpl:XidImpl [FormatId=257, Globa

2005-02-25 Thread sheckler
When running high volumes of messages using JBossMQ and JDBC2 (Oracle oci 9.2.0.5, JBoss 3.2.7) persistence the following warning appears. What does it mean? The problem does not occur until the application has been running for an extended period of time. JBoss might slow down and even stop

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

2005-02-25 Thread sviluppatorefico
hi jarvathe DAOClienteRemote.actualizarBalance(long,double) method where is declared and what is its role? it seems that that method use a wrong field or it 's not well declared. May I to see it? View the original post :

[JBoss-user] [JBossWS] - WS Beginner needs help with ejb ws endpoints and wsdl

2005-02-25 Thread balteo
Hello, I have a session bean with over 120 methods and I would like to automatically generate the corresponding wsdl (and possibly the jaxrpc-mapping-file. I have the jwsdp on my machine. Can anyone help please? Thanks in advance, Julien Martin. View the original post :

[JBoss-user] [Beginners Corner] - Classloader problem !!!

2005-02-25 Thread ericmacau
I deploy an EAR application into JBoss4.0.1sp1, within the EAR, there are two WAR applications. Both of the WAR have one same class X(same name, same package, same function). In WAR B, I changed some logic in X, but it never changed and always use the X in WAR B Strange !!! View the

[JBoss-user] [Security JAAS/JBoss] - Re: encrypt password

2005-02-25 Thread ricardoarguello
Read this: Encrypting DataSource Passwords http://www.jboss.org/wiki/Wiki.jsp?page=EncryptingDataSourcePasswords Ricardo View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867849#3867849 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: Single EAR with 3 web applications context problem

2005-02-25 Thread prem_kumar_p
why don't u try the following in application.xml display-namesite/display-name web-uriabd.war/web-uri context-root/abc/context-root web-urixyz.war/web-uri

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

2005-02-25 Thread [EMAIL PROTECTED]
This is assigned to jira issue http://jira.jboss.com/jira/browse/JBWS-127 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867737#3867737 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867737

[JBoss-user] [Management, JMX/JBoss] - Re: Cannot view my MBean in JMX-console

2005-02-25 Thread [EMAIL PROTECTED]
It should show up on jmx-console. Are you sure you're not registering the MBean on the client side? Show the code. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867874#3867874 Reply to the post :

[JBoss-user] [HTTPD, Servlets JSP] - Re: Deploy without ear/war ???

2005-02-25 Thread [EMAIL PROTECTED]
1. mkdirs my.war/WEB-INF/classes 2. edit my.war/WEB-INF/web.xml as needed. If there are no servlets, just use: | ?xml version=1.0? | !DOCTYPE web-app PUBLIC |-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN |http://java.sun.com/dtd/web-app_2_3.dtd; | | web-app |

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

2005-02-25 Thread javasvada
chiba wrote : Ah... the statements must be surrounded by {}. | So | | setBody({ System.out.println(...); ...println(...); }); | | is correct. I agree this spec. should be changed. :-( Ah, I see, it works now. Thanks for the reply :) View the original post :

[JBoss-user] [Security JAAS/JBoss] - Two JBOSS servers through SSL

2005-02-25 Thread edwardchumak
Hi Colleagues! I would like to configure 2 jboss servers onto two separate computers and implement application that has to be deployed partially onto each one of servers. The first server will contain jsp\java beans and the second server has to host session\intity ejbs'. There is need to

[JBoss-user] [EJB/JBoss] - EJB Performance

2005-02-25 Thread FabBoco
Hi, I have a very simple EJB deployed to jboss 3.2.6 + postgresql 8 + java 1.4.2_06 + suse linux 9.2 I use the following code to make a list: | HashMap[] certificazioneArray = new HashMap[certificazioni.size()]; | Iterator iCertificazioni = certificazioni.iterator(); |

[JBoss-user] [Clustering/JBoss] - Re: Load Balancer is Single Point of Failure?

2005-02-25 Thread burakbayramli
Thank you very much View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867878#3867878 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867878 --- SF email is sponsored by -

[JBoss-user] [Clustering/JBoss] - Re: removing an instance from a cluster

2005-02-25 Thread fredrikbromee
I don't know if you've already got an answer to this on your own but here's my reply anyway: It's easy - just shut down the jboss on the faulting machine. Clients using that machine will fail over to the other nodes in the cluster automatically. This is something we do a lot - like maybe once

[JBoss-user] [JBossWS] - Re: problem with custom type mapping

2005-02-25 Thread [EMAIL PROTECTED]
The Axis deployment descriptor (*.wsdd) is generated from the meta data given in jaxrpc-mapping.xml, the wsdl and bean introspection. So if there is a type mapping in jaxrpc-mappping.xml you should also have the target class on the classpath. Anonymous complexType definitions in XML schema

[JBoss-user] [Messaging, JMS JBossMQ] - Re: OutOfMemory on the JMS Client Side

2005-02-25 Thread razor_harm
You might want to switch to a 'real' db such as PostgreSQL or MySQL View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867753#3867753 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867753

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

2005-02-25 Thread amith_pj
Hi, I solved the Generated servlet error by using the servlet.jar or similar provided by jboss itself. I mean i stopped using my own servlet.jar Hope this helps someone. Thanks ! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867823#3867823 Reply to the

[JBoss-user] [Performance Tuning] - Re: GARBAGE COLLECTOR PROBLEM

2005-02-25 Thread mlelola
We have been playing around with the parameters that I explained before. We changed Xms to 1024m and after several hours running with these setting, we obtained this: java.lang.OutOfMemoryError: unable to create new native thread Then we decided to reduce Xmx to 1024m instead of 1536 and Xms to

[JBoss-user] [Persistence CMP/JBoss] - Re: Generated SQL Sentence too big

2005-02-25 Thread pablojavierpy
Joachim, Thanks for the response. Do you think Maximum number of records fetched would affect the way SQL sentence is generated? I think it would only change some parameters in JDBC's PreparedStatement, and, in that way, I would be still receiving SQL error from SYBASE's driver. Anyway, I

[JBoss-user] [Security JAAS/JBoss] - Re: Customized form-error-page

2005-02-25 Thread ricardoarguello
This could also be helpful: http://www.jboss.org/wiki/Wiki.jsp?page=CustomizingSecurityUsingValves Ricardo View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867852#3867852 Reply to the post :

[JBoss-user] [JCA/JBoss] - Re: Null result set! on getResultSet()

2005-02-25 Thread harjan
Also if I fetch all the result sets first and then fetch the procedure output paramaters..it works fine Thanks in advance View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867764#3867764 Reply to the post :

[JBoss-user] [Performance Tuning] - GARBAGE COLLECTOR PROBLEM

2005-02-25 Thread mlelola
Hi, I have a problem with the gc performance in production. The enviroment is the next: Linux Red Hat 9.0 biprocessors 2 Gigas of memory Jboss 3.2.3 I am using these parameters: -Xmx1536m -Xms512m -Xss1024k -XX:NewSize=96m -XX:MaxNewSize=256m (igual que NewSize) -XX:+UseParNewGC

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

2005-02-25 Thread [EMAIL PROTECTED]
You need to use a port-component-ref element j2ee_web_services_client_1_1.xsd | xsd:element name=port-component-ref |type=j2ee:port-component-refType |minOccurs=0 maxOccurs=unbounded | xsd:annotation | xsd:documentation | |

[JBoss-user] [J2EE Compliance] - Re: mapping, jboss and j2ee

2005-02-25 Thread [EMAIL PROTECTED]
The order of elements in a validated XML document instance is relevant. The order of elements in your XML instance does not match the document type definition. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867855#3867855 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: jboss shutdown error

2005-02-25 Thread sridharb
thank you very much scott, this worked. regards, Sreedhar. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867923#3867923 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867923

[JBoss-user] [JCA/JBoss] - Re: IMS Connection Factory

2005-02-25 Thread khawkins
Replace myconnectionfactory with the JNDI name of your connection factory. Replace myhost.com and with the host name or IP address and port of IMS Connect (OTMA). Replace DSNAME with the name of your IMS datastore (shown in the job log for IMS Connect). Add UserName, Password and GroupName

[JBoss-user] [JBoss.NET] - NoInitialContextException/ClassNotFoundException viewing dep

2005-02-25 Thread mbabauer
I am running JBoss 3.2.5 with Axis 1.2 RC2 (Apache 2.x and mod_jk2 is in front of JBoss), and I cannot view deployed web services from the Axis pages once I deploy my WS. The WS in question is a Stateless SessionBean. I generated the deploy.wsdd using xDoclet and ant. If i remove the

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

2005-02-25 Thread jbosser2005
I still have no clue why the following xml tags ejb-local-ref ejb-ref-nameejb/AdresseLocal/ejb-ref-name local-jndi-nameejb/AdresseLocal/local-jndi-name /ejb-local-ref are not generated automatically for jboss.web.xml. In my Servlet I set up these XDoclet tags: ** * Servlet

[JBoss-user] [HTTPD, Servlets JSP] - Re: Deploy without ear/war ???

2005-02-25 Thread [EMAIL PROTECTED]
Name your war abc.war then, or use a WEB-INF/jboss-web.xml: http://www.jboss.org/wiki/Wiki.jsp?page=ChangeTheContextOfAWAR View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867928#3867928 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: RPM / Source RPM

2005-02-25 Thread [EMAIL PROTECTED]
No plans to do this. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867921#3867921 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867921 --- SF email is sponsored by -

[JBoss-user] [JCA/JBoss] - ojdbc14.jar

2005-02-25 Thread ShaunA
Whilst looking into a problem I have tried using the latest Oracle 9.2 driver (the 9.2.0.5 version of ojdbc14.jar). When running this it gave a java.sql.SQLException : invalid conversion. Doing a trace showed that a numeric type was being used instead of an integer. The solution to this was to

[JBoss-user] [Installation Configuration] - Re: JBoss Tomcat Upgrade

2005-02-25 Thread [EMAIL PROTECTED]
The roadmap for 4.0.2RC1 includes the upgrade to tomcat 5.5 http://jira.jboss.com/jira/browse/JBAS?report=com.atlassian.jira.plugin.system.project:roadmap-panel View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867931#3867931 Reply to the post :

[JBoss-user] [JCA/JBoss] - Re: Oracle 9i getConnection() using XA Driver takes long tim

2005-02-25 Thread ShaunA
I have found a similar thing using the latest Oracle 9.2 driver (the 9.2.0.5 version of ojdbc14.jar) and 3.2.7 when running under HP-UX 11i and Oracle was running on the same machine. Waiting for a connection takes upto 75 secs. Strangely, this does not occur when running the same code on a

[JBoss-user] [Installation Configuration] - Re: Build JBoss Javadoc

2005-02-25 Thread [EMAIL PROTECTED]
Both the 3.2.7 and 4.0.1sp1 source releases build the all target for me. The 3.2.7 api output is 150mb: [EMAIL PROTECTED] build]$ ant all BUILD SUCCESSFUL Total time: 39 minutes 40 seconds [EMAIL PROTECTED] build]$ du -s output/jboss-3.2.7/docs/api/ 153756 output/jboss-3.2.7/docs/api You wil

[JBoss-user] [Management, JMX/JBoss] - Re: MDB JMX name changes btwn 3.2.4 and 3.2.7?

2005-02-25 Thread [EMAIL PROTECTED]
This issue in the release notes describes the change: [JBAS-275] - 2 identical named mdbs cannot deploy http://jira.jboss.com/jira/browse/JBAS-275?page=comments If you need a fixed local jndi name you would have to use a local-jndi-name in the jboss.xml descriptor. The JSR-77 name should be

[JBoss-user] [JCA/JBoss] - Re: ojdbc14.jar

2005-02-25 Thread [EMAIL PROTECTED]
Your question belongs in the persistence forum or as a feature request on JIRA. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867941#3867941 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867941

[JBoss-user] [JCA/JBoss] - Re: DS problems while Deploying multiple EAR's

2005-02-25 Thread [EMAIL PROTECTED]
Moderated: Unanswerable question - IT DOES NOT WORK style post. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867943#3867943 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867943

[JBoss-user] [Management, JMX/JBoss] - Re: /invoker/JNDIFactory in 4.0.1sp1

2005-02-25 Thread [EMAIL PROTECTED]
Thanks again, Scott. The big question here for me then is why is it trying an SSL socket? I'm using port 8080. I would also be interested in a means to fix this, when it's fixed. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867944#3867944 Reply to the

[JBoss-user] [JCA/JBoss] - Re: Use of connection factory outside of JBoss Server's VM

2005-02-25 Thread [EMAIL PROTECTED]
Moderated: FAQ View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867946#3867946 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867946 --- SF email is sponsored by - The IT

[JBoss-user] [JCA/JBoss] - Re: Whether JTA tx.commit() or tx.rollback(), JBossMQ always

2005-02-25 Thread [EMAIL PROTECTED]
Moderated: FAQ View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867945#3867945 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867945 --- SF email is sponsored by - The IT

[JBoss-user] [JCA/JBoss] - Re: Null result set! on getResultSet()

2005-02-25 Thread [EMAIL PROTECTED]
Moderated: Reporting already fixed bugs against legacy versions is just a waste of everybody's View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867948#3867948 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867948

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

2005-02-25 Thread [EMAIL PROTECTED]
Moderated: FAQ View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867951#3867951 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3867951 --- SF email is sponsored by - The IT

  1   2   >