[JBoss-user] [Beginners Corner] - Re: JBoss users in Bangalore

2005-02-06 Thread dineshluke
Thanks for the reply.Will look foward to hear about your office starting in Bangalore and all other activities connected with JBoss in India. Thanks DL View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865514#3865514 Reply to the post : http://www.jboss.org/ind

[JBoss-user] [JBoss Getting Started Documentation] - Re: Any known DataSource proxies impl for JBoss

2005-02-06 Thread jitesh_popat
Thanks Scott, it worked. All I need to do was put the following jar in remote client's classpath: $jboss-root\server\default\lib\jboss-common-jdbc-wrapper.jar The said jar contains "org.jboss.resource.adapter.jdbc.remote.DataSourceFactory". One last thing though...following is the way I am ge

[JBoss-user] [Installation & Configuration] - mysql-ds.xml setting

2005-02-06 Thread max_ten
Properties props = new Properties(); props.setProperty("zeroDateTimeBehavior", "convertToNull"); Instead of set the property in the program, how to set the connection properties in config file? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865505#3865505 Re

[JBoss-user] [Persistence & CMP/JBoss] - How to ORDER BY case-insensitively using jboss-ql?

2005-02-06 Thread Hakucho
I'd like to be able to find entities in a case-insensitive order. In normal JDBC I would do something like select * from Employee order by upper(Employee.FirstName) so in jboss-ql I tried this: SELECT DISTINCT OBJECT(p) | FROM PersonSchema p | ORDER BY UCASE(p.firstName) However at deploy time

[JBoss-user] [Installation & Configuration] - Re: How to Replace crimson with xerces parser?

2005-02-06 Thread [EMAIL PROTECTED]
Dependent on ur JBoss version, the jars should be under lib or lib/endorsed of your JBoss. The system property java.endorsed.dirs should point to it. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865503#3865503 Reply to the post : http://www.jboss.org/inde

[JBoss-user] [Persistence & CMP/JBoss] - Re: deployment error with empty ejb-ql tag

2005-02-06 Thread Hakucho
D'oh!(imagine big head-slap) I renamed the meta-inf folder in my JAR file to META-INF (upper case) and now JBoss sees my jbosscmp-jdbc.xml file! Hooray! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865502#3865502 Reply to the post : http://www.jboss.o

[JBoss-user] [Installation & Configuration] - Exception Occured when re-deploy application

2005-02-06 Thread wanted
Hi all, I have an application deployed into JBoss 4.0, everytime when i redeploy the application, it will crashed. But when i restart my JBoss, the application will be working again. The exception thrown out when i re-deploy the application : 11:05:55,440 WARN [MapperListener] Error registerin

[JBoss-user] [Persistence & CMP/JBoss] - Re: deployment error with empty ejb-ql tag

2005-02-06 Thread Hakucho
I have the same problem. I think in my case it happens because my jbosscmp-jdbc.xml file isn't being detected (or used) by JBoss. I think this because even if I change one of the elements in my jbosscmp-jdbc.xml file to something invalid, the EAR file still deploys OK. I'm using JBoss 4 and CM

[JBoss-user] [JBossWS] - Re: port-component-uri limited to single directory web conte

