Re: [JBoss-user] Why PHP why not JSP?

2003-01-11 Thread Binil Thomas
Bill Burke wrote: We are in the process of creating our own CMS framework. Actually a direct port of PostNuke. Will it be available in the open domain? If so, do you have a time-frame in mind? Good luck on this! Cheerio, Binil --- This

Re: [JBoss-user] jbuilder 7 and jboss3.0.4

2002-12-01 Thread Binil Thomas
Haven't used JBuilder 7, but could it be because JBoss is not a servlet engine? Try building your web application after specifying Tomcat or Jetty (depending on the JBoss distribution you downloaded) in JBuilder. Just a wild guess :) Cheers, Binil Hi, Does anyone use Jbuilder7 and

Re: [JBoss-user] sample project / deploying servlets

2002-11-26 Thread Binil Thomas
see http://prdownloads.sourceforge.net/jboss/JBoss.3.0TemplateAndExamples.zip?do wnload - Original Message - From: SainTiss [EMAIL PROTECTED] To: JBoss Mailing [EMAIL PROTECTED] Sent: Tuesday, November 26, 2002 7:33 PM Subject: [JBoss-user] sample project / deploying servlets

[JBoss-user] Can multiple datasources be defined in the same XML file?

2002-10-15 Thread Binil Thomas
Hi all, I need to have two different datasources defined for two MySQL databases. Searching the forums http://jboss.org/forums/thread.jsp?forum=46thread=22388 suggests using two XML files in the deploy directory. Is it possible to deploy two datasources with the same XML file? TIA, Binil

Re: [JBoss-user] Re: Erratic -- jboss3.0 on linux

2002-09-20 Thread Binil Thomas
Hi Arijit, I dont know why you run into these problems. But I have been using JBoss3 on my RH 7.2 machine at home and RH 7.3 machine here at work. I use Sun JDK 1.3.1 on both machines. Are you by any chance using an older version of the JDK? Thanks, Binil On Fri, 20 Sep 2002, Arijit Ghosh

Re: [JBoss-user] Jboss3.0 on Linux

2002-09-19 Thread Binil Thomas
See the QuickStart guide at http://sourceforge.net/project/showfiles.php?group_id=22866 (get the JBoss.3.0.QuickStart.Draftx.pdf HTH, Binil On Thu, 19 Sep 2002, Arijit Ghosh wrote: Hi, I am trying to install jboss3.0 tomcat4.0.3 on Linux. I have installed JDK1.3 and have java_home/bin

Re: [JBoss-user] How to run servlet?

2002-09-19 Thread Binil Thomas
but some times we have to assume certain things.. yes, but definitely not on an internet list! i am creating .war directory means i have certain level of knowledege in JBOSS. let me check my crystal ball! :) --- This sf.net email is

RE: [JBoss-user] HTTP session clustering on 3.0.2

2002-09-10 Thread Binil Thomas
Hello Sacha, Nice to hear this!! I was starting to get the impression that HTTP Session replication was some closely gaurded secret. :) Cheerio, Binil On Mon, 9 Sep 2002, Sacha Labourey wrote: Hello Kim, Sorry for this. HTTP session replication is officially present (and working!) in

Re: [JBoss-user] JBoss - Forte EE plugin

2002-07-28 Thread Binil Thomas
Hi Toby, vendor You can try NbJBoss plugin from SIPTech. See http://www.siptech.com/. It integrates with NetBeans IDE. /vendor HTH, Binil On Fri, 26 Jul 2002, Toby J Anderson wrote: Does anyone know of a good Forte Enterprise Edition plugin that will allow you to edit the jboss.xml file in

Re: [JBoss-user] Database settings

2002-07-23 Thread Binil Thomas
Hi Dimitri, all and default are two configurations in which JBoss 3.0 can be run. JBOSS_HOME/server/all/conf directory is one in which the configuration files of the configuration all is placed. Likewise about JBOSS_HOME/server/default/conf. You can as well make a configuration dimitri and in

Re: [JBoss-user] Type mappings

2002-07-23 Thread Binil Thomas
On Wed, 24 Jul 2002, Dimitri PISSARENKO wrote: Is it possible to place the type mappings only into the jaws.xml file of EJB jar file ? Yes. And probably that is the better solution, because that way your beans can be deployed safely onto any compatible JBoss installation, even though the

Re: [JBoss-user] Deleting all records

2002-07-23 Thread Binil Thomas
On Wed, 24 Jul 2002, Dimitri PISSARENKO wrote: Hello! How can one delete all records of a certain table (when using CMP beans) ? Is calling findAll and then remove for each record the only choice? Isn't there a more elegant solution? Not sure about the elegance, but you can write a home

[JBoss-user] HTTP Session Clustering: How To?

2002-07-23 Thread Binil Thomas
Hi all, The Clustering doccument from JBoss says that HTTP Session Clustering with Tomcat and Jetty is implemented but not officially released. I am using JBoss 3.0.0 + Tomcat 4.0.3. Can someone (Sacha? Bill?) please point me to a doccument that details HTTP Session Clustering with embedded

Re: [JBoss-user] Generating primary keys in mySQL

2002-07-22 Thread Binil Thomas
Dimitri, As someone already pointed out, your pk generation strategy might not gaurentee absolutely unique integers under concurrent access situations. This problem has been debated extensively on different forums/lists and you can find the concise results of those discussions by taking a look at

Re: [JBoss-user] JBoss 3.0 Documentation

2002-07-19 Thread Binil Thomas
A quick start guide, which is in draft stage right now, can be downloaded from the sourceforge project page. - Binil On Fri, 19 Jul 2002, Rahul wrote: Is JBoss 3.0 Documentation available anywhere? --- This sf.net email is sponsored

Re: [JBoss-user] JBoss 3.0 Documentation

2002-07-19 Thread Binil Thomas
But to use this workbook effectively you need to have a copy of Richard Monson-Haefel's Enterprise JavaBeans 3r edition (ORielly), right? On 19 Jul 2002, Andreas Kuckartz wrote: Is JBoss 3.0 Documentation available anywhere? In addition to the current draft of the Quick Start guide already

Re: [JBoss-user] Re: Error in datamapping for java.lang. Long

2002-07-18 Thread Binil Thomas
Hi, It means java.lan.Long fields in your CMP EntityBeans will be persisted to BIGINT columns in your database now. Its better not to change standardjaws.xml, intead you can edit the jaws.xml file in your EJB jar file. This will mean that the change is effected only when persisting your bean (not

Re: [JBoss-user] problems using local interfaces

2002-07-17 Thread Binil Thomas
On Wed, 17 Jul 2002, Marko Asplund wrote: On Wed, 17 Jul 2002, Alex Loubyansky wrote: local interfaces are not allowed to be accessed remotely. Therefore they are called local :) ok, but with respect to what is locality defined? yes, locality is defined in terms of the same JVM. is