IPortalComponentRequest in a DC

Hi,
i've got a question. There a Problem I just don't understand. I'm trying to develop a DC from the Type Portal Application Module. In this Component I've got 2 java Classes and one JSP. The first java class extends the AbstractPortalComponent. So there is a method called
protected void doContent(IPortalComponentRequest request, IPortalComponentResponse response) {/code}
in this method, i call response.include(request, request.getResource....... Works fine.
Then I create another class wich will do some logic for the jsp. There is a method wich gets a param IPortalComponentRequest. The funny thing about it is, that in the class wicht extends AbstractPortalComponent the IPortalComponentRequest is found, but when I call it on runtime at the other class, theres a ClassNotFound Exception.
Both are in the same Project, the same Package and so on. Why does it work in the class wich extends AbstractPortalComponent and in the other not.

Hi Alka,
Thanks for your help.
I forgot that I need a sharing reference to the km (I use the
email channel of the km).
After I added the sharing reference + the provider you
mentioned - the Built doesn't succeed but when deploying the
application - there is no error on the screen and it seems to work
properly - very weird.
Best Regards,
Ruthie.

Similar Messages

  • KM Task Scheduler , retrieve IPortalComponentRequest request

    Hello,
    I would like to use KM Task Scheduler :
    public void run( String id, Properties properties ) {
         IPortalComponentRequest request;
         String location = request.getPublicResourcePath();
    It's normal, it doesn't work ! How can I use IPortalComponentRequest for my schedule task ?
    Thanks a lot
    Best regards,
    Aurélien

    Aurelien,
    ok then, place your xml file into any package of your project. For example:
    In package called "my.package.files" place file "myfile.xml"
    then wherever within your code (let's assume you have an class called MySchedullerTask) call next structure:
    URL url = MySchedullerTask.getClass().getClassLoader().getResource("my/package/files/myfile.xml");
    and then work with the file.
    Just one more note: non Java files are not build always into application PAR acrhive.
    To do so, you have to check in option:
    "Yes, I want the non java sources includet into the portal components jars"
    You will find this option in NWDS:
    Window -> Preferences -> SAP Enterprise Portal -> Application Development Studio.
    regards
    mz

  • Access to IPortalComponentRequest in custom security manager

    Hi All,
    I am implementing a custom security manager. For my requirements, I need IPortalComponentRequest object in the security manager class. Can anyone give me a clue to get the request object in security manager implementation.
    Regards,
    Yoga

    Hi Romano,
    I tried this. Its returning mysapsso2 cookie and authentication_schema cookie. But not retuning any custom cookies added to the response from any other application.
    What I have tried to achieve is:
    1. When a user login and authentication suceeds, I will add a custom cookie to the response.
    2. Get the custom cookie added in the security manager class and do manipulations to check whether the user is authenticated.
    Using the method you have suggested, I was not able to get any custom cookies added in other applications.
    I tried the code using resource context(resource context obtained form IUser) as suggested in other threads,
    HttpServletRequest request = (HttpServletRequest) resourceContext.getObjectValue("http://sapportals.com/xmlns/cm/httpservletrequest");
    But this API returns null.
    Any way to achieve?
    Regards
    Yoga

  • IPortalComponentRequest in JSP from Abstract Portal component

    Hi,
    I have an abstract portal component like this:
    import com.sapportals.portal.prt.component.*;import com.sapportals.portal.prt.resource.IResource;public class Nav2 extends AbstractPortalComponent{    public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)    {          IResource jspResource = request.getResource(IResource.JSP, "jsp/Nav2.jsp");          response.include(request, jspResource);    }}
    Now in the called JSP, I want to use the request object.
    e.g.
    Hashtable env = new Hashtable();env.put("NavigationPrincipal",request.getUser());
    But, the request object is not available.
    How to I get the same object available here?

    Hi Praveen,
    Thanks for the solution but I get some error when I add
    String theCall = service2.createAbsoluteNavigateClientCall(myNavNode.getName(),IClientNavigationGenerator.SHOW_INPLACE,null,null);
    The code is like this:
    import com.sapportals.portal.prt.component.*;
    import com.sapportals.portal.prt.resource.IResource;
    import java.util.*;
    import com.sapportals.portal.navigation.*;
    import com.sapportals.portal.prt.runtime.*;
    import com.sapportals.portal.prt.session.IUserContext;
    import com.sapportals.portal.prt.util.StringUtils;
    public class Nav2 extends AbstractPortalComponent
        public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
              //IResource jspResource = request.getResource(IResource.JSP, "jsp/Nav2.jsp");
              //response.include(request, jspResource);
              response.write("hello india");
              Hashtable env = new Hashtable();
              env.put("NavigationPrincipal",request.getUser());
              INavigationService service = (INavigationService) PortalRuntime.getRuntimeResources().getService(INavigationService.KEY);
              INavigationNode myNavNode = service.getNodeByQuickLink(env,"help");
              IClientNavigationGenerator service2 = (IClientNavigationGenerator) PortalRuntime.getRuntimeResources().getService(INavigationService.KEY);
              String theCall = service2.createAbsoluteNavigateClientCall(myNavNode.getName(),IClientNavigationGenerator.SHOW_INPLACE,null,null);
    Can you please help out on this one?
    Thanks

  • Obtain reference to the IPortalComponentRequest in TagLib

    Hi,
    I created a custom Taglib in a Portal Component according to the tutorial http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40599e45-8cf9-2910-cbaa-d4cd8e15ff34?QuickLink=index&overridelayout=true.
    Now I need to obtain a reference to the IPortalComponentRequest in the doStartTag method.
    Does anybody know how to do this?
    Best regards,
    Dominik

    Hi,
    I found it by myself. To whom it may concern. You obtain a reference via:
    IPortalComponentRequest req= (IPortalComponentRequest) pageContext.getAttribute(javax.servlet.jsp.PageContext.REQUEST);
    Thanks and best regards,
    Dominik

  • IPortalComponentRequest.getLocale()  does not return country

    I am using EP6 SR1. I have specified the langauge & country in the users profile using personalization page. But when I try to get the name of the coutry I do not get anything back. I do get the langauge code. If I change the langauge then the new langauge shows in my log statements so that means it's not returning default langauge. Both country & display country are returned as empty strings. I am calling following code from my jspdynpage doinitialization() method.
    IPortalComponentRequest componentRequest = (IPortalComponentRequest)this.getRequest();
    Locale currentUserLocale = componentRequest.getLocale();
    LOG.debug("The display country of the current request is " + currentUserLocale.getDisplayCountry());
    LOG.debug("The country of the current request is " + currentUserLocale.getCountry());
    LOG.debug("The Langauge of the current request is " + currentUserLocale.getLanguage());

    You have to find an app that is only available in the US store.
    If the problem is on an iPad, etc:
    Go to a search engine (like google) on the iPad/iPhone Safari and type in abc app download. Then find find a link that says iTunes.apple.com/us/app/abc-player. Tap it, and it will access the App Store. Eventually, a box should pop up that asks you if you want to switch to the US store. Confirm that, and it should bring you back to the US store. You don't need to download the abc app.
    If on a computer:
    I haven't confirmed it yet, but I believe there is a flag icon at the bottom of the iTunes Store main page similar to the one at the bottom of this page that you can use to change your country.

  • IllegalStateException on IPortalComponentRequest.getNode()

    Hi,
    in the console ErrorLog I very often see an error like this one:
    [code]Jan 13, 2006 1:52:40 PM # Client_Thread_0      Fatal           Exception ID:01:52_13/01/06_0013
    com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : pcd:portal_content/content/timemanagement/N/com.zf.timemanagement.n.manager/com.zf.timemanagement.n/com.zf.timemanagement/zf_ich/meine_zeitwirtschaft/com.zf.timeCorrectionEmployee/com.zf.TimeaccountCorrectionNaviEmployee
    Component class : com.zf.timemanagement.k.Timeaccount.TimeaccountNaviiView
    User : F18765
         at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:853)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:311)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:191)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:217)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:601)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:301)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:191)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:670)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:229)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:555)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:415)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(InvokerServlet.java:126)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServlet.java:149)
         at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServlet(ServletsAndJspImpl.java:833)
         at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(RequestAnalizer.java:672)
         at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:314)
         at com.inqmy.services.httpserver.server.Response.handle(Response.java:173)
         at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServerFrame.java:1288)
         at com.inqmy.core.service.context.container.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:36)
         at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
         at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    Caused by: java.lang.IllegalStateException
         at com.sapportals.portal.prt.component.PortalComponentRequest.getNode(PortalComponentRequest.java:373)
         at com.sapportals.portal.prt.component.PortalComponentRequest.getResourceBundle(PortalComponentRequest.java:925)
         at com.zf.timemanagement.k.Reporting.TimeManagementErrorReport.readOutdataIntoTableViewModel(TimeManagementErrorReport.java:79)
         at com.zf.timemanagement.k.Reporting.TimeManagementErrorReport.getTableViewModel(TimeManagementErrorReport.java:65)
         at com.zf.timemanagement.k.Timeaccount.TimeaccountBean.getDayRangesError(TimeaccountBean.java:737)
         at com.zf.timemanagement.k.Timeaccount.TimeaccountBean.addDayRangesError(TimeaccountBean.java:690)
         at com.zf.timemanagement.k.Timeaccount.TimeaccountNaviiView$TimeaccountNaviDynPage.doGUI(TimeaccountNaviiView.java:706)
         at com.zf.timemanagement.k.Timeaccount.TimeaccountNaviiView$TimeaccountNaviDynPage.doProcessBeforeOutput(TimeaccountNaviiView.java:218)
         at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:106)
         at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:135)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:301)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:191)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:217)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:601)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:301)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:191)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:670)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:229)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:555)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:415)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(InvokerServlet.java:126)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServlet.java:149)
         at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServlet(ServletsAndJspImpl.java:833)
         at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(RequestAnalizer.java:672)
         at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:314)
         at com.inqmy.services.httpserver.server.Response.handle(Response.java:173)
         at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServerFrame.java:1288)
         at com.inqmy.core.service.context.container.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:36)
         at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
         at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)[/code]
    I guess that the IPortalComponentRequest is not in a valid state. Sometimes we store the request object in a bean. It could be that after a round trip the old request object is in the bean, which then will be used for further work.
    What do you think about such an error?
    Thank for your help. Regards
    Marcus

    Hi Marcus,
    all I can say from the stacktrace is that the problem is caused by TimeManagementErrorReport.java:79 where request.getResourceBundle() is called.
    From your description your analysis makes sense. A more propert solution would be not to put the request object in a bean but the objects you want to retrieve (from the request object) itself.
    Hope it helps
    Detlev

  • Get an IPortalComponentRequest  in an AbstractCollectionRenderer

    Hi,
    We have developed a custom collection renderer based on AbstractCollectionRenderer and we need to get the request.
    In EP5 we have found this solution:
    PortalServletRequestWrapper stubRequest = (PortalServletRequestWrapper) this.getProxy().getDynamicPage().getPageContext().getRequest();
    IPortalComponentRequest request = (IPortalComponentRequest) stubRequest.getAttribute("com.sapportals.portal.prt.component.IPortalComponentRequest");
    but now, in nw04 sp14 this code doesn't work because it generate a ClassCastException.
    Any ideas?
    Thank you in advance.

    HI Francesco,
    try
    IResourceContext context= list.get(0).getContext();
              Object o = context.getObjectValue("http://sapportals.com/xmlns/cm/httpservletrequest");
    To get the Servlet Request. Unfortunatelly I do not know the objectValue for the portal component request.
    Hope it helps anyway,
    Cheers,
    M.

  • How to identify PORTAL  name using IPORTALCOMPONENTREQUEST

    Hi All,
    We have created one portal application and we are trying to execute it from 3 different portals and trying to differentiate among portal names in the applications.Is there any mehod in the IPORTALCOMPONENTREQUEST or IPORTALCOMPONENTRESPONSE which will give me the portal name or url
    Thanks
    Bala Duvvuri

    Specify the property in the <component-profile> in portal app.xml
    for example
    <components>
        <component name="HeloTest">
          <component-config>
            <property name="ClassName" value="com.sap.training.wd.HeloTest"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="PortalNAME1" value="PORTAL1">
              <property name="personalization" value="dialog"/>
            </property>
            <property name="CachingLevel" value="User"/>
          </component-profile>
        </component>
      </components>
    When you open the Abstract Portal Component
    Please writr this peace off code
                    IPortalComponentContext contest= request.getComponentContext();
              IPortalComponentProfile profile= contest.getProfile();
              String AppURL=profile.getProperty("PortalNAME1");
    If you want to enter the Portal Name at Iview Property please use the
    <property name="personalization" value="dialog"/> property which will come in Iview Properties after you create Iview
    Thanks,
    Sreeni.

  • IPortalComponentRequest java.lang.ClassCastException

    Hi,
    I created an J2EE Web Module Project and an JSP file, where I pasted the following code:
    IPortalComponentRequest currentRequest =
    (IPortalComponentRequest) pageContext.getAttribute(javax.servlet.jsp.PageContext.REQUEST);
    But it throws an exception:
    java.lang.ClassCastException: null
    no more stacktrace, just that.
    As for the IPortalComponentRequest - I need it for the com.sapportals.portal.prt.contentconversion.XSLConverter, as it requires that kind of request object.
    I'm importing relevant classes at the top of the file with <%@ page import="....
    I know that it is possible to retrieve the IPortalComponentRequest inside a portal application but I can't change to an portal app, need to stick with J2EE Web Module (and Enterprise Application).
    Any ideas on how I can create/retrieve IPortalComponentRequest to pass it to XSLConverter?
    Regards,
    falnik

    Unfortunately, it's not working. It throws an exception:
    cannot resolve symbol
    symbol  : method getRequest ()
    location: class jsp_index1303999712539
    (IPortalComponentRequest) this.getRequest();
                               ^
    1 error
    Exception id: [000D609A21FF007B00000BD8000029DC0004A1FB17BCF89B]
    As for the jsp, I don't think it's relevant to this issue, it is invoked properly - something like http://server:serverPort/webApp/index.jsp

  • How to get IPortalComponentRequest Object?

    Hello all,
    I need to get a handle on the IPortalComponentRequest Object for the following code. A direct cast from HttpServletRequest to PortalComponentRequest throws a classcast exception. Is there any way I can get to know the name of the WD iview and its location in the pcd?
         NavigationEventsHelperService navHelperService = (NavigationEventsHelperService) WDPortalUtils.getServiceReference(NavigationEventsHelperService.KEY);
              IPortalComponentRequest request = (IPortalComponentRequest) httpRequest;
              INavigationNode navTargetNode = navHelperService.getCurrentNavNode(request);
    Thanks for your time,
    Raj Balakrishnan

    Hi Lohi,
    I didn't found the com.sap.ep.applicationdevelopment jar.
    I add the servlet.jar, but I think U didn't understand my problem.
    I work now on Web Dynpro Project, So I don't know how to handle the request object.
    Usually when I work on  DynPage Project I handle the request object from the parent Object:<b> IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();</b>
    Thanks,
    Maya.

  • HttpServletRequest (or IPortalComponentRequest) instance over ThreadLocal

    Hi,
    is there a way to retrieve the current HttpServletRequest (or IPortalComponentRequest) instance over a ThreadLocal variable in NW AS Java? I'm developing an external navigation connector which works with a remote system. Among other things I need the current authenticated user for the thread.
    Best regards,
    Fabian

    Hi,
    I want to reply myself in order to help other users running into the same problem. As far as I know today, the request can't be retrieved/is not put onto a ThreadLocal variable by the engine. The current user can be retrieved with this code
    UMFactory.getAuthenticator().getLoggedInUser();
    F.e. the logon ticket can be retrieved with
    (String) user.getTransientAttribute("com.sap.security.core.usermanagement","MYSAPSSO2_STRING");
    These keys are [not made publicly available|http://help.sap.com/javadocs/NW04s/current/ep/constant-values.html#com.sap.portal.pcm.attributes.IAttrPcmLaunch.ATTRIBUTE_EXT_LINK], so I can't say if this is supported or not. However, this is acceptable for my client.
    Best regards,
    Fabian

  • How to read XML content from IPortalComponentRequest and parse them

    Hi ,
    I have a portal application.The application has 2 components(Comp1,comp2).
    Comp1 is JspDynpage and Comp2 is AbstractPortalComponent.
    Comp1- has a iframe element which point to the external url and has a parameter return_url.
    retrun_url has a value as url to Comp2(http://ibm0343:50000/irj/servlet/prt/portal/prtroot/NewUrlProj.NewUrlComp)
    When an event occurs in the external site,i suppose to receive XML content in return_url(ie Comp2),how can i check using the request if the received content is XML and how do i parse them.
    I have already seen blogs from Prakash singh in which it refers a xml fixed location in webserver.

    Hi Detlev,
    i am reposting this once again as the previous
    reply didnt align good.
    Thanks for your reply.The scenario is that
    My portal application has to communicate with external GIS(Graphical information system)
    service provider client application.
    They say that i have to use iframe in my portal application.
    Here is the snipet of the iframe tags.
    <iframe
    id="Nedbrowser"
    name="Nedbrowser"
    width="100%"
    height="100%"
    frameborder="no"
    marginheight="0"
    marginwidth="0"
    scrolling="no"
    style="position:absolute; top:0; left:0; width:800; height:400; z-index:100; visibility:visible"
    src="http://nbg.nedg.nl/nbgint/NBG_INT_main.asp?action=CHART&datasource=NBGMV&product=INTERNET&size_x=300&size_y=300&result_frame=Results&
    result_url=http://ibm0343:50000/irj/servlet/prt/portal/prtroot/NewUrlProj.NewUrlComp&
    default_centre_x=256000&default_centre_y=471000&default_width=0.5">
    </iframe>
    <iframe
    id="Results"
    name="Results"
    width="100%"
    height="100%"
    frameborder="no"
    marginheight="0"
    marginwidth="0"
    scrolling="no"
    style="position:absolute; top:400; left:0; width:800; height:200; z-index:100; visibility:visible"
    src="about:blank">
    </iframe>
    When my portal application is started, comes the GIS map in the iframe with in my portal application.
    When the user clicks in the area of the map,Gis application returns xml data to the return_url.
    The reurn_url is my PortalAbstractComponent in which i have to parse the xml and use it for further processing in R3 system.

  • Connector Framework with IPortalComponentRequest

    Hi,
    I am using the following code to connect to BE system:
                   IConnection connection = null;
                   IConnectorGatewayService service = (IConnectorGatewayService) PortalRuntime.getRuntimeResources().getService(IConnectorGatewayService.KEY);
                   ConnectionProperties props = new ConnectionProperties(request.getLocale(),request.getUser());
                   String destination = Util.getBESystemID(request);
                   connection = service.getConnection(destination, props);
    I am getting ConnectorException in the function service.getConnection(destination, props)
    I am using 'Administrator' as portal user and 'nra' as BE system user and have no BE problems while getting the data from BE using JCo Client Service.
    Please let me know what the problem might be?
    This is first time im using connector service. I am coding for migrating to connector framework from Jco client service.
    Thanks for your help in advance.
    Regards
    Ramesh.

    Hi Ramesh,
    Using <i>JCA</i> has nothing to do with <i>JCO destinations</i>.
    It's a different way to connect.
    When you create an RFC Model in Web-Dynpro you use <i>JCO destinations</i>.
    When you program with <i>JCA</i> you use the definitions of the system you defined in
    System Admimistration -> System Configuration -> System Landscape.
    When opening this system, one of the options is 'Test Connection'.
    Hope that helps,
    Yoav.

  • AbstractPortalComponent IPortalComponentRequest redirect

    Hello,
    I have a simple AbstractPortalComponent comp. which I want to use to redirect to other URL.
    In function doOnNodeReady
    I added the redirect statement as
      arg0.redirect(URL);
    after creating an iview based on this component and make a "preview" on the iview for testing, its work fine.
    But when I try to run it though the TLN menu, nothing happens
    and the redirect doesn't work.
    What might be the problem? any idea will be appriciated.
    Thanks
    Ami

    Hi,
    Problem was solved. I saw in other thread that Isolation mode needs to be configure to URL and that solved it.
    Thanks
    Ami

Maybe you are looking for

  • Re Mapping your Creative Remote

    Hi everybody I recently bought a Creative X-FI surround 5.1 Pro USB soundcard, and I must say I found the remote quite amazing XD. The only bad part is the apps available.... so I googled a little : I found that VLC thread on how to remap for a speci

  • PB G4, 867 MHz, Titanium Loud fan and really hot base

    Hi All, Recently I just noticed that my powerbook's fan is extremely loud. Is this normal? I don't think the fan was this loud when I bought it 2 years ago. Also it gets pretty hot. Any help/advice/tips..etc, would help. Thanks! Also, will applecare

  • "No selectable item exist for purchase requisition I_Banfn"

    Dear all While creating Po system show a massage"no selectable item exist for purchase requisition I_Banfn" Please help.

  • Two instances same name and diferent homes

    Hi everyone,= I already read this interesting post: Creating two instances of same name in a single ORACLE_HOME ? After reading it I have the following question: Can this apply using the same ASM Instance but with diferent disk groups for each databa

  • Client in Visualbasic/C  to  JavaTM Web Services server

    Hi can I use client written in Visualbasic or C to access to JavaTM Web Services server. If yes does someone have source code for me? Thanks