cancel
Showing results for 
Search instead for 
Did you mean: 

unable to find jar file for com.sap.guid.IGUID

Former Member
0 Kudos

I am having hardtime finding the jar file for com.sap.guid.IGUID.

Where can I find the jar file.

I am using XI 2.0 generated Java proxies.

Thanks,

Praveen

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Thanks Stefan.

Former Member
0 Kudos

Stefan are there any documents on consuming Java Proxies Generated by XI.

Thanks for all the help.

PKK.

Former Member
0 Kudos

Hi Praveen,

there's an really good and reasonably up to date documentation available at http://help.sap.com/saphelp_nw04/helpdata/en/e1/8e51341a06084de10000009b38f83b/frameset.htm, which covers all the layers and components which assemble the NetWeaver architecture. Maybe you'll find something there.

Hope that helps.

Regards

Stefan

Former Member
0 Kudos

Stefan:

I really appreciate it.

One more small question though,

I am trying to consume Java Proxy generated by XI 2.0 and

I am getting the following error:

*******************************************************

server: SAP J2EE Engine/6.20

date: Mon, 03 May 2004 19:00:40 GMT

<HTML><TITLE>SAP J2EE Engine/6.20</TITLE><BODY><H1>File not found 404!</H1><BR>Go to <A HREF="/">Main page</A> of this site!</BODY></HTML>

**********************************************************

This is the code I am using:

package com.valero.sd.customer;

import com.sap.aii.proxy.framework.core.ApplicationFaultException;

import com.sap.aii.proxy.framework.core.SystemFaultException;

import com.valero.sd.customer.CustomerResponse_Type.CustomerT_Type;

public class XI_JavaProxy_MainClass {

public static void main(String[] s)throws ApplicationFaultException, SystemFaultException

{

String reqString = "http://w3xisahqd1:8000/sap/xi/adapter_plain?namespace=http://valero.com/sd/customer&interface=GetCustomer&bs=XIS_DEMO_BS&QOS=BE&sap-user=xiappluser&sap-password=xipass&sap-client=030&sap-language=D";

CustomerRequest_Type req = new CustomerRequest_Type();

req.setCustomerNumber("100020");

GetCustomerOutbound_PortType myproxy = new GetCustomerOutbound_PortType();

myproxy.messageSpecifier.setDestination(reqString);

CustomerResponse_Type res = myproxy.getCustomerOutbound(req);

CustomerT_Type table = res.get_as_listCustomerT().getCustomerT(0);

System.out.println("customer Number"+table.getKunnr());

}

}

Do I have to install anything on my m/c to access the Java Proxies?

Thanks,

Praveen.

Former Member
0 Kudos

Hi Praveen,

to be honest, i've not consumed a XI service so far (i should have done and propably will in the future). But anyway, following the "check the most simple errors first" approach, are you sure, that the URL you're trying to access is correct (since it is a "classic" 404 error)?

If this is the case, somebody else will have to help you out of this, i'm afraid.

Best regards

Stefan

Former Member
0 Kudos

Hi Praveen,

sorry for the late response. You should add a reference to the following jar to your project:

<i>SAP_SYSTEM_ADD_LIBS/comp/SAP-JEE/DCs/sap.com/com.sap.guid/_comp/gen/default/public/default/lib/java/guidgenerator.jar</i>

Hope that helps.

Regards

Stefan