<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
	xmlns:xi="http://www.w3.org/2001/XInclude" id="hostconnection">
	<title>HostConnection type</title>
	<para>The HostConnection type identifies a server resource and login
		credentials.</para>
	<para>
		The defining Java class is
		<ulink url="javadoc/net/brutex/xservices/types/HostConnection.html">
			<classname>net.brutex.xservices.types.HostConnection</classname>
		</ulink>
		.
	</para>
	<bridgehead renderas='sect3'>Schema definition</bridgehead>
	<programlisting language="xml"><![CDATA[
<xs:complexType name="connection">
   <xs:sequence>
      <xs:element name="hostname" type="xs:string"/>
      <xs:element name="port" type="xs:int"/>
      <xs:element minOccurs="0" name="user" type="xs:string"/>
      <xs:element minOccurs="0" name="password" type="xs:string"/>
   </xs:sequence>
</xs:complexType>
]]>
	</programlisting>
	<bridgehead renderas='sect3'>Example XML</bridgehead>
	<programlisting language="xml"><![CDATA[
<host>
   <hostname>server.brutex.net</hostname>
   <port>512</port> <!-- default rExec port -->
   <user>brian</user>
   <!--Optional:-->
   <password>somepass</password>
</host>
]]>
	</programlisting>
</section>