]> err.no Git - sope/blob - sope-appserver/NGXmlRpc/XmlRpcMethodResponse+WO.m
Add libxml2-dev to libsope-xml4.7-dev deps
[sope] / sope-appserver / NGXmlRpc / XmlRpcMethodResponse+WO.m
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #include <NGXmlRpc/XmlRpcMethodResponse+WO.h>
23 #include <NGObjWeb/WOResponse.h>
24 #include "common.h"
25
26 @implementation XmlRpcMethodResponse(WO)
27
28 // TODO: not required anymore by NGXmlRpcClient, can be removed ?
29
30 - (id)initWithResponse:(WOResponse *)_response {
31   /* 
32      should be based on NSData, so that the XML parser can decide the string
33      encoding (based on the <?xml > declaration) !
34   */
35   NSString *xmlRpcString;
36   
37   xmlRpcString = [[NSString alloc] initWithData:[_response content]
38                                    encoding:[_response contentEncoding]];
39   
40   self = [self initWithXmlRpcString:xmlRpcString];
41   [xmlRpcString release];
42   return self;
43 }
44
45 - (WOResponse *)generateResponse {
46   WOResponse *response;
47   
48   response = [[[WOResponse alloc] init] autorelease];
49   [response setStatus:200];
50   [response setHTTPVersion:@"HTTP/1.0"];
51   [response setContentEncoding:NSUTF8StringEncoding];
52   [response setHeader:@"text/xml" forKey:@"content-type"];
53   [response appendContentString:[self xmlRpcString]];
54   return response;
55 }
56
57 @end /* XmlRpcMethodResponse(WO) */