From f1f5c38793bfc6160e1e377d3061e8ba592e3057 Mon Sep 17 00:00:00 2001 From: snowdrop Date: Fri, 15 Oct 2004 13:42:07 +0000 Subject: development --- examples/csoap/echoattachments-client.c | 142 ++++++++++++++++++++++++ examples/csoap/echoattachments-server.c | 81 ++++++++++++++ examples/csoap/simpleclient.c | 29 ++++- examples/csoap/simpleserver.c | 14 +-- examples/nanohttp/client_get.c | 112 +++++++++++++++++++ examples/nanohttp/client_mime.c | 185 ++++++++++++++++++++++++++++++++ examples/nanohttp/client_post_chunked.c | 150 ++++++++++++++++++++++++++ examples/nanohttp/postserver.c | 137 ++++++++++++++++++----- 8 files changed, 816 insertions(+), 34 deletions(-) create mode 100755 examples/csoap/echoattachments-client.c create mode 100755 examples/csoap/echoattachments-server.c create mode 100644 examples/nanohttp/client_get.c create mode 100755 examples/nanohttp/client_mime.c create mode 100644 examples/nanohttp/client_post_chunked.c diff --git a/examples/csoap/echoattachments-client.c b/examples/csoap/echoattachments-client.c new file mode 100755 index 0000000..9bf4559 --- /dev/null +++ b/examples/csoap/echoattachments-client.c @@ -0,0 +1,142 @@ +/****************************************************************** + * $Id: echoattachments-client.c,v 1.1 2004/10/15 13:42:57 snowdrop Exp $ + * + * CSOAP Project: CSOAP examples project + * Copyright (C) 2003 Ferhat Ayaz + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307USA + * + * Email: ayaz@jprogrammer.net + ******************************************************************/ + +#include + + +/* +static const char *url = "http://csoap.sourceforge.net/cgi-bin/csoapserver"; +*/ +static const char *url = "http://localhost:10000/echoattachments"; +static const char *urn = ""; +static const char *method = "echo"; + + +void compareFiles(const char* received, const char *sent) +{ + FILE *f1, *f2; + char c1, c2; + long s1,s2; + + printf("Opening received file to compare: '%s'\n", received); + f1 = fopen(received, "r"); + if (!f1) { + fprintf(stderr, "Can not open '%s'\n", received); + return; + } + + printf("Opening sent file to compare: '%s'\n", sent); + f2 = fopen(sent, "r"); + if (!f2) { + fprintf(stderr, "Can not open '%s'\n", sent); + fclose(f1); + return; + } + + fseek(f1, 0, SEEK_END); + fseek(f2, 0, SEEK_END); + + s1 = ftell(f1); + s2 = ftell(f2); + + fseek(f1, 0, SEEK_SET); + fseek(f2, 0, SEEK_SET); + + if (s1 > s2) { + + printf("ERROR: files are not equal! Received file is bigger\n"); + fclose(f1); fclose(f2); + return; + + } else if (s2 > s1) { + + printf("ERROR: files are not equal! Sent file is bigger\n"); + fclose(f1); fclose(f2); + return; + } + + while (feof(f1)) { + + c1= fgetc(f1); + c2= fgetc(f2); + if (c1 != c2){ + printf("ERROR: files are not equal! Byte compare failed\n"); + fclose(f1); fclose(f2); + break; + } + } + + printf("OK: files are equal!\n"); + fclose(f1); fclose(f2); + +} + +int main(int argc, char *argv[]) +{ + SoapCtx *ctx, *ctx2; + char href[MAX_HREF_SIZE]; + xmlNodePtr fault; + + if (argc < 2) { + fprintf(stderr, "usage: %s [url]\n", argv[0]); + exit(1); + } + + log_set_level(HLOG_VERBOSE); + if (!soap_client_init_args(argc, argv)) { + return 1; + } + + ctx = soap_client_ctx_new(urn, method); + if (soap_ctx_add_file(ctx, argv[1], "application/octet-stream", href) != H_OK) { + fprintf(stderr, "Error while adding '%s'\n", argv[1]); + soap_ctx_free(ctx); + exit(1); + } + soap_env_add_attachment(ctx->env,"source", href); + + printf("sending request ...\n"); + if (argc > 2) + ctx2 = soap_client_invoke(ctx, argv[2], ""); + else + ctx2 = soap_client_invoke(ctx, url, ""); + + fault = soap_env_get_fault(ctx2->env); + if (fault) { + soap_xml_doc_print(ctx2->env->root->doc); + } else if (ctx2->attachments) { + compareFiles(ctx2->attachments->parts->filename, argv[1]); + } else { + printf("No attachments!"); + soap_xml_doc_print(ctx2->env->root->doc); + } + + soap_ctx_free(ctx2); + soap_ctx_free(ctx); + + return 0; +} + + + + diff --git a/examples/csoap/echoattachments-server.c b/examples/csoap/echoattachments-server.c new file mode 100755 index 0000000..319618d --- /dev/null +++ b/examples/csoap/echoattachments-server.c @@ -0,0 +1,81 @@ +/****************************************************************** + * $Id: echoattachments-server.c,v 1.1 2004/10/15 13:42:57 snowdrop Exp $ + * + * CSOAP Project: CSOAP examples project + * Copyright (C) 2003-2004 Ferhat Ayaz + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307USA + * + * Email: ferhatayaz@yahoo.com + ******************************************************************/ + +#include + + +static const char *url = "/axis/services/urn:EchoAttachmentsService"; +static const char *urn = ""; +static const char *method = "echo"; + + + +SoapCtx* echo_attachments(SoapCtx *req) +{ + + SoapEnv *env; + SoapCtx* ctx; + part_t *part; + char href[MAX_HREF_SIZE]; + + env = soap_env_new_with_response(req->env); + ctx = soap_ctx_new(env); + + if (req->attachments) { + part = req->attachments->parts; + while (part) { + log_verbose2("Adding part '%s'", part->filename); + soap_ctx_add_file(ctx, part->filename, "text/plain", href); + soap_env_add_attachment(ctx->env, "echoFile", href); + part = part->next; + } + } + + return ctx; +} + + +int main(int argc, char *argv[]) +{ + + SoapRouter *router; + + log_set_level(HLOG_VERBOSE); + + if (!soap_server_init_args(argc, argv)) { + return 1; + } + + router = soap_router_new(); + soap_router_register_service(router, echo_attachments, method, urn); + soap_server_register_router(router, url); + + log_info1("send SIGTERM to shutdown"); + soap_server_run(); + + log_info1("shutting down\n"); + soap_server_destroy(); + + return 0; +} + diff --git a/examples/csoap/simpleclient.c b/examples/csoap/simpleclient.c index 4f2bcfe..3ac1588 100644 --- a/examples/csoap/simpleclient.c +++ b/examples/csoap/simpleclient.c @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: simpleclient.c,v 1.4 2004/08/30 15:26:48 snowdrop Exp $ + * $Id: simpleclient.c,v 1.5 2004/10/15 13:42:57 snowdrop Exp $ * * CSOAP Project: CSOAP examples project * Copyright (C) 2003 Ferhat Ayaz @@ -27,12 +27,35 @@ /* static const char *url = "http://csoap.sourceforge.net/cgi-bin/csoapserver"; */ -static const char *url = "http://localhost:10000/csoapserver"; +static const char *url = "http://localhost:3031/csoapserver"; static const char *urn = "urn:examples"; static const char *method = "sayHello"; int main(int argc, char *argv[]) +{ + SoapCtx *ctx, *ctx2; + + log_set_level(HLOG_VERBOSE); + if (!soap_client_init_args(argc, argv)) { + return 1; + } + + ctx = soap_client_ctx_new(urn, method); + soap_env_add_item(ctx->env, "xsd:string", "name", "Jonny B. Good"); + + if (argc > 1) + ctx2 = soap_client_invoke(ctx, argv[1], ""); + else + ctx2 = soap_client_invoke(ctx, url, ""); + + soap_xml_doc_print(ctx2->env->root->doc); + soap_ctx_free(ctx2); + soap_ctx_free(ctx); +} + +/* +int main2(int argc, char *argv[]) { SoapEnv *env, *res; @@ -55,7 +78,7 @@ int main(int argc, char *argv[]) return 0; } - +*/ diff --git a/examples/csoap/simpleserver.c b/examples/csoap/simpleserver.c index a5a3318..3ccd61e 100644 --- a/examples/csoap/simpleserver.c +++ b/examples/csoap/simpleserver.c @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: simpleserver.c,v 1.9 2004/09/19 07:05:01 snowdrop Exp $ + * $Id: simpleserver.c,v 1.10 2004/10/15 13:42:57 snowdrop Exp $ * * CSOAP Project: CSOAP examples project * Copyright (C) 2003 Ferhat Ayaz @@ -41,20 +41,21 @@ void add_name(xmlNodePtr node, SoapEnv *env) soap_env_add_itemf(env,"xsd:string", "echo", "Hello '%s'", name); - xmlFree(BAD_CAST name); + /*xmlFree(BAD_CAST name);*/ } -SoapEnv* say_hello(SoapEnv *request) +SoapCtx* say_hello(SoapCtx *request) { SoapEnv *env; + SoapCtx* ctx; xmlNodePtr method, node; - env = soap_env_new_with_response(request); + env = soap_env_new_with_response(request->env); - method = soap_env_get_method(request); + method = soap_env_get_method(request->env); node = soap_xml_get_children(method); while (node) { @@ -62,7 +63,8 @@ SoapEnv* say_hello(SoapEnv *request) node = soap_xml_get_next(node); } - return env; + ctx = soap_ctx_new(env); + return ctx; } diff --git a/examples/nanohttp/client_get.c b/examples/nanohttp/client_get.c new file mode 100644 index 0000000..4015ed2 --- /dev/null +++ b/examples/nanohttp/client_get.c @@ -0,0 +1,112 @@ +/****************************************************************** +* $Id: client_get.c,v 1.1 2004/10/15 13:42:07 snowdrop 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: ferhatayaz@yahoo.com +******************************************************************/ +#define MEM_DEBUG +#include +#include + +#ifdef MEM_DEBUG +#include +#endif + +#define MAX_BUFFER_SIZE 1024 + +static +void show_response(hresponse_t *res) +{ + hpair_t *pair; + byte_t buffer[MAX_BUFFER_SIZE+1]; + int read; + + if (res == NULL) + { + log_error1("Response is NULL!"); + return; + } + + log_info2("Status: %d", res->errcode); + log_info2("Desc : '%s'", res->desc); + + pair = res->header; + while (pair != NULL) { + log_debug3("%s: %s", pair->key, pair->value); + pair = pair->next; + } + + if (res->in == NULL) + { + log_warn1("No input stream!"); + return; + } + + + while (http_input_stream_is_ready(res->in)) + { + read = http_input_stream_read(res->in, buffer, MAX_BUFFER_SIZE); + buffer[read] = '\0'; + puts(buffer); + } + +} + +int main(int argc, char *argv[]) +{ + httpc_conn_t *conn; /* Client connection object */ + hresponse_t *res; /* Response object **/ + + /* check usage */ + if (argc < 2) { + fprintf(stderr, "usage %s \n", argv[0]); + exit(1); + } + + /* Set log level to see more information written by the library */ + log_set_level(HLOG_VERBOSE); + + /* Initialize httpc module */ + if (httpc_init(argc, argv)) + { + log_error1("Can not init httpc"); + return 1; + } + + /* Create the client connection object */ + conn = httpc_new(); + + /* Send GET method and receive response */ + res = httpc_get(conn, argv[1]); + + /* Show response */ + show_response(res); + + /* Clean up */ + hresponse_free(res); + httpc_free(conn); + +#ifdef MEM_DEBUG + _mem_report(); +#endif + + return 0; +} + diff --git a/examples/nanohttp/client_mime.c b/examples/nanohttp/client_mime.c new file mode 100755 index 0000000..7271865 --- /dev/null +++ b/examples/nanohttp/client_mime.c @@ -0,0 +1,185 @@ +/****************************************************************** +* $Id: client_mime.c,v 1.1 2004/10/15 13:42:07 snowdrop Exp $ +* +* CSOAP Project: A http client/server library in C (example) +* Copyright (C) 2003 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: ferhatayaz@yahoo.com +******************************************************************/ +#include + +#include + +#define MAX_BUFFER_SIZE 1024 + +static +void show_response(hresponse_t *res) +{ + hpair_t *pair; + byte_t buffer[MAX_BUFFER_SIZE+1]; + int read; + if (res == NULL) + { + log_error1("Response is NULL!"); + return; + } + + log_info2("Spec : '%s'", res->spec); + log_info2("Status: %d", res->errcode); + log_info2("Desc : '%s'", res->desc); + + pair = res->header; + while (pair != NULL) { + log_debug3("%s: %s", pair->key, pair->value); + pair = pair->next; + } + + if (res->in == NULL) + { + log_warn1("No input stream!"); + return; + } + + + while (http_input_stream_is_ready(res->in)) + { + read = http_input_stream_read(res->in, buffer, MAX_BUFFER_SIZE); + buffer[read] = '\0'; + puts(buffer); + } + +} + + + +static +int send_file(httpc_conn_t *conn, const char* filename, + const char* id, const char* content_type) +{ + int status, size; + FILE *f = fopen(filename, "r"); + char buffer[MAX_BUFFER_SIZE]; + + if (f == NULL) + { + log_error2("can not open file: '%s'", filename); + return 0; + } + + status = httpc_mime_next(conn, id, content_type, "binary"); + if (status != HSOCKET_OK) + return status; + + while (!feof(f)) { + size = fread(buffer, 1, MAX_BUFFER_SIZE, f); + if (size == -1) + { + log_error1("Can not read file!"); + fclose(f); + return 0; + } + status = http_output_stream_write(conn->out, buffer, size); + if (status != HSOCKET_OK) + { + log_error1("Can not send data!"); + fclose(f); + return 0; + } + } + + fclose(f); + return 1; +} + +int main(int argc, char *argv[]) +{ + httpc_conn_t *conn; /* Client connection object */ + hresponse_t *res; /* Response object **/ + + int status; + FILE *f; + size_t size; + char url[50], file[50], id[50], content_type[50]; + + char buffer[MAX_BUFFER_SIZE+1]; + + + /* Check usage */ + if (argc < 5) { + fprintf(stderr, "usage %s \n", argv[0]); + exit(1); + } + + /* Set log level to see more information written by the library */ + log_set_level(HLOG_VERBOSE); + + /* Initialize httpc module */ + if (httpc_init(argc, argv)) + { + log_error1("Can not init httpc"); + return 1; + } + + /* Create the client connection object */ + conn = httpc_new(); + + httpc_set_header(conn, "SOAPAction", "\"\""); + httpc_set_header(conn, HEADER_TRANSFER_ENCODING, TRANSFER_ENCODING_CHUNKED); + + /* + Open connection for mime + */ + status = httpc_mime_begin(conn, argv[1], argv[3], "", argv[4]); + if (status != HSOCKET_OK) + { + log_error2("Can not start MIME: %d", status); + exit(1); + } + + if (!send_file(conn, argv[2], argv[3], argv[4])) + return 1; + + while (1) + { + printf("Enter filename ['.' for finish]: "); + gets(file); + if (!strcmp(file, ".")) + break; + + printf("Enter part id:"); + gets(id); + printf("Enter content-type:"); + gets(content_type); + + if (!send_file(conn, file, id, content_type)) + return 1; + } + + res = httpc_mime_end(conn); + + /* Show response */ + show_response(res); + + /* clean up*/ + hresponse_free(res); + httpc_free(conn); + return 0; +} + + + diff --git a/examples/nanohttp/client_post_chunked.c b/examples/nanohttp/client_post_chunked.c new file mode 100644 index 0000000..f9855b4 --- /dev/null +++ b/examples/nanohttp/client_post_chunked.c @@ -0,0 +1,150 @@ +/****************************************************************** +* $Id: client_post_chunked.c,v 1.1 2004/10/15 13:42:07 snowdrop Exp $ +* +* CSOAP Project: A http client/server library in C (example) +* Copyright (C) 2003 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: ferhatayaz@yahoo.com +******************************************************************/ +#include + +#include + +#define MAX_BUFFER_SIZE 1024 + +static +void show_response(hresponse_t *res) +{ + hpair_t *pair; + byte_t buffer[MAX_BUFFER_SIZE+1]; + int read; + if (res == NULL) + { + log_error1("Response is NULL!"); + return; + } + + log_info2("Spec : '%s'", res->spec); + log_info2("Status: %d", res->errcode); + log_info2("Desc : '%s'", res->desc); + + pair = res->header; + while (pair != NULL) { + log_debug3("%s: %s", pair->key, pair->value); + pair = pair->next; + } + + if (res->in == NULL) + { + log_warn1("No input stream!"); + return; + } + + + while (http_input_stream_is_ready(res->in)) + { + read = http_input_stream_read(res->in, buffer, MAX_BUFFER_SIZE); + buffer[read] = '\0'; + puts(buffer); + } + +} + + + +int main(int argc, char *argv[]) +{ + httpc_conn_t *conn; /* Client connection object */ + hresponse_t *res; /* Response object **/ + char postdata[1054]; + + /* Check usage */ + if (argc < 2) { + fprintf(stderr, "usage %s \n", argv[0]); + exit(1); + } + + /* Set log level to see more information written by the library */ + log_set_level(HLOG_VERBOSE); + + /* Initialize httpc module */ + if (httpc_init(argc, argv)) + { + log_error1("Can not init httpc"); + return 1; + } + + /* Create the client connection object */ + conn = httpc_new(); + + /* Set header for chunked transport */ + httpc_set_header(conn, HEADER_TRANSFER_ENCODING, TRANSFER_ENCODING_CHUNKED); + + /* POSTing will be done in 3 steps + 1. httpc_post_begin() + 2. http_output_stream_write() + 3. httpc_post_end() + */ + + /* (1) First step begin the post request*/ + if (httpc_post_begin(conn, argv[1]) != HSOCKET_OK) + { + log_error1("Can not begin posting\n"); + httpc_free(conn); + exit(1); + } + + /* (2) Post some data*/ + while (1) + { + printf("\nEnter post data (max 1054). [Type '.' to end]: "); + gets(postdata); + if (!strcmp(postdata, ".")) + break; + else if (http_output_stream_write(conn->out, postdata, strlen(postdata)) + != HSOCKET_OK ) + { + log_error1("Can not post\n"); + httpc_free(conn); + exit(1); + } + } + + /* (3) End POSTing data and receive the response */ + printf("\nReceiving ... \n "); + res = httpc_post_end(conn); + if (res == NULL) + { + log_error2("Error: %s", conn->errmsg); + httpc_free(conn); + exit(1); + } + + show_response(res); + + /* Clean up */ + hresponse_free(res); + httpc_free(conn); + + return 0; +} + + + + + diff --git a/examples/nanohttp/postserver.c b/examples/nanohttp/postserver.c index a28dc20..4e6a3c5 100644 --- a/examples/nanohttp/postserver.c +++ b/examples/nanohttp/postserver.c @@ -1,5 +1,5 @@ /****************************************************************** -* $Id: postserver.c,v 1.3 2004/09/19 07:05:03 snowdrop Exp $ +* $Id: postserver.c,v 1.4 2004/10/15 13:42:07 snowdrop Exp $ * * CSOAP Project: A http client/server library in C (example) * Copyright (C) 2003 Ferhat Ayaz @@ -19,12 +19,16 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * -* Email: ayaz@jprogrammer.net +* Email: ferhatayaz@yahoo.com ******************************************************************/ #include #include - +/* + Please ignore this file. This is just for me to test + some features and new functions. In the future this + file will also be good start to learn nanohttp +*/ static void _print_binary_ascii(int n) { @@ -60,47 +64,119 @@ void _print_binary_ascii2(unsigned char n) log_verbose2("%s", ascii); } + +void echomime_service(httpd_conn_t *conn, hrequest_t *req) +{ + part_t *part; + int status; + char *content_type , *transfer_encoding, + *content_id, *root_content_type; + + if (!req->attachments || !req->content_type) + { + httpd_send_header(conn, 200, "OK"); + http_output_stream_write_string(conn->out, "

