URL View in VC7.1

Hi all,
Apparently , from VC7.1 onwards, the URL View is no longer available.  I managed to mimic this behaviour by using hte "Hyperlink" action from a button , for example, however, this always opens a NEW windows, while we prefer to embed the target URL in a VIEW of the current windows (as a WDP-view in the canvas).
How is this functionality feasable in VC7.1 ?
Thank you very much!
David Pierre
Belgium

Hi ,
Thanks for your reply!
In fact, in a VC7.1 composite model , I would like to navigate to a URL View with a given (dynamically concatenated) URL.  This view should then be 1 view in the complete screen page.
Goal is to have 1 iView that queries information about a customer in the backend SAP system , and then displays the Google map for this custome raddress in a second view. 
This functionality is already discribed in different blogs on SDN, however, from VC7.1 onwards, since the URL View is no longer available ??? , I only manage to implement this using the "action" HYPERLINK , which per default opens in a NEW window, while I actually wnat the map to be embedded in the page.

Similar Messages

  • Open BI Publisher report  using URL View activity

    Hi,
    i need to call BI Publisher report and I want to use URL View activity (i followed instruction on http://oraclebizint.wordpress.com/2007/07/30/customizing-obi-ee-%e2%80%93-go-url-parameters/ but i can't have HTML Form inside af:form)
    But parameters on URL View activity are visible and i have to send username and pass..
    Is there another way?
    Tnx.
    Andreja

    Yes, I can put HTML form at top or bottom of page but i wanted to put in panelCollection (because of page design)....
    but I will think out something to look nicely too :)
    Tnx

  • Getting error in using URL View in Task Flow

    Hi,
    Using Jdeveloper: 11.1.1.3.0
    What I am trying to achieve is that an ADF application can be bookmarked, and when it is open without a valid EBS login context, it should redirect it to the EBS login screen. In method initMainPage , I have code that determines if valid session exist or not. If not, then redirect to a login screen (which I trying to implement using URL View component).
    I am using a Bounded Task Flow. and the flow within is as follows:
    methodCall1 -> initMainPage (AM method) -> URL View
    For URL View, URL property is set to: #{MainPageContainerBean.ebsLogoutURL} . ebsLogoutURL is a String in MainPageContainerBean, with getter and setter as below.
    public String getebsLogoutURL() {
    return ebsLogoutURL;
    // return "/oracle/apps/flm/ekanban/common/ui/page/ParameterEntry.jsff";
    public void setebsLogoutURL(String ebsLogoutURL) {
    this.ebsLogoutURL = ebsLogoutURL;
    This task flow is part of a JSPX page. When I run the JSPX page, it give me the following error.
    <Feb 2, 2011 1:30:37 PM PST> <Error> <HTTP> <BEA-101020> <[ServletContext@4396218[app:ekanban module:ekanban-UI-context-root path:/ekanban-UI-context-root spec-version:2.5]] Servlet failed with Exception
    java.lang.IllegalStateException: Attempt to validate an already invalid RegionSite:
         at oracle.adf.view.rich.component.fragment.UIXRegion$RegionSiteImpl.validate(UIXRegion.java:978)
    Please suggest a resolution or workaround to the issue.
    Thanks,
    Anoop

    Now it is working. I didnt know that I needed to create getter and setter for the string that i refer to in the EL. Thanks for your help.

  • URL İview logon page

    Hi ,
    We have a URL iview in EP 7.0.When we run URL iview, logon page appears.This site user ID and password are the same as portal user id and password.
    How can pass user id and password screen in URL iview?User want to see his/her menu without entering user id and password in the URL  iview.

    Ok, i understood you the other way.
    Thoose parameter are used for logging on to the portal from another system.
    You want to logon to another system from the portal.
    You will need to use usermapping of the portal
    You create a system and an alias for the webpage you want to logon to.
    In you user adminstration you can the maintain a user mapping for the user to the system.
    At last you can configure the iView to use the mapping.
    http://help.sap.com/saphelp_nw04/helpdata/en/d3/ab0b5decd045e482d0deae9f9c90d5/content.htm
    look under "type".
    Hope it helps.
    - Rasmus

  • Show a WebPart view in a visual studio site definition

    Hi Guys ,
    i developed a Site definition in VS. In this Definition i have a list instance  based on Promoted link template (type 170).Now i want to show in the Deafault.aspx a view of the promoted link but when i put the snipet
    <WebPartPages:WebPartZone runat="server" FrameType="TitleBarOnly" ID="full" Title="loc:full">
    <WebPartPages:XsltListViewWebPart runat="server"
    ListUrl="Lists/List1"
    IsIncluded="True"
    JsLink="clientTemplate.js"
    NoDefaultStyle="TRUE"
    PageType="PAGE_NORMALVIEW"
    Default="False"
    ViewContentTypeId="0x">
    </WebPartPages:XsltListViewWebPart>
    </WebPartPages:WebPartZone>
    the server respond me  : ..Type 'Microsoft.SharePoint.WebPartPages.WebPartZone' does not have a public
    property named  'XsltListViewWebPart'. I added
    <%
    @RegisterTagprefix="WebPartPages"Namespace="Microsoft.SharePoint.WebPartPages"Assembly="Microsoft.SharePoint,
    Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>
    but it doesn´t work..
    Any suggestion?

    Hi gohberto,
    Before <WebPartPages:XsltListViewWebPart> tag,you can add <zoneTemplate>
    Here is a code snippet for your reference:
    <WebPartPages:WebPartZone runat="server" FrameType="None" ID="Main" Title="loc:Main">
    <ZoneTemplate>
    <WebPartPages:XsltListViewWebPart runat="server" ListUrl="Lists/My List" [abbreviated...]>
    <XmlDefinition>
    <View Name="Some View" Type="HTML" Hidden="TRUE" TabularView="FALSE" DisplayName="" Url="View.aspx" Level="255" BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/images/generic.png">
    <Query>
    <OrderBy>
    <FieldRef Ascending="FALSE" Name="ID"/>
    </OrderBy>
    </Query>
    <ViewFields>
    <FieldRef Name="ID"/>
    </ViewFields>
    <RowLimit Paged="TRUE">1</RowLimit>
    <Aggregations Value="Off"/>
    <Toolbar Type="Standard"/>
    </View>
    </XmlDefinition>
    <DataFields>
    </DataFields>
    </WebPartPages:XsltListViewWebPart>
    </ZoneTemplate>
    </WebPartPages:WebPartZone>
    Here is a similar thread for your reference:
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/7740935e-d4d7-46f8-9dac-09b9c46855c6/type-microsoftsharepointwebpartpageswebpartzone-does-not-have-a-public-property-named-webpart?forum=sharepointcustomizationlegacy
    Best Reagrds
    Zhengyu Guo
    TechNet Community Support

  • XSLT Issue to open URL in new tab and PopUp Window through one custom style

    I have SharePoint Online Custom List that contains two columns
    Name: Single Line of Text
    URL: Hyperlink or pictures
    Using XSLT I have shown Name columns value on my home page by using below custom style in
    Itemstyle.xsl file.
    Custom style to show Link in PopUp window   itemstyle.xsl
    <xsl:template name="OpenApplicationPagePopUp" match="Row[@Style='OpenApplicationPagePopUp']" mode="itemstyle">
    <xsl:variable name="SafeLinkUrl">
    <xsl:call-template name="OuterTemplate.GetSafeLink">
    <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
    </xsl:call-template>
    </xsl:variable>
    <xsl:variable name="DisplayTitle">
    <xsl:call-template name="OuterTemplate.GetTitle">
    <xsl:with-param name="Title" select="@Title"/>
    <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
    </xsl:call-template>
    </xsl:variable>
    <div class="item link-item">
    <xsl:call-template name="OuterTemplate.CallPresenceStatusIconTemplate"/>
    <a href="{$SafeLinkUrl}" onclick="ShowPopupDialog(GetGotoLinkUrl(this));return false;">
    <xsl:if test="$ItemsHaveStreams = 'True'">
    <xsl:attribute name="onclick">
    <xsl:value-of select="@OnClickForWebRendering"/>
    </xsl:attribute>
    </xsl:if>
    <xsl:if test="$ItemsHaveStreams != 'True' and @OpenInNewWindow = 'True'">
    <xsl:attribute name="onclick">
    <xsl:value-of disable-output-escaping="yes" select="$OnClickTargetAttribute"/>
    </xsl:attribute>
    </xsl:if>     
    <xsl:value-of select="$DisplayTitle"/>
    </a>
    </div>
    </xsl:template>
    My Requirement to show only Suggestion Box in Popup window Other Links Should be open in new Tab So please suggest me what can change in above xslt...
    Thanks
    Deepak Chauhan
    SharePoint 2010 & 2013 and Office-365 Branding and Front End Customization, UI Design

    Hi,
    In SharePoint 2013, we can use JSLink to achieve it.
    1. Save the following code as a js file (URLPopup.js) and upload it into the
    SiteAssets Document Library.
    // List View – Field open modal dialog Sample
    (function () {
    // Create object that have the context information about the field that we want to change it output render
    var linkFiledContext = {};
    linkFiledContext.Templates = {};
    linkFiledContext.Templates.Fields = {
    //Apply the new rendering for URL field on List View
    // "URL" is the column name.
    "URL": { "View": URLFiledTemplate }
    SPClientTemplates.TemplateManager.RegisterTemplateOverrides(linkFiledContext);
    // This function provides the rendering logic for list view
    function URLFiledTemplate(ctx) {
    var itemTitle=ctx.CurrentItem.Title;
    var urlLink=ctx.CurrentItem.URL;
    var urlDesc=ctx.CurrentItem['URL.desc'];
    if(urlLink!=null&&urlLink!=""){
    if(itemTitle=="Suggestion Box"){
    return "<a href='#' onclick=\"openModalDialog('"+urlLink+"')\">"+urlDesc+"</a>";
    }else{
    return "<a href='"+urlLink+"' target='_blank'>"+urlDesc+"</a>";
    }else{
    return "";
    function openModalDialog(url)
    var options = {
    title: "Suggestion Box",
    autoSize: true,
    url: url
    SP.UI.ModalDialog.showModalDialog(options);
    return false;
    2.Edit the list view page.
    3.Edit the list web part. Go to Miscellaneous -> JS Link.
    4.Add the following URL into the JS Link textbox.
     ~site/SiteAssets/URLPopup.js
    5.Click "OK" and save the page.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Open Url iView in same window but full screen

    Hi ,
    I have a requirement where i need to open the url iview in the same window but in fullscreen mode.
    Also for eg if the url is www.google.com ,then the iview should look similar in terms of size as opened in the normal IE browser.Also the url on the portal should change to www.google.com and not http://servername:portnumber/...
    Can you please help me in doing so.
    Regards,
    Preeti

    hi,
    maybe some text as url [ggpage|http://www.google.com] is what u need, not  url view
    A URL iView is a collection of meta attributes, one of which is the URL to the information source (see )Selecting the Source URL). A built-in browser available in the URL iView Wizard and Editor enables you to navigate easily within a Web site in order to retrieve the URL of the source Web page to display in the iView.
    last word: " in the iView"

  • SVG Viewer 2.0 の同意文

    はじめまして、Masudaです。
    SVG を使ったアプリケーションの開発を行おうと思っているのですが、
    Viewer を 2.0 にしたところ、SVGのページが更新されるたびに同意文が表示されます。
    文中に「登録フォーム」がどこかにあるとかかれているのですが、どこにあるかわかりません。
    どうにかしてこの同意文の表示を一回にする方法はないでしょうか?

    豆さん、颯さん、
    返答ありがとうございます。
    また、返事が遅くなってしまい申し訳ありません。
    OS は Windows98 SE 、ブラウザは IE5.5を使っています。
    颯さんの言われたとおりに、
    http://210.234.127.59/TechDB.nsf/$defaultView/00003492?OpenDocument
    上記のURLの内容を参考にして、Viewer 2.0 を一旦削除し、インストール後に
    http://www.adobe.co.jp/svg/demos/
    のページを開いたところ、一度だけ仕様許諾ダイアログが表示され、以後は表示されなくなりました。
    ただ、先に SVGがあるページ開いてしまうなどすると、SVGのコンテンツがある度にダイアログが表示されてしまうようです。
    豆さん、ありがとうございます。
    私のPC の SVGViewer.ini は
    [AutoUpdate]
    Enabled=yes
    UseDefaultInterval=yes
    BaseTime=00340D0BDE0DC101F9
    Interval=7
    [EULA]
    2.0x55=accepted
    となっておりました。
    同僚で、うまくいかないとの声が多数ありますので、このあたりも調べてみます。

  • Find the folder of an url in bookmark management and try to modify it

    In bookmark section, how can i manage the folder of an URL (view , change, del) ?

    Your plugins list shows outdated plugin(s) with known security and stability risks.
    * Next Generation Java Plug-in 1.6.0_14 for Mozilla browsers
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp#jdk (you need JRE)
    I'm not sure what you are trying to do.<br />
    Can you explain that better?
    See http://kb.mozillazine.org/Sorting_and_rearranging_bookmarks_-_Firefox

  • [iphone] How to resize a web view in iphone SDK?

    for my iphone app, I need my webview to expand to the bounds when I change to landscape mode. How do I get it to auto-resize?

    It appears that the problem is the UIView that contains the UIWebView is not being properly resizes, the UIWebView is resizing to match the UIView, but the UIView is not resizing to match the available space.
    I'm loading this view from a nib file and my controller is not in the Interface Builder FYI.
    here is my current viewDidLoad method. I have tried various combinations ofr autoresizingMask as you can see below (commented out), but they didn't get the view to resize to match its container (not sure what contains the view).
    - (void)viewDidLoad {
    view.autoresizingMask = (UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight);
    NSString *urlAddress = @"http://www.people.carleton.edu/~cdavidso/images/BadileHiRes.jpg";
    //Create a URL object.
    NSURL *url = [NSURL URLWithString:urlAddress];
    //URL Requst Object
    NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
    //view.autoresizingMask = (UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight);
    webView.scalesPageToFit = YES;
    //webView.autoresizingMask = (UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight);
    //Load the request in the UIWebView.
    [webView loadRequest:requestObj];
    Also, here is a screen shot of my interface builder:
    http://www.grabup.com/uploads/fe652f916b8a70036eeb2f52cdbb6cae.png
    and a screen shot that shows that the View is not resizing to fit the window:
    http://www.grabup.com/uploads/b19cd56c2386599182d6c48f3f34e495.png
    I could try the frame approach, but not sure what to set the view frame to.
    thanks
    phil

  • Merging Two Views in a Single Role

    Hello All,
    I wanted to Merge two iviews with in a single role.Consider the below example.
    See, i have a role called "Role A"(TLN1 Entry) and i have two url views( iView1 and iView2) which needs to be added and it should fall under the as TLN2 entry.
    Now i have two set of groups( Group A and Group B) , if i add this role to these two groups, users who all are part of "Group A" should see the "iView1" and users who all are part of "Group  B" should see the "iView2".
    I have read some help documentation, but i could understood the concept of merging.But i would like to know, how this can be achieved.
    Please help me.
    Thanks In Advance.
    Best Regards,
    Manoj K

    Hello both,
    Thanks for the quick reply.
    I am clear now. But one thing which i would like to know, is there any possibility, if these two iviews are assigned to a single role, and this roles is assigned to two groups, basically group A and group B,  only one group of people can should see Iview1 and other group of people should see iview2.( As per i know, access can be organized via roles, but still i wanted to check with you is there any provision where i can achieve this.
    Thanks for helping me.
    Best Regards,
    Manoj K

  • To load a application using a URL into a region

    Hi,
    I have divided my page into different areas using panel splitters. In one of the areas , I have dragged a taskflow as a Region. In the taskflow on clicking a button in the View Activity, it leads to a URL View Activity(which has the full URL of a different application). My requirement is on clicking the button on the taskflow, the destination URL should load in that same area of the page and not in the entire browser. Can you please suggest a solution to this?
    Thanks,

    Hi Andy,
    ATD wrote:
    Does your HTML define the regions/points on the map using AREA tags?Yes. it is actually generated using MapSefrver from huge tables of SDO_GEOMETRY (Oracle Spatial).
    If so, you could define a report template that does this and use this for a report based on a table that has the settings for shape, coords, href etcHmm, the code (HTML map) is auto-generated so if I understand you correctly, this might be difficult. One of the HTML is approximately 180KB of text.
    I found a way to do this using dynamic PL/SQL. I created a new table that has a varchar filename and a CLOB for the file data. I then imported the HTML into the table using SQL Developer (copy&paste, nice!). I then created an HTML region and used the following:
    declare
    html clob;
    len number;
    st number;
    c number;
    begin
    select length(data)
    into len
    from FILES
    where name = 'state_query.html';
    st := 1;
    while len > 0
    loop
    if len > 32000 then
    c := 32000;
    else
    c := len;
    end if;
    select substr( data,st,c )
    into html
    from FILES
    where name = 'state_query.html';
    htp.p( html );
    st := st + c;
    len := len - c;
    end loop;
    end;
    Edited by: CoyoteTech on May 13, 2009 7:27 AM

  • SSO:Portal to J2EE Application

    Hi all,
    I have developed a simple java application that has user-id & password textboxes along with a submit button.(login.jsp)
    this is deployed as an iView in the server.
    When the submit button is clicked,it navigates 2 another JSP page(welcome.jsp) that displays the user's name if the id and passowrd matches with that present in the backend DB.
    I want 2 display this welcome page directly without prompting for a logon frm the user.
    How can i do this with AppIntegrator?I referd the following <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=95024">thread</a>I cant find the system uri,in the source code of the application!
    How should i proceed further?
    Thanks in advance.
    anticipating replies
    SwarnaDeepika

    Hi Swarna,
    Kindly try these steps..I have accumulated the points as per the discussions on mail.
    Just try all these steps..
    1) I hope you have created a J2EE application which has its own data source (i.e: tables in the Data Dictionary which has enteries for user and Password).
    2) Create a HTTP system for usermapping.
    3) After that perform all the steps as mentioned in the WebLog for the <b>App integrator</b>. (i.e: do the user mapping to the system by providing the User name and password.)
    4) In the J2EE Application write the code that If that username which you got from the URL and the userName in your data source is same then show him the main page directly, else show him the Login Page.
    5) Create a URL View in which you can put your application. Set the <b>admin,u</b>ser property from the User Management.
    I hope all these will solve your problem!! Kinldy check this!!
    Regards
    Pravesh

  • Af:commandToolbarButton to open a link but not navigate away from taskflow

    I would like to be able to have the following
    - a commandToolbarButton that when clicked upon downloads a document (by a simple URL call whos http response tells the browser to download the file, not open it)
    - when click on the arrow on the right of the button, get a list of other download/open options for the document
    To get a document/document rendition, we simply make a URL call, so the options in the command buttons drop down is simply goMenuItems that go the URL obtained from the backing bean. I want the same behaviour as a goMenuItem on the actual button when it is clicked on.
    I have the following
    <af:commandToolbarButton text="#{dlBndl.VIEWDOC_DOWNLOAD}" id="dlvtrm" >
    <f:facet name="popup">
    <af:menu text="" id="dlvtrm1">
    <af:goMenuItem text="#{dlBndl.VIEWDOC_OPEN_NATIVE}" id="dlvtrm2"
    destination="#{pageFlowScope.prprts.item.url}#{pageFlowScope.prprts.portletLinkPostfix}"
    rendered="#{pageFlowScope.prprts.item.nativeFileWebViewable}"
    targetFrame="_blank"/>
    <af:goMenuItem text="#{dlBndl.VIEWDOC_OPEN_PDF}" id="dlvtrm3"
    destination="#{pageFlowScope.prprts.item.webRenditionURL}#{pageFlowScope.prprts.portletLinkPostfix}"
    rendered="#{pageFlowScope.prprts.item.webViewableAvailable}"
    targetFrame="_blank"/>
    </af:menu>
    </f:facet>
    </af:commandToolbarButton>
    I can not work out how to have the button click go to a url like the goMenuItem's. I have tried adding an action to my taskflow and using that on my button, but its not working
    <url-view id="downloadNativeFile">
    <url id="dldv78">#{pageFlowScope.prprts.item.downloadNativeFileURL}</url>
    </url-view>
    <control-flow-case id="dldv82">
    <from-outcome id="dldv83">downloadNativeFile</from-outcome>
    <to-activity-id id="dldv84">downloadNativeFile</to-activity-id>
    </control-flow-case>
    Attempt 1:
    <af:commandToolbarButton text="#{dlBndl.VIEWDOC_DOWNLOAD}" id="dlvtrm" action="downloadNativeFile">
    when the button is clicked on, the file did ask to be saved, but then nothing else on my page works, i can not even click on the arrow of the button to see the drop down list of options
    Attempt 2:
    <af:commandToolbarButton text="#{dlBndl.VIEWDOC_DOWNLOAD}" id="dlvtrm" action="dialog:downloadNativeFile" useWindow="true">
    Now when the button is clicked on nothing happens, the page doesnt break though.
    Question: How do i get behaviour that when a user clicks on the actual commandToolbarButton it goes to a URL (like the goMenuItem) but does not break my page so i can carry on using my page.
    I have tried having an action, and then in my taskflow to go to a URL view,
    <af:commandToolbarButton text="Google"
    action="goToGoogle">

    i.e. with a goMenuItem/goLink you would have
    <af:goMenuItem text=""DOWNLOAD file"
    destination="http://download.oracle.com/docs/cd/E10316_01/ContentIntegration/Pdf/cis-administration-guide.pdf"
    targetFrame="_blank"/>
    <af:goLink text=""DOWNLOAD file"
    destination="http://download.oracle.com/docs/cd/E10316_01/ContentIntegration/Pdf/cis-administration-guide.pdf"
    targetFrame="_blank"/>
    i.e. i would like to do the exact same thing for the commandToolbarButton when you click on it, as if it was
    <af:commandToolbarButton text="DOWNLOAD file"
    destination="http://download.oracle.com/docs/cd/E10316_01/ContentIntegration/Pdf/cis-administration-guide.pdf"
    targetFrame="_blank"/>

  • Invalidating the ADF session and redirecting to EBS login screen

    Hi ADF team,
    I am developing an application which is being accessed from eBusiness Suite (EBS), using ADFX function. It has a global Logout link. When the link is clicked, two things should happen.
    1. the ADF session that is running on WLS server should be killed.
    2. I should be redirected to eBusiness Suite login page.
    This is what I am doing and I am getting error(s).
    1. Created a Container jspx page and embedded a task flow in it.
    2. Embedded a jsff into task flow.
    3. In JSFF created a global link called Logout.
    4. Set the action property of Logout link such that it calls a function in the AMImpl. (I confirmed, the function is being called)
    5. In the function invalidate the ADF session using following code.
    HttpServletResponse response = ((HttpServletResponse)ADFContext.getCurrent().getEnvironment().getResponse());
    HttpServletRequest request = ((HttpServletRequest)ADFContext.getCurrent().getEnvironment().getRequest());
    HttpSession sessionADF = request.getSession();
    sessionADF.invalidate();
    return "EBSLogin";
    6. Now, EBSLogin control flow leads to a URL View component that has the URL property set as "www.oracle.com".
    --Using this approach I get the error: adfc-14000: view port id ****** is invalid
    -----Thus need help with this error. Is there a better way to accomplish this ?? What am i doing wrong?
    Also, I have a question on how to set the URL property of 'URL View' component. I set it to #{pageFlowScope.MainPageBean.testLogoutURL}. testLogoutURL is a function that returns string. But I do get an error at run time, mentioning that the property cannot be NULL. Thus seems like the way I am doing it is not totally correct. Please advice.
    Thanks & Regards,
    Anoop

    on top of my head
            FacesContext fc = FacesContext.getCurrentInstance();
            ExternalContext ectx = FacesContext.getCurrentInstance().getExternalContext();
            HttpServletResponse response = (HttpServletResponse)ectx.getResponse();
            HttpSession session = (HttpSession)ectx.getSession(false);
            String redirectURL = (String)session.getAttribute("ebizRedirectUrl");
            if(redirectURL!=null){
              int oa_html = redirectURL.indexOf("OA_HTML");
              finalRedirectURL = redirectURL.substring(0, oa_html);
              finalRedirectURL = finalRedirectURL + "oa_servlets/AppsLogin";
            if (session != null)
            session.invalidate();
            try {
                response.sendRedirect(finalRedirectURL);
                fc.responseComplete();
            } catch (IOException e) {
                e.printStackTrace();
            }

Maybe you are looking for

  • Get images from photo app to idvd

    How do I get my photos onto a dvd from Photo app in 10.10.3?

  • So confused. error -50

    So i was transferring files around, and I went to go put something in a folder on the particular drive (500 gb western digital sata drive) and it asked me something about how you need the administrators permission to do this... i thought, mmm weird.

  • Locking clips to timeline - how?

    How do I 'lock' a video clip in place on my timeline? I'm trying to have a video clip start at a particular point in the music I'm using. I align the video clip, but when I make other modifications, the clip gets out of sync. I'm flexible on where so

  • I yest bay a ipod shuffle and ido not know how to set it up

    i need help to set up my ipod

  • Subscription won't work for CS5

    I recently tried to re-install Photoshop CS5 onto my computer, and while my serial is legitimate/accepted, Photoshop prompts me with the statements that it cannot start my subscription, and will propmt me once i restart photoshop to start said subscr