 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
silviu Guest
|
Posted: Sat Feb 21, 2004 10:47 am Post subject: How to invoke a Java servlet from C++ code |
|
|
Hi All,
I have to write a C++ application that should invoke a Java Servlet on a remote box.
Is this possible to be done within C++?
Thanks in advance for your help,
Sil
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
Joost Kraaijeveld Guest
|
Posted: Sat Feb 21, 2004 4:18 pm Post subject: Re: How to invoke a Java servlet from C++ code |
|
|
| Quote: | I have to write a C++ application that should invoke a Java Servlet on a
remote box.
Is this possible to be done within C++?
|
Yes, use an ORB (CORBA, MICO does the job).
Bye
Joost
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
Roland Pibinger Guest
|
Posted: Fri Feb 27, 2004 6:14 pm Post subject: Re: How to invoke a Java servlet from C++ code |
|
|
On 21 Feb 2004 05:47:20 -0500, [email]thelinuxguy1997 (AT) yahoo (DOT) com[/email] (silviu)
wrote:
| Quote: | I have to write a C++ application that should invoke a Java Servlet on a remote box.
Is this possible to be done within C++?
|
It is unusual to use C++ for internet programming.
Servlets are invoked via http through a 'Web-Container' (and a
Web-Server):
http://www-106.ibm.com/developerworks/java/library/j-roadmap1/servletinvocation.gif
In the plainest case try something like:
system ("IEXPLORE.EXE "http://www.mycompany.com/myservlet"");
Otherwise consider a library that 'speaks' http, maybe this:
http://curl.haxx.se/libcurl/
Best wishes,
Roland Pibinger
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|