"); + http_output_stream_write_string(conn->out, + "You do not posted a MIME message!

"); + return; + } + else + { + + root_content_type = hpairnode_get(req->content_type->params, "type"); + + status = + httpd_mime_send_header(conn, req->attachments->root_part->id, "", + root_content_type, 200, "OK"); + + if (status != H_OK) + return; + + part = req->attachments->parts; + while (part) + { + content_id = hpairnode_get(part->header, HEADER_CONTENT_ID); + content_type = hpairnode_get(part->header, HEADER_CONTENT_TYPE); + transfer_encoding = hpairnode_get(part->header, HEADER_TRANSFER_ENCODING); + status = httpd_mime_send_file(conn, content_id, + content_type, transfer_encoding, part->filename); + if (status != H_OK) + return; + part = part->next; + } + + httpd_mime_end(conn); + } + +} + /* SERVICE: http://host:port/postserver */ void post_service(httpd_conn_t *conn, hrequest_t *req) { unsigned char *postdata; - long received; + long received, total=0; unsigned int tmp; char buffer[15]; - + hpair_t *pair; +/* postdata = httpd_get_postdata(conn, req, &received, -1); - - if (postdata != NULL) { - - httpd_send_header(conn, 200, "OK", NULL); - hsocket_send(conn->sock, "\n"); - hsocket_send(conn->sock, "