2005-02-06 Thread joff
I just want to add a "me too" it was working as expcted in 4.0.0, but it breaks when using /services/* in 4.0.1 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865499#3865499 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=repl

[JBoss-user] [Security & JAAS/JBoss] - JAAS and httpsession

2005-02-06 Thread leeson1125
Hi, I am doing a web application using JBoss 3.2.1 and using DatabaseServerLoginModule for JAAS. I get some problem with httpSession. After user login, if he open another IE and login using same username on same PC but without log out the previous login, it seems these two login will share the

[JBoss-user] [JBoss Getting Started Documentation] - Re: Any known DataSource proxies impl for JBoss

2005-02-06 Thread stevenpeh
"jitesh_popat" wrote : Hi Scott, | | Thanks a lot for your reply. | | Agreed, I was able to bind the datasource to global JNDI. But while trying to get it from a remote client, I directly do not get back "javax.sql.DataSource" instance, instead I get "javax.naming.Reference" object. W

[JBoss-user] [Installation & Configuration] - Error for onfigure an Mysql data source

2005-02-06 Thread quintenjiang
Hi I built correct user for mysql, put mysql-connector-java-3.1.6-bin.jar under lib. and modified mysql-ds.xml under deploy. But when I start jboss, it keep to generate error like: 2005-02-06 18:23:54,520 DEBUG [org.jboss.resource.connectionmanager.IdleRemover] internalRegisterPool: about to

[JBoss-user] [Installation & Configuration] - How to Replace crimson with xerces parser?

2005-02-06 Thread [EMAIL PROTECTED]
I'm attempting to do XML schema validation that requires a JAXP 1.2 compliant parser. JBoss and JDK 1.4.x default to using the crimson DocumentBuilderFactoryImpl and SaxParserFactoryImpl. I've been trying every possible way of overriding crimson with xerces, but nothing works. I put xerces in

[JBoss-user] [Installation & Configuration] - Re: JBoss+JDK1.4+Xerces

2005-02-06 Thread [EMAIL PROTECTED]
I attempted the same solution and it doesn't work for me. No matter what I do to override the default implementation for the DocumentBuilderFactory, it uses crimson instead of xerces. I also tried defining a jaxp.properties in the jre/lib directory and it doesn't work. Any ideas? View the ori

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Question about ClientMonitorInterceptor

2005-02-06 Thread dreyk
Thank you Adrian. I fixed this problem for me. Sorry for my English:) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865489#3865489 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3865489 ---

[JBoss-user] [Javassist user questions] - Re: reading java 5.0 annotations

2005-02-06 Thread bheal
>Maybe that is because the default value is not included in each >class file. (I'm not sure) I've just discovered in http://java.sun.com/docs/books/vmspec/2nd-edition/ClassFileFormat.pdf stuff about an AnnotationDefault attribute which sounds what I need. It says it contains default values fo

[JBoss-user] [Installation & Configuration] - Re: Configure an Oracle 9i data source

2005-02-06 Thread DaveyS
>From the trace it looks like you have called your deployment file >"my_oracle_ds.xml". Data sources have to end with "-ds.xml", so if you rename >your file "my_oracle-ds.xml", it will probably deploy fine. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=386

[JBoss-user] [HTTPD, Servlets & JSP] - Re: classloader crossing into another jar?

2005-02-06 Thread jleveille
After some searching I found my own answer. It turns out to be the default behavior of the JBoss Unified Class Loader (UCL). I found a discussion thread about it here http://www.jboss.org/?module=bb&op=viewtopic&t=41379&start=10 Basically, it turns out that JBoss tried to make some things eas

[JBoss-user] [Beginners Corner] - Re: Virtual Directory in JBoss?

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

[JBoss-user] [Beginners Corner] - Re: JBoss users in Bangalore

2005-02-06 Thread [EMAIL PROTECTED]
http://indicthreads.com/content/view/126/55/ IndicThreads >> Good to know that you have a training sessions planned for Bangalore, India. So can we expect a JBoss office in India and training sessions in the other cities? Anil Saldhana >> Our first JBoss training in Bangalore attracted a larg

[JBoss-user] [O'Reilly JBoss 3.0/4.0 Workbook] - Re: An view from an individual developer

2005-02-06 Thread [EMAIL PROTECTED]
The jmx chapter in the online admin and devl guide talks about mbeans. http://docs.jboss.org/jbossas/jboss4guide/r2/html/ View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865478#3865478 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&m

[JBoss-user] [Beginners Corner] - Re: Unable to look up java:/DefaultDS

2005-02-06 Thread darranl
I am assuming that your client is a remote client. Remote clients can only lookup items in the global namespace not in the java: namespace. Which version of JBoss are you using? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865477#3865477 Reply to the pos

[JBoss-user] [Beginners Corner] - Re: Unable to look up java:/DefaultDS

2005-02-06 Thread [EMAIL PROTECTED]
Is your client running in the same JVM as JBoss? If yes, then you will be able to access the java:// namespace. Global namespace is available to clients outside the JVM. Is this the case? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865476#3865476 Reply

[JBoss-user] [Installation & Configuration] - Re: JavaMail in JBoss

2005-02-06 Thread [EMAIL PROTECTED]
Your problem with not seeing the exceptions being caught is clearly not a JBoss issue. It is either: 1) A serious bug with your java compiler/jvm (very unlikely) - better targeted at your jdk provider 2) You are running code that is NOT compiled from the source you are looking at 3) You are not

[JBoss-user] [HTTPD, Servlets & JSP] - exception-type ignored in web.xml

2005-02-06 Thread bcollet
Hi all, I am trying to redirect the user to an error page in case of error. It works when using error-code but not exception-type. | 500 | /error.jsp | | | java.lang.Throwable | /error.jsp | | For example, it

[JBoss-user] [Installation & Configuration] - Re: JavaMail in JBoss

2005-02-06 Thread [EMAIL PROTECTED]
Correct JBOSS_HOME/server/default/lib/mail.jar and mail-plugin.jar is the Sun provided reference implementation You will never get any answers to your questions if you just post words (your assertions about what you *think* is happening). You will be ignored unless you post code/config/exception

[JBoss-user] [Installation & Configuration] - Re: JavaMail in JBoss

2005-02-06 Thread stevecoh2
oops, I mean to say "What I'm finding is that jboss is possibly not involved at all". View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865472#3865472 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3865472 -

[JBoss-user] [Installation & Configuration] - Re: JavaMail in JBoss

2005-02-06 Thread stevecoh2
OK. Several have read, nobody has answered. I'm not complaining, nobody felt they had an answer. So I've been digging in the bowels of jboss source to try to understand. What I'm finding is that jboss is possibly not defined at all. Since javax.mail.Transport is an abstract class, I was jus

[JBoss-user] [Beginners Corner] - Re: Errors in Jboss 3.2.5

2005-02-06 Thread ramjav
Wow! I didn't know that! So, where do you put this jar file? Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865458#3865458 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3865458 -

[JBoss-user] [Beginners Corner] - Re: Crystal Reports configuration

2005-02-06 Thread maoz10
Hi, I am using jboss with crystal reports. I am trying to configure the report to work with JNDI through JBoss. Any help would be greatly appreciated. Thanks, S. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865450#3865450 Reply to the post : http://www.jb

[JBoss-user] [Beginners Corner] - Phantom goGet(..) Invocations?

2005-02-06 Thread bbeloff
Hi. I've got a problem I'm finding hard to nail down ... I'm running JBoss 3.2.6. I've got an application with a number of EJBs, Servlets, etc. I've found a peculiar issue with one servlet, which implements both doGet(...) and doPost(..). (1) In some cases, where a browser submits a POST for

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Question about ClientMonitorInterceptor

2005-02-06 Thread [EMAIL PROTECTED]
Report it as a bug. http://jira.jboss.com/jira/secure/CreateIssue!default.jspa There is some stupid hardwiring in HTTPILService.startService | |public void startService() throws Exception |{ | super.startService(); | this.pingPeriod = 0;// We don't do pings.

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JBossMQ - Using hashed password

2005-02-06 Thread [EMAIL PROTECTED]
JBossMQ just uses JAAS, by default the DatabaseServerLoginModule which supports password hashing, read the documentation. If you can't figure it out, your question belongs in the security forum. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865442#3865442 Re

[JBoss-user] [Javassist user questions] - Re: reading java 5.0 annotations

2005-02-06 Thread bheal
Thankyou. As soon as I stop using default values, all is well! So this presumably means that if I want all the effective annotations, I have to walk the superclasses to get inherited annotations, and access the annotation declaration to get the defaults. Perhaps the API could include some utilit

[JBoss-user] [Javassist user questions] - Re: reading java 5.0 annotations

2005-02-06 Thread chiba
Maybe that is because the default value is not included in each class file. (I'm not sure) public @interface Author { | | String name() default "me"; | | int age() default 999; | } Won't you try to read the annotations of the Author interface? Regards, Chiba Vi

[JBoss-user] [JBossWS] - Ws-Security with JBossWS or using JWSDP with Jboss+tomcat bu

2005-02-06 Thread gag_72
is there a way through which I can use JWSDP with builtin JBOSS tomcat bundle?? I need to use ws-security for webservices which will be exposed using existing EJBs? With pure JbossWS is it possible?if yes, how? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=386

[JBoss-user] [O'Reilly JBoss 3.0/4.0 Workbook] - An view from an individual developer

2005-02-06 Thread lawrenceleung
HI JBoss : I am a individual developer and work with JBoss start from 2.X. It is OK to work on JBoss but I cannot get a detailed docs on some advance features like developing MBean etc Even I am willing to pay for that ? Help !! I dont want to switch to other application server. Lawre

[JBoss-user] [Beginners Corner] - Unable to look up java:/DefaultDS

2005-02-06 Thread vikram_kadi
Hi , Please help me with this.when i do a look up on the java:/DefaultDS , it is throwing an exception Name Not bound whereas in the JMX console it shows that java:/DefaultDS is bound to the hypersonic DataSource. I am able to look up on ejbs , and on all the names

[JBoss-user] [Messaging, JMS & JBossMQ] - JBossMQ - Using hashed password

2005-02-06 Thread wanted
hi all, I have successfully authenticate client request based on the user id and password submitted by the client. All the passwords now are save as plain text in database (JMS_USERS). This is something I think is not appropriate, is it possible for us to hashed the password? if yes, can you ple

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

2005-02-06 Thread darranl
First don't hijack other peoples posts, you should be starting a new one for your question. anonymous wrote : but it can't work on JBoss 4. If you want any help you are going to have to explain your problem, all you have said is that it does not work. What makes you think that it is not worki

[JBoss-user] [Beginners Corner] - Re: Errors in Jboss 3.2.5

2005-02-06 Thread darranl
You should not be changing anything in the client folder. Where in the jar file is your class, it doesn't just need to be in there is needs to be in the correct location 'com/javiers/j2ee'. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865424#3865424 Reply