import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
import com.google.gson.annotations.*;
import com.google.gson.reflect.*;
public class dtos
{
public static class AllTypes
{
public Integer id = null;
public Integer nullableId = null;
@SerializedName("byte") public Short Byte = null;
@SerializedName("short") public Short Short = null;
@SerializedName("int") public Integer Int = null;
@SerializedName("long") public Long Long = null;
public Integer uShort = null;
public Long uInt = null;
public BigInteger uLong = null;
@SerializedName("float") public Float Float = null;
@SerializedName("double") public Double Double = null;
public BigDecimal decimal = null;
public String string = null;
public Date dateTime = null;
public TimeSpan timeSpan = null;
public Date dateTimeOffset = null;
public UUID guid = null;
@SerializedName("char") public String Char = null;
public KeyValuePair<String, String> keyValuePair = null;
public Date nullableDateTime = null;
public TimeSpan nullableTimeSpan = null;
public ArrayList<String> stringList = new ArrayList<String>();
public ArrayList<String> stringArray = new ArrayList<String>();
public HashMap<String,String> stringMap = new HashMap<String,String>();
public HashMap<Integer,String> intStringMap = new HashMap<Integer,String>();
public SubType subType = null;
public Integer getId() { return id; }
public AllTypes setId(Integer value) { this.id = value; return this; }
public Integer getNullableId() { return nullableId; }
public AllTypes setNullableId(Integer value) { this.nullableId = value; return this; }
public Short getByte() { return Byte; }
public AllTypes setByte(Short value) { this.Byte = value; return this; }
public Short getShort() { return Short; }
public AllTypes setShort(Short value) { this.Short = value; return this; }
public Integer getInt() { return Int; }
public AllTypes setInt(Integer value) { this.Int = value; return this; }
public Long getLong() { return Long; }
public AllTypes setLong(Long value) { this.Long = value; return this; }
public Integer getUShort() { return uShort; }
public AllTypes setUShort(Integer value) { this.uShort = value; return this; }
public Long getUInt() { return uInt; }
public AllTypes setUInt(Long value) { this.uInt = value; return this; }
public BigInteger getULong() { return uLong; }
public AllTypes setULong(BigInteger value) { this.uLong = value; return this; }
public Float getFloat() { return Float; }
public AllTypes setFloat(Float value) { this.Float = value; return this; }
public Double getDouble() { return Double; }
public AllTypes setDouble(Double value) { this.Double = value; return this; }
public BigDecimal getDecimal() { return decimal; }
public AllTypes setDecimal(BigDecimal value) { this.decimal = value; return this; }
public String getString() { return string; }
public AllTypes setString(String value) { this.string = value; return this; }
public Date getDateTime() { return dateTime; }
public AllTypes setDateTime(Date value) { this.dateTime = value; return this; }
public TimeSpan getTimeSpan() { return timeSpan; }
public AllTypes setTimeSpan(TimeSpan value) { this.timeSpan = value; return this; }
public Date getDateTimeOffset() { return dateTimeOffset; }
public AllTypes setDateTimeOffset(Date value) { this.dateTimeOffset = value; return this; }
public UUID getGuid() { return guid; }
public AllTypes setGuid(UUID value) { this.guid = value; return this; }
public String getChar() { return Char; }
public AllTypes setChar(String value) { this.Char = value; return this; }
public KeyValuePair<String, String> getKeyValuePair() { return keyValuePair; }
public AllTypes setKeyValuePair(KeyValuePair<String, String> value) { this.keyValuePair = value; return this; }
public Date getNullableDateTime() { return nullableDateTime; }
public AllTypes setNullableDateTime(Date value) { this.nullableDateTime = value; return this; }
public TimeSpan getNullableTimeSpan() { return nullableTimeSpan; }
public AllTypes setNullableTimeSpan(TimeSpan value) { this.nullableTimeSpan = value; return this; }
public ArrayList<String> getStringList() { return stringList; }
public AllTypes setStringList(ArrayList<String> value) { this.stringList = value; return this; }
public ArrayList<String> getStringArray() { return stringArray; }
public AllTypes setStringArray(ArrayList<String> value) { this.stringArray = value; return this; }
public HashMap<String,String> getStringMap() { return stringMap; }
public AllTypes setStringMap(HashMap<String,String> value) { this.stringMap = value; return this; }
public HashMap<Integer,String> getIntStringMap() { return intStringMap; }
public AllTypes setIntStringMap(HashMap<Integer,String> value) { this.intStringMap = value; return this; }
public SubType getSubType() { return subType; }
public AllTypes setSubType(SubType value) { this.subType = value; return this; }
}
public static class SubType
{
public Integer id = null;
public String name = null;
public Integer getId() { return id; }
public SubType setId(Integer value) { this.id = value; return this; }
public String getName() { return name; }
public SubType setName(String value) { this.name = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /xml/reply/AllTypes HTTP/1.1
Host: test.servicestack.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<AllTypes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Test.ServiceModel.Types">
<Byte>0</Byte>
<Char>0</Char>
<DateTime>0001-01-01T00:00:00</DateTime>
<DateTimeOffset xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>0001-01-01T00:00:00Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</DateTimeOffset>
<Decimal>0</Decimal>
<Double>0</Double>
<Float>0</Float>
<Guid>00000000-0000-0000-0000-000000000000</Guid>
<Id>0</Id>
<Int>0</Int>
<IntStringMap xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfintstring>
<d2p1:Key>0</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfintstring>
</IntStringMap>
<KeyValuePair xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
<d2p1:key>String</d2p1:key>
<d2p1:value>String</d2p1:value>
</KeyValuePair>
<Long>0</Long>
<NullableDateTime>0001-01-01T00:00:00</NullableDateTime>
<NullableId>0</NullableId>
<NullableTimeSpan>PT0S</NullableTimeSpan>
<Short>0</Short>
<String>String</String>
<StringArray xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</StringArray>
<StringList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</StringList>
<StringMap xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</StringMap>
<SubType>
<Id>0</Id>
<Name>String</Name>
</SubType>
<TimeSpan>PT0S</TimeSpan>
<UInt>0</UInt>
<ULong>0</ULong>
<UShort>0</UShort>
</AllTypes>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <AllTypes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Test.ServiceModel.Types"> <Byte>0</Byte> <Char>0</Char> <DateTime>0001-01-01T00:00:00</DateTime> <DateTimeOffset xmlns:d2p1="http://schemas.datacontract.org/2004/07/System"> <d2p1:DateTime>0001-01-01T00:00:00Z</d2p1:DateTime> <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes> </DateTimeOffset> <Decimal>0</Decimal> <Double>0</Double> <Float>0</Float> <Guid>00000000-0000-0000-0000-000000000000</Guid> <Id>0</Id> <Int>0</Int> <IntStringMap xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfintstring> <d2p1:Key>0</d2p1:Key> <d2p1:Value>String</d2p1:Value> </d2p1:KeyValueOfintstring> </IntStringMap> <KeyValuePair xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic"> <d2p1:key>String</d2p1:key> <d2p1:value>String</d2p1:value> </KeyValuePair> <Long>0</Long> <NullableDateTime>0001-01-01T00:00:00</NullableDateTime> <NullableId>0</NullableId> <NullableTimeSpan>PT0S</NullableTimeSpan> <Short>0</Short> <String>String</String> <StringArray xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>String</d2p1:string> </StringArray> <StringList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>String</d2p1:string> </StringList> <StringMap xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfstringstring> <d2p1:Key>String</d2p1:Key> <d2p1:Value>String</d2p1:Value> </d2p1:KeyValueOfstringstring> </StringMap> <SubType> <Id>0</Id> <Name>String</Name> </SubType> <TimeSpan>PT0S</TimeSpan> <UInt>0</UInt> <ULong>0</ULong> <UShort>0</UShort> </AllTypes>