You Posted:


\n"); - hsocket_nsend(conn->sock, postdata, received); - hsocket_send(conn->sock, "

Received size


\n"); - sprintf(buffer, "%d", received); - hsocket_send(conn->sock, buffer); - hsocket_send(conn->sock, ""); +*/ + if (req->method == HTTP_REQUEST_POST) { + + httpd_send_header(conn, 200, "OK"); + http_output_stream_write_string(conn->out, "\n"); + http_output_stream_write_string(conn->out, "

You Posted:


\n"); + while (http_input_stream_is_ready(req->in)) + { + received = http_input_stream_read(req->in, buffer, 10); + http_output_stream_write(conn->out, buffer, received); + total += received; + } + http_output_stream_write_string(conn->out, "

Received size


\n"); + sprintf(buffer, "%d", total); + http_output_stream_write_string(conn->out, buffer); _print_binary_ascii2(postdata[0]); _print_binary_ascii2(postdata[1]); _print_binary_ascii2(postdata[2]); _print_binary_ascii2(postdata[3]); - free(postdata); + /* free(postdata);*/ } else { - httpd_send_header(conn, 200, "OK", NULL); - hsocket_send(conn->sock, ""); - hsocket_send(conn->sock, "
"); - hsocket_send(conn->sock, "Enter Postdata: "); - hsocket_send(conn->sock, ""); - hsocket_send(conn->sock, ""); - + httpd_send_header(conn, 200, "OK"); + http_output_stream_write_string(conn->out, ""); + http_output_stream_write_string(conn->out, ""); + http_output_stream_write_string(conn->out, "Enter Postdata: "); + http_output_stream_write_string(conn->out, ""); + } + http_output_stream_write_string(conn->out, "

Content-Type:"); + if (req->content_type) + { + http_output_stream_write_string(conn->out, req->content_type->type); + http_output_stream_write_string(conn->out, "
"); + pair = req->content_type->params; + while (pair) + { + http_output_stream_write_string(conn->out, pair->key); + http_output_stream_write_string(conn->out, "="); + http_output_stream_write_string(conn->out, pair->value); + http_output_stream_write_string(conn->out, "
"); + pair = pair->next; + } + } + else + { + http_output_stream_write_string(conn->out, "Not available"); + } + + http_output_stream_write_string(conn->out, ""); + } int main(int argc, char *argv[]) @@ -112,7 +188,12 @@ int main(int argc, char *argv[]) return 1; } - if (!httpd_register("/", post_service)) { + if (!httpd_register("/postserver", post_service)) { + fprintf(stderr, "Can not register service"); + return 1; + } + + if (!httpd_register("/axis/services/urn:EchoAttachmentsService", echomime_service)) { fprintf(stderr, "Can not register service"); return 1; } @@ -122,5 +203,11 @@ int main(int argc, char *argv[]) return 1; } + httpd_destroy(); + +#ifdef MEM_DEBUG + _mem_report(); +#endif + return 0; } -- cgit v1.1-32-gdbae