Friday, April 1, 2011
Sunday, February 27, 2011
Saturday, July 17, 2010
Have you seen the latest Cognos jobs?
If you need to refresh your Business Intelligence skills then be sure to check out the educational training materials that are available at BI Centre e-Books today.
If you're looking for diagnostic tools to validate or troubleshoot your IBM Cognos 8 environment then don't forget to download the utilities found here.
Thursday, July 8, 2010
Cognos 8 Diagnostic: Cognos 8 Diagnostic tools are coming soon...Be s...
Be s...: "Cognos 8 Diagnostic tools are coming soon... Be sure to visit: http://bicentre.blogspot.com/ http://bicentresdkguide.blogspot.com/ http:..."
Tuesday, April 27, 2010
Saturday, April 24, 2010
Saturday, January 23, 2010
Do you have Cognos 8 SDK issues?
Do you need support with your Cognos 8 SDK project? If so, then email us today at businessintelligencecentre@gmail.com.
Friday, October 9, 2009
Wednesday, October 7, 2009
Unleashing the Power of IBM Cognos SDK
Unleashing the Power of IBM Cognos SDKBy Deepesh K. Shrivastava, Wipro Technologies |
With increasing use of BI, users want quick access to information. BI is increasingly becoming pervasive across the organization. This demands BI capabilities embedded across different business functions and delivery portals. It also requires intuitive, easy to use user interfaces. In such cases, when deployment of BI capabilities is not just limited to trained analytical or power users; and BI offering require better usability, adherence to corporate branding look & feel standards, or integration along with other business functions like ordering, IBM Cognos SDK capabilities comes to rescue.
IBM Cognos SDK is a very powerful toolset to extend capabilities of the Cognos platform and for providing different integration & deployment options. Cognos SDK is built using industry standard protocols SOAP, WSDL.
Wipro's 'Customer Self-Service BI' framework has been built over the IBM Cognos SDK and provides simplified interface to SDK services as façade. This framework also integrates other Web 2.0 functions including AJAX.
When it comes to customer facing applications, organizations have elaborate set of branding look & feel requirements and any customer facing BI is not exception to it. Such solutions also require high level of scalability and intuitive usability. Organizations also wants any such BI offering to be made available within their e-commerce portal and at times, wants BI functions to be embedded alongside other business functions.
'Customer Self-Service BI' framework leveraging IBM Cognos SDK offers seamless integration possibility and leverages organizations existing investment into any branded e-commerce portal. Following are the key components of such integration –
- Corporate portal or web application
- 'Customer Self-Service BI' framework
- IBM Cognos SDK
- IBM Cognos BI platform
--
BI CENTRE
http://bicentre.blogspot.com
Tuesday, October 6, 2009
Wednesday, July 1, 2009
Remote Cognos Development Opportunity
We can assist with model development, report development, SDK coding, testing, QA, technical documentation and even project management.
Feel free to contact us today to discuss your needs.
email: businessintelligencecentre@gmail.com
Monday, November 24, 2008
SDK - SSO for Series 7 gateway namespace using CSharp
using System.Collections;
using System.Web.Services;
using cognosdotnet_2_0;
namespace SetCredential
{
///
/// Summary description for Class1.
///
class SetCredential
{
private cognosdotnet_2_0.CognosReportNetBinding oCrn = null;
propEnum [] props = {propEnum.defaultName, propEnum.searchPath};
public SetCredential(string endPoint)
{
oCrn = new CognosReportNetBinding();
oCrn.Url = endPoint;
oCrn.Credentials= System.Net.CredentialCache.DefaultCredentials;
}
//
// get a list of the packages for the logged in user
//
public void getPackageList()
{
try
{
baseClass [] objInMyFolders = oCrn.query("//package",
props, new sort[]{}, new queryOptions());
int temp = 1; // If you've made it to here, SSO is working. Examine objInMyFolders to see the packages
}
catch (Exception e)
{
Console.Write("\n" +e.GetBaseException());
}
}
///
/// The main entry point for the application.
///
[STAThread]
static void Main(string[] args)
{
String endPoint = "http://localhost/c84GA/cgi-bin/cognos.cgi";
SetCredential packageList = new SetCredential(endPoint);
packageList.getPackageList();
}
}
}
Thursday, October 16, 2008
Monday, June 2, 2008
Access Manager LDAP -- add new user
Monday, May 12, 2008
New C8 SDK Utility --- Cognos 8 Modification Check
· Search the Content Store for items that have been modified after a selected date value
For example, if you were looking for all reports that were modified on June 3rd, 2008 then you would select the date June 2nd, 2008. The code will search for all items that have been modified after the selected date value from the date control.
The results of the search are then rendered to a text box control.
Friday, May 2, 2008
next Cognos SDK utility
Email us today if you would like to be notified when this utility has been completed.
Saturday, April 12, 2008
Cognos 8 SDK -- ContentManagerService passing authentication
CAMPassport property.
In an SDK application, the CAM Passport does not automatically propagate to other services that might be used within the application. Since the ContentManagerService is the only service than can logon and logoff, there needs to be ability to assign the CAM Passport to other services that the SDK application might require (such as the ReportService). This assignment is done simply by copying the BIBusHeader of the ContentManagerService to the BIBusHeader of the other service, thereby making that service an authenticated service.
Cognos 8 SDK -- Logging on
If anonymous access is allowed, the Cognos 8 SDK application will be granted the same rights and permissions as the Anonymous user from the Cognos namespace. If anonymous access is not allowed and a Cognos 8 SDK application does not login, an exception will occur when the SDK application tries to perform an action such as querying the content store or running a report.
All logons and logoffs are performed through the ContentManagerService using the logon() and logoff() methods. None of the other Cognos 8 services can perform a logon or logoff operation.
Sunday, March 2, 2008
Cognos 8 SDK -- example of capturing reporting history
{
boolean blnError = false;
Vector reportHistories = getReportHistories();
String reportName = "";
PropEnum props[] = new PropEnum[]{PropEnum.searchPath, PropEnum.defaultName, PropEnum.detail, PropEnum.detailTime, PropEnum.severity};
Sort sort = new Sort();
sort.setOrder(OrderEnum.ascending);
sort.setPropName(PropEnum.defaultName);
Sort[] sortOrder = new Sort[]{sort};
try
{
if(reportHistories.size() > 0)
{
for(int i =0; i < reportsearchpath =" (String)reportHistories.get(i) + "//historyDetail";
reportName = getReportName(reportSearchPath);
BaseClass bc[] = cmService.query(new SearchPathMultipleObject(reportSearchPath ), props, sortOrder, new QueryOptions());
if(bc != null && bc.length > 0)
{
for(int j =0; j < historydetail =" (HistoryDetail)bc[j];" blnerror =" true;">" + reportName + "" +
" " + historyDetail.getDetailTime().getValue().getTime() + "" +
" " + historyDetail.getDetail().getValue() + "";
}
}
}
}
}
}
catch(Exception e)
{ System.out.println("RunJobNowAndCaptureError::reportJobStatus()");
e.printStackTrace();
}
return blnError;
}
Cognos 8 SDK google search
New C8 SDK Utility --- Cognos 8 Modification Check
· Search the Content Store for items that have been modified after a selected date value
For example, if you were looking for all reports that were modified on June 3rd, 2008 then you would select the date June 2nd, 2008. The code will search for all items that have been modified after the selected date value from the date control.
The results of the search are then rendered to a text box control.