Re: Oracle database calling the web app?

2009-01-06 Thread Edward Dowgiallo
Support for what you want to do is actually a feature in Oracle 11g. For Oracle 10g, you want to look at the publish/subscribe support which is part of advanced queueing. The documentation is available online at http://otn.oracle.com. Ed On Tue, Jan 6, 2009 at 5:22 PM, Bill Davidson

Re: Oracle database calling the web app?

2009-01-06 Thread Edward Dowgiallo
It is not necessary to poll an Oracle database. Advanced queueing in combination with triggers provide an event driven framework. Ed On Tue, Jan 6, 2009 at 5:28 PM, Mark Thomas ma...@apache.org wrote: Bill Davidson wrote: Is it possible to set up a callback like situation so that a trigger

Re: Oracle database calling the web app?

2009-01-06 Thread Edward Dowgiallo
service (SOAP or RESTful). Regards, Youssef On Wed, Jan 7, 2009 at 12:26 AM, Edward Dowgiallo eddowgia...@gmail.com wrote: Support for what you want to do is actually a feature in Oracle 11g. For Oracle 10g, you want to look at the publish/subscribe support which is part of advanced

Re: How can Servlet detect lost of connection to client?

2008-09-27 Thread Edward Dowgiallo
How about putting in a lifecycle listener for Session destruction? Ed On Sat, Sep 27, 2008 at 6:14 PM, Martin Gainty [EMAIL PROTECTED] wrote: agreed.. I would definitely try that solution first also you may want to use a different connector (such as NIOConnector..) that supports Events if

Re: PLS-00201: identifier 'package_name.procedure_name' must be declared

2007-12-05 Thread Edward Dowgiallo
The schema name is not required in general. Speak to your DBA about creating a public synonym for the package. Ed On 12/5/07, khalid syed [EMAIL PROTECTED] wrote: Hi, I am trying to call a stored procedure defined within a package in Oracle database from my servlet using

Re: java.lang.OutOfMemoryError: PermGen space

2007-11-16 Thread Edward Dowgiallo
I'm getting this error on a development server as we constantly redeploy the same app for testing. The problem does not occur until after several dozen redeployments. This makes sense since each redeployment contains new versions of some of the application's classes. Ed On 11/16/07, Peter

Re: Best Linux distribution

2007-11-14 Thread Edward Dowgiallo
I believe Oracle Corporation has an Oracle Enterprise Linux which you can download for free. They charge you for support however. Ed On 11/14/07, Steve Ochani [EMAIL PROTECTED] wrote: On 14 Nov 2007 at 22:58, Lionel Crine wrote: another distribution to know. You have some support. Fedora :

PKI

2007-10-09 Thread Edward Dowgiallo
Does anyone have a war file blank they are willing to share that is correctly setup for PKI on Tomcat 5.5 or 6.0? Ed - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For

PKI and the manager servlet

2007-10-05 Thread Edward Dowgiallo
Hi, As the manager servlet is currently written, is it possible to configure it to use CLIENT-CERT authentication instead of BASIC authentication? I've got CLIENT-CERT working with the locally developed apps, but am having no luck configuring the manager or admin servlets. The locally developed

manager servlet and SSL

2007-10-04 Thread Edward Dowgiallo
Hi, As the manager servlet is currently written, is it possible to configure it to use CLIENT-CERT authentication instead of BASIC authentication? I've got CLIENT-CERT working with the locally developed apps, but am having no luck configuring the manager or admin servlets. The locally developed