Netui-data:callMethod in Workshop 9.2b

Hi!
I try to convert my Workshop 8.1 application to Workshop 9.2b.
In my application there is an EJB-Project and a Web-Project.
In my JSPs, i used the following code, to call a Method of a SessionBean without implementing some Code in my PageFlow:
<!-- Control Declaration -->
<netui-data:declareControl type="EJBController.TextControl" controlId="textControl" />
<!-- Control Declaration -->
<netui-data:callControl controlId="textControl" method="getText" resultId="$$lngbez$InfotextDp$$" >
<netui-data:methodParameter value='$$lngbez$InfotextDp$$'/>
<netui-data:methodParameter value="{pageFlow.h}"/>
</netui-data:callControl>
In 9.2b, I think I should use the netui-data:callMethod.
But all the samples I found about netui-data:callMethod are using object="${pageFlow}".
How can I call Methods of other Java-Classes like a SessionBean-Control as shown in the code above?
What's the right way to provide the object-parameter?
Thanks,
Josef

Josef,
In 8.1 you were declaring the attribute textControl in the JSP using the
declareControl tag.
Because of the changes to the Controls container, the declareControl tag is
no longer available in 9.2
There is a 8.1 compatibility declareControl tag but we do not recommend
running your application in compitibility mode unless absolutely necessary.
The recommended approach to accessing controls directly from a JSP is as
follows:
<%
ControlBean bean = Controls.instantiate(ControlBean.class, null,
ControlThreadContext.getContext(), null);
pageContext.setAttribute("customControlBean", bean);
%>
<netui-data:callMethod object="${pageScope.customControlBean}"
method="getData" resultId="myData"></netui-data:callMethod>
<netui:content value="${myData}" />
Hope this helps!
Scott L'Hommedieu
WLW CCE
<Josef Feiertag> wrote in message news:[email protected]..
Hi!
I try to convert my Workshop 8.1 application to Workshop 9.2b.
In my application there is an EJB-Project and a Web-Project.
In my JSPs, i used the following code, to call a Method of a SessionBean
without implementing some Code in my PageFlow:
<!-- Control Declaration -->
<netui-data:declareControl type="EJBController.TextControl"
controlId="textControl" />
<!-- Control Declaration -->
<netui-data:callControl controlId="textControl" method="getText"
resultId="$$lngbez$InfotextDp$$" >
<netui-data:methodParameter value='$$lngbez$InfotextDp$$'/>
<netui-data:methodParameter value="{pageFlow.h}"/>
</netui-data:callControl>
In 9.2b, I think I should use the netui-data:callMethod.
But all the samples I found about netui-data:callMethod are using
object="${pageFlow}".
How can I call Methods of other Java-Classes like a SessionBean-Control as
shown in the code above?
What's the right way to provide the object-parameter?
Thanks,
Josef

