/****************************************************************** * $Id: http_client.c,v 1.11 2007/11/04 07:37:38 m0gg Exp $ * * CSOAP Project: A http client/server library in C (example) * Copyright (C) 2003-2004 Ferhat Ayaz * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * * Email: hero@persua.de ******************************************************************/ #include #include #include #include #include #define MAX_BUFFER_SIZE 1024 static int show_http_status_code = 0; static int show_headers = 0; static int show_content = 1; static char *username = NULL; static char *password = NULL; static void show_response(hresponse_t *res) { unsigned char buffer[MAX_BUFFER_SIZE+1]; int len; if (!res) { fprintf(stderr, "hresponse_t is NULL!\n"); return; } if (res->errcode != 200 || show_http_status_code) printf("HTTP Status: %d \"%s\"\n", res->errcode, res->desc); if (show_headers) { hpair_t *pair; printf("HTTP Headers:\n"); for (pair = res->header; pair; pair=pair->next) printf(" %s: %s\n", pair->key, pair->value); } if (!res->in) { fprintf(stderr, "No input stream!\n"); return; } while (http_input_stream_is_ready(res->in)) { len = http_input_stream_read(res->in, buffer, MAX_BUFFER_SIZE); if (show_content) fwrite(buffer, len, 1, stdout); } return; } int main(int argc, char **argv) { httpc_conn_t *conn; /* Client connection */ hresponse_t *res; /* HTTP response */ herror_t status; /* Function return value */ int i; /* check usage */ if (argc < 2) { fprintf(stderr, "usage: %s [-headers] [-status] [-noout] [-username name] [-password secret] \n", argv[0]); exit(1); } /* XXX: argv[i+1] is not safe (userame/password) */ for (i=0; i