<network-config>
    <transports>
        <transport name="tcp"/>
    </transports>
    <protocols>
        <protocol name="pu-protocol">
				 <protocol-finder name="http-finder" protocol="http"/>
				 <protocol-finder name="X-protocol-finder" protocol="X-protocol"/>
        </protocol>
        <protocol name="http" finder="com.sun.grizzly.http.portunif.HttpProtocolFinder">
		      <!--
					perhaps the finder value can default to HttpProtocolFinder and would require the nest <http>
					in that case.  Again, simplifying the default cases while making custom/complex cases easy
					to configure.
				-->
            <http/>
        </protocol>
        <protocol name="X-protocol" classname="com.sun.grizzly.config.XProtocolFinder"/>
    </protocols>
    <network-listeners>
        <thread-pool name="defaultThreadPool"/>
        <network-listener name="http-listener" port="38082" transport="tcp" protocol="pu-protocol" thread-pool="defaultThreadPool"/>
    </network-listeners>
</network-config>

