cancel
Showing results for 
Search instead for 
Did you mean: 

Java Proxy Problem

Former Member
0 Kudos

I am working with a Inbound Java Proxy, I created EJB Module Project, I had copied four .java archives generated by XI in ejbModule folder, when I edit the EJB module in NWDS I get inside of each .java the error "com.sap cannot be resolved..." for instance

public class DtDireccion_Type extends <b>com.sap.aii.proxy.xiruntime.core.AbstractType</b> implements java.io.Serializable {...

How can I solve this problem since I do not have the com.sap class?

Accepted Solutions (1)

Accepted Solutions (1)

moorthy
Active Contributor
0 Kudos

Hi,

Have a look into this thread-

What are all libraries required-

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a068cf2f-0401-0010-2aa9-f5a...

Regards,

Moorthy

Answers (1)

Answers (1)

Former Member
0 Kudos

What represents the interfaces named in the tags HOME, REMOTE, LOCAL-HOME and LOCAL of one ejb-jar.xml file?

<session>

<ejb-name> MiIaVendedor_PortTypeBean </ejb-name>

<home>com.sap.aii.proxy.xiruntime.core.AbstractProxyInboundHome4</home>

<remote>com.sap.aii.proxy.xiruntime.core.AbstractProxyInboundRemote4</remote>

<local-home>com.sap.aii.proxy.xiruntime.core.AbstractProxyInboundLocalHome4</local-home>

<local>com.sap.aii.proxy.xiruntime.core.AbstractProxyInboundLocal4</local>

<ejb-class>workshopGrupo04.MiIaVendedor_PortTypeBean</ejb-class>

<session-type>Stateless</session-type>

<transaction-type>Container</transaction-type>

</session>