summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-wsil.c
diff options
context:
space:
mode:
authorGravatar m0gg2006-11-23 15:27:32 +0000
committerGravatar m0gg2006-11-23 15:27:32 +0000
commit6457c46897d6e0c63476bf4ba4ca14b4844fac0d (patch)
treeb1f892f4f1d7cb58ff50660c73947847447a14ce /libcsoap/soap-wsil.c
parent06906cd337028c9e42e10916d08db64e1e22d0f1 (diff)
downloadcsoap-6457c46897d6e0c63476bf4ba4ca14b4844fac0d.tar.gz
csoap-6457c46897d6e0c63476bf4ba4ca14b4844fac0d.tar.bz2
Code cleanup
Diffstat (limited to 'libcsoap/soap-wsil.c')
-rw-r--r--libcsoap/soap-wsil.c43
1 files changed, 21 insertions, 22 deletions
diff --git a/libcsoap/soap-wsil.c b/libcsoap/soap-wsil.c
index ac4add8..7e0a7f2 100644
--- a/libcsoap/soap-wsil.c
+++ b/libcsoap/soap-wsil.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-wsil.c,v 1.1 2006/11/23 13:20:46 m0gg Exp $
+* $Id: soap-wsil.c,v 1.2 2006/11/23 15:27:33 m0gg Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -34,14 +34,11 @@
#endif
#include <libxml/tree.h>
-#include <libxml/uri.h>
#include <nanohttp/nanohttp-common.h>
#include <nanohttp/nanohttp-request.h>
#include <nanohttp/nanohttp-server.h>
-#include "soap-fault.h"
-#include "soap-env.h"
#include "soap-ctx.h"
#include "soap-service.h"
#include "soap-router.h"
@@ -49,38 +46,40 @@
#include "soap-wsil.h"
static void
-_soap_wsil_list_services(httpd_conn_t *conn, struct SoapRouter *router)
+_soap_wsil_list_routers(httpd_conn_t *conn)
{
- SoapServiceNode *node;
+ SoapRouterNode *node;
- for (node=router->service_head; node; node=node->next)
- {
+ for (node=soap_server_get_routers(); node; node=node->next)
+ {
http_output_stream_write_string(conn->out,
"<service>"
"<description "
- "referencedNamespace=\"http://schemas.xmlsoap.org/wsdl/\" "
"location=\"");
http_output_stream_write_string(conn->out, soap_transport_get_name());
- http_output_stream_write_string(conn->out, node->service->method);
+ http_output_stream_write_string(conn->out, node->context);
+ http_output_stream_write_string(conn->out,
+ "\" "
+ "referencedNamespace=\"");
+ if (node->router->description)
+ {
+ xmlNodePtr root;
+
+ root = xmlDocGetRootElement(node->router->description);
+ http_output_stream_write_string(conn->out, root->ns->href);
+ }
+ else
+ {
+ http_output_stream_write_string(conn->out, "http://schemas.xmlsoap.org/wsdl/");
+ }
http_output_stream_write_string(conn->out,
"\" />"
- "</service>\n");
+ "</service>");
}
return;
}
static void
-_soap_wsil_list_routers(httpd_conn_t *conn)
-{
- SoapRouterNode *node;
-
- for (node=soap_server_get_routers(); node; node=node->next)
- _soap_wsil_list_services(conn, node->router);
-
- return;
-}
-
-static void
_soap_wsil_handle_get(httpd_conn_t * conn, struct hrequest_t * req)
{
httpd_set_header(conn, HEADER_CONTENT_TYPE, "text/xml");