Hi Radhika,
Check out if this helps out your problem…
AS400 as400 = new AS400();
ProgramCallDocument pcmlDoc = new ProgramCallDocument(as400, “myPcmlDoc”);
The ProgramCallDocument object will look for your PCML source in a file called myPcmlDoc.pcml. Notice that the .pcml extension is not specified on the constructor. If you are developing a Java application in a Java “package,” you can package-qualify the name of the PCML resource:
AS400 as400 = new AS400();
ProgramCallDocument pcmlDoc = new ProgramCallDocument(as400, “com.company.package.myPcmlDoc”);
Thanks,
-GV
#Integration-Server-and-ESB#Adapters-and-E-Standards#webMethods