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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2000-2004 --
-- ACT-Europe --
-- --
-- This library is free software; you can redistribute it and/or modify --
-- it under the terms of the GNU 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 --
-- General Public License for more details. --
-- --
-- You should have received a copy of the GNU 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. --
-- --
------------------------------------------------------------------------------
with SOAP.Types;
with SOAP.Utils;
package body SOAP.Message.Response.Error is
Version_Mismatch_Faultcode : constant String := "VersionMismatch";
Must_Understand_Faultcode : constant String := "MustUnderstand";
Client_Faultcode : constant String := "Client";
Server_Faultcode : constant String := "Server";
Start_Fault_Env : constant String := "<soap:Fault>";
End_Fault_Env : constant String := "</soap:Fault>";
function Fault_Code (Name, Subname : in String) return Faultcode;
-- Returns the Faultcode for Name and Subname. If Subname is empty it
-- returns Name otherwise it returns Name & '.' & Subname.
-----------
-- Build --
-----------
function Build
(Faultcode : in Error.Faultcode;
Faultstring : in String)
return Object
is
use SOAP.Types;
use type SOAP.Parameters.List;
O : Object;
P : SOAP.Parameters.List;
begin
-- Set Wrapper Name
Set_Wrapper_Name (O, "Fault");
-- Set Faultcode and Faultstring
P := P
& S (String (Faultcode), "faultcode")
& S (Faultstring, "faultstring");
-- Set parameters for this error object
Set_Parameters (O, P);
return O;
end Build;
------------
-- Client --
------------
function Client (Subname : in String := "") return Faultcode is
begin
return Fault_Code (Client_Faultcode, Subname);
end Client;
----------------
-- Fault_Code --
----------------
function Fault_Code (Name, Subname : in String) return Faultcode is
begin
if Subname = "" then
return Faultcode (Name);
else
return Faultcode (Name & '.' & Subname);
end if;
end Fault_Code;
----------
-- From --
----------
function From (P : in Message.Payload.Object) return Object is
pragma Unreferenced (P);
N : Object;
begin
return N;
end From;
--------------
-- Is_Error --
--------------
function Is_Error (E : in Object) return Boolean is
pragma Unreferenced (E);
begin
return True;
end Is_Error;
---------------------
-- Must_Understand --
---------------------
function Must_Understand (Subname : in String := "") return Faultcode is
begin
return Fault_Code (Must_Understand_Faultcode, Subname);
end Must_Understand;
------------
-- Server --
------------
function Server (Subname : in String := "") return Faultcode is
begin
return Fault_Code (Server_Faultcode, Subname);
end Server;
----------------------
-- Version_Mismatch --
----------------------
function Version_Mismatch (Subname : in String := "") return Faultcode is
begin
return Fault_Code (Version_Mismatch_Faultcode, Subname);
end Version_Mismatch;
---------------
-- XML_Image --
---------------
function XML_Image (E : in Object) return Unbounded_String is
NL : constant String := ASCII.CR & ASCII.LF;
Message_Body : Unbounded_String;
begin
-- Fault Env
Append (Message_Body, Start_Fault_Env & NL);
-- Fault's parameters
declare
P : constant SOAP.Parameters.List := Parameters (E);
begin
for K in 1 .. SOAP.Parameters.Argument_Count (P) loop
declare
P_K : constant SOAP.Types.Object'Class
:= SOAP.Parameters.Argument (P, K);
P_Name : constant String := SOAP.Types.Name (P_K);
begin
Append
(Message_Body,
" "
& Utils.Tag (P_Name, Start => True)
& Types.Image (P_K)
& Utils.Tag (P_Name, Start => False)
& NL);
end;
end loop;
end;
-- End Fault Env
Append (Message_Body, End_Fault_Env & NL);
return Message_Body;
end XML_Image;
end SOAP.Message.Response.Error;
|