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?