URL IView - how to use local URL

Hi all,
in my CE 7.11 system I need to create a URL iview which references a local url such as:
http://CEHOST:CEPORT/<myApplication>.html
I must reference it as a local url, cannot use copy/paste from PCD since it's not a WDJ or portlet.
My question is:
how do I configure an url iview to reference a local url?
E.g. should I reference the whole URL or just the <myApplication>.html part?
How do I configure authentication?
Thanks, regards
Vincenzo

You can try using com.sap.portal.appintegrator.sap.Generic component ?
Use URL Template property with value : <Request.Protocol>://  <Request.ServerPort>/<your application name>.html
or
just give /<your application name>.html
Regards,
Mahesh

Similar Messages

  • How to use one URL for several Oracle AS?

    Hi folks,
    how do I use one URL to access several application servers (i.e. for different applications).
    Example:
    We have one URL:
    www.test.com
    In our DMZ, wie have three application servers and one web cache:
    test1.intranet.com:7777
    test2.intranet.com:7777
    test3.intranet.com:7777
    webcache.intranet.com:8000
    One application server is no problem. In Web Cache, i just map site www.test.com:443 to AS test1.intranet.com:7777.
    But what is the correct setting, to access all three Oracle AS over one URL? I tried URL PATH Prefix. Then i am able to access all three Oracle AS, but the application server does not know the Path.
    Example for mapping:
    www.test.com:443/server2 -> test2.intranet.com:7777
    When I access www.test.com:443/server2, I get redirected to the correct AS (test2.intranet.com:7777), but the Oracle AS does not know the path /server2.
    How do I have to configure the Oracle AS?
    Thanks in advance and best regards.

    I setted up a proxy and at first glance,
    it works fine. The problem are internal links. Some links redirect to the
    machine name, which is of course not accessible from outside our dmz.
    My httpd.conf entries:
    ProxyPass /test1infra/ http://test1.intranet.com:7777/
    ProxyPassReverse /test1infra/ http://test1.intranet.com:7777/
    ProxyPass /test1mid/ http://test1.intranet.com:7778/
    ProxyPassReverse /test1mid/ http://test1.intranet.com:7778/
    When I now access (for example) www.test.com/test1infra/pls/orasso I get
    redirected to www.test.com/pls/orasso, which is another Oracle AS!
    How can I prevent my OracleAS doing this? It has to "know" that all its internal urls need a url path prefix.

  • How to use GO URL?

    Hi All,
    I have two Reports-
    Report1 - Dim A (A1,A2,A3) , Fact A (B1,B2,B3)
    Report2 - Dim C (C1,C2,C3) , Fact C (D1,D2,D3)
    Where A1,A2.. ,B1,B2.. ,C1,C2..,D1,D2.. are the attributes of dimensions and facts.
    While drilling from attribute B1 in report1, i want to pass parameter A1 to report2 and want to see only the records in report 2
    for which C1 = A1. The attributes A1 and C1 are having the same values.
    For Drilling from measure B1 , i can use GO URL. But in the report2 "Dim A.A1" is not present.In Report2 , i have "Dim C.C1".
    For GO URL, the parameter that is passed from one report should be present in second report.
    Thus , how can i implement this scenario? My target report has different attribute.
    Thanks, Ashish

    Hi Goran,
    I have the same requirement and implementing what you said
    As you said,I have given HTML for the dataformat and in the column fx i gave the following.
    case when project.SOURCE = 'BETA' then '' ||Sample.org_code || '' else Sampleorg_code end
    case when project.SOURCE = 'BETA' then '' ||Sample."PWA#_L" || '' else Sample."PWA#_L" end
    The first navigation is working fine,its giving me the data only for the selected org code(Org Code is numeric).But, the second navigation is giving all the results in the target report irrespective of the selected PWA#_L.PWA#_L is Alpha numeric
    Please let me know where i am going wrong.
    Thanks in Advance.

  • How to use Go URL to Navigate from one report to another

    I have used Actionlink option to navigate from one report to another, It is nopt working on the dashboard because i used presentation variables in my first report and its throwing me an error below, I have to pass on id from one summary report to detail report, I have created Go URL, Do i need to use that URL in my summary report column formula ?
    Need some info ~ Thanks ~Srix
    An invalid object was accessed during evaluation.
    Error Details
    Error Codes: QBB4RZQS:SDKE4UTF
    Location: saw.views.evc.activate, saw.httpserver.processrequest, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool, saw.threadpool, saw.threads
    Expression: report.variables['TimePeriod']

    Hi ,
    Please refer the below threads.
    How to Navigate from one report to another report based on column values
    Navigating from one report to another report
    Re: Navigate from Report 1 to Report 2 using Go URL
    Award points it is useful.
    Thanks
    satya

  • How to use local interface in my easy code ?

    hi everybody
    I work on an ejb project. My code is like that to test remote interface (and it works) :
    public class TestStudent {
       Properties properties;
       public TestStudent() {
          properties = new Properties();
          properties.put("java.naming.factory.initial",
          "org.jnp.interfaces.NamingContextFactory");
          properties.put("java.naming.factory.url.pkgs",
          "org.jboss.naming:org.jnp.interfaces");
          properties.put("java.naming.provider.url", "jnp://localhost:1099");
          properties.put("jnp.disableDiscovery", "true");
       public static void main(String[] args) {
          TestStudent beanStudent = new TestStudent();
          beanStudent.createBean();
       public void createBean() throws EJBException {
          try {
             InitialContext context = new InitialContext(properties);
             Object object = context.lookup(StudentHome.JNDI_NAME);
             StudentHome studentHome = (StudentHome) PortableRemoteObject.narrow(object,StudentHome.class);
             Student student = studentHome.create();
             student.setName("pirlouit");
             System.out.println(student.getId());
             System.out.println(student.getName());
          } catch (NamingException e) {
             throw new EJBException(e);
          } catch (RemoteException e) {
             throw new EJBException(e);
          } catch (CreateException e) {
             throw new EJBException(e);
    }Then I do quite the same thing to test local interface like in the following code but it doen't work :
    public class TestStudent {
       Properties properties;
       public TestStudent() {
          properties = new Properties();
          properties.put("java.naming.factory.initial",
          "org.jnp.interfaces.NamingContextFactory");
          properties.put("java.naming.factory.url.pkgs",
          "org.jboss.naming:org.jnp.interfaces");
          properties.put("java.naming.provider.url", "jnp://localhost:1099");
          properties.put("jnp.disableDiscovery", "true");
       public static void main(String[] args) {
          TestStudent beanStudent = new TestStudent();
          beanStudent.createBean();
       public void createBean() throws EJBException {
          try {
             InitialContext context = new InitialContext(properties);
             Object object = context.lookup(StudentLocalHome.JNDI_NAME);
             StudentLocalHome studentLocalHome = (StudentLocalHome)object;
             System.out.println("studentLocalHome is null ? "+studentHome.equals(null));
             StudentLocal student = studentLocalHome.create();
             student.setName("pirlouit");
             System.out.println(student.getId());
             System.out.println(student.getName());
          } catch (NamingException e) {
             throw new EJBException(e);
          } /*catch (RemoteException e) {
             throw new EJBException(e);
          }*/ catch (CreateException e) {
             throw new EJBException(e);
    }The print of "student local home is null ?" give me 'true' which is not the answer I want ... so here is the problem. How can I get my entity bean using local interface ?
    For the moment 've got the exception (which appears on instruction "StudentLocal student = studentLocalHome.create();") :
    Exception in thread "main" java.lang.NullPointerException
         at org.jboss.ejb.plugins.local.LocalHomeProxy.invoke(LocalHomeProxy.java:118)
         at $Proxy0.create(Unknown Source)Please help !! Thank you very much !

    Write a JSP to test Local Interface. You cannot call Local Interface from a remote JVM.
    Jay
    http://www.javarss.com - Java News from around the world.
    Visit JavaRSS.com and add above signature to your messages. Thanks!

  • How to use local variables to pass an image mask correctly

    I'm kind of new to labview but i'll try to explain the problem as best as i can: I'm trying to pass an image mask (basically an image) to the next iteration of a while loop using local variables. I think the image passes through the loop with the local variable but i can't read from it correctly for some reason. And I don't think the problem has to do with local variables because i've tried using shift registers and that didnt work either. I think the problem is that you need to do something to read the image correctly again, like using IMAQ copy or something (that didnt work tho), but i can't figure out what the problem is. Does anyone know what the problem is? I know this isnt a great explanation and if its too confusing i could send some snapshots of the program or something. Any help would be greatly appreciated though.
    Thanks,
    Will

    So i attached 2 snapshots of the program to give a better idea of the problem. The first snapshot shows an image getting written to the local variable SavedMask. The second snapshot, which is run on the next iteration of a while loop, shows the local variable SavedMask being read to other image operations. When i run the program, the SavedMask image is always displayed correctly on the front panel, but i can't read from it for whatever reason. I think the problem could be like you said, that im only passing an imaq reference, and i think theres a certain way to extract the image data. Do you know the correct way to extract the image data or how to pass the image data and not just a reference to the data.
    Attachments:
    first.jpg ‏81 KB
    second.jpg ‏68 KB

  • How to use Endeca Url Optimization API

    Hi All,
    Iam working to implement Endeca Url Optimization API to a java project developed in RAD.
    Any one please guide me to achieve the same.
    Issue:
    Iam calling parseRequest(String Querystring,String pathinfo,string encoder) method to get encoded N-vaue value
    For the case of multiple filter selection, Iam passing pathinfo as “/cat_CL167288/_/N-1z139r3” where N-1z139r3 is the encoded N-value of previously selected filter.
    UrlState baseUrlState=seoFormatter.parseRequest("catalogId=10020&storeId=50001&langId=1&N=1z139r3","/cat_CL167288/_/N-1z139r3","UTF-8");
    We are getting an error which is thrown from SEOURL API jars. I have decompiled the jar and found that the exception is throwing while setting N Param value, but able to set other values without exception.
    paramUrlState.setParam(“N”, “1z139r3”);
    Here is the error message :
    java.lang.IllegalStateException: UrlState doesn't contain valid navigation state: you must explicitly call UrlState.inform(ENEQueryResults) or UrlState.setNavState(...) before handling the navigation state of an UrlState
    at com.endeca.soleng.urlformatter.UrlState.getNavStateUrlParam(Unknown Source)
    Please help me
    thanks,
    RGL

    Hi Roy,
    > I found this line:
    Within the docu or within your page?
    Normally, when it's within the page, you don't have to add it to your iView. It has to be on the page.
    There must be somethin else strange. Maybe an error in NW implementation, but I would think that's probably some minor mistake on your site.
    Please minimize your example as far as you can: Use a JSPDynpage with nothing in it than the redirect to the JSP, within the JSP, do nothing in it than the things needed for the call of the pageSupport object, and a corresponding minimized portalapp.xml.
    Post them here in the thread (using code marker).
    And give additional info how the iView when you tested and still it didn't work has been isolated (URL/embedded). Also try to play with these settings by yourself.
    Hope it helps
    Detlev

  • Smartforms - how to use page URL like output option ?

    Hello,
    in the smartofms output options, there's the possibility to set
    BSP Page/URL: ......
    and Output format:  XSF output + HTML.
    My requisite is to send a form in XML via web service, can I use it ? How is run ?
    tks.

    Hello
    Use the function module "FB_CONVERT_FORM_TO_XML" to convert the smartform to XML format table.
    The function module has been used in the method "GET_SMART_FORM_AS_XML" of the class .
    THanks ,
    M.Naveen Kumar

  • How to use boimage url for displaying images

    I am trying to test the Image URL feature in a Web Intelligence report.
    I have a few images loaded in the images folder on the installation server.
    I made the text of a cell: boimage://auditingBOBJLogo.png
    No images are showing up. When I am in view mode a box with an x shows.
    I am using the Web Client to edit the report and view it in InfoView.
    Any tips or best practices for getting this to work would be appreciated.
    Thanks

    Hi,
    Make sure that you have placed the image files in correct folder.
    And the cell formula is boimg://auditingBOBJLogo.png and not boimage://auditingBOBJLogo.png.
    Remember to set the display property of the cell to Image URL.
    Regards

  • How to use the url in the work item

    hi ,guys ,
       I have question in design the workflow, my scenario is as follows : I develop the workflow in the sap gui ,then integrate it into the portal using uwl . now i want add a link in the work item ,before approver excute the work item ,the approver can click the url to view the detail approval information ,and the system popup a web window which link to the pcui application . and someone advise me to maintain the href in the work item text ,but i have no iead on it ?can anybody give me some advices or sample material ?thanks in advance .
    Jialiang.Qiu

    Hi
    If we talking about adding an URL in the GUI workitem display you can proceed as follows:
    1. In the workitem text editor, change the editor to line editor (Goto -> Change editor)
    2. enter the tag /* (Usually used for comments) to the left
    3. enter the URL on the line as follows <a href=http://www.cnn.com> click here</a>
    Regards
    Morten Nielsen

  • How to use an URL in UIView

    Is there any standard way of putting an URL in an UIView?
    My goal is to show information containing a phone number and a web url (among other static texts). The phone url will dial the number and the web url will show the UIWebView.
    UILabel? UIButton? Any ideas...

    Hi.. thanks for the information. I actually need a tag other
    than CFLOCATION to reload an url and it should not be a command
    line parameter as I dont have permission to execute the code in any
    way other than from the browser/CFSCHDULER. Is there any tag that
    can be used to reload an URL just like CFLOCATION? If so, please
    let me know. Thanks in advance.

  • How to use relative url

    I use xml file to save configuration and saved /WEB-INF/config.xml
    In my java class i can't use that file with relative url.
    document=builder.parse(new File("/WEB-INF/config.xml"));

    Try something like this:
    String thisPath = this.getClass().getResource("").getPath();
    document=builder.parse(new File(thisPath + "/WEB-INF/config.xml"));

  • How to use Custom URL scheme in flex?

    I wanna integrate whatsapp in my flex mobile app. Here is the solution.
    http://www.whatsapp.com/faq/en/iphone/23559013
    Can any one please help me in implementing this.
    Thanks in advance.

    in what respect?

  • How to use local .sdf database in a windows store apps

    Hi,
    I am new in windows store app development. I have been working in WPF application development for long time. Now I want develop windows store apps. I am studying on it. I got a problem. I what to store data from windows store app in .sdf database file. I
    confused is .sdf database is compatible with windows store apps.
    I want Deploy the apps in windows apps store. Is .sdf database support in client machine while he download it and run his own machine.
    Please Suggest me about it with sample reference. It will be very helpful for me.
    bye
    With Regards
    Sadequzzaman Monoj
    Bangladesh

    SDF files are used by Microsoft SQL Server Compact Edition. SQL CE is not supported for Windows Store Apps/Universal Apps. Only WP Silverlight Apps can use SQL CE. You will have to switch to a different database format.
    As far as I know the only DB currently supported for local deployment with Windows Store Apps is SQLite.
    This article gives an introduction on how to get started with SQLite in Universal Apps:
    http://blog.tpcware.com/2014/04/universal-app-with-sqlite-part-1/

  • How to use local database for Education Portal

    Hi All,
    We are implementing a Education Portal (learning Solution) and here are our requirements
    1. Course details are stored in R/3 portal
    2. When users login to the education portal, course catalog should be displayed with all the details and here the course catalog should not be displayed directly from R/3.
    3. course catalog should be read from some local database or XML ( how to update the local database/ XML from R/3 data periodically)
    4. Once when user sees the course details, if he wants to buy the course, he will register and do the payment.
    5. User details should be stored in the local database and only if he do the payment and his registration details will be stored in the R/3.
    Is any one have any idea how to go ahead with the above function and give some inputs.
    Regards
    Ponnusamy

    Hi,
    Basically, you would have to use plain JDBC / Open SQL or some persistence framework on top of it (e.g. JPA if you're on Java EE 5 / NW CE 7.1, or EJB CMP, JDO, Hibernate with previous NW releases) to store and load data in the local DB. For updating the backend ("R/3") you would use SAP JRA which is based on SAP JCo.
    Search for these terms on help.sap.com and you will find plenty of information about it.
    HTH!
    \-- Vladimir
    PS: Once again, I'd like to remind you to read the [Rules|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement], in particular regarding cross-posting. Violating the rules may result in banning your user.

Maybe you are looking for

  • How to avoid Standard text

    Hi All, I want to getrid of the Description for one of the column, i am trying to unselect the checkbox Standard Text even it is default taking the standard text. In my report i want t display blank(with out description) under thatb we will get to se

  • Using Logical Databases and the Tables or Nodes Statement

    I want to start using Logical Databases whenever possible, but it seems that I need to use the Tables or Nodes statement for the Get statement to work.  Is there anyway to avoid Tables/Nodes statement since they are obsolete (and still use LDBs)? Mes

  • Jagged overlay buttons (psd files)

    I have created 4-layer custom play buttons in photoshop so that they would highlight when chosen. However, the anti-aliasing seems to be lost when I import them. They seem very jagged. It is a greyscale image that is all black in normal state, all wh

  • SOLMAN_SETUP - Managed System Configuration - DBA_COCKPIT

    Dear SAP Colleagues, I am currently implementing SMD in my Solution Manager system. I use the guided procedure SOLMAN_SETUP. The first 2 phases - Initial and Basic Configuration are completed. I have starting the 3rd one - Managed System Configuratio

  • Regarding HTTP Error 404.0

    Hello, when I am trying to run my webpage I am geting the following error,please help me with this. Server Error in Application "Default Web Site" HTTP Error 404.0 - Not Found Description: The resource you are looking for has been removed, had its na