Similar Messages

  • Netui:data-CallMethod tag

    I have a question regarding this tag...
    <netui-data:callMethod
    object="{pageFlow}"
    method="hello"
    resultId="helloMessage"
    />
    How do I specify which pageFlow to call the method on?
    Thanks
    Kunal

    Hi,
    As per my knowledge u cannot specify other page flow.Only the JPF by which it is called will be called.
    thanks
    prasanth

  • Workshop 8.1 - netui-data:repeater and netui:checkBox

    Hi everybody.
    How can i use netui-data:repeater and netui:checkBox to build a group of checkboxes ? I need something like Struts "indexed and mapped properties" (http://struts.apache.org/struts-doc-1.1/faqs/indexedprops.html)
    I've tried something like this
    == FORM ==
    public List getSearchResult() {
       return searchResult;
    public void setSearchResult(List searchResult) {
       this.searchResult = searchResult;
    }== JSP ==
    <<netui-data:repeater dataSource="{actionForm.searchResult}">>
    <<tr bgcolor="#ffffff" class="text8b">>
    <<td>><<netui:checkBox dataSource="{container.item.selected}" />><</td>><</tr>>
    <</netui-data:repeater>>
    I can see the values inside this page but when i submit this form, my list is empty (null).
    What is the right way of do it ?
    Thanks in advance.

    Hi Daniel
    There are 2 ways you can acheive this.
    1) Using something called Pageflowscoped form for this. This will let you use arrays for checkbox group.
    The main part will be that you need to define a member varaible of the form at the pageflow level there by the data will not be lost
    2) Using Request scoped form like you have now but need to modify the getter method to populate the "searchResult" object.
    public List getSearchResult() {
    if( null == searchResult){
    System.out.println(" Pouplate the searchResult here. ");
    searchResult= new ArrayList();
    //populate the default values.
    return this.searchResult;
    More info at:
    http://e-docs.bea.com/workshop/docs81/doc/en/workshop/guide/netui/guide/conReqScopedVsPageScopedBean.html
    I have a sample with pageflowscoped bean and requestscoped bean that I can send you if you provide your email address.
    Unfortunately we cannot attach files in the newsgroup.
    Thanks
    Vimala

  • Disappearing netui-data tags (workshop applications)

    hoping there are a couple WLS workshops users on this forum....
    This is a rather WLS Workshop problem that I have posted on the BEA forums but haven't got a response there.
    Basically, my netui-data tags aren't displaying pageFlow data (underlying rowset, string array objects) after being deployed on a test single-domain server. I am developing with v8.1 on Windows XP then building an EAR and deploying into a WLS instanse running v8.2 on Solaris.
    Have both grid and repeater tags which according to the logs (DBControl information is successful) should get valid pageFlow objects as a dataSource. I can return pageFlow RowSet data to select tags (plain netui tags) without problem but anything that is netui-data never gets presented (except for the pager labels assigned to grids).
    Maybe the error is due to deploying from v8.1 to v8.2 (fails as well with v8.3)?
    The deployed EAR containing all of the necessary WLS netui jar files and tld packages.
    Maybe the error is due to a config.xml miss?
    appreciate the help / matthew

    error was due to mismatch between versions on unix/windows machines. the application generated from v81 ought to be compatably on v82/v83 but for some reason the JDBC metadata has changed between releases. / matthew

  • How to Display string array in jsp page using netui-data:repeater tag ??

    hi,
    I am trying to display a string array in a table using the netui-data:repeater tag.
    I have to use a page flow controller Array(1 Dimensional) to be displayed in the jsp.
    Can any one tell me how to print the array in a table of 3rows & 5 columns.
    Here is the code on which I am crrently working on.
    <netui-data:repeater dataSource="{pageFlow.strWorkObject_Array}">
    <netui-data:repeaterHeader>
    <table cellpadding="4" border="1" class="tablebody">
    </netui-data:repeaterHeader>
    <netui-data:repeaterItem>
    <tr>
    <td><netui:label value="{container.item}" >
    </netui:label></td>
    <td><netui:label value="{container.item}">
    </netui:label></td>
    <td><netui:label value="{container.item}">
    </netui:label></td>
    </tr>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter>
    </table>
    </netui-data:repeaterFooter>
    </netui-data:repeater>

    weblogic.developer.interest.workshop
    Mansoor Naseem wrote:
    I would like to know where the pageflow newsgroup is.
    These are all the groups in weblogic.developer.interest:
    weblogic.developer.interest.60beta.* (5 groups) weblogic.developer.interest.management
    weblogic.developer.interest.61beta.* (2 groups) weblogic.developer.interest.misc
    weblogic.developer.interest.clustering.* (1 group) weblogic.developer.interest.performance
    weblogic.developer.interest.commerce weblogic.developer.interest.personalization
    weblogic.developer.interest.ejb.* (3 groups) weblogic.developer.interest.portal
    weblogic.developer.interest.environment weblogic.developer.interest.rmi-iiop
    weblogic.developer.interest.jdbc weblogic.developer.interest.security
    weblogic.developer.interest.jms weblogic.developer.interest.servlet
    weblogic.developer.interest.jndi weblogic.developer.interest.tools
    weblogic.developer.interest.jsp weblogic.developer.interest.weblogicenterprise
    MN

  • Date formatting in Rowset and netui-data:basiccolumn

    Hello,
    I am using the netui-data:basiccolumn to display columns in a row of data. One
    of the fields is a Timestamp from the DB. It is printed out in a less than ideal
    format. I'd normally just use a SimpleDateFormat object to correct this, but
    I don't seem to have that control with the basicColumn. Is there a better way
    to format date objects once at the presentation layer? Or am I stuck either formatting
    them via SQL or in place in the RowSet?
    Thanks,
    Morgan

    Morgan,
    Have you tried using the <netui:formatDate> Tag ?
    More information is available at
    http://e-docs.bea.com/workshop/docs81/doc/en/workshop/taglib/www.bea.com/workshop/netui-tags-html-1.0/formatDate.html
    Regards,
    Raj Alagumalai
    Backline Workshop Support
    "Morgan Hall" <[email protected]> wrote in message
    news:[email protected]..
    >
    Hello,
    I am using the netui-data:basiccolumn to display columns in a row of data.One
    of the fields is a Timestamp from the DB. It is printed out in a lessthan ideal
    format. I'd normally just use a SimpleDateFormat object to correct this,but
    I don't seem to have that control with the basicColumn. Is there a betterway
    to format date objects once at the presentation layer? Or am I stuckeither formatting
    them via SQL or in place in the RowSet?
    Thanks,
    Morgan

  • Display string array in a table using netui-data:repeater tags

    hi,
    I am trying to display a string array in a table using the netui-data:repeater tag.
    I have to use a page flow controller Array(1 Dimensional) to be displayed in the jsp.
    Can any one tell me how to print the array in a table of 3rows & 5 columns.
    Here is the code on which I am crrently working on.
    <netui-data:repeater dataSource="{pageFlow.strWorkObject_Array}">
    <netui-data:repeaterHeader>
    <table cellpadding="4" border="1" class="tablebody">
    </netui-data:repeaterHeader>
    <netui-data:repeaterItem>
    <tr>
    <td><netui:label value="{container.item}" >
    </netui:label></td>
    <td><netui:label value="{container.item}">
    </netui:label></td>
    <td><netui:label value="{container.item}">
    </netui:label></td>
    </tr>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter>
    </table>
    </netui-data:repeaterFooter>
    </netui-data:repeater>

    weblogic.developer.interest.workshop
    Mansoor Naseem wrote:
    I would like to know where the pageflow newsgroup is.
    These are all the groups in weblogic.developer.interest:
    weblogic.developer.interest.60beta.* (5 groups) weblogic.developer.interest.management
    weblogic.developer.interest.61beta.* (2 groups) weblogic.developer.interest.misc
    weblogic.developer.interest.clustering.* (1 group) weblogic.developer.interest.performance
    weblogic.developer.interest.commerce weblogic.developer.interest.personalization
    weblogic.developer.interest.ejb.* (3 groups) weblogic.developer.interest.portal
    weblogic.developer.interest.environment weblogic.developer.interest.rmi-iiop
    weblogic.developer.interest.jdbc weblogic.developer.interest.security
    weblogic.developer.interest.jms weblogic.developer.interest.servlet
    weblogic.developer.interest.jndi weblogic.developer.interest.tools
    weblogic.developer.interest.jsp weblogic.developer.interest.weblogicenterprise
    MN

  • netui-data:anchorColumn

    Guys and Gals -
    I need the url generated by the netui-data:anchorColumn tag (that is used with
    rowsets for a grid layout) to open in a new window. How do I do this?
    Thanks
    Rishi

    Rishi--
    Please see the thread:
    Re: Confirmation dialog w/netui:anchor and netui-data:anchorColumn
    in weblogic.developer.interest.workshop.
    The short answer is that it's somewhat possible, but support for
    JavaScript in the grid is pretty limited in 8.1.
    Hope that helps.
    Eddie
    Rishi Vishi wrote:
    Guys and Gals -
    I need the url generated by the netui-data:anchorColumn tag (that is used with
    rowsets for a grid layout) to open in a new window. How do I do this?
    Thanks
    Rishi

  • Problem with netui:data repeater tag

    Hi,
    I have 10 checkboxes in a form. It is represented as array of boolean in the form.
    The form and the checkbox values are initialised in the JPF class. Using repeater
    tag to display the checkboxes.
    When the user clicks on first check box, all other check boxes should be selected.
    Need to do this with client side validation.
    Can someone tell me how to do this?

    Hi kunal,
    Thanks for your immediate response.
    But, if I use , I am getting an saying that the file does not exist.
    I have included your code, can you check it. Also, I just want the link to be displayed, not the values that I am getting through the netui-data:repeaterItem tag. Can you please help me.
    I am attaching my code here:
    <netui-data:repeater dataSource="{pageFlow.results2}">
    <netui-data:repeaterHeader></netui-data:repeaterHeader>
    <netui-data:repeaterItem >
    <netui:label value="{container.item.title}" defaultValue=" " ></netui:label>
    </netui-data:repeaterItem>
    <netui-data:repeaterItem>
    <netui:label value="{container.item.link}" defaultValue=" " ></netui:label>
    </netui-data:repeaterItem>
    <netui-data:repeaterItem>
    <netui:label value="{container.item.title}" defaultValue=" "></netui:label>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter></ol></netui-data:repeaterFooter>
    </netui-data:repeater>
    Thanks,
    Latha

  • Prob in accessing DataSourece value from netui-data:repeater after submit

    HI all,
              I am new to this WLWS. PLease guide me in the following scenario:
              I am retrieving an array of records (activityDetails[]) from a Db control and setting this to the datasource property of a netui-data:repeater. Basically I am populating a list of records in my jsp page which works fine.
              But When a submit the page, I am not able to access that array of records from the action method difined in my controller.jpf file, even though I have declared the array in the Form bean.
              And I am not sure if have set the proper datasource for the checkBox defined within the records. The purpose of this checkbox is to select the records form the list to be saved in the database. Is there any better way of achieving the same.
              It's throwing Null pointer exception in the method called
              doProcess.
              Here is the related code:
              activities.jsp
              <netui:button type="submit" tagId="btnSave" value="Save" styleClass="btn" action="doProcess"/>
              <netui:button tagId="btnPrint" value="Print" styleClass="btn" onClick="doPrint()"/>
                                       </td>
                                  </tr>
              <netui-data:repeater dataSource="{actionForm.activityDetails}" >
              <netui-data:getData resultId="pkg" value="{container.item.pkg_header_id}" />
              <tr bordercolor="#A8A8A8" >
              <%
              if (pageContext.getAttribute("pkg") == null)
              %>
              <td><netui:content value=" "/></td>
              <%
              else
              %>
              <td><netui:checkBox dataSource="{container.item.activity_id}"/>
              <%
              %>
              <td><netui:content value="{container.item.prt_no}"/> </td>
              <td><netui:content value="{container.item.activity_num}"/> </td>
              <td><netui:content value="{container.item.frc_acct_code}"/> </td>
              <td><netui:content value="{container.item.frc_acct_code}"/> </td>
              <td><netui:content value="{container.item.status_code}"/> </td>
              <td><netui:content value="{container.item.location_code}"/> </td>
              <td><netui:content value="{container.item.task_code}"/> </td>
              <td><netui:content value=" "/> </td>
              <td><netui:content value="{container.item.wpid}"/> </td>
              <td><netui:content value="{container.item.original_qty}"/> </td>
              <td><netui:content value="{container.item.act_obj_hrs}"/> </td>
              <td><netui:content value="{container.item.act_actual_hrs}"/> </td>
              <td><netui:content value="{container.item.act_rmng_hrs}"/> </td>
              <td><netui:content value="{container.item.act_rmrk}"/> </td>
              </tr>
              </netui-data:repeater>
              </table>
              </netui:form>
              </netui-template:section>
              </netui-template:template>
              Here is the .jpf file
              public class VSchedController extends PageFlowController
              * @common:control
              private custom.ConstSched constSched;
              private ActivityDetails[] activityDetails;
              * @jpf:action
              * @jpf:forward name="index" path="index.jsp"
              * @jpf:forward name = "success" path = "packageActivities.jsp"
              protected Forward begin(PackageSchedForm form) throws SQLException
              HttpSession s = getRequest().getSession(false);
              int jobID = (s.getAttribute("JOB_ID") != null) ? Integer.parseInt(s.getAttribute("JOB_ID").toString()) : 0;
              if (jobID == 0) jobID = 6;
              setActivityDetails(constSched.getAllActivities(jobID));
              form.setActivityDetails(activityDetails);
              return new Forward("success");
              * @jpf:action
              * @jpf:forward name="success" path="packageActivities.jsp"
              protected Forward doProcess(PackageSchedForm form) throws SQLException
              System.out.println("----------------------------------------");
              System.out.println("ActivityDetails is null ? " + (form.activityDetails == null));
              for(int i=0; i < 6; i++)
              try
              System.out.println("Checked -> " + form.activityDetails.activity_id);
              catch(Exception e)
              System.out.println(i);
              System.out.println("----------------------------------------");
              return new Forward("success");
              public ActivityDetails[] getActivityDetails()
              return this.activityDetails;
              public void setActivityDetails(ActivityDetails[] activityDetails)
              this.activityDetails = activityDetails;
              * FormData get and set methods may be overwritten by the Form Bean editor.
              public static class PackageSchedForm extends FormData
              private ActivityDetails[] activityDetails;
              public ActivityDetails[] getActivityDetails()
              return this.activityDetails;
              public void setActivityDetails(ActivityDetails[] activityDetails)
              this.activityDetails = activityDetails;

    Personally, I have had a hard time doing what you are asking for using netui tags. I have had the same case, and asked the person in my team to just return a collection of value objects and then iterate through it without the repeater tag. To use the checkbox, I have had to use a String[].
              Kunal

  • Alternating row colors inside netui-data:repeater?

    Is there an easy way to make the row colors alternate inside the netui-data:repeater?
    I am looking for somthing similar to what happens with the netui-data:grid tag.
    A code sample maybe?
    Thanks,
    John

    Hi John,
    This article might help:
    http://dev2dev.bea.com/products/wlworkshop81/articles/repeater.jsp
    "John Hundley" <[email protected]> wrote:
    >
    Is there an easy way to make the row colors alternate inside the netui-data:repeater?
    I am looking for somthing similar to what happens with the netui-data:grid
    tag.
    A code sample maybe?
    Thanks,
    John

  • CheckBoxGroup, checkBoxOption and netui-data:repeater

    Greetings,
    How can I have multiple options (<netui:checkBoxOption>) inside a checkbox group (<netui:checkBoxGroup>) dinamycally, using netui tags?
    CheckBoxOption doesn't allow using another tag like <netui-data:repeater> as it's parent.
    I really appreciate any help.
    Mariano

    Tim,
    I had a similar issue and I could not find a way via the start index and end index
    as you would expect.
    However, what you can do is write a method in your JPF and access it via <netui-data:choiceMethod...>
    tag.Disdavntage being the repeater tag would still loop through rthe entire set,
    but would display only what you want.
    <netui-data:repeaterItem>
    <netui-data:choiceMethod object="{pageFlow}" method="isLineCounterMaxed">
    <netui-data:methodParameter value="{container.index}"/>
    <netui-data:methodParameter value="{pageContext.lastLineNumber}"/>
    </netui-data:choiceMethod>
    <netui-data:choice value="true">
    ........DIsplay Your Data Here.......
    </netui-data:choice >
    </netui-data:repeaterItem>
    Thanks
    Rishi
    "Tim" <[email protected]> wrote:
    >
    Hi,
    I am using <netui-data:repeater> tag to display array of object.
    This array has 20 elements and I am displaying only 5 elements at one
    time and
    providing next and previous button to the user.
    Can I specify the starting index and the end index in repeater tag so
    that I
    display
    the processing array object values in my repeater tag.

  • netui-data:getData tag related query

    Hi
    I need to be able to compare the values returned by <netui-data:getData> tag against
    another variable (which is also implemented as <netui-data:getData>) .
    I have something as below :-
    <netui-data:getData resultId="variableA" value="{container.item.value}"/>          
    <netui-data:getData resultId="variableB" value="{request.variableB}"/>     
    <logic:equal value="variableB" name="variableA" >                         A equals B               
    </logic:equal>                                             
    I am trying to the use the struts <logic:equal> tag but I am not sure as to how
    to compare the two variables . I can easily compare variableA with a constant
    like "apples" as mentioned below :-
    <logic:equal value="apples" name="variableA" >                         A equals apples          
    </logic:equal>                                   
    But my requirements are I need to compare the two variables . How do I do that
    using the NetUI tags or struts tags ??
    Thanks
    Kar                    

    It worked like a charm John !! Still the good old scriplets to the rescue . Looks
    like when things get way too comlicated in the jsp pages , we can flip back to
    sciplets .
    - Kar
    "John Rohrlich" <[email protected]> wrote:
    Kar,
    If using scriptlet is okay you could do something like this
    <netui-data:getData resultId="foo1" value="{pageFlow.foo1}"/>
    <netui-data:getData resultId="foo2" value="{pageFlow.foo2}"/>
    <%
    if (pageContext.getAttribute("foo1") ==
    pageContext.getAttribute("foo2"))
    %>
    <netui:label value="foo1 == foo2"/>
    <%
    %>
    - john
    "kar piyush" <[email protected]> wrote in message
    news:4086b0f6$[email protected]..
    Hi
    I need to be able to compare the values returned by <netui-data:getData>tag against
    another variable (which is also implemented as <netui-data:getData>).
    I have something as below :-
    <netui-data:getData resultId="variableA" value="{container.item.value}"/>
    <netui-data:getData resultId="variableB" value="{request.variableB}"/>
    <logic:equal value="variableB" name="variableA" > A equals B
    </logic:equal>
    I am trying to the use the struts <logic:equal> tag but I am not sureas
    to how
    to compare the two variables . I can easily compare variableA witha
    constant
    like "apples" as mentioned below :-
    <logic:equal value="apples" name="variableA" > A equals apples
    </logic:equal>
    But my requirements are I need to compare the two variables . How doI do
    that
    using the NetUI tags or struts tags ??
    Thanks
    Kar

  • Simple Paging with netui-data:repeater

    Hello,
    Does anyone have a simple paging example (code, etc) for use with the netui-data:repeater? I have seen Gerald Nunn's solution and while I got the example to work, I have been unable to get it to work with my own project. I'm afraid I just do not yet have enough skill with BEA and java. A simple example would be great.
    Thanks...

    hi there,
    Its been resolved now , was a code error , it was actually using the wrong object.
    thanks anyways

  • netui-data:repeater tag

    Hi,
    I am using <netui-data:repeater> tag to display array of object.
    This array has 20 elements and I am displaying only 5 elements at one time and
    providing next and previous button to the user.
    Can I specify the starting index and the end index in repeater tag so that I
    display
    the processing array object values in my repeater tag.

    Tim,
    I had a similar issue and I could not find a way via the start index and end index
    as you would expect.
    However, what you can do is write a method in your JPF and access it via <netui-data:choiceMethod...>
    tag.Disdavntage being the repeater tag would still loop through rthe entire set,
    but would display only what you want.
    <netui-data:repeaterItem>
    <netui-data:choiceMethod object="{pageFlow}" method="isLineCounterMaxed">
    <netui-data:methodParameter value="{container.index}"/>
    <netui-data:methodParameter value="{pageContext.lastLineNumber}"/>
    </netui-data:choiceMethod>
    <netui-data:choice value="true">
    ........DIsplay Your Data Here.......
    </netui-data:choice >
    </netui-data:repeaterItem>
    Thanks
    Rishi
    "Tim" <[email protected]> wrote:
    >
    Hi,
    I am using <netui-data:repeater> tag to display array of object.
    This array has 20 elements and I am displaying only 5 elements at one
    time and
    providing next and previous button to the user.
    Can I specify the starting index and the end index in repeater tag so
    that I
    display
    the processing array object values in my repeater tag.

Maybe you are looking for

  • Can I Create a New Structured App that's a Copy of a Current One?

    Here's the situation:  I am new to using Dita in Framemaker, but have become competent with the authoring process. I do not understand the development end of things very well, however. What I want to do is to have a second dita structured application

  • What User Exit can I use to add a cust field to PO Item overview in ME23n?

    Hi, I need help! Does anyone have any examples of adding a new cust field to PO Item Detail screen with a user exit? In transactions ME21n, ME22n, ME23n I need to add a new field in PO Item overview (screen 1211 of SAPLMEGUI). The new field ZZUNSPSC,

  • Default UIPicker in UIWebView for html select drop down- too large font.

    Hi everyone, The default picker that is used for selecting options from html select tag (drop down) in a UIWebView is cutting off our data. I could use labels if it were not in a web view, but can't work out how to adjust the picker used in web view.

  • H.264 for live streaming

    Flash media encoder 2 only encodes to the on2v6 video standard. Has anyone attempted live streaming of h.264? If so, what worked (or didn't)? Any lessons learned would be appreciated. Thanks!

  • Identity Server administration console NOT ACCESSIBLE!

    hello, I get the following error when I enter the any comments are appreciated! thanks following URL: http://FullyQualifiedHostName:port/amconsole Root Cause java.lang.VerifyError: (class: com/iplanet/services/comm/https/ApprovalCallback, method: app