[JBoss-user] [The Lizzard's corner] - Re: jboss-4.0.1 vs jboss-3.2.7

2005-03-04 Thread jigneshsr
I dont have comparision between two, but for release 4.x read the following http://docs.jboss.org/jbossas/whatsnew40/html_single/ View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868903#3868903 Reply to the post : http://www.jboss.org/index.html?module=bb&op=po

[JBoss-user] [Security & JAAS/JBoss] - Getting subject from Ejb container?

2005-03-04 Thread Belal
Hi, I found there are 2 ways to get the subject from the ejb container, 1) InitialContext ic = new InitialContext(); Subject subject = (Subject)ic.lookup("java:comp/env/security/subject"); 2) AccessControlContext ctx = AccessController.getContext(); Subject subject = Sub

[JBoss-user] [JBossWS] - Re: strage problem tcpmon

2005-03-04 Thread singular_droid
Yes I can obtain wsdl from http://192.168.0.200:8080/EJB4/HelloBeanService?wsdl in my browser. And this is the part of it: | | | http://localhost:8080/EJB4/HelloBeanService"/> | | | And in my ejb4.jar this part of wsdl file looks like this: | | | htt

[JBoss-user] [Beginners Corner] - Re: Global JNDI name for queues and datasources

2005-03-04 Thread vashistvishal
Yaa you can change the JNDI name in this deploy/jms/jbossmq-destinations-service.xml file as shown below. | JBoss.mq:service=DestinationManager | | Note : Try to change the default JNDI name of the queues and topic , use | this attribute in this mbean descriptor, you can remo

[JBoss-user] [Clustering/JBoss] - Re: EJB Clustering Blues

2005-03-04 Thread nickman
Santosh; Make sure you are reusing the same remote created by the home object to make the calls. Once a new remote is created, the round robin is reset so if you keep creating a new one one (or getting a new home) on every call, you will always see the same server be called. //Nicholas View t

