OC4J support Ajax based Application, If yes....give me example

Hi,
I did Ajax based application and getting output in MyEclipse with Tomcat server.
but, same Ajax Program I am running in oracle jdeveloper with OC4J, it's not getting output......
can anyone help.....what is the reason.....
regards,
Abu

Sorry for posting no code.
I was hoping it was a common problem with the ajax anyware framework.
Folow some simple part of the application :
[JSP BEGIN]
<aa:zone name="pgoVerbaZone">
                               <t:dataList var="pgoVerba" value="#{amortizaBean.proAmorPOJO.listaPgoVerba}" rowIndexVar="indice">
                                      <f:verbatim>
                                            <table border="0" cellpadding="0" cellspacing="10" width="100%">
                                               <tbody><tr>
                                                 <td><label class="label">Valor*</label>
                                                 </f:verbatim>
                                                                    <h:inputText id="valorPagPrinc" alt="Verba Principal e Reflexo - Pagamentos - Valor" value="#{pgoVerba.valorPagPrinc}"
                                                            size="18" onblur="mascara_numero_controle_extra(this, 'dinheiro', true);" onkeyup="mascara_numero_controle_extra(this, 'dinheiro', false);" />
                                                 <f:verbatim>
                                                 <td>
                                                 <label class="label">Tipo*</label>
                                                     </f:verbatim>
                                                     <h:selectOneMenu id="selectTipoPrinc" value="#{pgoVerba.tipoPagamentoPrinc}">
                                                                 <f:selectItems value="#{amortizaBean.listaTipoPagamento}" />
                                                            </h:selectOneMenu>
                                                     <f:verbatim>
                                                   </td>
                                                 <td><label class="label">Data do recolhimento*</label>
                                                  </f:verbatim>
                                                      <h:inputText id="dtRecoPrinc" alt="Verba Principal e Reflexo - Pagamentos - Data Recolhimento" value="#{pgoVerba.dtRecoPrinc}" size="10"
                                                      onblur="verificarData(this);" onkeyup="autoTab(this, 10, event); mask_input_date(this);" maxlength="10"/>
                                                 <f:verbatim>
                                                 </td>
                                                 <td>
                                                 <label class="label">Priorizar juros*</label>
                                                      </f:verbatim>
                                                      <h:selectOneMenu id="selectPriorizarJurosPrinc" value="#{pgoVerba.priorizarJurosPrinc}">
                                                                 <f:selectItem itemValue="-1" itemLabel=""/>
                                                                 <f:selectItems value="#{amortizaBean.listaSimNao}" />
                                                            </h:selectOneMenu>
                                                             <f:verbatim>
                                                   </td>
                                                 <td width="25%">
                                                      <div align="right">
                                                            </f:verbatim>
                                                                <t:commandLink id="linkIncluirPgoVerbaAJAX" action="#{amortizaBean.incluirPgoVerbaAJAX}" rendered="#{indice eq 0}">
                                                                     <t:updateActionListener value="#{indice}" property="#{amortizaBean.indicePgoVerba}"/>
                                                                     <h:graphicImage style="border:0" alt="Adicionar Pagamento" url="/common/img/ico_novo.png" />
                                                                </t:commandLink>     
                                                             <f:verbatim>
                                                      </div>
                                                      <div align="right">
                                                            </f:verbatim>
                                                                <t:commandLink id="linkExcluirPgoVerbaAJAX" action="#{amortizaBean.excluirPgoVerbaAJAX}" rendered="#{not(indice eq 0)}">
                                                                     <t:updateActionListener value="#{indice}" property="#{amortizaBean.indicePgoVerba}"/>
                                                                     <h:graphicImage style="border:0" alt="Excluir Pagamento" url="/common/img/ico_excluir.png" />
                                                                </t:commandLink>     
                                                             <f:verbatim>
                                                      </div>
                                                 </td>
                                               </tr>
                                             </tbody>
                                             </table>
                                             </f:verbatim>
                                   </t:dataList>
                               </aa:zone>
