Skip to Content
0
Former Member
May 30, 2008 at 12:33 PM

error of type mismatch for java proxy code

28 Views

Hi All

I am writing code for server java proxies .I am trying to get the input parameters ,my code is as follows:

package testScenario;

public class MDMtoXIMI_PortTypeImpl extends com.sap.aii.proxy.xiruntime.core.AbstractProxy implements MDMtoXIMI_PortType {

public void mDMtoXIMI(testScenario.JavaproxyINDT_Type javaproxyINMT) throws com.sap.aii.proxy.xiruntime.core.SystemFaultException, com.sap.aii.proxy.xiruntime.core.ApplicationFaultException{

JavaproxyINDT_Type obj=new JavaproxyINDT_Type();

return obj.getName();

// throw new RuntimeException();

}

}

I am getting typemismatch for this piece of code:JavaproxyINDT_Type obj=new JavaproxyINDT_Type();

Can anybody help?