[JBoss-user] [O'Reilly JBoss 3.0/4.0 Workbook] - Re: Problem with workbook example ex15_1

2005-03-04 Thread shel
i also figured out that this is a jboss-4.0.1 related problem, jboss-4.0.0 works fine. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868897#3868897 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868897 -

[JBoss-user] [O'Reilly JBoss 3.0/4.0 Workbook] - Re: rmh - enterprise javabeans, 4th ed. exercise 15.1 doesn'

2005-03-04 Thread shel
well well well, i got the patch (http://www.manica.org/workbook.patch became accessible again), applied it and got the same exception. i looked over the patch and in fact its corrections exactly as mine i was trying before, so there is no wonder it's not working. but... i returned to jboss-4.0.0

[JBoss-user] [Installation & Configuration] - ClasscastException on JSP compile

2005-03-04 Thread dhill
Hi, I have a ear configured with com.dit.com:loader=b.ear java2ParentDelegation=false and when I try and run the warf thats in the ear I get a the following exception, is there something I am missing , I have debugged and it seems that the DocumentBuilder is null or not using jaxp, I

[JBoss-user] [Beginners Corner] - Do I need an app server for this simple hooha?

2005-03-04 Thread jonnycattt
HI All, What I'm trying to do should be very simple, but I'm afraid I might need to turn a nice, sweet, small app into a server-run app just to get a few bells and whistles. I'm looking for some advice on how to proceed. Right now, this app runs as a command line app. i start it with a batch f

[JBoss-user] [Installation & Configuration] - resource-ref tag used for env-entry?

2005-03-04 Thread rogerparkinson
Is there a way to use the resource-ref tag in the ejb-jar.xml to refer to an external block of env-entry tags? I have several stateless session beans that require the same env-entry tags. This is a maintenance headache for me. Putting them somewhere common would help. I would like to be able t

[JBoss-user] [EJB/JBoss] - Re: 4.0.x classloader NoClassDefFoundException

2005-03-04 Thread abcolson
Same errors in JBoss version 3.2.6. BTW, the only differences ( from "jar tf") between the "bad" jar and one that works is the presence of the DTO classes in the bad jar (about 6) as noted previously in my first post. View the original post : http://www.jboss.org/index.html?module=bb&op=viewto

[JBoss-user] [EJB/JBoss] - Re: 4.0.x classloader NoClassDefFoundException

2005-03-04 Thread abcolson
Latest update... I get the same errors with jboss-4.0.1sp1. As stated previously by jjmuhlestein maybe the class loading scheme will be fixed in the next release. Does anybody know when the next release will be? Anything we can do in the mean time? View the original post : http://www.jboss.o

[JBoss-user] [Beginners Corner] - Monitoring Entity Bean Locks

2005-03-04 Thread sjk
Does any one know of a way to monitor entity bean locks in JBoss 3.2.1 other than the entity lock monitor? I need more detail than what the entity lock monitor provides. Ideally, I would like to know every time a bean is locked and unlocked within a transaction. Thanks in advance for your help

[JBoss-user] [Javassist user questions] - Re: array initializer is not supported

2005-03-04 Thread grnwood
Well, I just expanded the source underneath to accept an arbitrary # of parms on the initializiation. I have a helper method put them back into an array on the other side. Works good. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868879#3868879 Reply to t

[JBoss-user] [Beginners Corner] - [Tomcat5] Failed to parse web.xml

2005-03-04 Thread [EMAIL PROTECTED]
When I tried to deploy a war file, I got the following Exception complaining about my web.xml file. Please help. 15:23:43,453 WARN [Tomcat5] Failed to parse descriptors for war(file:/D:/jboss-3.2.6/server/default/tmp/deploy/tmp20117CVF_v01_00.ear-contents/floghmi.war/) org.jboss.deployment.Depl

[JBoss-user] [Beginners Corner] - Global JNDI name for queues and datasources

2005-03-04 Thread [EMAIL PROTECTED]
I know it is against recommendations in J2EE standards. But, is there a way to specify JNDI names in global namesapce for queues, topic, and datasources in the corresponding xml files? (without using DestinationManager at runtime). It seems like JBoss automatically pre-fixes java:, queue/, topic/,

[JBoss-user] [JBossWS] - Re: Deploy a EJB as Web Service

2005-03-04 Thread mpitanga
Hi Thomas, Thank's for help. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868872#3868872 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868872 --- SF email is sp

[JBoss-user] [Beginners Corner] - localhost bind?

2005-03-04 Thread jb05s
When I start jboss' tomcat container, it binds to port 8080 on localhost. I can't access it from any other machine. As this is a headless server, which has a webapplication that's supposed to be publicly accessible, this won't work very well for my purpose. The startup log is below: 12:34:59,825

[JBoss-user] [Clustering/JBoss] - Basic clustering/load balancing question

2005-03-04 Thread kiran222
I need to run a 2 node JBoss cluster with the following requirements: 1) Both the nodes will have a Queue with same name. Lets say the name as "Purchase Queue" 2) From a client, when I lookup "Purchase Queue", the system should return a Queue from any one of the two nodes in a Round-Robin fashio

[JBoss-user] [JBossWS] - Re: Deploy a EJB as Web Service

2005-03-04 Thread [EMAIL PROTECTED]
1) The methods exposed through a EJB remote interface are not necessarily the same as for the WS endpoint 2) No, they are jwsdp specific View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868867#3868867 Reply to the post : http://www.jboss.org/index.html?module

[JBoss-user] [EJB/JBoss] - Re: 4.0.x classloader NoClassDefFoundException

2005-03-04 Thread abcolson
I have a simplified version of the same problem. Using JBoss 4.0.0RC2 I have app.ear Â|__ app-ejb.jar |__epi/projects/ComplianceProjectParticipantDTO.class Â|__epi/projects/cmp/ComplianceProjectParticipant.class The error is anonymous wrote : WARN [EJBDeployer] Verify failed;

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

2005-03-04 Thread zephyr
Thanks for the information; it was very helpful. I've decided to use a java web start application as the view, and session beans as the model, but the best solution for the controller remains unclear. With multiple simultanious client connections who's view must be updated anytime one of them

[JBoss-user] [JBossWS] - Re: Deploy a EJB as Web Service

2005-03-04 Thread mpitanga
Hi Thomas, My problem. Example: My EJB... Remote interface... | import | public interface APIMensagem extends EJBObject | { | ... | public void enviarMensagem( String id, logType objmsg ) throws JMSException, NamingException, RemoteException; | } | Home interface | im

[JBoss-user] [Persistence & CMP/JBoss] - Re: MySQL 4.1: Specified key was too long; max key length is

