Re: [JBoss-user] JBoss hosting

2001-06-18 Thread Peter Routtier-Wone
How much traffic are you expecting? I could host this if it's not too high. - Original Message - From: marc fleury [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 19, 2001 3:21 AM Subject: RE: [JBoss-user] JBoss hosting Yes I recommend wantjava.com, it will cost you

Re: [JBoss-user] CMP + BLOB + ORACLE

2001-04-30 Thread Peter Routtier-Wone
You may find this helpful. http://wamoz.com/JDBC_and_Oracle_LOB.asp ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] Followup - Joins - CMP Entity Beans - BUG????

2001-04-27 Thread Peter Routtier-Wone
Commas aren't case sensitive. You can probably improve performance slightly by changing this if (query.toLowerCase().startsWith(,)) { to this if (query.startsWith(,)) { And I'd be inclined to trim whitespace like this if (query.trim().startsWith(,)) {

Re: [JBoss-user] Followup - Joins - CMP Entity Beans - BUG????

2001-04-27 Thread Peter Routtier-Wone
Match your bet, raise you one. :-) query.trim().charAt(0) I think we all need a holiday. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] PDF Manual

2001-04-24 Thread Peter Routtier-Wone
Yeah, there is. It's not free. You can build it yourself out of CVS. - Original Message - From: Jean-Francois Henrard [EMAIL PROTECTED] To: JBoss mailing list (E-mail) [EMAIL PROTECTED] Sent: Tuesday, April 24, 2001 7:09 PM Subject: [JBoss-user] PDF Manual is there somewhere a PDF

Re: [JBoss-user] Bad Magic Number

2001-04-24 Thread Peter Routtier-Wone
You don't compile a jar, he means if you compile the classes going into the jar... I find that when I accidentally compile some classes with jdk1.2.x, prep the jar and then later recompile the client and classes with 1.3 I get this message. It used to happen because I had a text editor set up

[JBoss-user] EjbStudio

2001-04-18 Thread Peter Routtier-Wone
to [EMAIL PROTECTED] This is not (yet) in CVS so don't bother looking there for it. Peter Routtier-Wone -- May the source be with you. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] EjbStudio

2001-04-18 Thread Peter Routtier-Wone
A very good question and one I'm glad you asked. Make tools assume you've already correctly prepped all of your beans and descriptors. ejbDoclet goes some way to taking the drudge work out of constructing the accompanying paraphernalia like various interface classes and the descriptor. However,

[JBoss-user] Download EjbStudio

2001-04-18 Thread Peter Routtier-Wone
You can get it from http://wamoz.com/EjbStudio.asp Or at least you will be able to once the evil thing lets me upload the file. It keeps unexpectedly closing the connection during transfer. Peter Routtier-Wone -- May the source be with you

Re: [JBoss-user] debug ejb bean

2001-04-10 Thread Peter Routtier-Wone
System.out.println ( "Hello World!" ); should print out on the console while JBoss is running. It works from an entity or session bean. It shows on the console from which you ran the JBoss container, not on the client process console. ___

Re: Re: [JBoss-user] Writing a finder which returns max id used

2001-04-09 Thread Peter Routtier-Wone
pStatement = con.prepareStatement( "Insert into Attribute " + "(ID, Value, Display_Format, Attribute_Switches, Name, Type_ID) " + "Select max(id)+1, ?, ?, ?, ?, ? from Container "); Wouldn't most, if not all, databases handle concurrancy issues in this case?

Re: [JBoss-user] cann't get a connection from outside of the jboss container.

2001-04-09 Thread Peter Routtier-Wone
A process connects to an EJB container with RMI. I expect your container is on a separate computer to your client, and you are trying to connect to LOCALHOST. This would work for JSP if it happens to be running on the same box as the EJB container. I suspect that when the interest bean sample

Re: [JBoss-user] The first bean

2001-04-06 Thread Peter Routtier-Wone
renej, JBoss is software, not magic - even if it is amazing. There are two ways JBoss could respond to changes in the data store underlying your CMP beans. The first is for it to poll the data store. This is not a good idea. It would place an unacceptable load on the data store. The other way

