AW: AW: Struts with PHP

2005-05-02 Thread Leon Rosenberg
Betreff: Re: AW: Struts with PHP > > Leon Rosenberg wrote: > > >Ok, Dave, I beg my pardon, but I think the initual intent of > the thread > >originator was far beyond struts/cobol bridges and such. > >I don't want to start new senseless threads about using th

AW: AW: Struts with PHP

2005-05-02 Thread Leon Rosenberg
Betreff: Re: AW: Struts with PHP > > Leon Rosenberg wrote: > > >Ok, Dave, I beg my pardon, but I think the initual intent of > the thread > >originator was far beyond struts/cobol bridges and such. > >I don't want to start new senseless threads about using th

Re: AW: Struts with PHP

2005-05-02 Thread Dave Newton
Leon Rosenberg wrote: Ok, Dave, I beg my pardon, but I think the initual intent of the thread originator was far beyond struts/cobol bridges and such. I don't want to start new senseless threads about using third generation languages, when there are fifth generation languages available and so on.

AW: Struts with PHP

2005-05-02 Thread Leon Rosenberg
ve me, and forget my post :-) Regards Leon > -Ursprüngliche Nachricht- > Von: Dave Newton [mailto:[EMAIL PROTECTED] > Gesendet: Montag, 2. Mai 2005 18:48 > An: Struts Users Mailing List > Betreff: Re: Struts with PHP > > Leon Rosenberg wrote: > > >>

AW: Struts with PHP

2005-05-02 Thread Leon Rosenberg
ve me, and forget my post :-) Regards Leon > -Ursprüngliche Nachricht- > Von: Dave Newton [mailto:[EMAIL PROTECTED] > Gesendet: Montag, 2. Mai 2005 18:48 > An: Struts Users Mailing List > Betreff: Re: Struts with PHP > > Leon Rosenberg wrote: > > >>

Re: Struts with PHP

2005-05-02 Thread Andres Almiray
There is also another project that can help: http://www.mojavelinux.com/projects/studs/ Be aware that this is a reimplementation of Struts in PHP. Also it is possible from PHP to invoke Java code, or even open a socket connection and do some kind of marshalling; but I think that is much more comp

Re: Struts with PHP

2005-05-02 Thread Robin Ericsson
Craig McClanahan wrote: http://jcp.org/en/jsr/detai?id=223 The objectives of this JSR include the ability to connect the object models of a scripting language (with PHP being an obvious target) and a Java virtual machine. Servlet containers make a natural place to integrate this sort of functina

RE: Struts with PHP

2005-05-02 Thread Frank W. Zammetti
d pass/manage information between > each other :) > > > > > -Original Message- > From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] > Sent: Monday, May 02, 2005 12:30 PM > To: Struts Users Mailing List > Cc: Struts Users Mailing List > Subject: Re: Struts with P

Re: Struts with PHP

2005-05-02 Thread Frank W. Zammetti
Oh great, now all those out-of-work COBOL programmers are going to be useful again, making it even MORE difficult for us Java guys to find work! Thanks a lot Dave! LOL ;) -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com On Mon, May 2, 2005 1

Re: Struts with PHP

2005-05-02 Thread Craig McClanahan
On 5/2/05, Rafael Taboada <[EMAIL PROTECTED]> wrote: > Hi folks... I'm working right now with PHP... > > Is it possible to combine PHP with struts? I mean, instead to JSP, use PHP. For reasons discussed by several people in this thread, information sharing between the Java logic and the PHP log

Re: Struts with PHP

2005-05-02 Thread Dave Newton
Frank W. Zammetti wrote: Yeah, you raise a fair point, maybe I didn't think it through enough... I'm not sure how much session really matters, but I think request does... I mean, I have an HttpServletRequest object that I populate in an Action, and let's assume I can forward that to a PHP page, it'

Re: Struts with PHP

2005-05-02 Thread Dave Newton
Leon Rosenberg wrote: Well, I'm not saying this is possible either... But after all, people manage to do Struts + XML/XSLT without JSP. So why not with PHP ? Yes, by generating XML out of the action or jsp, and adding an XSLT transformer. How do you want to share any variables with a php scri

Re: Struts with PHP

2005-05-02 Thread Joe Germuska
At 6:18 PM +0200 5/2/05, Stéphane Zuckerman wrote: > On 5/2/05, Rafael Taboada <[EMAIL PROTECTED]> wrote: Hi folks... I'm working right now with PHP... Is it possible to combine PHP with struts? I mean, instead to JSP, use PHP. Folashade Adeyosoye a écrit : hmm, good question, but i would not t

RE: Struts with PHP

