Re: Memory Leak

2001-01-23 Thread Mike Clark
The memory won't actually be reclaimed until the GC kicks in, which in most cases isn't until the heap is a certain percentage utilized. Mike --- Dan DiCesare [EMAIL PROTECTED] wrote: HR htmlDIV PFONT face="Geneva, Arial, Sans-serif"Hello,/FONT/P PFONT face=ArialI am using JSP lt;useBeangt;

Re: serialisation problem?

2001-01-16 Thread Mike Clark
Prior to JDK 1.3, the serialization of a string exceeding 64k would result in a java.io.UTFDataFormatException being thrown. If you're using a 1.2 version (or earlier) JVM, then you should see this exception being raised somewhere rather than getting an empty string. Mike -- Mike Clark

Re: How to use jikes compiler?

2000-12-10 Thread Mike Clark
rs what is going wrong? thx in regards Marcus Lankenau -- Mike Clark Clarkware Consulting Enterprise Java Architecture, Design, Development http://www.clarkware.com

RE: EJB Performance Question.

2000-11-14 Thread Mike Clark
If you're referring to the enable-call-by-reference tag, then indeed it does do something (at lease in version 5.1). Setting this tag to true will effectively pass EJB method arguments and returned objects by reference when called within the same JVM, rather than by value in accordance with the

Re: DeadlockException

2000-11-14 Thread Mike Clark
Ah, nothing quite like two threads in a deadly embrace! At least the server detects the deadlock and prints some useful debug for deadlock situations. Try generating a VM dump using Windows: Ctrl Scroll Lock *nix : kill -QUIT server process id In general, you're looking for a thread

Re: DeadlockException

2000-11-14 Thread Mike Clark
this in a stack dump, or else you won't be able to see the line numbers in the stack traces. Scott Stirling -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mike Clark Sent: Tuesday, November 14, 2000 2:23 PM To: Orion-Interest Subject: Re

Re: Get the web uploaded file

2000-11-12 Thread Mike Clark
hange to: Object obj = request.getAttribute("my_class_file"); But then, how do I transform an Object to a File, and then, as the file is a compiled class, how do I create an instantiate this class to call some methods of it? Thanks again! []s Guilherme Ceschiatti [EMAIL PROTECTED] -

Re: xml

2000-09-24 Thread Mike Clark
-dtype NMTOKEN #FIXED 'string' !ELEMENT Description (#PCDATA ) !ATTLIST Description e-dtype NMTOKEN #FIXED 'string' !ELEMENT Price (#PCDATA ) !ATTLIST Price e-dtype NMTOKEN #FIXED 'fixed.14.4' -------- -

Re: I nee help Please Please

2000-09-08 Thread Mike Clark
___ Say Bye to Slow Internet! http://www.home.com/xinbox/signup.html -- // // // Mike Clark // // Clarkware Consulting // Enterprise Java Architecture, Design, Development // // http

Re: Strange error with Netscape

2000-09-06 Thread Mike Clark
-- // // // Mike Clark // // Clarkware Consulting // Enterprise Java Architecture, Design, Development // // http://www.clarkware.com // [EMAIL PROTECTED] // +1.720.851.2014 //

Re: Counter.jar

2000-09-06 Thread Mike Clark
o look. Any ideas? Thanks, Bill -- ////// // // Mike Clark // // Clarkware Consulting // Enterprise Java Architecture, Design, Development // // http://www.clarkware.com // [EMAIL PROTECTED] // +1.720.851.2014 //

Re: Autoencoding URLs

2000-09-05 Thread Mike Clark
You must explicitly encode the URL using... A href=servletResponse.encodeURL("management.jsp?id=%=ka%") %=user.getKaName(ka)% /A Mike --- "Werff, M.R. van der" [EMAIL PROTECTED] wrote: Hi, I'm trying to support browsers that don't have cookies enabled. The autoencoding of

Re: URLs in web apps

2000-09-02 Thread Mike Clark
Indeed it is. Mike Kevin Duffey wrote: HI, Is that a HTML 4.0 tag? I never saw that one before. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mike Clark Sent: Friday, September 01, 2000 6:48 AM To: Orion-Interest Subject: Re: URLs

Re: URLs in web apps

2000-09-01 Thread Mike Clark
vlet and JSP specs are pretty vague about this. 2. Should I be calling request.getContextPath() and using it to create absolute URLs for a href="..." tags or just try and use relative URLs within the a href="..." tags? Kurt in Atlanta -- //

Re: Inheritance

2000-09-01 Thread Mike Clark
There has been lively discussion on this topic in the ejb-interest mailing list. You can search the archives for inheritance here... http://archives.java.sun.com/archives/ejb-interest.html EJB inheritance has some general restrictions, though I don't think you'll find Orion to be the

Using development=true

2000-08-30 Thread Mike Clark
Is anyone successfully using the development="true" option for web applications where the web application classes and the non-web application classes share the same root directory? For example, if you have all your classes rooted in d:/projects/com/xyz/, you can point the reloading classloader

