summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-wsil.c
blob: 7bbc23aee11abf5c0948917f69f0cb152a809111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/******************************************************************
*  $Id: soap-wsil.c,v 1.6 2006/11/27 11:15:27 m0gg Exp $
*
* CSOAP Project:  A SOAP client/server library in C
* 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: ayaz@jprogrammer.net
******************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifdef HAVE_STDIO_H
#include <stdio.h>
#endif

#ifdef HAVE_STRING_H
#include <string.h>
#endif

#include <libxml/tree.h>

#include <nanohttp/nanohttp-error.h>
#include <nanohttp/nanohttp-common.h>
#include <nanohttp/nanohttp-stream.h>
#include <nanohttp/nanohttp-request.h>
#include <nanohttp/nanohttp-server.h>

#include "soap-ctx.h"
#include "soap-service.h"
#include "soap-router.h"
#include "soap-server.h"
#include "soap-transport.h"
#include "soap-wsil.h"

static void
_soap_wsil_list_routers(httpd_conn_t *conn)
{
  SoapRouterNode *node;

  for (node=soap_server_get_routers(); node; node=node->next)
  { 
    http_output_stream_write_string(conn->out,
      "<wsil:service>"
        "<wsil:description "
	  "location=\"");
    http_output_stream_write_string(conn->out, soap_transport_get_name());
    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,
          "\" />"
      "</wsil:service>");
  }
  return;
}

static void
_soap_wsil_handle_get(httpd_conn_t * conn, struct hrequest_t * req)
{
  httpd_set_header(conn, HEADER_CONTENT_TYPE, "text/xml");
  httpd_send_header(conn, 200, HTTP_STATUS_200_REASON_PHRASE);

  http_output_stream_write_string(conn->out,
    "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
    "<wsil:inspection xmlns:wsil=\"http://schemas.xmlsoap.org/ws/2001/10/inspection/\">"
  );

  _soap_wsil_list_routers(conn);

  http_output_stream_write_string(conn->out,
    "</wsil:inspection>\n");

  return;
}

static void
_soap_wsil_entry(httpd_conn_t * conn, struct hrequest_t * req)
{
  if (req->method == HTTP_REQUEST_GET)
  {
    _soap_wsil_handle_get(conn, req);
  }
  else
  {
    httpd_send_header(conn, 200, HTTP_STATUS_200_REASON_PHRASE);
    http_output_stream_write_string(conn->out,
      "<html>"
        "<head>"
        "</head>"
        "<body>"
          "<h1>Sorry!</h1>"
          "<hr />"
          "<div>POST Service is not implemented now. Use your browser</div>"
        "</body>"
      "</html>");
  }
  return;
}

herror_t
soap_wsil_init_args(int argc, char **argv)
{
  int i;

  for (i=0; i<argc; i++) {

    if (!strcmp(argv[i], CSOAP_ENABLE_WSIL)) {

      httpd_register("/inspection.wsil", _soap_wsil_entry);
      break;
    }
  }

  return H_OK;
}