[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Examples of webpages made using GNUstep WebServices?
From: |
Richard Frith-Macdonald |
Subject: |
Re: Examples of webpages made using GNUstep WebServices? |
Date: |
Thu, 22 Sep 2011 10:54:41 +0100 |
On 22 Sep 2011, at 10:21, Csanyi Pal wrote:
> Hi,
>
> are there on Internet any examples of such webpages, websites?
>
> Are there also Documetation and Howto's about WebServices?
There's documentation with the library.
> Can one make dynamic webpages with WebServices?
> One example of such dynamic webpages could be:
> http://droid.asp2.cz/default.aspx
>
> Can one make such webpages using WebServices?
No ... the name 'WebServices' comes from WSDL (see http://www.w3.org/TR/wsdl)
as it is intended to support the use of that technology along with other HTTP
mediated RPC technologies ... it provides an XMLRPC implementation and a JSON
implementation as well as the WSDL/SOAP code.
As such, it's for using remote procedure calls to access functionality provided
by server systems .. it's not for building web pages.
If you want something for dynamically building web pages to be viewed by
people, then GSWeb is probably what you are after.
Alternatively, the WebServer library provides support for implementing a web
server inside your applications (ie for providing the sort of services that
WebServices lets you use) and, while it's designed for producing
machine-readable web pages/responses, it also has rudimentary facilities for
producing human-readable pages.