[JSP END]
[JavaScript BEGIN]
          // Funções AJAX (AjaxAnywhere)...
          ajaxAnywhere.getZonesToReload = function(url, submitButton) {
               // Identificando ID do componente disparado (commandButton ou commandoLink)....
               if ((typeof submitButton != "undefined") && (submitButton.type=="submit")) {
                    componentId = submitButton.id;
               }else {
                    if (this.findForm().elements["atualizaPagamentoForm:_link_hidden_"] != null) {
                         componentId = this.findForm().elements["atualizaPagamentoForm:_link_hidden_"].value;
               //execeção
               if(componentId == 'atualizaPagamentoForm:botaoEnviarAtualizacao' ||
                    componentId == 'atualizaPagamentoForm:botaoEnviarAtualizacaoRateada') {
                    return null;
               //Zonas que será atualizadas de acordo com as requisições via AJAX.               
               var zones;     
               zones = 'zoneMensagem,pgoVerbaZone,pgoCustaZone,' +
                         'pgoDiversosZone,pgoReclamanteZone,pgoReclamadoZone,' +
                         'pgoTercZone,pgoIRRFZone,pgoFGTSZone,diversosZone,historicoZone';
               setarImagemDeSubmissaoAJAX(componentId);     
               return zones;
[JavaScript END]
[BEAN BEGIN]
/** AJAX VERBA*/
     public String incluirPgoVerbaAJAX() {
          proAmorPOJO.getListaPgoVerba().add(proAmorPOJO.new PgoVerba());
          return null;
     public String excluirPgoVerbaAJAX() {
          proAmorPOJO.getListaPgoVerba().remove(indicePgoVerba.intValue());
          return null;
[BEAN END]Well this code runs ok. The Request is Sent, the methods are called, the response is received, but nothing is rendered.

Similar Messages

  • Does adobe muse support ajax

    hi i need to know if does adobe muse support ajax!! if yes when can i read about it please!

    Hi,
    There is no native feature in Muse for ajax. However, if you can get your custom script, you an add it to your site.
    Regards,
    Aish

  • Debugging CFNetwork based application

    Hello.
    I am developing an application with CFNetwork and I face quite strange issue: FIN packet is sent to the remote server immediately after packet with http request is sent, or FIN packet is sent later during transmission of the response body (before whole body is received). I tried to investigate my code for misplaced closes of CFReadStream or other issues, but so far with no success. Are there any recommendations for debugging of CFNetwork based applications? Can I for example force CFNetwork to write some logging messages?
    Thanks,
    __faramir

    __faramir wrote:
    Are there any recommendations for debugging of CFNetwork based applications?
    Don't do it? Seriously, unless you are writing code where you have to pay attention to such things, you are coding at far too low a level. Since you mentioned things like "http" and "the remote server", that certainly sounds like it is the case. Look for some higher-level interfaces.

  • I want to create a Ajax based Chating application using java .

    hi . I want to create an chating Application , and ajax based chatting application using java as my server side language ..i have some idea about it .. but one thing that i m not understanding is that how i will communicate with other users because each user has its own session so what i will do to send one messge to all the users ???? . i m new to JavaEE and i have chosen this as my semester project .. i need some help regarding this .

    First get it working without AJAX.

  • Font Anti-Aliasing Issues in HTML/Ajax based Air Applications

    It seems that the font-renderer in HTML/Ajax based Air Applications is using some kind of sub-pixel font renderer that is overriding and vastly inferior to the standard Windows ClearType, or any Apple based option as well.  This problem is particularly noticable with light text on a dark background, and made worse the smaller the text is.  I've put together an example image explaining exactly what I mean at: http://regator.com/fontRendering.png   (it's a large image 1126 x 1500 px)
    My example shows two fonts at four different sizes rendered in an HTML Air App vs the default Windows Cleartype, as well as using Safari to show the Font style anti-aliasing.  In all cases the HTML Air App rendering is far more difficult to read, and in many cases severely distorts the color of the text in a way that other subpixel algorithms do not.  As far as I can find after literally hours of googling and searching there's no way to override this in HTML based applications.  Is there any solution to this, or a planned fix for the renderer?  Other than this rendering issue, the HTML interface for creating Air apps is absolutely brilliant, this is just making my finished product look significantly less polished than it otherwise would if the text were more readable.
    Thanks.

    Dear caturner81, dear Adobe,
    is there a solution to this problem? I'd really love to fix the aliasing thing in Air/HTML!

  • Is it possible to run this Oracle based application ???

    Hello All,
    I have Oracle Forms/reports 9.0.4.1.0 installed on my windows XP.
    I am running Oracle based application from this box.
    here is the url for it:
    http://localhost:8889/forms90/90servlet
    Is it possible to run this Oracle based application on different PC on network through above URL?
    If yes, how to configure or set up this.
    Regards,
    DN

    From port number I assume you're using Developer suite. Remember that standalone OC4J is provided by Oracle for testing purposes only. You shouldn't use that in Production environment, where you should install Application Server, eventually the standalone Forms and Reports services (without infrastructure).

  • Embedding java based application in  portal

    hi ,
    I want to embedd a java based application..Iam giving the pageURL in provider file..will it work r any problem..
    i want to display that application as portlet.is mentioning page url is enough..that is tomcat..
    Second way:if i copy all jsps and source files to htdocs and create a war file and ear file..will it works..
    how to mention in provider.xml file to show this application in portal.
    is there any specific way..
    plz mail me
    regards,

    Our expirience with these types of applications is that you will need to integrate your jsp files (to some degree) into Oracle's jpdk framework, which essentially means some of the functionality of your jsp files may not work properly unless you switch to use many of JSP files with the JPDK api (i.e. custom tags and custom api calls so that the portal can render your application as a java portlet provider).
    I think there is also a way that you can deploy your web application in oc4j and possibly use the web clipping portlet to show this java based application, however, I am not familiar with this, and you should probably ask Oracle Support for more information
    Regards,
    Jack
    Check out Compoze Portlets for Oracle9iAS Portal v2.0 featuring portlets for discussion, chat, whiteboard and seamless integration with Domino / Exchange at http://www.compoze.com. Download them for a free trial!

  • Options for supporting web toolkit applications

    The various changes which have occurred between 10 and 11g are very detrimental to any users developing or supporting applications built with the original web toolkit (not APEX).
    In 10g, you could download the database and companion CD and end up with a database and http server with mod_plsql running in no time flat.
    In 11g, the database install is just as easy, but the http server install requires "Oracle Fusion Middleware Web Tier" which weighs in at a scary 1Gb+ (for a webserver) and assumes you are wanting to run lots of instances across an "enterprise grid". Even finding the error logs for when it doesn't work is hard. I spent a happy 4 hours trying to install it (following the instructions) without success.
    So, you think, what are the alternatives.....
    1. You could use the EPG, but the majority of advice is that this isn't suitable for production deployments
    2. You could use the APEX listener, but that doesn't support some of the features: flexible parameters, basic auth, etc
    There are a number of things Oracle could do to rectify this
    1. Open source mod_plsql. If they are not going to develop it further then let someone else do it for them
    2. Maintain backwards compatibility with mod_plsql in the APEX listener - not every application is APEX
    Hopefully someone from the APEX listener team can say "yes, we'll be making the apex listener compatible with all mod_plsql features in the next release". Fingers crossed...
    This was expressed more eloquently by John Flack here
    http://it.toolbox.com/blogs/jjflash-oracle-journal/application-express-listener-an-open-letter-35464
    Edited by: user486189 on 07-Aug-2010 04:52

    Thanks for the favorable mention of my blog - I updated that entry with a later one based on the Release Candidate version of the Apex Listener. I haven't given the production version a really good try yet, but what I've seen is pretty close to what I saw in the early adopter versions, except that the documentation is much better - bravo.
    You've named two alternatives to mod_plsql. Here are a few more:
    mod_owa: This is similar to mod_plsql, but it works under the generic version of Apache web server, rather than Oracle's customized version, Oracle HTTP Server. It is configured a little differently from mod_plsql and has some variations in the way it supports some of the more advanced features of the PL/SQL Web Toolkit, like flexible parameters. Joe Lennon wrote a blog entry about mod_owa here: http://www.joelennon.ie/2008/12/09/install-apache-mod-owa/.
    The base website for mod_owa is: http://oss.oracle.com/projects/mod_owa/dist/documentation/modowa.htm
    Thoth Gateway: If you have a Microsoft IIS web server, you might try the Thoth Gateway. Find it here: http://code.google.com/p/thoth-gateway/
    DBPrism: This is another JEE based application that I know that some are using. DBPrism was not primarily intended as a mod_plsql replacement, but does do that too. Find it at: http://www.dbprism.com.ar/en/index.html
    Please be aware, I haven't tried these (except a brief trial of an earlier version of mod_owa) so I can't vouch for them.

  • Canon HV30 Returns Video Format provided by capture device is not supported by this application

    I am trying to stream our church services using Flash Media Live Encoder 3 using firewire and a Canon HV30 Camera.
    I am not understanding how to use my firewire based high def Canon HV30 Camera as the video source device for FLME 3 ? When I hook everything up I get the error "Video Format provided by capture device is not supported by this application". The spec sheet says the HV10 should work.
    Is there a work around for this problem.
    In Him,
    JMb <><

    The error is coming because the camera might be giving HDV format, which is mpeg-2 encoded. FMLE needs raw format to work with. Please configure the camera to give DV out to work with FMLE.

  • ECATT for ITS based applications

    Is eCATT recordings / testing possible for ITS based applications?. If yes, could you please list out the limitations also if possible.
    I for sure know that eCATT does not support BSP applications but about ITS .... I m not sure
    Hoping for some replies ....
    Btw, are there any other tools out in the market that help in the testing of ITS based applications?
    How about Watir? (Refer : /people/justin.ramel/blog/2006/07/28/automated-functional-testing--part-1-of)

    Hey Guyzz....
    Thanks for your inputs on other integrable tools (certified by SAP too) with eCATT for testing SAPGUI with HTML (ITS).
    Justin, Did you setup worksoft certify with ecatt for ITS applications?. Also, can it support recordings of BSP and webdynpro applications?.
    Thnx in advance!

  • AD sync service account for cloud based application

    i have a cloud based application that i am setting up AD sync with. in their directions below i have bolded the ones i need answers too. my domain functional level is windows server 2003
    The active directory synchronization requires the following:
    A domain user which has the following properties:
    The password is known and does not expire - completed
    The domain user account has read permissions to all objects in the entire domain within active directory
    Confirm that if the domain has been upgraded to Windows 200x functional level from Windows NT4, 2000 or 2003 that we have the appropriate Group permissions below available to the domain user account for the synchronization in addition
    to read permissions to the entire domain:
    Pre-Windows 2000 Compatible Access
    Pre-Windows 2003 Compatible Access
    The username and password are passed using the appropriate communication channels - completed
    i have created a service account in my AD called myappldap. does a domain user have read permissions to all objects in the entire domain within active directory without adding the to any other security groups except domain users? Or do i have to click on
    the top level domain object in AD>go to properties>security>and give them read permission and proprogate down those premissions? Also i do not see Pre-windows 2003 compatible access as a security object i can give this service account read permissions
    to. i just wanted to confirm that this is because i am still running a functional domain of windows server 2003?

    A domain user has complete Read on everything in the forest.
    As for the Pre-Windows 2000 Compatible group, that's a reduced security group to allow NULL password for pre-Windows 2000 DCs, such as the way NT4 RRAS (VPN servers) used. In Windows 2000 and newer, we can eliminate that group, since it's a security concern.
    More info to read up on it, here:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/e8dfacba-985f-4042-abeb-f341bf37522f/prewindows-2000-compatible-access-group?forum=winserverDS
    Everyone group does not include anonymous security identifier
    http://support.microsoft.com/kb/278259
    As for Pre-Windows 2003, I haven't come across anything that would say
    pre-2003.  It almost appears that the software is using NULL or some other kind of reduces security on the password. Then again, I could totally be wrong. Is that specifically how the third party software specifies it in the docs? 
    Can you post a link to it?
    Ace Fekay
    MVP, MCT, MCSE 2012, MCITP EA & MCTS Windows 2008/R2, Exchange 2013, 2010 EA & 2007, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
    This posting is provided AS-IS with no warranties or guarantees and confers no rights.

  • Client/Server to Web-Based application Conversion

    Hi! Everyone,
    I have couple of questions for you guys.
    Our Client had recently upgraded Forms 4.5 to 6i to move from Client/Server based application to Web based application.
    They are using Forms Server 6i Patch Set 1, OAS 4.0.8.1, Windows NT Service Pack 5 and Oracle 7.3. They are facing the following error every now and then, when they run the forms,
    "FRM-92100: Your connection to the server was interrupted. This may be the result of a network error or a failure on the server.You will need to re-establish your session."
    Please let me know what might be causing the above error. The only problem i can think about might be Oracle 7.3. If i am right only Oracle 8 and above supports Forms 6i.
    Can anyone let me know some tips and/or techniques to upgrade Forms 4.5 to 6i. If there are any important settings/steps which we might have over looked during the upgrade, please list them.
    Any kind of help is greatly appreciated.
    Thanks,
    Jeevan Kallem
    [email protected]

    Most of the code is use with no changes at all.
    See otn.oracle.com/formsupgrade
    Regards
    Grant Ronald

  • How to integrate web based application to windows based application

    Hi,
    Experts,
    we developed web based application in this when we raising
    invoice document after adding this we need to updated Amount
    in integratee SAP B1 then that Amount we need Update The
    Amount  in OACT Table  how we can Update in Amount Field
    in OACT Particular Account Code. plz Guide  me. and how to
    integrate web absed application to windowbased application
    plz help me.
    Regds,
    Samapth.

    Dear sampathdevunuri kumar,
    You may develop the addon based on SDK DIServer for required function.
    The DI Server is an extension of the DI API and supports all its objects. It is intended for high-volume data integration, where numerous client connections must be managed simultaneously and optimized for speed. It is also suitable where Web-services architecture is preferred.
    Please refer to SDK help and SDK DIServer sample for more information.
    Best Regards
    Jane Jing
    SAP Business One Forums team

  • Authentication between Single Sign-On and Web based applications

    Hi everyone,
    I need to create a way in Portal 10g (10.1.2.0.2) that allow me to do the following:
    Once the user is logged on Portal (against Single Sign-On - SSO) he doesn't need to retype his username/password when he access a web based application throught the portal, in my case, an ASP application (not .NET, just ASP).
    I made a test creating a External Application in SSO and after publishing this portlet (external application) inside portal.
    It worked, BUT I was prompted to inform username/password to log on the aplication.
    So, the user end up entering his password twice.
    Does anybody know a way to acomplish this task?
    The documentation I'm researching is:
    Oracle Application Server Single Sign-On
    Administrator's Guide
    10g Release 2 (10.1.2)
    B14078-02
    Oracle Application Server Single Sign-On
    Security Guide
    10g Release 2 (10.1.2)
    B13999-03
    Thank you very much,
    Diogo Santos.

    have figured out how to secure any HTML, ASP, PHP, CFM, etc. web page again Portal / OID using the PDK toolkit.
    Using AJAX (Asynchronous JavaScript and XML) and one Oracle Stored Procedure just adding a simple Javascript call to any HTML, ASP, PHP, etc. web page can secure it via Oracle SSO (OID). Access to any secured web page will require that it to be linked from an authenticated Portal session or a page opened in an authenticated Portal session.
    This process can be easily modified to add in group security etc. This is just my starting point.
    1) Create a stored procedure
    # Make sure it has access to portal.wwctx_api.is_logged_on
    CREATE OR REPLACE PROCEDURE login_ajax_check (
    display_error IN number default NULL) AS
    BEGIN NULL;
    If portal.wwctx_api.is_logged_on = false then
    htp.prn('DENY');
    ELSE
    htp.prn('ALLOW');
    END IF;
    Exception when others then htp.p('DENY');
    END;
    2) Use this Javascript in any page you wish to secure.
    <-- Begin Paste Here -->
    <script>
    var allowgo=2
    function ajaxCallRemotePage(url)
    if (window.XMLHttpRequest)
    // Non-IE browsers
    req = new XMLHttpRequest();
    req.onreadystatechange = processStateChange;
    req.open("GET", url, false);
    req.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    req.send(null);
    else if (window.ActiveXObject)
    // IE
    req = new ActiveXObject("Msxml2.XMLHTTP");
    req.onreadystatechange = processStateChange;
    req.open("GET", url, false);
    req.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    req.send();
    else
    return; // Navigateur non compatible
    // process the return of the "ajaxCallRemotePage"
    function CheckPortal()
    ajaxCallRemotePage('[Your page calling the procedure from above]');
    function processStateChange()
    if (req.readyState == 4)
    if (req.status == 200)
    if (req.responseText.substring(0,4) == 'ALLO')
    allowgo = 0;
    else
    allowgo = 1;
    function doPage()
    if (allowgo==1)
    window.location='[Your login or error page]';
    CheckPortal();
    doPage();
    </script>
    <-- End Paste Here -->
    That's it!!! Super easy. It works great too.
    Larry Schenavar
    [email protected]

  • Registering the Web based application as a Partner Application

    Good day
    I went through the suggested documentation of registering a
    web based application as a partner application of the SSO Login Server.
    I installed the SSOSDK.JAR and went through the demo application (JSP Demo)
    which consists of the following programs :
    papp.jsp
    ssoinclude.jsp
    ssoEnablerJspBean
    SSOEnablerBean
    SSOSignon
    As per the technical documentation,I register this demo application as a
    partner application.
    1 - The source code of the papp.jsp checks for the existence of the user
    through method of ssoEnablerJspBean [getSSOUserInfo(request, response)] which
    calls method of SSOEnablerBean [getSSOUserInfo (request, response) and this
    method calls getUserInfo(p_request) of SSOEnablerBean (the same program) to
    check the existence of the application cookie.
    2 - If it doesn't exit , it redirect it to the SSO Login page for user
    authentication.Once the user is authenticated, a SSO login cookie is created on
    the client's browser and redirects back to the SSOSignOn.
    3 - The SSOSignOn program creates the application cookie and redirects back to
    the entry point of the demo application which is papp.jsp.
    My Questions are as follows :
    1 - Instead of creating a session object within my web based application to hold some
    information used between the different pages, can I define them in the
    application cookie? kindly advise? Is there any limitation for the length of
    the application cookie? If yes, what will be the risk?
    2 - The SSOSignOn program is calling a method in the SSOEnablerBean
    [setPartnerAppCookie(response, request). Within this method , it is retrieving
    the parameters values of the request object as :
    request.getParameterValues("urlc")[0];
    What is the role of this [urlc]? Is it hard coded? Can I change it?
    3 - In order to ensure that I am still dealing with the same user, shall I put
    the above security check procedure on each page of my weeb based application? Kindly advise?
    Thanks in advance for your prompt feedback
    regards

    Dear Paul
    I think there is a misunderstanding regarding the last correspondence.
    I am talking about the customized home page of the PORTAL and not the home page of my web based application (JSP) .So in this case, Am I able to use the customized home page which contains a login portlet instead of the default Login page of the SSO Login Server.Kindly advise!!!
    On the other hand, I am facing a problem during the surfing of the web based application.
    The web based application consists mainly of two packages :
    Package I : Bank.counter which contains a set of jsp pages.
    JSP_HOME_COUNTER (MAIN PAGE WHICH CONTAINS 2 FRAMES)
    JSP_LEFT_FRAME_COUNTER
    JSP_MAIN_FRAME_COUNTER
    JSP_MAIN_FRAME_COUNTER_DETAIL
    Package II : Bank.portfolio which contains a set of jsp pages.
    JSP_HOME_PORTFOLIO (MAIN PAGE WHICH CONTAINS 2 FRAMES)
    JSP_LEFT_FRAME_PORTFOLIO
    JSP_MAIN_FRAME_PORTFOLIO
    Please note that the SSO classes are residing under the first package.
    As agreed on in the third question, I am including in each page of my web based application, a security check procedure as follows :
    <%@ include file="ssoinclude.jsp" %>
    <%
    if(usrInfo == null)
    response.getWriter().println("<center>User information not found</center>");
    else
    my jsp code.......
    %>
    Please note that all the jsp page of the portfolio package are pointing to the SSO classes as follows :
    <%@ include file="../counter/ssoinclude.jsp" %>
    <%
    if(usrInfo == null)
    response.getWriter().println("<center>User information not found</center>");
    else
    my jsp code.......
    %>
    Once I invoke the JSP_HOME_COUNTER , it will render the JSP_LEFT_FRAME_COUNTER page and
    JSP_MAIN_FRAME_COUNTER page which invokes the SSO Login page. Once the user has been authenticate, the result of the JSP_MAIN_FRAME_COUNTER is rendered successfully. The result contains an hyperlink to the
    JSP_MAIN_FRAME_COUNTER_DETAIL page. As the user has been authenticated , this page is rendering automatically the result without displaying the SSO Login page. (Perfect as of now!!).
    Once I invoke the JSP_HOME_PORTFOLIO from the JSP_HOME_COUNTER, it runs the security procedure without any rendering of the SSO Login page (fine!!) but redirects me back to JSP_HOME_COUNTER instead of rendering the result of the JSP_HOME_PORTFOLIO.
    please note that the m_requestUrl variable in the SSOEnablerJSPBean class has been assigned the folowing value : JSP_HOME_COUNTER
    Kindly advise .

Maybe you are looking for

  • Vendor master details report

    Dear all, We need to download all the vendor master data account groupwise from SAP. Is there any standard report available in SAP?? Like we have MM60 for material master data download. Regards, Santosh

  • Why has the option to delete cookies on quit been eliminated from preferences in Firefox 12

    The "Privacy" preferences panel no longer offers the option to delete cookies on quit, as it did in Ffx 6, the version I updated from. Has this option been moved elsewhere? Has it been eliminated? If it has been eliminated, what is the last version t

  • Mail not responding no mailbox selected wont sendand...

    ive been ahving mail problems since beginning. one hting get s dfixed wiht mulitple genius appts then anohter . now not responding at all. bouncing onthe dock. says no mailbox selected tough to force quit it. the rainbow circle round and round thenca

  • Schedule the sending of a mail message

    Hi everyone How can I schedule a sending of a mail message? It seems so simple and so used in other mail programs... it's as simple as creating a mail message and ordering it to be sent first think in the morning while I'm still sleeping... that's wh

  • [WebLogic Sybase Type 4 JDBC Drivers] set ANSINULL off

    Hi, I am having some issues with the Weblogic JDBC Driver for sybase and the ANSINULL functionality. It appears that the stored procedures from a third party whose system we are trying to integrate with do ot function properly due to the fact that We