COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => SDK => Topic started by: Rajaggopal on 01 Jun 2009 08:02:27 PM

Title: CRNConnect.java - Urgent
Post by: Rajaggopal on 01 Jun 2009 08:02:27 PM
Hi everyone,
I was working around in SDK trying to learn it and i accidentally modified CRNConnect.java and corrupted it :( now iam not able to work with other samples like Logon.java and RunReport.java Can anyone please upload this one java file so that i may continue my learning. It is really urgent and any help is most appreciated.

If it is not allowed to upload it here then please refer my profile for my mail id and send it. Thanks a lot in advance.
Title: Re: CRNConnect.java - Urgent
Post by: mc09 on 01 Jun 2009 09:43:23 PM

try {
StringBuffer credentialXML = new StringBuffer();

credentialXML.append("<credential>");
credentialXML.append("  <namespace>").append(conf.getNamespace()).append(
"</namespace>");
credentialXML.append("<username>").append(conf.getUsername())
.append("</username>");
credentialXML.append("<password>").append(conf.getPassword())
.append("</password>");
credentialXML.append("</credential>");

String encodedCredentials = credentialXML.toString();
XmlEncodedXML xmlCredentials = new XmlEncodedXML();
xmlCredentials.setValue(encodedCredentials);
cmService.logon(xmlCredentials, null);
} catch (Exception e) {
                }



does it help you?
Title: Re: CRNConnect.java - Urgent
Post by: Rajaggopal on 02 Jun 2009 03:25:11 AM
Thanks for replying mc09 but what you have provided is a part of the code snippet for Logon.java and Iam in need of the entire CRNConnect.java file.
Title: Re: CRNConnect.java - Urgent
Post by: mc09 on 02 Jun 2009 04:39:13 AM
drop mail to me and i will send you the code.
Title: Re: CRNConnect.java - Urgent
Post by: Rajaggopal on 02 Jun 2009 04:57:54 AM
hey thanks a lot mc... it really helped me with my SDK learning :)