Re: [JBoss-user] The first bean

2001-04-06 Thread Peter Routtier-Wone
This is actually a frequently asked question. Change your commit option to C in standardjboss.xml. This will cause the beans state to be updated on every transaction. OK Rickard, you've really got my curiosity piqued - where in the code is this particular miracle?

[JBoss-user] Help for a little subproject?

2001-04-06 Thread Peter Routtier-Wone
I'm experimenting with knocking up a GUI editor for EJBs that autogenerates the home and proxy (client) interfaces as well as the deployment descriptors. Imagine a tree at left and an edit pane at right that shows either a property sheet for terminal children of the selected node or a method body

Re: [JBoss-user] Writing a finder which returns max id used

2001-04-04 Thread Peter Routtier-Wone
You can also use the facilities of the database engine to help with this problem. Oracle has sequences which guarantee a unique number even with concurrent access. Sybase has autoincrement columns. Use of the database as a UID dispenser has its merits with respect to the concurrency issue,

[JBoss-user] Exception methodology with EJBs

2001-04-04 Thread Peter Routtier-Wone
Routtier-Wone -- Your mouse has moved. Windows must restart for changes to take effect. [Restart Now] [Throw Errors] ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss

Re: [JBoss-user] Problem while executing procedure

2001-04-02 Thread Peter Routtier-Wone
We realise that sometimes the needs of commercial developers can be very time-sensitive, and to help with problems like this we created the JBoss Group. Contact Marc Fleury at [EMAIL PROTECTED] and he will be delighted to organise a core developer to expedite a solution to your problem. We

Re: [JBoss-dev] Performance (was Re: [JBoss-user] JBoss verses Or ion)

2001-04-02 Thread Peter Routtier-Wone
I will do this, but Marc, I need a pow-wow with you first. - Original Message - From: [EMAIL PROTECTED] Subject: RE: [JBoss-dev] Performance (was Re: [JBoss-user] JBoss verses Or ion) The Apache Foundation has money. They also have no EJB container as yet. Has anyone spoken to

Re: [JBoss-user] JBoss on Win98

2001-04-02 Thread Peter Routtier-Wone
How to you redirect the output to the file. Edit the batch file. Putting the redirect outside the script doesn't work. java -classpath "%CLASSPATH%" org.jboss.Main %1 %2 %3 %4 %5 %6 %7 %8 %9 out.txt ___ JBoss-user mailing list [EMAIL PROTECTED]

Re: [JBoss-user] JBoss on Win98

2001-03-31 Thread Peter Routtier-Wone
| 1. Does run.bat work ? The set command on windows98 doesn't seem to | like an '=' character as an rvalue in the expression, ie | | set JAXP=-Dthis=that | isn't allowed on Windows 98. I've got round this just by putting the | -D options inline on the invocation of jBoss, in the call to the |

Re: [JBoss-user] I need ammo

2001-03-30 Thread Peter Routtier-Wone
Jim, this reason will work on me. It's logical and it's testable, with an immediate benefit. It will NOT work on a corporate decision-maker who wouldn't know a desirable EJB feature if it fell on his head. What are the compelling business cases, guys? Or, to put it another way, where's the

Re: [JBoss-user] JMX implications

2001-03-30 Thread Peter Routtier-Wone
Do the various subsystems of JBoss implement the Agent Level? All subsystems are instrumented MBeans. Period. Does inheritance from JBoss classes automatically instrument our EJBs? No the actual EJB's have nothing to do with JMX. They exist only under the premises of the

Re: [JBoss-user] I need ammo.....(Humorours..)

2001-03-30 Thread Peter Routtier-Wone
Are you sure it wasn't the topic of marketing that was obscene? These AIs are getting better... A.j)bžbA.Šl‹qzmŸ–+-.Ÿ–+-b~n‹,

Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000 Laptop

2001-03-30 Thread Peter Routtier-Wone
Surely XML validation is largely informational. I wonder can things be set up so that the DTD URL is checked and the parser parser run non-validating as necessary - and the inaccessibility of the DTD is reported. - Original Message - From: "Jim Archer" [EMAIL PROTECTED] Subject: Re:

