Ask a Question related to PHP Development, Design and Development.
-
Blah Blah #1
is it possible to combine jsp and php?
here's my problem - i run a web site with a java servlet backend
(apache/tomcat/linux/mysql), and i want to add some php content to my jsp
pages. why would i want to do something like this? i want to add some
third party blogging software that's written in php. it would be easy to
have two entirely different sets of pages - but i don't want a MacDLT
solution. i'd like to be able to have blog content throughout the website.
is there some standard way of doing this?
daniel
Blah Blah Guest
-
If I combine two PDFs...
If I open a Press Quality PDF, Insert a second Press Quality page, is the PDF that results from a Save As itself Press Quality? Do I have some... -
Combine Databases
How do you combine databases that use two different datasouces? -
combine applications
I want to be able to create a document, say a company letterhead, from a creative program such as illustrator or Indesign and save it as a pdf. (I... -
Combine CSV files
Hope someone can help me on this: I need to compare two cvs files that contains user profile information, but there are duplicates, what is the best... -
To combine or leave as is...
My current application I am working on consists of 3 separate ASP pages. I'm posting data to each other page and using request.form to retrieve. ... -
Terence #2
Re: is it possible to combine jsp and php?
Blah Blah wrote:
Apache 2.0 allows pipelining of module processing. unfortunately, I know> here's my problem - i run a web site with a java servlet backend
> (apache/tomcat/linux/mysql), and i want to add some php content to my jsp
> pages. why would i want to do something like this? i want to add some
> third party blogging software that's written in php. it would be easy to
> have two entirely different sets of pages - but i don't want a MacDLT
> solution. i'd like to be able to have blog content throughout the website.
>
> is there some standard way of doing this?
>
> daniel
>
>
nothing about if there is a module (for apache2) which will run a JSP
processor.
I would be more inclined to use a [virtual?] "remote" method. So from
the PHP script, you can do something like
$fileResource = fopen("http://localhost/tomcat/fooapp/foo.jsp","r");
In this case, your JSP is processed first and the interpreted output is
accessible from PHP.
You can go the other way and do a remote include (doing whatever it is
you need to do in jsp) to access the PHP script via HTTP instead of the
local filesystem.
Terence Guest
-
Terence #3
Re: is it possible to combine jsp and php?
Terence wrote:
I think you can simply> Blah Blah wrote:
>>>> here's my problem - i run a web site with a java servlet backend
>> (apache/tomcat/linux/mysql), and i want to add some php content to my jsp
>> pages. why would i want to do something like this? i want to add some
>> third party blogging software that's written in php. it would be easy to
>> have two entirely different sets of pages - but i don't want a MacDLT
>> solution. i'd like to be able to have blog content throughout the
>> website.
>>
>> is there some standard way of doing this?
>>
>> daniel
>>
>>
> Apache 2.0 allows pipelining of module processing. unfortunately, I know
> nothing about if there is a module (for apache2) which will run a JSP
> processor.
>
> I would be more inclined to use a [virtual?] "remote" method. So from
> the PHP script, you can do something like
> $fileResource = fopen("http://localhost/tomcat/fooapp/foo.jsp","r");
> In this case, your JSP is processed first and the interpreted output is
> accessible from PHP.
include "http://localhost/tomcat/fooapp/foo.jsp";
(never tried it)
>
> You can go the other way and do a remote include (doing whatever it is
> you need to do in jsp) to access the PHP script via HTTP instead of the
> local filesystem.
>
>Terence Guest
-
Nikolai Chuvakhin #4
Re: is it possible to combine jsp and php?
"Blah Blah" <blah@blahblah.com> wrote in message
news:<P5KdnZMlqKf2Fiei4p2dnA@comcast.com>...You have a number of options here...>
> here's my problem - i run a web site with a java servlet backend
> (apache/tomcat/linux/mysql), and i want to add some php content to my jsp
> pages. why would i want to do something like this? i want to add some
> third party blogging software that's written in php. it would be easy to
> have two entirely different sets of pages - but i don't want a MacDLT
> solution. i'd like to be able to have blog content throughout the website.
First of all, note that you, by your own admission, want "to have blog
content throughout the website". Content, not layout. So you can write
some JSP code to read content of the blog directly from the database
that holds it and leave the PHP application in place only for writing
entries/comments.
Option number two: deploy the PHP-based blog in a separate frame.
Option number three: insert PHP-generated content into your JSP pages
as if it were static content. In other words, you need a JSP analog
of
readfile ('http://yoursite.com/yourpath/yourscript.php');
This one is likely to be somewhat slow though... There may be issues
with hyperlinks/references, too...
Option number four: wait until PHP integrates with Java natively
(which is in works right now) and stop using JSP altogether.
Cheers,
NC
Nikolai Chuvakhin Guest
-
Blah Blah #5
Re: is it possible to combine jsp and php?
sir, you are a gentleman and a scholar.
using "include" appears to make everything work.
although it introduces an interesting wrinkle - it appears that the way to
organize things this way is to make one php file per jsp file, to include
the jsp files in their respective php files, and then have all of the links
(in the jsp files) point to php files. somewhat circular, but interesting.
you have just saved me a TON of work (where do i send the beer? ;)
another bonus: by processing the jsp files first, tomcat is able to compile
them to bytecode once instead of interpreting them from scratch each time
(if a file changes, tomcat has to recompile them). which raises the php
newbie question: does php do the same thing, and compile php files to
bytecode the first time they're read? or does it interpret them each time?
daniel
"Terence" <tk.lists@fastmail.fm> wrote in message news:3fbab50f$1@herald...jsp> Terence wrote:
>> > Blah Blah wrote:
> >> >> here's my problem - i run a web site with a java servlet backend
> >> (apache/tomcat/linux/mysql), and i want to add some php content to myto> >> pages. why would i want to do something like this? i want to add some
> >> third party blogging software that's written in php. it would be easy>> >> >> have two entirely different sets of pages - but i don't want a MacDLT
> >> solution. i'd like to be able to have blog content throughout the
> >> website.
> >>
> >> is there some standard way of doing this?
> >>
> >> daniel
> >>
> >>
> > Apache 2.0 allows pipelining of module processing. unfortunately, I know
> > nothing about if there is a module (for apache2) which will run a JSP
> > processor.
> >
> > I would be more inclined to use a [virtual?] "remote" method. So from
> > the PHP script, you can do something like
> > $fileResource = fopen("http://localhost/tomcat/fooapp/foo.jsp","r");
> > In this case, your JSP is processed first and the interpreted output is
> > accessible from PHP.
> I think you can simply
>
> include "http://localhost/tomcat/fooapp/foo.jsp";
>
> (never tried it)
>>> >
> > You can go the other way and do a remote include (doing whatever it is
> > you need to do in jsp) to access the PHP script via HTTP instead of the
> > local filesystem.
> >
> >
Blah Blah Guest
-
Terence #6
Re: is it possible to combine jsp and php?
Blah Blah wrote:
The short answer is no.> sir, you are a gentleman and a scholar.
> using "include" appears to make everything work.
> although it introduces an interesting wrinkle - it appears that the way to
> organize things this way is to make one php file per jsp file, to include
> the jsp files in their respective php files, and then have all of the links
> (in the jsp files) point to php files. somewhat circular, but interesting.
>
> you have just saved me a TON of work (where do i send the beer? ;)
>
> another bonus: by processing the jsp files first, tomcat is able to compile
> them to bytecode once instead of interpreting them from scratch each time
> (if a file changes, tomcat has to recompile them). which raises the php
> newbie question: does php do the same thing, and compile php files to
> bytecode the first time they're read? or does it interpret them each time?
>
the real answer is, yes, only if you employ a pre-compiler. There are a
range of pre-compilers avialble which use resultant binaries (none of
this pussy pseudo-code crap ;)) after the first access (which compiles
on demand). Many people get away with just using the interpreter as-is
in high-performance environments.
You will find that PHP gives you a lot of choice in many many ways.
This is one of the reasons why it is so popular even without marketing.
I'm glad include "http://..." is working for you, it relies on a
directive in the php.ini file to allow remote access in local file
functions. Obviously this is on by default :)
> daniel
>
> "Terence" <tk.lists@fastmail.fm> wrote in message news:3fbab50f$1@herald...
>>>>Terence wrote:
>>
>>>>>Blah Blah wrote:
>>>
>>>
>>>>here's my problem - i run a web site with a java servlet backend
>>>>(apache/tomcat/linux/mysql), and i want to add some php content to my
> jsp
>>>>>>pages. why would i want to do something like this? i want to add some
>>>>third party blogging software that's written in php. it would be easy
> to
>>>>>>>>have two entirely different sets of pages - but i don't want a MacDLT
>>>>solution. i'd like to be able to have blog content throughout the
>>>>website.
>>>>
>>>>is there some standard way of doing this?
>>>>
>>>>daniel
>>>>
>>>>
>>>
>>>Apache 2.0 allows pipelining of module processing. unfortunately, I know
>>>nothing about if there is a module (for apache2) which will run a JSP
>>>processor.
>>>
>>>I would be more inclined to use a [virtual?] "remote" method. So from
>>>the PHP script, you can do something like
>>>$fileResource = fopen("http://localhost/tomcat/fooapp/foo.jsp","r");
>>>In this case, your JSP is processed first and the interpreted output is
>>>accessible from PHP.
>>I think you can simply
>>
>>include "http://localhost/tomcat/fooapp/foo.jsp";
>>
>>(never tried it)
>>
>>>>>>>You can go the other way and do a remote include (doing whatever it is
>>>you need to do in jsp) to access the PHP script via HTTP instead of the
>>>local filesystem.
>>>
>>>
>Terence Guest
-
Blah Blah #7
Re: is it possible to combine jsp and php?
looks like i broke out the champagne a little too early.
there's one key problem: submitting a form won't go to the servlet. so,
given the following html:
<FORM name="logonForm" action="/myApp/LogonSubmit.do" method="post">
User Name:<INPUT type="text" name="userName" /><br />
Password:<INPUT type="password" name="password" /><br />
<INPUT type="submit" value="Submit" />
</FORM>
it wants to go to [url]http://localhost/myApp/LogonSubmit.do[/url], not
[url]http://localhost:8080/myApp/LogonSubmit.do[/url].
is there any way around this?
if we can figure out a solution, this would allow me to mix and match php
and jsp in one file. otherwise, i'm going to have to go with a somewhat more
painful approach...
daniel
> I think you can simply
>
> include "http://localhost/tomcat/fooapp/foo.jsp";
>
> (never tried it)
>>> >
> > You can go the other way and do a remote include (doing whatever it is
> > you need to do in jsp) to access the PHP script via HTTP instead of the
> > local filesystem.
> >
> >
Blah Blah Guest
-
Blah Blah #8
Re: is it possible to combine jsp and php?
never mind - it looks like my problem is that (being a struts user) i was
using special jsp tags which were assuming things. all i had to do was take
out the tags and manually type in the code they output, with
action="http://www.myhost.com:8080/myApp/LogonSubmit.do".
i'm pretty excited about this.
daniel
"Blah Blah" <blah@blahblah.com> wrote in message
news:J5SdnWlB1fRqaCai4p2dnA@comcast.com...more> looks like i broke out the champagne a little too early.
> there's one key problem: submitting a form won't go to the servlet. so,
> given the following html:
>
> <FORM name="logonForm" action="/myApp/LogonSubmit.do" method="post">
> User Name:<INPUT type="text" name="userName" /><br />
> Password:<INPUT type="password" name="password" /><br />
> <INPUT type="submit" value="Submit" />
> </FORM>
>
> it wants to go to [url]http://localhost/myApp/LogonSubmit.do[/url], not
> [url]http://localhost:8080/myApp/LogonSubmit.do[/url].
> is there any way around this?
>
> if we can figure out a solution, this would allow me to mix and match php
> and jsp in one file. otherwise, i'm going to have to go with a somewhatthe> painful approach...
>
> daniel
>> > I think you can simply
> >
> > include "http://localhost/tomcat/fooapp/foo.jsp";
> >
> > (never tried it)
> >> > >
> > > You can go the other way and do a remote include (doing whatever it is
> > > you need to do in jsp) to access the PHP script via HTTP instead of>> >> > > local filesystem.
> > >
> > >
>
Blah Blah Guest



Reply With Quote