2005-03-04 Thread Czernay
Well, I know that would work, but I can't do it - it would affect all dbs created by MySQL. Isn't there a JBoss-way of doing it? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868859#3868859 Reply to the post : http://www.jboss.org/index.html?module=bb&op=po

[JBoss-user] [JBossWS] - Re: Mappoint Digest Authentication and JBoss Configuration

2005-03-04 Thread pnichols_sr
Correct.. Digest Authentication did not work in Axis 1.1 (do not know about 1.2), so you needed to override the Basic Handler. Since MS uses Digest Authentication with the MapPoint Web Service, I must use it :) I am not sure what you are asking in terms of a sample deployment, since I am consum

[JBoss-user] [Beginners Corner] - Re: JBoss 4.0 jmx-console freezes after 1 hour of load testi

2005-03-04 Thread saschwen
What I mean by stops working is that I refresh the page and the browser sits there waiting for a response but never gets one. The odd thing is that the our app still works. Thank you. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868856#3868856 Reply to

[JBoss-user] [Advanced Documentation] - Re: steps to install multiple instnaces on same machine and

2005-03-04 Thread [EMAIL PROTECTED]
You can use the binding manager or use the -b flag to assign each JBoss instance a different bind address... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868854#3868854 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=

[JBoss-user] [JBoss Getting Started Documentation] - Re: User not found: SA

2005-03-04 Thread [EMAIL PROTECTED]
That shouldn't happen. Why don't you post your whole hsql-ds.xml file? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868853#3868853 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868853

[JBoss-user] [JBossWS] - Re: Mappoint Digest Authentication and JBoss Configuration

2005-03-04 Thread [EMAIL PROTECTED]
Are you saying that Digest Authentication does not work? If so, could you please create a sample deployment and a JIRA issue? Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868852#3868852 Reply to the post : http://www.jboss.org/index.html?module=bb&

[JBoss-user] [JBossWS] - Re: Deploy a EJB as Web Service

2005-03-04 Thread [EMAIL PROTECTED]
http://www.jboss.org/wiki/Wiki.jsp?page=WSServerEJB View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868851#3868851 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868851 -

[JBoss-user] [JBossWS] - Re: strage problem tcpmon

2005-03-04 Thread [EMAIL PROTECTED]
Can you actually obtain the wsdl from http://192.168.0.200:8080/EJB4/HelloBeanService?wsdl in a browser? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868850#3868850 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=386

[JBoss-user] [JBoss.NET] - Re: What's the difference between 'official' Axis 1.1 and Jb

2005-03-04 Thread [EMAIL PROTECTED]
anonymous wrote : The Axis example is irrelevant. It is irrelevant for J2EE-1.4 compliant web services, it is good to have if you plan to use an Axis client, which JBossWS is not. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868848#3868848 Reply to the pos

[JBoss-user] [JBoss Getting Started Documentation] - Re: jmx-console -> page cannot be displayed

2005-03-04 Thread [EMAIL PROTECTED]
Maybe "localhost" doesn't work on your machine for some reason. Try 127.0.0.1. Is there anything listening on port 8080 at all? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868847#3868847 Reply to the post : http://www.jboss.org/index.html?module=bb&op=

[JBoss-user] [JBossWS] - Re: Sample code for Step-by-step tutorials?

2005-03-04 Thread [EMAIL PROTECTED]
Yes it is part of the jboss testsuite in Branch_4_0 and there is a build step that produces the samples-4.0.2.zip which will be put on the wiki when 4.0.2 is actually released (check the jira roadmap) To get at the sources do cvs co -r Branch_4_0 jboss-4.0.x View the original post : http://w

[JBoss-user] [Messaging, JMS & JBossMQ] - Arent

2005-03-04 Thread vijayk
Hello, I have a cluster of JBoss-3.2.6 nodes that work well for me. My JMS datasource for each node is DefaultDS (so messages get stored locally). When I lookup HA-JNDI and post a message to a topic, it gets stored in the local database (hypersonic) of the Master Node, which is what I expect.

[JBoss-user] [JBoss Getting Started Documentation] - Re: Problem to create microkernel or I'm wrong, what I'll do

2005-03-04 Thread [EMAIL PROTECTED]
Yes, when you see the started message, your JBoss instance is started and ready to serve requests. Why are you trying to build JBoss from source? It sounds like you would be better served by the binaries. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=38688

