I increased the java memory to 1GB, but this did not help, and I did not see java use any more memory than when it was 512.
Eclipse hangs if you open the generate code dialogue (by right clicking on a "soap ui webservice"), then simply hit the close button.
It does it 100% of the time.
If it helps, here is the wsdl:
<wsdl:definitions name="ge" targetNamespace="
http://www.skillkash.co.uk/ge/" xmlns:soap="
http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="
http://www.skillkash.co.uk/ge/" xmlns:wsdl="
http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="
http://www.w3.org/2001/XMLSchema"> <wsdl:types>
<xsd:schema targetNamespace="
http://www.skillkash.co.uk/ge/"> <xsd:element name="login">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="username" type="xsd:string" maxOccurs="1" minOccurs="1"/>
<xsd:element name="password" type="xsd:string" maxOccurs="1" minOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="loginResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="playerId" type="xsd:unsignedLong" maxOccurs="1" minOccurs="1"/>
<xsd:element name="playerDisplayName" type="xsd:string" maxOccurs="1" minOccurs="1"/>
<xsd:element name="currencyId" type="xsd:unsignedLong" maxOccurs="1" minOccurs="1"/>
<xsd:element name="balance" type="xsd:decimal" maxOccurs="1" minOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
</wsdl:types>
<wsdl:message name="loginRequest">
<wsdl:part element="tns:login" name="parameters"/>
</wsdl:message>
<wsdl:message name="loginResponse">
<wsdl:part element="tns:loginResponse" name="parameters"/>
</wsdl:message>
<wsdl:portType name="ge">
<wsdl:operation name="login">
<wsdl:input message="tns:loginRequest"/>
<wsdl:output message="tns:loginResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="geSOAP" type="tns:ge">
<soap:binding style="document" transport="
http://schemas.xmlsoap.org/soap/http"/> <wsdl:operation name="login">
<soap:operation soapAction="
http://www.skillkash.co.uk/ge/login"/> <wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="ge">
<wsdl:port binding="tns:geSOAP" name="geSOAP">
<soap:address location="
http://www.skillkash.co.uk/"/> </wsdl:port>
</wsdl:service>
</wsdl:definitions>