I need a technique for executing very fast code behind the httpd
I need a technique for executing very fast code behind the httpd
am 26.12.2009 14:04:50 von Andrei Paul Nistor
--00504502e42c4ccd65047ba1519d
Content-Type: text/plain; charset=ISO-8859-1
Hello all.
Question: Is it any way possible to access through the httpd server
resources like objects or remote procedures that run on the server in binary
form and dont get disposed after each call of the resources?
I read lately alot about cgi and the apache server but i haven't found an
answer for what I'm looking for. I developed a small "program" (script) in
javascript that runs local in each browser. I also can comunicate with a
http server via ajax form within the browsers and ask for resouces. Now I
need a way to create on the serverside a program that builds up compiled
objects that can read each other properties and running in an semi-endless
loop, it also has to run very fast, but it seems i miss the technologie for
this.
Lets think about it like in each browser we have players of a game. So we
have in each browser an object with properties x,y as coordinates. I can
post via ajax to the server if on the client a directional key is pressed.
The server has to compute the new position and reply back to the client its
new position but not only its new position cause the server has to reply
also the computed coordinates of the other objects so he needs at least read
the coordinates of the other objects. So there can be around 25 requests/s
from a browser (thats not the problem). The other problem is the server
program has to run in an endless loop until only a player remains alive. And
the last problem is that the program has to run fast because on the server i
need to do collision detection etc.
I hope you guys and girls can help me with some advises of how i can do this
via the httpd server or point me to some other tehnologies that could solve
my problems.
Thanks.
--00504502e42c4ccd65047ba1519d
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Hello all.
Question: Is it any way possible to access through the ht=
tpd server resources like objects or remote procedures that run on the serv=
er in binary form and dont get disposed after each call of the resources?
r>
I read lately alot about cgi and the apache server but i haven't fo=
und an answer for what I'm looking for. I developed a small "progr=
am" (script) in javascript that runs local in each browser. I also can=
comunicate with a http server via ajax form within the browsers and ask fo=
r resouces.=A0 Now I need a way to create on the serverside a program that =
builds up compiled objects that can read each other properties and running =
in an semi-endless loop, it also has to run very fast, but it seems i miss =
the technologie for this.
Lets think about it like in each browser we have players of a game.=A0 =
So we have in each browser an object with properties x,y=A0 as coordinates.=
I can post via ajax to the server if on the client a directional key is pr=
essed. The server has to compute the new position and reply back to the cli=
ent its new position but not only its new position cause the server has to =
reply also the computed coordinates of the other objects so he needs at lea=
st read the coordinates of the other objects. So there can be around 25 req=
uests/s from a browser (thats not the problem). The other problem is the se=
rver program has to run in an endless loop until only a player remains aliv=
e. And the last problem is that the program has to run fast because on the =
server i need to do collision detection etc.
I hope you guys and girls can help me with some advises of how i can do=
this via the httpd server or point me to some other tehnologies that could=
solve my problems.
Thanks.
--00504502e42c4ccd65047ba1519d--
Re: I need a technique for executing very fast code behind the httpd apache server.
am 26.12.2009 14:29:52 von John den Haan
I figure SOAP might be what you need.
-
This message was sent using a mobile device. I apologize for any
seplling errors that may result.
Op 26 dec 2009 om 14:04 heeft Andrei Paul Nistor
het volgende geschreven:\
> Hello all.
>
> Question: Is it any way possible to access through the httpd server
> resources like objects or remote procedures that run on the server
> in binary form and dont get disposed after each call of the resources?
>
> I read lately alot about cgi and the apache server but i haven't
> found an answer for what I'm looking for. I developed a small
> "program" (script) in javascript that runs local in each browser. I
> also can comunicate with a http server via ajax form within the
> browsers and ask for resouces. Now I need a way to create on the
> serverside a program that builds up compiled objects that can read
> each other properties and running in an semi-endless loop, it also
> has to run very fast, but it seems i miss the technologie for this.
>
> Lets think about it like in each browser we have players of a game.
> So we have in each browser an object with properties x,y as
> coordinates. I can post via ajax to the server if on the client a
> directional key is pressed. The server has to compute the new
> position and reply back to the client its new position but not only
> its new position cause the server has to reply also the computed
> coordinates of the other objects so he needs at least read the
> coordinates of the other objects. So there can be around 25 requests/
> s from a browser (thats not the problem). The other problem is the
> server program has to run in an endless loop until only a player
> remains alive. And the last problem is that the program has to run
> fast because on the server i need to do collision detection etc.
>
> I hope you guys and girls can help me with some advises of how i can
> do this via the httpd server or point me to some other tehnologies
> that could solve my problems.
>
> Thanks.
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: I need a technique for executing very fast code
am 26.12.2009 14:56:43 von Andrei Paul Nistor
--000e0cdf92b0d5de02047ba20a97
Content-Type: text/plain; charset=ISO-8859-1
I thought about using soap as an comunication protocol but in fact the
remote procedures are php scripts or asp i need compiled code that can
execute fast and share objects, the communication protocol isnt important it
can be anything.
With respect Andrei Paul Nistor
On Sat, Dec 26, 2009 at 3:29 PM, John den Haan wrote:
> I figure SOAP might be what you need.
>
> -
> This message was sent using a mobile device. I apologize for any seplling
> errors that may result.
>
> Op 26 dec 2009 om 14:04 heeft Andrei Paul Nistor
> het volgende geschreven:\
>
>
> Hello all.
>>
>> Question: Is it any way possible to access through the httpd server
>> resources like objects or remote procedures that run on the server in binary
>> form and dont get disposed after each call of the resources?
>>
>> I read lately alot about cgi and the apache server but i haven't found an
>> answer for what I'm looking for. I developed a small "program" (script) in
>> javascript that runs local in each browser. I also can comunicate with a
>> http server via ajax form within the browsers and ask for resouces. Now I
>> need a way to create on the serverside a program that builds up compiled
>> objects that can read each other properties and running in an semi-endless
>> loop, it also has to run very fast, but it seems i miss the technologie for
>> this.
>>
>> Lets think about it like in each browser we have players of a game. So we
>> have in each browser an object with properties x,y as coordinates. I can
>> post via ajax to the server if on the client a directional key is pressed.
>> The server has to compute the new position and reply back to the client its
>> new position but not only its new position cause the server has to reply
>> also the computed coordinates of the other objects so he needs at least read
>> the coordinates of the other objects. So there can be around 25 requests/s
>> from a browser (thats not the problem). The other problem is the server
>> program has to run in an endless loop until only a player remains alive. And
>> the last problem is that the program has to run fast because on the server i
>> need to do collision detection etc.
>>
>> I hope you guys and girls can help me with some advises of how i can do
>> this via the httpd server or point me to some other tehnologies that could
>> solve my problems.
>>
>> Thanks.
>>
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> " from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>
--000e0cdf92b0d5de02047ba20a97
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
I thought about using soap as an comunication protocol but in fact the remo=
te procedures are php scripts or asp i need compiled code that can execute =
fast and share objects, the communication protocol isnt important it can be=
anything.
With respect Andrei Paul Nistor
On Sa=
t, Dec 26, 2009 at 3:29 PM, John den Haan
<
mailto:John.haan@chello.nl">John.haan@chello.nl> wrote:
lockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, 20=
4, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I figure SOAP might be what you need.
-
This message was sent using a mobile device. I apologize for any seplling e=
rrors that may result.
Op 26 dec 2009 om 14:04 heeft Andrei Paul Nistor <
..nistor@gmail.com" target=3D"_blank">paul.nistor@gmail.com> het volg=
ende geschreven:\
204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello all.
Question: Is it any way possible to access through the httpd server resourc=
es like objects or remote procedures that run on the server in binary form =
and dont get disposed after each call of the resources?
I read lately alot about cgi and the apache server but i haven't found =
an answer for what I'm looking for. I developed a small "program&q=
uot; (script) in javascript that runs local in each browser. I also can com=
unicate with a http server via ajax form within the browsers and ask for re=
souces. =A0Now I need a way to create on the serverside a program that buil=
ds up compiled objects that can read each other properties and running in a=
n semi-endless loop, it also has to run very fast, but it seems i miss the =
technologie for this.
Lets think about it like in each browser we have players of a game. =A0So w=
e have in each browser an object with properties x,y =A0as coordinates. I c=
an post via ajax to the server if on the client a directional key is presse=
d. The server has to compute the new position and reply back to the client =
its new position but not only its new position cause the server has to repl=
y also the computed coordinates of the other objects so he needs at least r=
ead the coordinates of the other objects. So there can be around 25 request=
s/s from a browser (thats not the problem). The other problem is the server=
program has to run in an endless loop until only a player remains alive. A=
nd the last problem is that the program has to run fast because on the serv=
er i need to do collision detection etc.
I hope you guys and girls can help me with some advises of how i can do thi=
s via the httpd server or point me to some other tehnologies that could sol=
ve my problems.
Thanks.
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:
lank">http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail:
g" target=3D"_blank">users-unsubscribe@httpd.apache.org
=A0" =A0 from the digest:
httpd.apache.org" target=3D"_blank">users-digest-unsubscribe@httpd.apache.o=
rg
For additional commands, e-mail:
org" target=3D"_blank">users-help@httpd.apache.org
--000e0cdf92b0d5de02047ba20a97--
Re: I need a technique for executing very fast code behind the httpd apache server.
am 26.12.2009 15:01:17 von Cristea Bogdan
On Saturday 26 December 2009 15:56:43 Andrei
Paul Nistor wrote:
> I thought about using soap as an comunication
protocol but in fact the
> remote procedures are php scripts or asp i need
compiled code that can
> execute fast and share objects, the
communication protocol isnt important
> it can be anything.
>
CORBA offers a framework for client server
communication. In linux omniorb implements
CORBA standard, but I don't know how to integrate
this with apache.
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: I need a technique for executing very fast codebehind the httpd apache server.
am 26.12.2009 15:20:40 von mopo
Hi Andrei,
On Sat, 2009-12-26 at 16:01 +0200, Bogdan Cristea wrote:
> On Saturday 26 December 2009 15:56:43 Andrei
> Paul Nistor wrote:
> > I thought about using soap as an comunication
> > protocol but in fact the
> > remote procedures are php scripts or asp i need
> > compiled code that can
> > execute fast and share objects, the
> > communication protocol isnt important
> > it can be anything.
>
> CORBA offers a framework for client server
> communication. In linux omniorb implements
> CORBA standard, but I don't know how to integrate
> this with apache.
We have implemented ONC-RPC (a/k/a SunRPC) in PHP and modified the
rpcgen compiler to output PHP stubs. We use that in a setup like this:
client <--HTTP--> Apache with mod_php <--RPC--> native daemon
One team maintains the native daemon and another maintains the PHP code
facing the client. We just share the .x file describing the interface.
It performs well, and is very easy to maintain.
If you are interested, we are willing to share the code. It's not very
much, but it does the job perfectly.
Best regards,
Morten
--
Morten Kirkegaard Poulsen
CTO, FableTech
http://fabletech.com/
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: I need a technique for executing very fast code
am 26.12.2009 17:20:17 von Andrei Paul Nistor
--000e0cdff8d4485135047ba40cc9
Content-Type: text/plain; charset=ISO-8859-1
This sounds something that I'm interested in i mean onc-rpc implemented in
php and this could solve my problem. I would like to also help you guys if
its that what I'm thinking about. If you could share the code it would be
more than what i was asking for and i appreciate it alot.
On Sat, Dec 26, 2009 at 4:20 PM, Morten Kirkegaard Poulsen <
mopo@fabletech.com> wrote:
> Hi Andrei,
>
> On Sat, 2009-12-26 at 16:01 +0200, Bogdan Cristea wrote:
> > On Saturday 26 December 2009 15:56:43 Andrei
> > Paul Nistor wrote:
> > > I thought about using soap as an comunication
> > > protocol but in fact the
> > > remote procedures are php scripts or asp i need
> > > compiled code that can
> > > execute fast and share objects, the
> > > communication protocol isnt important
> > > it can be anything.
> >
> > CORBA offers a framework for client server
> > communication. In linux omniorb implements
> > CORBA standard, but I don't know how to integrate
> > this with apache.
>
> We have implemented ONC-RPC (a/k/a SunRPC) in PHP and modified the
> rpcgen compiler to output PHP stubs. We use that in a setup like this:
>
> client <--HTTP--> Apache with mod_php <--RPC--> native daemon
>
> One team maintains the native daemon and another maintains the PHP code
> facing the client. We just share the .x file describing the interface.
>
> It performs well, and is very easy to maintain.
>
> If you are interested, we are willing to share the code. It's not very
> much, but it does the job perfectly.
>
> Best regards,
> Morten
>
> --
> Morten Kirkegaard Poulsen
> CTO, FableTech
> http://fabletech.com/
>
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> " from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>
--000e0cdff8d4485135047ba40cc9
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
This sounds something that I'm interested in i mean onc-rpc implemented=
in php and this could solve my problem. I would like to also help you guys=
if its that what I'm thinking about.=A0 If you could share the code it=
would be more than what i was asking for and i appreciate it alot.
On Sat, Dec 26, 2009 at 4:20 PM, Morten Kirk=
egaard Poulsen
<=
mopo@fabletech.com> wrote:
e" style=3D"border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt =
0.8ex; padding-left: 1ex;">
Hi Andrei,
On Sat, 2009-12-26 at 16:01 +0200, Bogdan Cristea wrote:
> On Saturday 26 December 2009 15:56:43 Andrei
> Paul Nistor wrote:
> > I thought about using soap as an comunication
> > protocol but in fact the
> > remote procedures are php scripts or asp i need
> > compiled code that can
> > execute fast and share objects, the
> > communication protocol isnt important
> > it can be anything.
>
> CORBA offers a framework for client server
> communication. In linux omniorb implements
> CORBA standard, but I don't know how to integrate
> this with apache.
We have implemented ONC-RPC (a/k/a SunRPC) in PHP and modified the
>
rpcgen compiler to output PHP stubs. We use that in a setup like this:
client <--HTTP--> Apache with mod_php <--RPC--> native daemon
r>
One team maintains the native daemon and another maintains the PHP code
facing the client. We just share the .x file describing the interface.
It performs well, and is very easy to maintain.
If you are interested, we are willing to share the code. It's not very<=
br>
much, but it does the job perfectly.
Best regards,
Morten
--
Morten Kirkegaard Poulsen <mopo@fa=
bletech.com>
CTO, FableTech
http://fabletech.com/=
a>
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:
lank">http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail:
g">users-unsubscribe@httpd.apache.org
=A0 " =A0 from the digest:
@httpd.apache.org">users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail:
org">users-help@httpd.apache.org
--000e0cdff8d4485135047ba40cc9--
Re: I need a technique for executing very fast code behind the httpd apache server.
am 26.12.2009 19:06:47 von orasnita
Hi Andrei,
From: "Andrei Paul Nistor"
> Hello all.
>
> Question: Is it any way possible to access through the httpd server
> resources like objects or remote procedures that run on the server in
> binary
> form and dont get disposed after each call of the resources?
>
> I read lately alot about cgi and the apache server but i haven't found an
> answer for what I'm looking for. I developed a small "program" (script) in
> javascript that runs local in each browser. I also can comunicate with a
> http server via ajax form within the browsers and ask for resouces. Now I
> need a way to create on the serverside a program that builds up compiled
> objects that can read each other properties and running in an semi-endless
> loop, it also has to run very fast, but it seems i miss the technologie
> for
> this.
Common CGI can be used for this, but its speed is not very good because on
each request the server must run the interpreter in a new process and this
takes time.
You can use technologies like mod_perl or fastcgi to do this. A mod_perl
handler starts when the server starts and ends when you stop/restart the web
server. It has the Perl code loaded in the memory, parsed and compiled so it
just waits for the requests.
A fastcgi program uses the same technology, but it doesn't depend on Apache.
It can run under Apache, Nginx, lighttpd...
The mod_perl handlers should be written in Perl. fastcgi can run programs
written not only in perl, but in many other languages, so it is more
flexible.
Some users say that fastcgi is prefered, although I couldn't make a program
to run as fast as when using it with mod_perl.
Octavian
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: I need a technique for executing very fast code behind the httpd apache server.
am 26.12.2009 19:47:36 von mopo
On Sat, 2009-12-26 at 18:20 +0200, Andrei Paul Nistor wrote:
> This sounds something that I'm interested in i mean onc-rpc
> implemented in php and this could solve my problem. I would like to
> also help you guys if its that what I'm thinking about. If you could
> share the code it would be more than what i was asking for and i
> appreciate it alot.
http://fabletech.com/php-sunrpc/php-sunrpc-20091226.tar.bz2
Please let me know if you have any problems.
Best regards,
Morten
--
Morten Kirkegaard Poulsen
CTO, FableTech
http://fabletech.com/
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: I need a technique for executing very fast codebehind the httpd apache server.
am 27.12.2009 01:40:31 von Nick Kew
On 26 Dec 2009, at 13:04, Andrei Paul Nistor wrote:
> Hello all.
>
> Question: Is it any way possible to access through the httpd server resources like objects or remote procedures that run on the server in binary form and dont get disposed after each call of the resources?
Sure. You can implement your choice of protocol in a module, either
as a content handler from scratch, or as a mod_proxy backend.
Or you can use a protocol apache already supports: CGI and FastCGI
are simple glue to your own programs, or if your program supports
(say) HTTP or AJP you could just use the proxy.
> I read lately alot about cgi and the apache server but i haven't found an answer for what I'm looking for. I developed a small "program" (script) in javascript that runs local in each browser. I also can comunicate with a http server via ajax form within the browsers and ask for resouces. Now I need a way to create on the serverside a program that builds up compiled objects that can read each other properties and running in an semi-endless loop, it also has to run very fast, but it seems i miss the technologie for this.
FastCGI might be a simple fix for that sort of thing.
--
Nick Kew
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: I need a technique for executing very fast code
am 27.12.2009 09:33:56 von Krist van Besien
On Sat, Dec 26, 2009 at 2:04 PM, Andrei Paul Nistor
wrote:
> Hello all.
>
> Question: Is it any way possible to access through the httpd server
> resources like objects or remote procedures that run on the server in binary
> form and dont get disposed after each call of the resources?
Have you looked at Tomcat? Java(J2EE) seems to be fast enough for
almost everybody...
Krist
--
krist.vanbesien@gmail.com
krist@vanbesien.org
Bremgarten b. Bern, Switzerland
--
A: It reverses the normal flow of conversation.
Q: What's wrong with top-posting?
A: Top-posting.
Q: What's the biggest scourge on plain text email discussions?
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: I need a technique for executing very fast code
am 28.12.2009 19:29:12 von Andrei Paul Nistor
--000e0ce0d636fbf7bb047bce14ff
Content-Type: text/plain; charset=ISO-8859-1
Thanks all. I will test some of the things you told me in here and will give
feedback in case i will find a good solution. Second I'm thinking to test
the mod_perl solution and if this isn't working i will write maybe my own
module for apache. The ONC-RPC from PHP to another deamon could also be a
solution and I started to test that.
Write to you all later and thanks alot for the fast answers. You are all
great.
On Sun, Dec 27, 2009 at 10:33 AM, Krist van Besien <
krist.vanbesien@gmail.com> wrote:
> On Sat, Dec 26, 2009 at 2:04 PM, Andrei Paul Nistor
> wrote:
> > Hello all.
> >
> > Question: Is it any way possible to access through the httpd server
> > resources like objects or remote procedures that run on the server in
> binary
> > form and dont get disposed after each call of the resources?
>
> Have you looked at Tomcat? Java(J2EE) seems to be fast enough for
> almost everybody...
>
> Krist
>
>
> --
> krist.vanbesien@gmail.com
> krist@vanbesien.org
> Bremgarten b. Bern, Switzerland
> --
> A: It reverses the normal flow of conversation.
> Q: What's wrong with top-posting?
> A: Top-posting.
> Q: What's the biggest scourge on plain text email discussions?
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> " from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>
--000e0ce0d636fbf7bb047bce14ff
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Thanks all. I will test some of the things you told me in here and will giv=
e feedback in case i will find a good solution. Second I'm thinking to =
test the mod_perl solution and if this isn't working i will write maybe=
my own module for apache. The ONC-RPC from PHP to another deamon could als=
o be a solution and I started to test that.
Write to you all later and thanks alot for the fast answers. You are al=
l great.
On Sun, Dec 27, 2009 at 10:33 AM=
, Krist van Besien
<
gmail.com">krist.vanbesien@gmail.com> wrote:
204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
>On Sat, Dec 26, 2009 at 2:04 PM, Andrei Paul Nistor
<> =
wrote:
> Hello all.
>
> Question: Is it any way possible to access through the httpd server
>
> resources like objects or remote procedures that run on the server in =
binary
> form and dont get disposed after each call of the resources?
Have you looked at Tomcat? Java(J2EE) seems to be fast enough for
almost everybody...
Krist
--
<=
br>
Bremgarten b. Bern, Switzerland
--
A: It reverses the normal flow of conversation.
Q: What's wrong with top-posting?
A: Top-posting.
Q: What's the biggest scourge on plain text email discussions?
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:
lank">http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail:
g">users-unsubscribe@httpd.apache.org
=A0 " =A0 from the digest:
@httpd.apache.org">users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail:
org">users-help@httpd.apache.org
--000e0ce0d636fbf7bb047bce14ff--