From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Romel Sandoval Newsgroups: gmane.lisp.guile.user Subject: Re: Web services on guile Date: Tue, 25 May 2010 09:48:36 -0500 Message-ID: <1274798916.2156.1.camel@romel-compaq> References: <1274559628.3733.37.camel@romel-compaq> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1274798954 23870 80.91.229.12 (25 May 2010 14:49:14 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 25 May 2010 14:49:14 +0000 (UTC) Cc: guile-user@gnu.org To: Andy Wingo Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Tue May 25 16:49:06 2010 connect(): No such file or directory Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OGvRF-0004B5-Hs for guile-user@m.gmane.org; Tue, 25 May 2010 16:49:02 +0200 Original-Received: from localhost ([127.0.0.1]:38556 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OGvRE-0004yc-Nv for guile-user@m.gmane.org; Tue, 25 May 2010 10:49:00 -0400 Original-Received: from [140.186.70.92] (port=60144 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OGvR0-0004vW-D7 for guile-user@gnu.org; Tue, 25 May 2010 10:48:51 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OGvQz-0001Ve-6M for guile-user@gnu.org; Tue, 25 May 2010 10:48:46 -0400 Original-Received: from karen.lavabit.com ([72.249.41.33]:51388) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OGvQz-0001VC-1I for guile-user@gnu.org; Tue, 25 May 2010 10:48:45 -0400 Original-Received: from b.earth.lavabit.com (b.earth.lavabit.com [192.168.111.11]) by karen.lavabit.com (Postfix) with ESMTP id 7660A11B7EB; Tue, 25 May 2010 09:48:43 -0500 (CDT) Original-Received: from 148.209.128.70 (dsl-201-122-2-202-sta.prod-empresarial.com.mx [201.122.2.202]) by lavabit.com with ESMTP id IQO8GEXECU6K; Tue, 25 May 2010 09:48:43 -0500 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=lavabit; d=lavabit.com; b=yU0va2ZZ7KY9SlKSBP71CNuQEB2qRz1Kx9mpd265CZFHs8xH2mSidnfqUHeTEeY2pq0k9t1imUB1A7XOyjPZBnBu8o+O5wcCAtGwq0RNRhRa9ull+ToAS0fuTeGuc7hLtlZDHSXn5idyFdLgL/FMDx5Uhflw51bFnGVpaUvPgOg=; h=Subject:From:To:Cc:In-Reply-To:References:Content-Type:Date:Message-ID:Mime-Version:X-Mailer:Content-Transfer-Encoding; In-Reply-To: X-Mailer: Evolution 2.28.1 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:7804 Archived-At: I think, I will go for s-expression then. El dom, 23-05-2010 a las 23:16 +0200, Andy Wingo escribi=C3=B3: > On Sun 23 May 2010 11:25, Sascha Ziemann writes= : >=20 > > 2010/5/22 Romel R. Sandoval Palomo : > >> I think I have four alternatives: > >> > >> 1. Keep the web service consumption part of the client in C using g= SOAP > >> 2. Write a binding of gSOAP library for Guile > >> 3. Write a web services library for Guile from cero > >> 4. Forget about PHP and use ONC RPC > > > > I found it quite complicated to handle complex data values with PHPs > > SOAP-Server features. It will be much easier to use a s-list paser fo= r > > PHP and send the data as a-list. >=20 > I would agree, FWIW. I wanted to implement XML-RPC at one point in > tekuti, but decided not to after looking at the spec. An s-expression > serializer/unserializer is fairly simply to write, you avoid > distribution problems that way, and you also avoid impedance mismatches= . >=20 > Andy