Hi,
I have been trying to implement a simple code to create a channel in ID with the help of Willam's blog
At the very outset, a constructor of this class is called
BusinessSystemInService service = new BusinessSystemInService();
But for this line, I am getting the error, cannot instantiate this class.
Code for this class is only this.
package com.sap.xi.BASIS;
public interface BusinessSystemInService extends javax.xml.rpc.Service {
public java.lang.String getBusinessSystemInPortAddress();
public com.sap.xi.BASIS.BusinessSystemIn getBusinessSystemInPort() throws javax.xml.rpc.ServiceException;
public com.sap.xi.BASIS.BusinessSystemIn getBusinessSystemInPort(java.net.URL portAddress) throws javax.xml.rpc.ServiceException;
}
There is no constructor defined.
Has anybody faced this and if yes, how it was corrected.