[JBoss-user] [Installation & Configuration] - Re: Critcal and peculiar problem- Help needed

2005-03-04 Thread rizwaan_mk
Darrel, I posted once,no more than this. Rizwan View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868844#3868844 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868844 ---

[JBoss-user] [Installation & Configuration] - Server Definition - JBoss 4.0.1sp1

2005-03-04 Thread schu777
I'm looking for the server definition for JBoss 4.0.1sp1 - This is used in Eclipse 3.1.0 - Build I20050219-1500 with the WebTools plugins. The directory that this file exists in is "..\eclipse\plugins\org.eclipse.jst.server.generic.serverdefinition_1.0.0" under the servers folder - of course t

[JBoss-user] [EJB/JBoss] - Re: config BMP ejb to use MySql Database

2005-03-04 Thread darranl
Do you really mean BMP? If you do it is your code that looks up the datasource which means that you have an error in your code and you are looking up the wrong JNDI name. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868841#3868841 Reply to the post : htt

[JBoss-user] [JBossWS] - Re: ClassNotFoundException using wscompile task

2005-03-04 Thread jspaeth
"jspaeth" wrote : I believe you just need to add the folder containing your interface class and your implementation class to the classpath passed into the wscompile. This is in addition to the jwsdp classes. For example, my classpath looks like: | | | | | | | |

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Duplicate messages

2005-03-04 Thread genman
Could you please? Or even better, fix it :-) and send a patch. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868843#3868843 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868843

[JBoss-user] [JBossWS] - Re: ClassNotFoundException using wscompile task

2005-03-04 Thread jspaeth
I believe you just need to add the folder containing your interface class and your implementation class to the classpath passed into the wscompile. This is in addition to the jwsdp classes. For example, my classpath looks like: where ${build.classes.dir} is the location of my

[JBoss-user] [Persistence & CMP/JBoss] - Re: MySQL 4.1: Specified key was too long; max key length is

2005-03-04 Thread darranl
Are you using a my.ini or my.cnf file for MySQL? If you add the following line to the file in the [mysqld] section. default-table-type=InnoDB Any newly created tables should be InnoDB. You may need to restart MySQL and if you are running it as a service you may need to reregister it to pick up

[JBoss-user] [Beginners Corner] - Re: JBoss 4.0 jmx-console freezes after 1 hour of load testi

2005-03-04 Thread darranl
What does 'stops working' mean? What happens to your app when the console 'stops working'? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868836#3868836 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868836

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Duplicate messages

2005-03-04 Thread mkprim
I did a simple test to discard the fact that my app was adding some noise. I made a QueueSender (sends a BytesMessage to the JBoss queue/testQueue) and a QueueReceiver (consumes messages from the same queue). I captured the traffic between those machines, and the result was the same. I here add t

[JBoss-user] [Clustering/JBoss] - Re: Unable to connect to database when I use clusters

2005-03-04 Thread darranl
What errors are you getting when you start the all configuration? Are you sure that you have made the same changes to the all configuration that you made to the default configuration? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868834#3868834 Reply to the

[JBoss-user] [Installation & Configuration] - Re: Critcal and peculiar problem- Help needed

2005-03-04 Thread darranl
Hi Rizwan, Please only post your questions once. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868833#3868833 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868833 -

[JBoss-user] [Advanced Documentation] - Re: Jboss auto start after restarting the Server OS

2005-03-04 Thread darranl
http://www.jboss.org/wiki/Wiki.jsp?page=RunJBossAsAServiceOnWindows View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868832#3868832 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868832 -

[JBoss-user] [Security & JAAS/JBoss] - Re: Authentication not passed from web to EJBs through.

2005-03-04 Thread ricardoarguello
It looks like a known 4.0.0 bug: http://sourceforge.net/project/shownotes.php?release_id=254646 Try with JBoss 4.0.1 or 4.01SP1 Ricardo Arguello View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868831#3868831 Reply to the post : http://www.jboss.org/index.ht

[JBoss-user] [Javassist user questions] - Re: array initializer is not supported

2005-03-04 Thread grnwood
Oh sorry, exception is: javassist.CannotCompileException: [source error] array initializer is not supported | at javassist.CtField.make(CtField.java:153) | at src.ORMGenerator.main(ORMGenerator.java:76) | Exception in thread "main" | thanks, joe View the original post : http:

[JBoss-user] [Javassist user questions] - array initializer is not supported