2005-05-02 Thread Folashade Adeyosoye
;; 'Rafael Taboada' Subject: RE: Struts with PHP http://www.phpmvc.net/ is a php port of struts just info. Not used or tested it. Kris. -Oorspronkelijk bericht- Van: Rafael Taboada [mailto:[EMAIL PROTECTED] Verzonden: maandag 2 mei 2005 17:59 Aan: Struts List Onderwerp: Struts

RE: Struts with PHP

2005-05-02 Thread Folashade Adeyosoye
other :) -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: Monday, May 02, 2005 12:30 PM To: Struts Users Mailing List Cc: Struts Users Mailing List Subject: Re: Struts with PHP I presume one can get at the parameters, attributes and headers of the request

RE: Struts with PHP

2005-05-02 Thread =?iso-8859-1?Q?G=FCnther_Wieser?=
Users Mailing List Cc: Struts Users Mailing List Subject: Re: Struts with PHP I presume one can get at the parameters, attributes and headers of the request object in a PHP script, no? As long as you can do that, then you should be able to replace JSP pages with PHP pages, sans the taglibs of course

RE: Struts with PHP

2005-05-02 Thread Frank W. Zammetti
m: Frank W. Zammetti [mailto:[EMAIL PROTECTED] > Sent: Monday, May 02, 2005 12:10 PM > To: Folashade Adeyosoye > Cc: Struts Users Mailing List; Rafael Taboada > Subject: Re: Struts with PHP > > Actually, while I don't know much about PHP, I would say it *better* be > p

Re: Struts with PHP

2005-05-02 Thread Frank W. Zammetti
I presume one can get at the parameters, attributes and headers of the request object in a PHP script, no? As long as you can do that, then you should be able to replace JSP pages with PHP pages, sans the taglibs of course, which, as some people seem to forget, are an OPTIONAL element of Struts :)

RE: Struts with PHP

2005-05-02 Thread Folashade Adeyosoye
Subject: Re: Struts with PHP > On 5/2/05, Rafael Taboada <[EMAIL PROTECTED]> wrote: > >> Hi folks... I'm working right now with PHP... >> >> Is it possible to combine PHP with struts? I mean, instead to JSP, use PHP. >> Folashade Adeyosoye a écri

RE: Struts with PHP

2005-05-02 Thread Kris Barnhoorn
http://www.phpmvc.net/ is a php port of struts just info. Not used or tested it. Kris. -Oorspronkelijk bericht- Van: Rafael Taboada [mailto:[EMAIL PROTECTED] Verzonden: maandag 2 mei 2005 17:59 Aan: Struts List Onderwerp: Struts with PHP Hi folks... I'm working right now wit

RE: Struts with PHP

2005-05-02 Thread Folashade Adeyosoye
ank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: Monday, May 02, 2005 12:10 PM To: Folashade Adeyosoye Cc: Struts Users Mailing List; Rafael Taboada Subject: Re: Struts with PHP Actually, while I don't know much about PHP, I would say it *better* be possible :) Struts is, by and large, the

Re: Struts with PHP

2005-05-02 Thread Leon Rosenberg
> Well, I'm not saying this is possible either... But after all, people > manage to do Struts + XML/XSLT without JSP. So why not with PHP ? Yes, by generating XML out of the action or jsp, and adding an XSLT transformer. How do you want to share any variables with a php script? And, after all

Re: Struts with PHP

2005-05-02 Thread =?ISO-8859-1?Q?St=E9phane_Zuckerman?=
> On 5/2/05, Rafael Taboada <[EMAIL PROTECTED]> wrote: > >> Hi folks... I'm working right now with PHP... >> >> Is it possible to combine PHP with struts? I mean, instead to JSP, use PHP. >> Folashade Adeyosoye a écrit : hmm, good question, but i would not think so, one system developed in struts

Re: Struts with PHP

2005-05-02 Thread Frank W. Zammetti
Actually, while I don't know much about PHP, I would say it *better* be possible :) Struts is, by and large, the "C" in MVC (some parts arguably cross boundaries, but as a generality...), so if I can't swap in a different "M" and "V", there's probably something wrong. I think it's probably a give

Re: Struts with PHP

2005-05-02 Thread Folashade Adeyosoye
hmm, good question, but i would not think so, one system developed in struts can call a PHP and vise-visa, but i dont think they can be intergrated. 1. PHP has a diff processor compared to java/jsp/struts On 5/2/05, Rafael Taboada <[EMAIL PROTECTED]> wrote: > Hi folks... I'm working right now

Struts with PHP

2005-05-02 Thread Rafael Taboada
Hi folks... I'm working right now with PHP... Is it possible to combine PHP with struts? I mean, instead to JSP, use PHP. thanks -- Rafael Taboada - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai