Sorry - here is the information:
InterOpTest.wsdl:
---------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<wsdl

efinitions targetNamespace="http://localhost:8080/axis/services/InterOpTest"
xmlns:apachesoap="http://xml.apache.org/xml-soap"
xmlns:impl="http://localhost:8080/axis/services/InterOpTest"
xmlns:intf="http://localhost:8080/axis/services/InterOpTest"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<!--WSDL created by Apache Axis version: 1.2RC2
Built on Nov 16, 2004 (12:19:44 EST)-->
<wsdl:types>
<schema elementFormDefault="qualified"
targetNamespace="http://localhost:8080/axis/services/InterOpTest"
xmlns="http://www.w3.org/2001/XMLSchema">
<element name="getStringReturn" type="xsd:string"/>
</schema>
</wsdl:types>
<wsdl:message name="getStringRequest">
</wsdl:message>
<wsdl:message name="getStringResponse">
<wsdl

art element="impl:getStringReturn" name="getStringReturn"/>
</wsdl:message>
<wsdl

ortType name="InterOpTest">
<wsdl

peration name="getString">
<wsdl:input message="impl:getStringRequest" name="getStringRequest"/>
<wsdl

utput message="impl:getStringResponse" name="getStringResponse"/>
</wsdl

peration>
</wsdl

ortType>
<wsdl:binding name="InterOpTestSoapBinding" type="impl:InterOpTest">
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl

peration name="getString">
<wsdlsoap

peration soapAction=""/>
<wsdl:input name="getStringRequest">
<wsdlsoap:body use="literal"/>
</wsdl:input>
<wsdl

utput name="getStringResponse">
<wsdlsoap:body use="literal"/>
</wsdl

utput>
</wsdl

peration>
</wsdl:binding>
<wsdl:service name="InterOpTestService">
<wsdl

ort binding="impl:InterOpTestSoapBinding" name="InterOpTest">
<wsdlsoap:address location="http://localhost:8080/axis/services/InterOpTest"/>
</wsdl

ort>
</wsdl:service>
</wsdl

efinitions>
============================================================================
.Net client proxy (InterOpTest.cs):
//--------------------------------------------------------------------------// <autogenerated>
// This code was generated by a tool.
// Runtime Version: 1.1.4322.2032
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </autogenerated>
//------------------------------------------------------------------------
//
// This source code was auto-generated by wsdl, Version=1.1.4322.2032.
//
using System.Diagnostics;
using System.Xml.Serialization;
using System;
using System.Web.Services.Protocols;
using System.ComponentModel;
using System.Web.Services;
/// <remarks/>
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Web.Services.WebServiceBindingAttribute(Name="InterOpTestSoapBinding", Namespace="http://localhost:8080/axis/services/InterOpTest")]
public class InterOpTest : System.Web.Services.Protocols.SoapHttpClientProtocol {
/// <remarks/>
public InterOpTest() {
this.Url = "http://localhost:8080/axis/services/InterOpTest";
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
[return: System.Xml.Serialization.XmlElementAttribute("getStringReturn")]
public string getString() {
object[] results = this.Invoke("getString", new object[0]);
return ((string)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetString(System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("getString", new object[0], callback, asyncState);
}
/// <remarks/>
public string EndgetString(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((string)(results[0]));
}
}
=====================================================================
Java service (InterOpTest.java)
public class InterOpTest
{
public InterOpTest()
{
}
public String getString()
{
return "Test";
}
}
==================================================
I tried many things, noone of them work. I can clearly see the response on t