2005-03-04 Thread grnwood
Trying to do something like this : String expr = "public static final "+sorm+" fld"+niceName+" = new "+sorm+ | "(meta, \"fld"+niceName+"\", new sorm.properties.vals[] { sorm.con.MANDATORY });"; | } // end if | | CtField field = CtF

[JBoss-user] [The Lizzard's corner] - Re: Where do we get materials from the JBoss World 2005?

2005-03-04 Thread [EMAIL PROTECTED]
They will be made available online eventually. Probably not this week or next week yet though. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868828#3868828 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868828

[JBoss-user] [Messaging, JMS & JBossMQ] - Connection not authorized to addMessages to destination: DLQ

2005-03-04 Thread DaveTrahan869
I need to secure access to all jms queues and topics so I configured this in jbossmq-service.xml: | | | | | | java:/jaas/jbossmq | jboss.mq:service=DestinationManager | Authentication is redirected to my database in login-config.xml:

[JBoss-user] [EJB/JBoss] - Re: ejb jar as utility jar

2005-03-04 Thread phoenixsilver
This is what the ouput is when DEBUG is on 09:32:56,103 DEBUG [Member#findByLastName] Executing SQL: SELECT FROM members t0_o WHERE (t0_o.last_name = ?) 09:32:56,103 DEBUG [Member#findByLastName] Executing SQL: SELECT FROM members t0_o WHERE (t0_o.last_name = ?) View the original post : http

[JBoss-user] [Installation & Configuration] - Re: Log4j - separating logging from jBoss logging

2005-03-04 Thread bmelloni
No, I am not just talking about separate logging via an appender. I am talking about being able to have ALL logging jar and configuration in the WAR/EAR - with ZERO interaction or dependency on jBoss. As a matter of fact, I am even talking about my application having its own jars for all of

[JBoss-user] [Security & JAAS/JBoss] - Re: Authentication not passed from web to EJBs through.

2005-03-04 Thread dimkaz
in page i trying both. getRemote user give me admin. the user in roles give me false. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868822#3868822 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868822 -

[JBoss-user] [Security & JAAS/JBoss] - Re: Authentication not passed from web to EJBs through.

2005-03-04 Thread ricardoarguello
request.userInRole() only works if your JSP or Servlet is defined as a protected resource in web.xml Try to print request.getRemoteUser() in your JSP. If your JSP is not defined as protected in your web.xml file, it should return null. Ricardo Arguello View the original post : http://www.jbo

[JBoss-user] [Installation & Configuration] - Re: Two JBoss Instance

2005-03-04 Thread Lviz
hi this is what you looking for: http://www.jboss.org/wiki/Wiki.jsp?page=ConfigurePorts http://www.jboss.org/index.html?module=bb&op=viewtopic&t=59317 cheers L View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868819#3868819 Reply to the post : http://www.jbo

[JBoss-user] [Javassist user questions] - Why is there no LocalVarAccess just like FieldAccess Expr?

2005-03-04 Thread rezahay
Hi, I use javassist Expr classes (for example FieldAccess) to construct a model of the running java class. It would be very fine if there was a javassist LocalVarAccess (just like FieldAccess) in order to get information about the local-variables of a method (and hence about the behavior of the

[JBoss-user] [JBossWS] - ClassNotFoundException using wscompile task

2005-03-04 Thread wizumwalt
Which attribute in this task shows where to find the class file that the compiler is looking for in the error msg? AFAIK, the source files are generated off of the interface file and placed in sourcebase, and then the classes are compiled and put in the base attrib. Any help much appreciated.

[JBoss-user] [Installation & Configuration] - build JBoss 3.2.3 installable format

2005-03-04 Thread k_s_ashok
I downloaded JBoss 3.2.3 source code and i did some modification on this code. How can i build the server using my modified JBoss 3.2.3 source code? i need some installble format( tar / bz2) on Linux machine? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868

[JBoss-user] [Beginners Corner] - Re: Tutorial on J2EE using JBOSS, Eclipse and Lomboz.

2005-03-04 Thread ingrid
Nice to hear from you Vishal, but I don't see how the bugs you mentioned in that thread relate to my question above. In my understating your tutorial builds a "read-only" app. I really need to know how to make the session and the bmp that are using dao to have create and store methods working a

[JBoss-user] [Clustering/JBoss] - Re: HA-JNDI lookups takes very long to complete

2005-03-04 Thread [EMAIL PROTECTED]
Use JBossCache instead. JNDI was not designed for high write-read ratios (most read-only) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868779#3868779 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868779 -

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

2005-03-04 Thread [EMAIL PROTECTED]
You should look for a SOAP stack that is BasicProfile-1.0 compliant. Is that the case with the new Axis C++? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868716#3868716 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3

[JBoss-user] [Beginners Corner] - JBoss 4.0 jmx-console freezes after 1 hour of load testing.

2005-03-04 Thread saschwen
Hello, We're in the process of evaluating JBOSS for production use. We've just install JBoss 4.0 on a new linux machine and converted one of our old applications from iPlanet 6.0 to run on jboss. Everything was going good until we started testing the application under load with a load testing

[JBoss-user] [EJB/JBoss] - ejb jar as utility jar

2005-03-04 Thread JungleJim
I'm running into an issues relating to manifest classpaths and ejb jar files in JBoss 3.2.7 on Windows XP with Sun JDK 1.3.1_15. Consider the following situation: | test.ear | META-INF\ | application.xml | web1.war | META-INF\ | MANIFEST.MF | web.xml | e

[JBoss-user] [EJB/JBoss] - Re: usertransaction disappears in stateful session bean

2005-03-04 Thread hooverphonique
Ups.. forgot to say im using JBoss 3.2.6, Hibernate 2.1.8 and J2SDK 1.4.2_5 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868782#3868782 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868782 -

[JBoss-user] [Installation & Configuration] - Re: Two JBoss Instance

2005-03-04 Thread darranl
You need to look for information on the binding service, this allows you to specify all the ports in a single configuration file. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868701#3868701 Reply to the post : http://www.jboss.org/index.html?module=bb&op=p

[JBoss-user] [JBossWS] - Mappoint Digest Authentication and JBoss Configuration

2005-03-04 Thread pnichols_sr
I need some assistance using Jboss' Axis implementation with JBoss. I am using JBosss 4.0.1 To use the Microsoft Mappoint service, we need to be able to handle Digest Authentication. Using Tomcat 5.0, I can do this by implementing my own class, overriding the BasicHandler in Axis, and using a c

[JBoss-user] [Performance Tuning] - Re: Threading Anomoly

2005-03-04 Thread mcguinnessdave
sorry the excerpt got cut off, here it is now... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868787#3868787 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868787

[JBoss-user] [Performance Tuning] - Re: Executing Session Bean methods very slow over internet

2005-03-04 Thread triathlon98
I think you should use host with the name as used for remote access (dns name). In your servers configuration, you might need to make sure that this is known to be the local machine, but I am not sure about that part. Joachim View the original post : http://www.jboss.org/index.html?module=bb&o

[JBoss-user] [EJB/JBoss] - CMP error Can't parse EJB-QL statement

2005-03-04 Thread phoenixsilver
Hi I have a very simple CMP 2.0 bean where the finder method will not parse and I almost 100% correct. I will post all of the relevant code and the exepction if anyone can help that would be great. Platform -- JBoss 4.0.1 Win2000 Pro IDE Eclipse Postgres 7.4 -

[JBoss-user] [Installation & Configuration] - Re: JBOSS 4.0.1 : Unable to find a javac compiler

2005-03-04 Thread ricardoarguello
Are you sure it's a SDK? It looks like you installed a JRE. Try "javac" from your command line? Ricardo View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868808#3868808 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=386880

[JBoss-user] [Beginners Corner] - HTTP Request Logs

2005-03-04 Thread gseel
I have two installations of JBoss (one 3.2.5 and the other 3.2.6) on machines. The documentation says that Http Request logs should be produced in the logs directory of the server. This isn't the case with either installation. Have I inadvertently turned the facility off? If so how do I turn it

[JBoss-user] [Beginners Corner] - Re: JBoss 4

2005-03-04 Thread ricardoarguello
JBoss-4.0.1SP1 is the latest release. Release Notes - JBoss Application Server - Version JBossAS-4.0.1 SP1 http://sourceforge.net/docman/display_doc.php?docid=27004&group_id=22866 SP1 Means "Service Pack 1". It's the next release after JBoss 4.0.1 Read more here: http://www.jboss.org/wiki/Wiki.j

[JBoss-user] [JBoss Getting Started Documentation] - Re: Duke's Bank Build Fail

2005-03-04 Thread griojas
Thanks guys I changed the jboss-net.sar file and now it works. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868663#3868663 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868663 --

[JBoss-user] [Persistence & CMP/JBoss] - Corrupted Field After EntityBean-Update

2005-03-04 Thread reimannt001
Hello, we're using JBoss 4.0 with an Oracle 8i database. Our application (Swing-Client) uses SessionBeans in order to create/modify EntityBeans (2.x) and persist them via a configured XA Datasource using ojdbc14.jar. Now our problem is: creating an EntityBean works well, all data is saved corre

[JBoss-user] [Beginners Corner] - error with Jasper on JBoss 3.2.5

2005-03-04 Thread MmarcoM
Hello all, I have written a webapp that uses jasper to generate a report from Some data in the database. I have deployed my application on JBoss 3.2.5, and In my webapp\WEB-INF\lib I have included jasperreports-0.6.4.jar as well as bsh-1.3.0.jar. When I run my application to generate a

[JBoss-user] [JBoss Getting Started Documentation] - Re: chapter 8 problem of 'Getting Started with JBoss 4.0'

2005-03-04 Thread ricardoarguello
Maybe is this bug? http://bugs.mysql.com/bug.php?id=3611 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868737#3868737 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868737

[JBoss-user] [Installation & Configuration] - HA-JNDI and HTTP invoker

2005-03-04 Thread ToeCheez
We are using JBoss3.2.2 in a cluster. I cannot figure out how to configure remote clients for HA-JNDI. We use the jndi.properties file, and when I enter more than one URL, I get an IO error. Has anyone set up a cluster with HA-JNDI for remote clients? We really need to use the http-invoker b

[JBoss-user] [Clustering/JBoss] - EJB Clustering Blues

2005-03-04 Thread sand_pu
Hi Forum, This has been bugging me for days. I have Jboss servers running on two Win2k machines in the clustered configuration. I have a simple session bean deployed in the farm directory. I'm able to look up the bean's home and remote interfaces. I've specified round robin balancing policy in

[JBoss-user] [JBossWS] - Sample code for Step-by-step tutorials?

2005-03-04 Thread bwoodward
Does the example code exist for the step-by-step tutorials on the wiki page? The classes used in the tutorial are different that the attached sample.zip. It would be nice to be able to "follow along" with the actual code. Bill Woodward View the original post : http://www.jboss.org/index.html?

[JBoss-user] [Security & JAAS/JBoss] - Authentication not passed from web to EJBs through.

2005-03-04 Thread dimkaz
Hi everybody, i have stuck with following problems. I have an application and two modules within it - the ejb (some entities and one session bean) and web module. In web module i have set the authentication with some domain name and database login module. It works for authentication fast prop

[JBoss-user] [JBossWS] - Re: Generating mapping file and WSDL file

2005-03-04 Thread jspaeth
Has anybody yet received a response from sun on this issue? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868724#3868724 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868724 -

[JBoss-user] [JBossWS] - Re: SOAP response does not conform to WSDL

2005-03-04 Thread [EMAIL PROTECTED]
This should be fixed in Branch_4_0 cvs co -r Branch_4_0 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868715#3868715 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868715

[JBoss-user] [EJB/JBoss] - JBoss Hot Deployment Problem...

2005-03-04 Thread anu_katta
Hi All, I need some help in fixing my project to work with the Jboss's hot deployment configuration. When I hotdeploy my .ear file onto Jboss server it says it is undeploying the .ear file and deploying it again. But I didn't see the changes in my client calls. Actually we are using EJBHandle ob

[JBoss-user] [HTTPD, Servlets & JSP] - Precompile JSPs during/after deployment (not at compile time

2005-03-04 Thread dmlang
Hi, Websphere 5.1 provides a shell script "JspBatchCompiler.sh" which pre-compiles all JSPs currently deployed in a web application. Does JBoss offer a similar function? I am not after a method to include precompiled jsps in a war file, since such war files do not tend to run across different

[JBoss-user] [Management, JMX/JBoss] - Re: Service interface vs ServiceMBean interface. Which to us

2005-03-04 Thread [EMAIL PROTECTED]
To get an addiction with MBens, have a look at the following wiki pages: http://www.jboss.org/wiki/Wiki.jsp?page=ExampleHelloWorldService http://www.jboss.org/wiki/Wiki.jsp?page=ServiceMBeanSupport View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868807#3868807

[JBoss-user] [Management, JMX/JBoss] - Service interface vs ServiceMBean interface. Which to use ?

2005-03-04 Thread fmarchioni
Hello, I'm interested to know more about 2 options you have when you deploy an mbean on jboss. Can anybody point out what is the scenario when you use: 1)your MBean implements the org.jboss.util.Service interface. 2) you bean implements ServiceMBean interface / ServiceMBeanSupport Thanks a lot F

[JBoss-user] [Beginners Corner] - JBoss 4

2005-03-04 Thread k_s_ashok
JBoss 4 is stabled version? when i see the downloaded page all shows SP's View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868806#3868806 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868806 ---

[JBoss-user] [Installation & Configuration] - Problem getting Eclipse 3.1m5 with WebTools to see JBoss 4.0

2005-03-04 Thread schu777
Hi Everyone, For the day I've been trying to get Eclipse setup and see the JBoss 4.0.1RC1. Right now I'm trying to do the simple tutorial of "http://eclipse.org/webtools/index.html"; on the section of "Choose a Server Runtime Environment". When I go to "Window/Preferences - Server - Installed

[JBoss-user] [Installation & Configuration] - Re: Problems with mbeans running MySQL 4.1.9 + JBoss 4.0Sp1

2005-03-04 Thread xdoclet
well, i think there should be something wrong with the config xml, can advice is you can list the configuration file. make sure that there are no conflicts between the name spaces regards tyronne bershath View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=386876

[JBoss-user] [Performance Tuning] - Re: Threading Anomoly

2005-03-04 Thread mcguinnessdave
Hi, As far as I know, what I was changing in server.xml was the thread pool size. am I mistaken? I am using default as the server configuration, Thanks, Dave View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868804#3868804 Reply to the post : http://www.jbo

[JBoss-user] [Management, JMX/JBoss] - How to make JBoss JMS works with Oracle in multi-developers

2005-03-04 Thread btruong
Can JBoss JMS with Oracle persistence storage works in multi-developers environment where developers run JBoss on their desktops and all have the same persistence configuration that points to the same Oracle database. I noticed the oracle-jdbc-state-service.xml has a line: CREATE_TABLES_ON_STAR

[JBoss-user] [JBossWS] - Re: (beginner) wscompile and generated class files.

2005-03-04 Thread [EMAIL PROTECTED]
The artifacts you are talking about are specific to the jwsdp SOAP stack and not relevant to WS4EE. Including them in your WS deployment would render it unportable. AFAIK, you cannot surpress their generation. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=38

[JBoss-user] [Performance Tuning] - Re: Threading Anomoly

2005-03-04 Thread [EMAIL PROTECTED]
Did you try increasing the ThreadPool? Are you using all or default as server configuration? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868803#3868803 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868803 --

[JBoss-user] [Installation & Configuration] - Re: Log4j - separating logging from jBoss logging

2005-03-04 Thread vashistvishal
I presume what you are saying here is you need a dedicated logging for yr application without interfrence of JBoss logging. If thats the case then you need a dedicated appender say RollingFile Appender. | ---Path of appender and other setting comes here | | So what you need i

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

2005-03-04 Thread informsantosh
Hi you need to increase the value of block out time from 3 to say 7 3 Another thing is make sure you are closing all connections in the custom code you have written View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868647#3868647 Reply to the post :

[JBoss-user] [Installation & Configuration] - JBOSS 4.0.1 : Unable to find a javac compiler

2005-03-04 Thread optimusprime
Hello there! I've installed JBOSS 4.0.1 and It complains about javac compiler. Jboss 3.2.7 is running smoothly on the same machine. I do have javahome configured and my path, the first element points to jsdk installation. I'm running windows 2000 server. Any ideas View the original post :

[JBoss-user] [Clustering/JBoss] - Re: HTTP Session clustering intermittently

2005-03-04 Thread markoh
Hello Have something like this http://www.jboss.org/index.html?module=bb&op=viewtopic&t=61029 Solved with changing ..all/deploy/jbossweb-tomcat50.sar/META-INF/jboss-service.xml | ... | false | ... | Jboss 3.2.5 But for me works only when BASICAuth or no auth used... View the origi

  1   2   >