Maximo List Archive

This is an archive of the Maximo Yahoo Community. The content of this pages may be a sometimes obsolete so please check post dates.
Thanks to the community owner Christopher Wanko for providing the content.



Obtaining webclientsession in custom JSP file

From: Chandan (2012-08-17 11:47)

Champs,
I am working with MAM 7.5 (Nuc), App Server WebSphere 7 Oracle 11g at the backend.
I have a custom link on the "Attach New Webpage" dialog box of Maximo Attachment functionality, when I click on the the link it calls a custom JSP file and it should display the Application and current MBOSET name.
What did I do so far?
------------------------
I included ../webclient/common/componentheader.jsp file in my custom JSP usinc <include> tag. This file has a WebClientSession variable, I used that variable to get the current app instance and
AppInstance curApp = wcs.getCurrentApp();
MboRemote mbo = curApp.getAppBean().getMbo();
System.out.println("Application name : " + mbo);
MboSetRemote mboSet = mbo.getMboSet("DOCLINKS");
This worked well with MAM 7.5.0.0, My bad luck now I have applied fixpack MAM 7.5.0.3 and the same code gives internal server error. I investigated it but no clue why this error is coming.
I could include other file and it works well I am able to access their variables but I want webclient session variable and is present in this file only.
Please suggest if you have any other idea to achieve this.... :-(
-Techie