cancel
Showing results for 
Search instead for 
Did you mean: 

client java proxy with inside story docu

Former Member
0 Kudos

Hi

i am following client JAVA Proxy inside story 1, 2 refering to how to work with java proxy.

just look at the following source;

in InvokeProxy Class

Context ctx = new InitialContext(p);

remote = MIProxyUserSyncOut_PortTypeHome.create();

DTProxyUser_Type dt = new DTProxyUser_Type();

dt.setUsername("name");

dt.setPassword("password");

DTProxyUserDBResponse_Type dtpUserR = new DTProxyUserDBResponse_Type();

dtpUserR = MIProxyUserSyncOut_PortTypeRemote.mIProxyUserSyncOut(dt); , this code will calling this method(

mIProxyUserSyncOut in MIProxyUserSyncOut_PortTypeBean),

and then is calling MIProxyUserSyncOut_PortType.mIProxyUserSyncOut(mTProxyUser)

public DTProxyUserDBResponse_Type mIProxyUserSyncOut(DTProxyUser_Type mTProxyUser)

throws SystemFaultException, ApplicationFaultException {

BaseType $result = null;

try {

MIProxyUserSyncOut_PortType.MTProxyUser_Message request$ = new MIProxyUserSyncOut_PortType.MTProxyUser_Message();

request$.setMTProxyUser(mTProxyUser);

<b>==>error</b> $result = send$(request$, "http://test.com/test02", "MI_Proxy_User_Sync_Out", "MI_Proxy_User_Sync_Out", new MIProxyUserSyncOut_PortType.MTProxyUserDBResponse_Message());

}catch (ApplicationFaultException e){

throw createExceptionWrongExceptionType$(e);

}

}

the error message is below;

RemoteException occurred: EJB Exception: ; nested exception is:

java.lang.NoClassDefFoundError: com/sap/aii/utilxi/prop/rprof/ExchangeProfileR3PropertySource

does anyone has surch experience?

thanks

venjamin

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

answerd