The installation is straightforward. Just unzip the previously downloaded zip file. Assume it is unzipped to the "/ub/" directory. In the "/ub/bin/" directory, you will see two files: "ub.bat" and "build.xml". On the Windows platform, invoke "ub.bat" to run UDDI Browser. Or, on both Windows and Linux/Unix, use "ant" to run UDDI browser.
By default, UDDI Browser does not support signing SOAP message using X509 certificate that is standardized in WS-Security. In this section, we show how to configure UDDI browser in order to make that SOAP messages sent and received by UDDI browser are signed using the X509 certificate managed by the OMII client environment.
<property name="omii.client.home" value="/OMIICLIENT"/>
<path id="omii.classpath">
<pathelement location="bin"/>
<fileset dir="${omii.client.home}/lib">
<include name="*.*"/>
</fileset>
<path refid="classpath"/>
</path>
<target name="omii">
<java classname="org.uddibrowser.UDDIBrowser" fork="yes" failonerror="yes">
<sysproperty key="uddibrowser.configdir" value="config"/>
<classpath refid="omii.classpath"/> </java>
</target>
<parameter name="enableNamespacePrefixOptimization" value="false"/>This line should be inside the "<globalConfiguration>" element.