Re: GUI for ant ...

2003-04-02 Thread David Orriss Jr
I just pulled and built antidote last night.  It's nice.. but it made me think 
when I started playing with it 'what is the point'?  I mean, get Alan 
Williamson's Ant Developer's Handbook and you'll be writing build scripts in 
no time.

This tool actually seems to *add* to my time for building scripts  Not 
make it any easier...

Just my POV...

On Monday 31 March 2003 09:06, Reynir Hübner wrote:
> Hi guys..
>
> How about http://ant.apache.org/projects/antidote/index.html
>
> -reynir
>
> > -Original Message-
> > From: Kristján Bjarni Guðmundsson [mailto:[EMAIL PROTECTED]
> > Sent: 31. mars 2003 16:41
> > To: Tomcat Users List
> > Subject: Re: GUI for ant ...
> >
> >
> > Well it depends on what you mean, if you mean a grapchical
> > designer for
> > ant build xml files then
> > I don't think there is any. But if you mean a GUI tool to run
> > ant build
> > files, well I personally use
> > JEdit (http://www.jedit.org) and it has a graphical plugin
> > (AntFarm) for
> > runnint ant targets.
> >
> > [EMAIL PROTECTED] wrote on 31.03.2003 14:47:05:
> > > Hi,
> > >Being a newbie to ant ( have to use it ) ... can any one
> >
> > give me a
> >
> > > link to a s/w with GUI for ant ???
> > >
> > > 
> > > Gurumoorthy Raghupathy
> > > Aegon Benefit Solution
> > > Email : [EMAIL PROTECTED]
> > > Phone : 0044 20 72404801
> > > Mobile : 07745988336
> > > 
> >
> > -----
> >
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-- 

David Orriss Jr
ICQ/AIM/MSN Id's available upon request

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: GUI for ant ...

2003-04-01 Thread David Orriss Jr
On Monday, March 31, 2003 9:06 AM,
Reynir Hübner <[EMAIL PROTECTED]> wrote:

> Hi guys..
>
> How about http://ant.apache.org/projects/antidote/index.html
>
> -reynir
>

Hey.. thanks for sharing.  That'll be a big help.  We're trying to get our
projects in jbuilder built around using ANT instead of the JBuilder build
system.  This will be a big help...

--
David Orriss Jr.

Please email me if you want my ICQ/AIM/IM ID's.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



A minor favor to ask..

2003-02-23 Thread David Orriss Jr

I just have a minor favor to ask of the list members.  Some of us out here
have ISPs that configure the email systems to not allow attachments that
could be executed by various email clients.  Among those are: VBS, JS, EXE,
DOC (ms Word doc). COM, etc.  If you could please put attachments in ZIP
file format so that 'the rest' of us could see whatever code it is that you
are trying to share it would be much appreciated.  Thank you.

--
David Orriss Jr.

Please email me if you want my ICQ/AIM/IM ID's.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Filters - get content-type of a response?

2003-01-18 Thread David Orriss Jr
On Fri, Jan 17, 2003 at 06:38:30PM -0800, Craig R. McClanahan wrote:
> 
> 
> There is indeed a way to do this ... the following example hasn't been
> tested, but should give you a starting point.

Craig,

Exactly what I needed.  Thanks for the insights...

Have a good weekend..

-- 

 David Orriss Jr.


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Filters - get content-type of a response?

2003-01-17 Thread David Orriss Jr
Hey there...

The only examples I've found thus far are syntactially incorrect so I'll run my
question up the flagpole here... 

Can I find out the content-type of a *response* in a filter and then act on that
accordingly?  If so, can someone provide a snippet?  Thanks much.

--
David Orriss Jr.
[EMAIL PROTECTED]
http://www.davenet.net
Want ICQ/AIM/MSN ID's? Just Ask...
Linux - Chicken Soup for the Unix Soul



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: filters - need to ADD a header to incoming request

2003-01-10 Thread David Orriss Jr
Another Q..

Wouldn't I *also* have to extend getHeaderNames so that the new request header
would *know* about
the name *as well as* the value to be returned?

Thanks again Tim.

On Friday, January 10, 2003 6:34 PM,
Tim Funk <[EMAIL PROTECTED]> wrote:

> Create a class which extends HttpServletRequestWrapper and extend
> getHeader and getHeaders
>
> In your filter, you would create your subclassed
> HttpServletRequestWrapper and then call:
> doFilter(yourWrappedHttpServletRequestWrapper , response)
>
> HttpServletRequestWrapper is part of the Servlet 2.3 API. See the
> javadocs on how to use it.
>


--
David Orriss Jr.
[EMAIL PROTECTED]
http://www.davenet.net
Want ICQ/AIM/MSN ID's? Just Ask...
Linux - Chicken Soup for the Unix Soul



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: filters - need to ADD a header to incoming request

2003-01-10 Thread David Orriss Jr
Sorry.. I meant Tim... :-/

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: filters - need to ADD a header to incoming request

2003-01-10 Thread David Orriss Jr
Tom,

You ROCK!

On Friday, January 10, 2003 6:34 PM,
Tim Funk <[EMAIL PROTECTED]> wrote:

> Create a class which extends HttpServletRequestWrapper and extend
> getHeader and getHeaders
> 

-- 
David Orriss Jr.
Want ICQ/AIM/MSN ID's? Just Ask...



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




filters - need to ADD a header to incoming request

2003-01-10 Thread David Orriss Jr
HELP!

Now that I have that out of the way

I have a filter that needs to add to the incoming request a header (let's say
it's called XUserName) if
it's not already in the request header.  I can't for the LIFE of me figure out
how to do it.

Can someone throw me a bone here?!?!?  Thanks!

--
David Orriss Jr.
[EMAIL PROTECTED]
http://www.davenet.net
Want ICQ/AIM/MSN ID's? Just Ask...
Linux - Chicken Soup for the Unix Soul



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: NOONE? Was: Tomcat 4.1.18 changes https into httpss

2003-01-04 Thread David Orriss Jr
Actually in my case I 'punted' I used ProxyPass and ProxyPassReverse and
pass the SSL requests via a URL over to the non-SSL servlet engine...  Yea
it was a hack, but effective.. ;)

On Saturday, January 04, 2003 5:02 PM,
Alexander Wallace <[EMAIL PROTECTED]> wrote:

> Really noone read my mayl or has any clue as of what am i doing wrong? If
it
> is something that was discussed a lot, i did not see anything in the
> archives, if so, at least tell me so. I really need help here.
>
--
David Orriss Jr.

Please email me if you want my ICQ/AIM/IM ID's.



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: ManagedBean is not found

2003-01-02 Thread David Orriss Jr
John,

Say, don't I know you?  ;)

John Turner answered this exact same question for me...

> If you're using Ajp13Connector, comment out (disable) the lines in
> server.xml having to do with MBeans.

> Or, leave the MBeans lines alone, and use CoyoteConnector which is fine for
> JK or JK2.

> John

On Thursday, January 02, 2003 1:43 PM,
John B. Moore <[EMAIL PROTECTED]> wrote:

> Tomcat 4.1.18
> Apache 2.0.43
> Connectors - 4.1.18 (mod_jk.so)
> (all build from source)
> (followed the J Turner Howto's)
> 
> Getting the error..
> 
> "ManagedBean is not found with Ajp13Connector"
> 
> Anyone have some suggestions on what might be configured wrong.. We
> keep looking at it and is all seems to be there.. (going blind..)
> 
> Thanks...
> 
> John..



-- 
David Orriss Jr.
[EMAIL PROTECTED]
http://www.davenet.net
Want ICQ/AIM/MSN ID's? Just Ask...
Linux - Chicken Soup for the Unix Soul



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Jakarta Connectors build error

2003-01-02 Thread David Orriss Jr

Hi,

When I try to build the libjkjni.so library I'm getting this set messages/errors:

 -lcrypt -L/usr/local/apache2/lib -lapr  -Wl,-soname -Wl,libjkjni.so -o
.libs/libjkjni.so
   [so] StdErr:
   [so] /usr/bin/ld: cannot find -lapr
   [so] collect2: ld returned 1 exit status

BUILD FAILED
file:/home/davidjr/downloads/jakarta-tomcat-connectors-4.1.18-src/jk/native2/build.xml:341:
Link failed libjkjni


Suggestions would be most appreciated.  I'm really stumped as to why it can't
find this apr library.  FWIW, my Apache 2 installation is in /usr/local/apache2
and tomcat 4.1 is in /usr/local/jakarta-tomcat-4.1.18/

Thanks.




-- 


David Orriss Jr.
[EMAIL PROTECTED]
http://www.davenet.net

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: OK.. what did I do wrong...

2003-01-01 Thread David Orriss Jr
Ah.. I get it..  There *is* no MBeanServer implementation when you use the
Ajp13Connector.

Do you have a link that shows how to switch to using the CoyoteConnector
with JK, since apparently JK2 is still not ready for production...?

And thanks, John.  Happy New Year.

On Wednesday, January 01, 2003 4:31 PM,
Turner, John <[EMAIL PROTECTED]> wrote:

> If you're using Ajp13Connector, comment out (disable) the lines in
> server.xml having to do with MBeans.
>
> Or, leave the MBeans lines alone, and use CoyoteConnector which is fine
for
> JK or JK2.
>
> John
>
>
> -Original Message-
> From: David Orriss Jr [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 01, 2003 6:09 PM
> To: [EMAIL PROTECTED]
> Subject: OK.. what did I do wrong...
>
>
> I'm trying to configure MOD_JK.so for Apache 2 and Tomcat 4.1.18.  Dunno
how
> I broke it but when I did I ended up with the following.  What haven't I
> deployed?
>
> INFO: Creating MBeanServer
> ServerLifecycleListener: createMBeans: MBeanException
> java.lang.Exception: ManagedBean is not found with Ajp13Connector
> at
> org.apache.catalina.mbeans.MBeanUtils.createMBean(MBeanUtils.java:224)
> at
>
org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(ServerLifecy
> cleListener.java:369)
> at
>
org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(ServerLifecy
> cleListener.java:777)
> at
>
org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(ServerLifecy
> cleListener.java:751)
> at
>
org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(ServerLifecy
> cleListener.java:339)
> at
>
org.apache.catalina.mbeans.ServerLifecycleListener.lifecycleEvent(ServerLife
> cycleListener.java:206)
> at
>
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSuppor
> t.java:166)
> at
> org.apache.catalina.core.StandardServer.start(StandardServer.java:2182)
> at org.apache.catalina.startup.Catalina.start(Catalina.java:512)
> at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
> at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
>
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
> )
> at
>
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
> .java:25)
> at java.lang.reflect.Method.invoke(Method.java:324)
> at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
> Starting service Tomcat-Standalone
> Apache Tomcat/4.1.18
>
>
>
> --
> David Orriss Jr.
> [EMAIL PROTECTED]
> http://www.davenet.net
> http://www.codeskanks.com
>
> Please email me if you want my ICQ/AIM/IM ID's.
>
>
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
> ---
> Incoming mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.434 / Virus Database: 243 - Release Date: 12/25/2002
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.434 / Virus Database: 243 - Release Date: 12/25/2002

--
David Orriss Jr.
[EMAIL PROTECTED]
http://www.davenet.net
http://www.codeskanks.com

Please email me if you want my ICQ/AIM/IM ID's.



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




OK.. what did I do wrong...

2003-01-01 Thread David Orriss Jr
I'm trying to configure MOD_JK.so for Apache 2 and Tomcat 4.1.18.  Dunno how
I broke it but when I did I ended up with the following.  What haven't I
deployed?

INFO: Creating MBeanServer
ServerLifecycleListener: createMBeans: MBeanException
java.lang.Exception: ManagedBean is not found with Ajp13Connector
at
org.apache.catalina.mbeans.MBeanUtils.createMBean(MBeanUtils.java:224)
at
org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(ServerLifecy
cleListener.java:369)
at
org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(ServerLifecy
cleListener.java:777)
at
org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(ServerLifecy
cleListener.java:751)
at
org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(ServerLifecy
cleListener.java:339)
at
org.apache.catalina.mbeans.ServerLifecycleListener.lifecycleEvent(ServerLife
cycleListener.java:206)
at
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSuppor
t.java:166)
at
org.apache.catalina.core.StandardServer.start(StandardServer.java:2182)
at org.apache.catalina.startup.Catalina.start(Catalina.java:512)
at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
Starting service Tomcat-Standalone
Apache Tomcat/4.1.18



--
David Orriss Jr.
[EMAIL PROTECTED]
http://www.davenet.net
http://www.codeskanks.com

Please email me if you want my ICQ/AIM/IM ID's.



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>