[JBoss-user] That rude word (marketing)

2001-03-30 Thread Peter Routtier-Wone
Guys, thank you for all your support. A little explanation... I wanted to work on JBoss, but it's too far advanced and I'm too far behind the eight-ball for me to really contribute at a technical level. So I looked at what *wasn't* being done well, and IMHO that was presenting it to

Re: [JBoss-user] That rude word (marketing)

2001-03-30 Thread Peter Routtier-Wone
Or send this material directly to [EMAIL PROTECTED] | Please take this to the jboss-business list. | (http://groups.yahoo.com/group/jboss-business) | | /Rickard ___ JBoss-user mailing list [EMAIL PROTECTED]

Re: [JBoss-user] I need ammo.

2001-03-29 Thread Peter Routtier-Wone
You're a pearl, Bill. This is exactly the sort of stuff I need for the promo material I'm preparing - unsolicited from-the-trenches testimonial. It may help to point out to your employers that they have no guarantees from the other container providers, and that JBoss gives them the ability to

Re: [JBoss-user] MS SQL7 JDBC-ODBC parameters

2001-03-29 Thread Peter Routtier-Wone
ODBC is evil. There is more than one free pure Java JDBC driver for TDS (the M$ and Sybase protocol). Search the net for TDS near JDBC. - Original Message - From: Steve Shier To: '[EMAIL PROTECTED]' Sent: Tuesday, March 27, 2001 8:05 PM Subject: [JBoss-user] MS SQL7 JDBC-ODBC

Re: [JBoss-user] Apache integration - why?

2001-03-28 Thread Peter Routtier-Wone
What is all this about JBoss-Tomcat-Apache integration? I have seen a lot about problems, and how to do it, but what does it achieve? How would Stop thinking web pages and start thinking of Apache in terms of a high-performance resource dispenser. JSP (which is the server-side part of the

Re: [JBoss-user] BMP entity beans and MS SQL Server 7 ??

2001-03-28 Thread Peter Routtier-Wone
past what it offers. I don't have any problems here with MS SQL2K but we may be doing different thing with CMP/BMP... Micheal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Peter Routtier-Wone Sent: 25 March 2001 00:32 To: [EMAIL PROTECTED] S

Re: [JBoss-user] BMP entity beans and MS SQL Server 7 ??

2001-03-28 Thread Peter Routtier-Wone
By your criteria - i.e. a need to function consistently across all [or at least multiple database] platforms - Interbase is just another proprietary DB platform. "Open Source" does not equal "not proprietary" when we are talking about SQL dialects. True. But less of a problem in the context

Re: Re'f. : [JBoss-user] JBoss Basic Questions

2001-03-27 Thread Peter Routtier-Wone
2) management is concerned that JBoss could be bought out by another company and subsumed into their product line - is this a valid concern? Open source software cannot be bought out because no single party owns the code; therefore nobody has the right to sell it. Moreover, JBoss is made

Re: [JBoss-user] JBoss and multiples tables...

2001-03-25 Thread Peter Routtier-Wone
Traduction? As I remember this word means either translation (as in from English to French) or transcription (manifestation by transposition). Tell me whether this is what you want to express: SELECT ProductDescription FROM TranslationTable WHERE ProductID=? and LanguageID=? I'm not at all sure

Re: [JBoss-user] Problem with ORACLE CMP and BLOBS

2001-03-23 Thread Peter Routtier-Wone
one of my CMP fields is a byte[] that can get quite large JAWS creates a table with this field mapped onto a BLOB type. When I try to create the entity if the byte[] contains several k's of data I get the following exception. [docSession] javax.ejb.CreateException: Could not create

Re: [JBoss-user] A little BMP philosophy/understanding

2001-03-22 Thread Peter Routtier-Wone
Someone from this discussion group indicate that container might cache the PreparedStatement. I can't speak with authority on this, but that rings true. I'm guessing that interception doesn't happen for the setEntityContext() method and therefore you actually create a PreparedStatement rather