- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: C callable library to do HTTP get/put form dat...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2003 10:20 AM
12-08-2003 10:20 AM
I don't really understand too well what I'm asking here, this is coming from one of my "advanced users" ( who knows more than I do).
Thanks,
John
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2003 10:34 AM
12-08-2003 10:34 AM
Re: C callable library to do HTTP get/put form data
http://hpux.connect.org.uk/hppd/hpux/Gnu/cgicc-3.0.2/
However, I think I would try to push him towards Perl and the CGI module. The development times will be 10x faster and the performance will be all but indistinguishable from Native C or C++.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2003 11:03 AM
12-08-2003 11:03 AM
Re: C callable library to do HTTP get/put form data
Are there other options?
Of the options you mention, I think I will have to go with cgicc library. We have to somehow invoke these functions from within an existing application ( uses a language called Gembase DML ). We know how to call C routines. I wouldn't know how to attempt to call perl from within the application ( unless perhaps it would be completely transparent, i.e. exactly the same, to the app whether it was linking to a C library or a perl program). I think our needs will be fairly modest and so maybe the development time won't be prohibitive. And, the "advanced user" I mentioned is not actually going to be doing the work, he is only telling me what we need, and yet another person here is going to do the programming, and I think he'd be more comfortable with C than perl. ( He's at least done some C programming.)
- John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2003 11:15 AM
12-08-2003 11:15 AM
Re: C callable library to do HTTP get/put form data
I didn't think/notice that cgicc is a c++ library ( duh!). I don't know if our application programming language ( Gembase DML) can link to that, or only to C, or even if there is a difference.
- John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2003 11:18 AM
12-08-2003 11:18 AM
Re: C callable library to do HTTP get/put form data
I will check that avenue out.
- John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 06:29 AM
12-09-2003 06:29 AM
Solutionsystem() or whatnot) might work for
simple HTTP requests, but to do anything
robust you'd probably be better off
using a C API as you originally suggested.
The curl authors have a really nice
summary of HTTP libraries at:
http://curl.haxx.se/libcurl/competitors.html
HTH