Re: RMI vs. HTTPTunneling

2000-08-28 Thread Mike Clark
RMI uses the Java Remote Method Protocol (JRMP) to wire the client and server together, whereas HTTP tunneling proxies JRMP requests through the HTTP protocol. HTTP tunneling allows RMI requests to be served from the far side of a firewall. Mike Roman Kagan wrote: Hi! Maybe someone knows:

Re: Deploying without a .war file

2000-08-25 Thread Mike Clark
se EJBs from another application? Kurt in Atlanta -- ////// // // Mike Clark // // Clarkware Consulting // Enterprise Java Architecture, Design, Development // // http://www.clarkware.com // [EMAIL PROTECTED] // +1.720.851.2014 //

Re: 100% processor load with SSL (URGENT PROBLEM)

2000-08-24 Thread Mike Clark
Yep, I've seen this same problem using Netscape with an HTTP POST when initiating the SSL session. IE doesn't seem to suffer from the same problem. I'm unaware of any work-around. We're patiently waiting for production SSL support, but currently you can't get a production certificate for

Re: Help - SSL Usage in Production - is it really possbile?

2000-08-23 Thread Mike Clark
t BrandMatrix, Ltd. Golden, Colorado -- ////// // // Mike Clark // // Clarkware Consulting // Enterprise Java Architecture, Design, Development // // http://www.clarkware.com // [EMAIL PROTECTED] // +1.720.851.2014 //

Re: Help - SSL Usage in Production - is it really possbile?

2000-08-23 Thread Mike Clark
a guide to show how you can get a 128 bit or 40 bit production license. Regards, Karl Avedal Mike Clark wrote: Unfortunately, that cert is no longer available from Thawte. We're still out of business with Orion using a production SSL certificate. What gives? Mike Mattias

Re: http session timeouts

2000-08-21 Thread Mike Clark
tter ways to achieve this functionality) -Todd -- ////// // // Mike Clark // // Clarkware Consulting // Enterprise Java Architecture, Design, Development // // http://www.clarkware.com // [EMAIL PROTECTED] // +1.720.851.2014 //

RE: about versions

2000-08-21 Thread Mike Clark
Or, since you already have an existing version, just use the very cool... java -jar autoupdate.jar Mike --- JavierG [EMAIL PROTECTED] wrote: Version 1.0.3 is the last stable version available, 1.2.* are experimental and yes, you can find them in the Orion, only that when downloading do

Re: url rewrite parameter

2000-08-18 Thread Mike Clark
According to the orion-web.dtd, you can add this element to the global-web-application.xml (or equivalent)... session-tracking autoencode-absolute-urls="true" autoencode-urls="true" / Mike Terence Kwan wrote: anybody know how to turn on the URL rewrite option in the orion

Re: Orion and CachedRowSet

2000-08-08 Thread Mike Clark
The constructor for CachedRowSet requires that jndi.jar is in your CLASSPATH. This may be the NoClassDefFoundException you're experiencing. Mike --- John Sinnott [EMAIL PROTECTED] wrote: I'm having an interesting problem attempting to get Sun's CachedRowSet working with Orion. I have

Re: DTD usage

2000-08-07 Thread Mike Clark
If you're truly seeing an XSL error, then somewhere along the line an XSL transformation is being attempted on your XML before displaying it in the browser. I'm assuming you're using the XSL servlet in Orion?! Mike Olaf Mersmann wrote: I have a DTD named page.dtd and a file page1.xml If I

Re: Begging for Help: EJB Deployment in Orion Server 1.0

2000-08-07 Thread Mike Clark
The Orion Primer provides an introduction to deploying EJBs with Orion... http://www.znerd.demon.nl/orion-primer/ Mike --- Ray Harrison [EMAIL PROTECTED] wrote: Hello: (I am quite new - forgiveness and patience please!) I am working with Monson-Haefel's EJB book and am trying to figure

Re: Faster deployment?

2000-08-03 Thread Mike Clark
What specifically is creating a drag on your deployment time? I use a Makefile which creates the .ear file, and once the .ear file is "touched", the server re-deploys the application at blazing speed. Mike --- Anders Bengtsson [EMAIL PROTECTED] wrote: Hello, Does anyone have any ideas for

Re: How do you like Orion?

2000-08-03 Thread Mike Clark
-- // // // Mike Clark // // Clarkware Consulting // Enterprise Java Architecture, Design, Development // // http://www.clarkware.com // [EMAIL PROTECTED] // +1.720.851.2014 //

Re: Latest Version

2000-08-02 Thread Mike Clark
-- Adam Cassar Senior Web Developer ___ NetRegistry http://www.netregistry.au.com Tel: +61 2 9699 6099 | Fax: +61 2 9699 6088 PO Box 270 Broadway NSW 2007 Australia -- // // // Mike Clark