Troubleshooting the R/3 Connector framework resource adaptor

Hello,
I have opened this topic so I can monitor new questions and possible problems you may have regarding the R/3 connector.
Best regards,
Ran

Hi! I am trying to establish an initial connection to the backend using JCO (please see below). When I do JCO.Client client = poolEntry.getJCOClient(), I get an exception as shown in the trace. Would you happen to have any idea why this is happening?
Thanks,
Haseem
.................CODE FOLLOWS....................
IJCOClientService clientService = (IJCOClientService)PortalRuntime.getRuntimeResources().getService(IJCOClientService.KEY);
IJCOClientPoolEntry poolEntry;
try
poolEntry = clientService.getJCOClientPoolEntry("SAP_R3_HumanResources", request);
catch (Exception e)
logger.severe("ERROR: Exception reaised when calling getJCOClientPoolEntry()"+e.getMessage());
return;
JCO.Client client = poolEntry.getJCOClient();
................. STACK TRACE FOLLOWS..................
     at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:858)
     at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:310)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
     at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:209)
     at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:576)
     at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:300)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
     at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:669)
     at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:208)
     at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:532)
     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:665)
     at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:312)
     at com.inqmy.services.httpserver.server.Response.handle(Response.java:173)
     at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServerFrame.java:1229)
     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: com.sapportals.portal.prt.component.PortalComponentException: Exception during PageProcessorComponent.doContent()
     at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:139)
     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:300)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
     at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:209)
     at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:576)
     at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:300)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
     at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:669)
     at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:208)
     at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:532)
     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:665)
     at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:312)
     at com.inqmy.services.httpserver.server.Response.handle(Response.java:173)
     at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServerFrame.java:1229)
     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.reflect.InvocationTargetException: java.lang.NoClassDefFoundError
     at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnection.init(SAPCFConnectorManagedConnection.java:75)
     at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnectionFactory.createManagedConnection(SAPCFConnectorManagedConnectionFactory.java:62)
     at com.inqmy.services.eisconnector.server.ConnectionHashSet.match(ConnectionHashSet.java:250)
     at com.inqmy.services.eisconnector.server.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:138)
     at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorConnectionFactory.getConnectionEx(SAPCFConnectorConnectionFactory.java:136)
     at com.sapportals.portal.ivs.cg.ConnectorService.getConnection(ConnectorService.java:791)
     at com.sapportals.portal.ivs.cg.ConnectorService.getConnection(ConnectorService.java:737)
     at com.bi.hr.selfservices.paycheck.EmailManager$EmailJSPDynPage.initializeSAPConnection(EmailManager.java:219)
     at com.bi.hr.selfservices.paycheck.EmailManager$EmailJSPDynPage.onRejectButtonClicked(EmailManager.java:130)
     at java.lang.reflect.Method.invoke(Native Method)
     at com.sapportals.htmlb.page.DynPage.doProcessCurrentEvent(DynPage.java:172)
     at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:101)
     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:300)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
     at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:209)
     at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:576)
     at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:300)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
     at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:669)
     at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:208)
     at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:532)
     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:665)
     at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:312)
     at com.inqmy.services.httpserver.server.Response.handle(Response.java:173)
     at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServerFrame.java:1229)
     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)
[email protected]5 #

Similar Messages

  • Oracle Management Connector Framework

    Hi,
    I'm following a guide on using the Oracle Management Connector Framework to access information within OEM. I've installed OEM 10.2.0.3 and it is running fine. However i do not have the connecotr framework installed yet.
    The guide i am following says:
    "Download the Connector Framework installable files from OTN by clicking
    Downloads, then Enterprise Manager."
    But after going to the OTN site and following the links it takes me to the download for OEM again. Does anyone know where i can get the connector framework from?
    Many thanks,
    Lewis.

    OK. The framework comes with the EM Download or CD. So what you need is how to install or access it.
    See "Installing the Connector Framework" in this document
    Release 3
    http://download.oracle.com/docs/cd/B16240_01/doc/em.102/b32521/toc.htm
    http://download.oracle.com/docs/cd/B16240_01/doc/relnotes.102/b31145/toc.htm
    Release 2
    http://download-uk.oracle.com/docs/cd/B16240_01/doc/em.102/b32521/toc.htm
    http://download-uk.oracle.com/docs/cd/B16240_01/doc/relnotes.102/b31145/toc.htm

  • Connecting EP7.0 to iSeries backend system using the connector framework

    Hello All,
    We are trying to setup a backend connection in EP7.0 to an AS/400 Legacy database using the JDBC Connector framework.
    We use the driver and url syntax from OSS note 773401 "Configuring Portal JDBC System connection properties"
    Driver:
    com.sap.portals.jdbc.db2.DB2Driver
    URL: jdbc:sap:db2://<server>:<port>;DatabaseName=<database_name>
    When performing a connection check using the Support Platform, we can see on the legacy system that the connection is being established but for some reason the Portal doesn't get a confirmation and runs in to an endless loop...
    Does anyone have a experience with such a connection?
    Can we use the standard db2 driver class as mentioned in note 773401 or do we need to create/deploy our own?
    Thanks in advance
    Ron

    Hello All,
    We are trying to setup a backend connection in EP7.0 to an AS/400 Legacy database using the JDBC Connector framework.
    We use the driver and url syntax from OSS note 773401 "Configuring Portal JDBC System connection properties"
    Driver:
    com.sap.portals.jdbc.db2.DB2Driver
    URL: jdbc:sap:db2://<server>:<port>;DatabaseName=<database_name>
    When performing a connection check using the Support Platform, we can see on the legacy system that the connection is being established but for some reason the Portal doesn't get a confirmation and runs in to an endless loop...
    Does anyone have a experience with such a connection?
    Can we use the standard db2 driver class as mentioned in note 773401 or do we need to create/deploy our own?
    Thanks in advance
    Ron

  • Wanted 'Using Sap Adapter for Connector Framework' document

    dear friends
    I want to display ABAP reports in iView without Transaction iView.
    From the below forum link
    /community [original link is broken]
    i came to know i can get the help from 'Using Sap Adapter for Connector Framework' document, but the link is giving
    404
    The requested resource is not available.
    can anybody help me to find out the document
    thanx in advance
    please reply me at the earliest.
    kantha

    have a look here - should help:
    http://help.sap.com/saphelp_nw04s/helpdata/en/f2/db49421c0b3c54e10000000a1550b0/frameset.htm
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/f2/db49421c0b3c54e10000000a1550b0/frameset.htm">sap help portal</a>
    you may also download PDK, there are some samples in it.
    Best Oliver

  • Error in doing container managed sign on with Resource Adaptor

    Hi,
    I have developed a Resource Adaptor. I have written a jsp file using which I want to do container managed sign on. I have followed all the steps given on bea site.
    http://e-docs.bea.com/wls/docs81/secmanage/credential_maps.html#1100282
    I have created a user in default security realm. After that I deployed my Resource Adaptor file. I defined the credential mapping for this RA with user name defined in realm & EIS user name & password. I have not defined any security role & policy for this RA.
    When I deploy my web application which consist of single jsp & web.xml , I get the following error.
    <Sep 10, 02004 12:43.29.890 PM> : ExecuteThread: '13' for queue: 'weblogic.kernel.Default' : FN_IS_SpiManagedConnectionFactory: createManagedConnection: Entered into the method.
    <Sep 10, 02004 12:43.29.906 PM> : ExecuteThread: '13' for queue: 'weblogic.kernel.Default' : javax.resource.ResourceException: : Invalid arguments passed .
    <Sep 10, 02004 12:43.29.921 PM> : ExecuteThread: '13' for queue: 'weblogic.kernel.Default' : javax.resource.ResourceException: : Invalid arguments passed .
    This simply means that my Subject & ConnectionRequestInfo are null in createManagedConnectionFactory.
    When i define a security role & policy for my RA, I get the following error.
    <Sep 10, 2004 4:58:29 PM GMT+05:30> <Warning> <Connector> <BEA-190064> <Access has been denied to ISRA_ISCF - Application: while reserving a connection.>
    <Sep 10, 02004 4:58.29.428 PM> : ExecuteThread: '14' for queue: 'weblogic.kernel.Default' : javax.resource.spi.Applica
    ionServerInternalException: Access to resource adapterISRA_ISCFhas been denied.
    ResourceException ecnountered
    javax.resource.spi.ApplicationServerInternalException: Access to resource adapterISRA_ISCFhas been denied.
    at weblogic.connector.common.internal.ConnectionPoolManager.getConnection(ConnectionPoolManager.java:654)
    at weblogic.connector.common.internal.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:106)
    at com.filenet.is.ra.cci.FN_IS_CciConnectionFactory.getConnection(Unknown Source)
    here is my jsp code.
    try
                   ConnectionFactory connectionFactory = null;
                   Connection connection = null;
                   //Get the InitialContextFactory
                   Context context = new InitialContext();
                   //Perform JNDI Lookup
                   connectionFactory =(ConnectionFactory)context.lookup ("ISCF");
                   try
                        //ConnectionSpec connectionSpec = new FN_IS_CciConnectionSpec("SysAdmin", "camelot");
                        //connection = connectionFactory.getConnection(connectionSpec);
                        connection = connectionFactory.getConnection();
                        System.out.println("getConnection successful");
                   catch(ResourceException re)
                        System.out.println("ResourceException ecnountered");
                        re.printStackTrace();
                   catch(Exception re)
                        System.out.println("Exception ecnountered");
                        re.printStackTrace();
                   System.out.println("connection created");
                   FN_IS_CciInteractionSpec interactionSpec = new FN_IS_CciInteractionSpec();
                   interactionSpec.setFunctionName("GetWorkspaces");
                   RecordFactory recordFactory = connectionFactory.getRecordFactory();
                   MappedRecord mappedRecord = recordFactory.createMappedRecord("blank");
                   Interaction interaction = connection.createInteraction();
                   //Execute the interaction
                   IndexedRecord indexedRecord = (IndexedRecord)interaction.execute(interactionSpec, mappedRecord);
                   ListIterator list = indexedRecord.listIterator();
                   while (list.hasNext())
                        System.out.println((String)list.next() + "<br>");
                   System.out.println("Done<br>");
              catch (Exception e)
                   e.printStackTrace();
                   System.out.println(" Message = " + e.getMessage());
                   System.out.println(" toString = " + e.toString());
    here iam doing lookup of the connection factory & calling getConnection() method & simply executing an interaction.
    Can anyone help me what could be the possible cause of the problem.

    You might want to post this query to one of the websphere forums.
    - Binod.

  • [Forum FAQ] Introduce the Windows Essentials Connector software and checklist for its configuration issues

    Introduction
    The Connector software for the Windows Server Essentials OS connects the computers in your network to the Windows Server Essentials server. When you connect computers to the server via Connector
    software, it will help you to automatically back up the computers and monitor their health. Meanwhile, you will be able to configure and remotely administer the Windows Server Essentials server. The Connector software is installed when you connect a client
    computer to the server. You can start by typing http://<your_server_name>/connect
    Example: Windows 8.1 connects to Windows Server 2012 R2 Essentials
    1. Open the Dashboard on Windows Server 2012 Essentials, navigate to USERS tab. Right click and select Add a user account (Figure 1). Then follow the Add a User Account wizard to configure
    and add the user account (Figure 2).
    Figure 1: Add a user account -1
    Figure 2: Add a user account -2
    2. Logon the client computer, type the http://<your_server_name>/connect in IE. Then you will see the download page for Connector software (Figure 3).
    Figure 3:Download the
    Connector software
    3. Click Download software for Windows and download the Connect software (ComputerConnector), then run it.
    After restart automatically, please follow the Windows Server Essentials Connector Configuration Wizard (Figure 4 – Figure 7).
    Figure 4: Windows Server Essentials Connector Configuration Wizard -1
    Figure 5: Windows Server Essentials Connector Configuration Wizard -2
    Figure 6: Windows Server Essentials Connector Configuration Wizard -3
    Figure 7: Windows Server Essentials Connector Configuration Wizard -4
    4. When complete the configuration wizard and logon the client computer, you will be able to use the Launchpad (Figure 8).
    Figure 8: Launchpad
    5. Meanwhile, when you open Dashboard, will be able to find that the Windows 8.1 is listed under DEVICES. It will help administrators to manage the client computer (Figure 9).
    Figure 9: Clients listed in the Devices panel
    For Windows XP
    You can type http://<your_server_name>/connect in IE. Then the download page will appear (Figure 10).
    Figure 10: Download page
    However, it will encounter the error: “xxx.exe is not a valid Win32 application” (Figure 11).
    Figure 11: Error message on Windows XP
    Windows XP is not a supported OS for client computer. For more details, please refer to
    Get Connected in Windows Server Essentials.
    In addition, please note:
    Microsoft ended support for Windows XP on April 8, 2014. This change has affected your software updates and security options.

    Checklist for the configuration issues
    First of all, when we want to connect the client computers to Windows Server Essentials, please check if the date and time settings for the client computer is consistent with the server.
    Meanwhile, please also check the Regional and Language settings.
    Issue 1: Installation did not succeed
    When accept the license terms to continue in the configuration wizard, you may encounter the error (Figure 12).
    Installation did not succeed
    Windows Server Essentials Connector has not been installed because:
    Cannot download the package.
    Verify that your device is connected to the Internet, and then install the Windows Server Essentials Connector.
    Figure 12: Installation did not succeed
    Checklist:
    1. Verify the DNS client settings.
    2. Check the communication between DNS server and the client.
    3. Check if you can ping server via IP address and server name successfully
    Issue 2: Cannot connect this computer to the network (Network related)
    This computer is already connected to another Windows Server network. Before connecting this computer to the Windows Server Essentials network, you must remove this computer from the
    current network.
    To resolve this issue, contact the person responsible for your network.
    Figure 13: Cannot connect this computer to the network (Network related)
    Checklist:
    1. Check if the client computer is a member of another server network.
    2. Change the client computer to Workgroup via administrator. Then check if you can connect it to the new Windows Server Essentials network.
    Issue 3:
    Cannot connect this computer to the network (Account related)
    The computer cannot be connected to the server using the user name and password credentials provided. This may be because an existing computer account having name “ComputerName” was previously
    created using a different set of credentials. Rename this computer and then try to connect this computer to the server again, or contact your administrator to remove any old conflicting account.
    When you connect the client computer to server essentials with a new user account, please check if the client computer has been connected to the server essentials, and didn’t remove from
    Dashboard. You may encounter the following error.
    Figure 14: Cannot connect this computer to the network (Account related)
    Checklist:
    1. Check if the client computer has been connected to the server essentials, and didn’t remove from Dashboard.
    2. Remove the client computer from the Dashboard, then try again.
    Additional resource:
    Troubleshoot connecting computers to the server in Windows Server Essentials
    Windows 2012 Server Essentials ConnectComputer
    Troubleshooting

  • Issue with - Connector Framework  SAP EP 7.0

    HI
    Need assitance on usage of connector framework to connect to SAP R/3 using SSO.
    I am trying to call a BAPI from a jsp iView using sap connector framework.
    Release :  EP (SAP NetWeaver 7.0 (2004s) SPS 12).
    Steps I did so far :
    1. imported following jars in my project :
    a. activation.jar
    b. connector.jar
    c. GenericConnector.jar
    d. jaas.jar
    e. jta.jar
    f. portal_services_api_lib.jar
    2. declared import of class:
    <%@ page import = "com.sapportals.portal.ivs.cg.*" %>
    <%@ page import = "com.sapportals.connector.connection.IConnection" %>
    <%@ page import = "com.sapportals.connector.execution.structures.*" %>
    <%@ page import = "com.sapportals.connector.execution.functions.IInteraction" %>
    <%@ page import = "com.sapportals.connector.execution.functions.IInteractionSpec" %>
    3. appended portalapp.xml with :
      <application-config>
        <property name="SharingReference" value=",com.sap.portal.htmlb,com.sap.portal.pagebuilder,com.sap.portal.themes.lafservice,com.sap.portal.navigation.service,com.sap.portal.navigation.helperservice,com.sap.portal.license.runtime,com.sap.portal.common.commonservices,SAPJ2EE::library:com.sap.portal.common,com.sap.portal.ivs.connectorservice"/>
      </application-config>
    4. added following code :
         IConnectorGatewayService cgService = (IConnectorGatewayService) PortalRuntime.getRuntimeResources().getService(IConnectorGatewayService.KEY);
         IConnection connection = cgService.getConnection("ABC", request);
    <b>     IInteraction ix = connection.createInteractionEx();</b>
    5. Verfied connectivity of system alias ABC with connetion test from portal.
    When I test the repective iview after deployment it fails on the bold line with an error 'unable to deploy jsp'. I could verify that cgService and connection objects were initialized.
    Will appreciate expert comments/suggestions on the issue.
    Thanks and cheers,
    Amit.

    Hi,
    When you select that property, you get a value field in the bottom of the screen to enter the Cutom values.
    You can give the value there and click on the Set button.
    Also check the dbpool properties for this error code.
    Regards,
    Venkat

  • I have a new Bose sounddock with a lightning connector, but my iPod has the old style connector. Can I get an adapter to make them work together?

    I have a new Bose sound dock with a lightning connector but my iPod has the old style connector
    Can I get an adapter to make them work together?

    Alternatively...
    is this what you're after?
    If so, have a look here: http://www.amazon.co.uk/Lightning-female-30-pin-Dock-Cable-Adapter/dp/B00DZN3GZK /ref=pd_sim_sbs_ce_1
    or this one...
    http://www.amazon.co.uk/SANDBERG-440-45-Adaptor-Lightning-Connector/dp/B009KZZ3L C/ref=sr_1_16?ie=UTF8&qid=1382801610&sr=8-16&keywords=30+pin+to+lightning+adapto r
    Or google "lightning female to 30-pin dock male cable adaptor". The cruicial part is female lightning to male 30-pin ends.
    The Apple cable is a female 30-pin to male lightning end.

  • My ipod nano this morning has started to tell me the accessory (lightening to 30-pin adaptor) I use for playing it through my docking station is not supported. It worked fine up until last night. Does anyone know why this might be?

    My ipod nano this morning has started to tell me the accessory (lightening to 30-pin adaptor) I use for playing it through my docking station is not supported. It worked fine up until last night. Does anyone know why this might be?

    Clean any debris from the adapter, docking station connector and the connector on the Nano.

  • Needed classes for sap connector framework

    Hello,
    when i installed sap netweaver developer studio 2.0.5 i become all needed classes for sap connector framework?
    Or i have to install the pdk? What are in the pdk for developer studio because the needed wizards are there (portal, sap connector ...)
    Thanks,
    Frank

    Torben, try to use class finder plugin as described here /people/maksim.rashchynski/blog/2006/08/14/the-story-about-how-2-eclipse-plugins-helped-me-to-make-a-lot-of-points-on-sdn-forum
    To save you some time:
    C:\usr\sap\J2E\JC00\j2ee\cluster\server0\bin\ext\tcconnconnectorframework\*.jar
    C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\sap.com\com.sapportals.connectors.sap\connector\connectors\SAPCFConnector.rar\SAPCFConnector.jar

  • Ask the Expert: Configuration and Troubleshooting the Cisco Application Control Engine (ACE) load balancer

    With Ajay Kumar and Telmo Pereira 
    Welcome to the Cisco Support Community Ask the Expert conversation. This is an opportunity to learn and ask questions about configuration and troubleshooting the Cisco Application Control Engine (ACE) load balancer with Cisco expert Ajay Kumar and Telmo Pereira. The Cisco ACE Application Control Engine Module for Cisco Catalyst 6500 Series Switches and Cisco 7600 Series Routers is a next-generation load-balancing and application-delivery solution. A member of the Cisco family of Data Center 3.0 solutions, the module: Helps ensure business continuity by increasing application availability Improves business productivity by accelerating application and server performance Reduces data center power, space, and cooling needs through a virtualized architecture Helps lower operational costs associated with application provisioning and scaling
    Ajay Kumar  is a customer support engineer in the Cisco Technical Assistance Center in Brussels, covering content delivery network technologies including Cisco Application Control Engine, Cisco Wide Area Application Services, Cisco Content Switching Module, Cisco Content Services Switches, and others. He has been with Cisco for more than four years, working with major customers to help resolve their issues related to content products. He holds DCASI and VCP certifications. 
    Telmo Pereira is a customer support engineer in the Cisco Technical Assistance Center in Brussels, where he covers all Cisco content delivery network technologies including Cisco Application Control Engine (ACE), Cisco Wide Area Application Services (WAAS), and Digital Media Suite. He has worked with multiple customers around the globe, helping them solve interesting and often highly complex issues. Pereira has worked in the networking field for more than 7 years. He holds a computer science degree as well as multiple certifications including CCNP, DCASI, DCUCI, and VCP
    Remember to use the rating system to let Ajay know if you have received an adequate response.
    Ajay and Telmo might not be able to answer each question due to the volume expected during this event. Remember that you can continue the conversation on the Data Center sub-community discussion forum Application Networking shortly after the event.
    This event lasts through July 26, 2013. Visit this forum often to view responses to your questions and the questions of other community members.

    Hello Krzysztof,
    Another set of good/interesting questions posted. Thanks! 
    I will try to clarify your doubts.
    In the output below both resources (proxy-connections and ssl-connections rate) are configured with a min percentage of resources (column Min), while 'Max' is set to equal to the min.
    ACE/Context# show resource usage
                                                         Allocation
            Resource         Current       Peak        Min        Max       Denied
    -- outputs omitted for brevity --
      proxy-connections             0      16358      16358      16358      17872
      ssl-connections rate          0        626        626        626      23204
    Most columns are self explanatory, 'Current' is current usage, 'Peak' is the maximum value reached, and the most important counter to monitor 'Denied' represents the amount of packets denied/dropped due to exceeding the configured limits.
    On the resources themselves, Proxy-connections is simply the amount of proxied connections, in other words all connections handled at layer 7 (SSL connections are proxied, as are any connections with layer 7 load balance policies, or inspection).
    So in this particular case for the proxy-connections we see that Peak is equal to the Max allocated, and as we have denies we can conclude that you have surpassed the limits for this resource. We see there were 17872 connections dropped due to that.
    ssl-connections rate should be read in the same manner, however all values for this resource are in bytes/s, except for Denied counter, that is simply the amount of packets that were dropped due to exceeding this resource. 
    For your particular tests you have allocated a min percentage and set max equal to min, this way you make sure that this context will not use any other additional resources.
    If you had set the max to unlimited during resource allocation, ACE would be allowed to use additional resources on top of those guaranteed, if those resources were available.
    This might sound a great idea, but resource planning on ACE should be done carefully to avoid any sort of oversubscription, specially if you have business critical contexts.
    We have a good reference for ACE resource planning that contains also description of all resources (this will help to understand the output better):
    http://www.cisco.com/en/US/docs/interfaces_modules/services_modules/ace/v3.00_A2/configuration/virtualization/guide/config.html#wp1008224
    1) When a resource is utilized to its maximum limit, the ACE denies additional requests made by any context for that resource. In other words, the action is to Drop. ACE  should in theory silently drop (No RST is sent back to the client). So unless we changed something on the code, this is what you should see.
    To give more context, seeing resets with SSL connections is not necessarily synonym of drops. As it is usual to see them during normal transactions.
    For instance Microsoft servers are usually ungracefully terminating SSL connections with RESET. Also when there is renegotiation during an SSL transaction you may see RESETS, but this will pass unnoticed for end users. 
    2)  ACE will simply drop/ignore new connections when we reach the maximum amount of proxied connections for that context. Exisiting connections will continue there.
    As ACE doesn't respond back, client would simply retransmit, and if he is lucky maybe in the next attempt he will be able to establish the connection.
    To overcome the denies, you will definitely have to increase the resource allocation. This of course, assuming you are not reaching any physical limit of the box.
    As mentioned setting max as unlimited might work for you, assuming there are a lot of unused resources on the box.
    3)  If a new connection comes in with a sticky value, that matches the sticky entry of a real server, which is already in MAXCONNS state, then both the ACE module/appliance should reject the connection and that sticky entry would be removed.
    The client would at that point reestablish a new connection and ACE would associate a new sticky entry with the flow for a new RSERVER after the loadbalancing decision.
    I hope this makes things clearer! Uff...
    Regards,
    Telmo

  • Resource Adaptor with eDirectory Server

    Hi All,
    I am facing probme at the time of resource adaptor configuration with eDirectory Server on SIM. Did any one tired this configuration
    Here's the error
    "Error while preparing to examine resource NDS_Server_Adapter:<br />com.waveset.util.WSAuthorizationException: View access denied to Subject Reconciler on Resource: NDS_Server_Adapter"
    and
    com.waveset.util.WavesetException: Error trying to lookup LDAP object 'nduser7' javax.naming.InvalidNameException: nduser7: &#91;LDAP: error code 34 - Invalid DN Syntax&#93;
    NDS_Server_Adapter: Could not authenticate to the LDAP server '10.7.100.188'. ==> javax.naming.AuthenticationException: &#91;LDAP: error code 32 - NDS error: no such entry (-601)&#93;\n

    Hi All,
    I am facing probme at the time of resource adaptor configuration with eDirectory Server on SIM. Did any one tired this configuration
    Here's the error
    "Error while preparing to examine resource NDS_Server_Adapter:<br />com.waveset.util.WSAuthorizationException: View access denied to Subject Reconciler on Resource: NDS_Server_Adapter"
    and
    com.waveset.util.WavesetException: Error trying to lookup LDAP object 'nduser7' javax.naming.InvalidNameException: nduser7: &#91;LDAP: error code 34 - Invalid DN Syntax&#93;
    NDS_Server_Adapter: Could not authenticate to the LDAP server '10.7.100.188'. ==> javax.naming.AuthenticationException: &#91;LDAP: error code 32 - NDS error: no such entry (-601)&#93;\n

  • Resource adaptor

    I am trying to use the Resource Adaptor for IDM6 with Lotus Notes/Domino 7.x. Are there any issues?

    i'm writin a program to extract info from SAP but i can't find where download the JCO.jar , in SAP site you need a user and password but i don't have it, dou you have already de jar file? could you send me tha jar? or may be i have to purchase that product? pleas help me!!!!
    my addres is [email protected]

  • How to install Connector framework in WAS (j2ee)??

    I am connecting to mdm server through NWDS (ejb /dynpro) using connector framwork
    But i could not refer the package com.sapportals.connector.connection and sub sequent interfaces in that.
    I am basically dynpro guy and dont know how to use this connector framework.
    Please help in step by step installation of this for dev and runtime.
    thanks in advance.
    Hari.

    Hi
      To implement the connector framework, you should include the following jar files in your project, they are:
    <b>portal_services_api_lib.jar
    com.sap.portal.ivs.connectorservice_api.jar
    GenericConnector.jar</b>
    For the above jar files, check it under your NWDS IDE plugins folder
    (OR)
    If you have the Portal Development Kit installed on your portal server, you can find
    this library in Java Development --> Downloads --> Portal Libraries --> libraries.zip.
    Otherwise, look in:
    http://<server>:<port>/irj/servlet/prt/portal/prtroot/com.sap.
    portal.support.browse.default,
    and then follow this path:
    ROOT/WEBINF/
    portal/portalapps/com.sap.portal.ivs.connectorservice/lib
    Click the download link to download a zip file which contains this jar.
    Regards,
    Venkatesh. K

  • Version information for java  resource adaptor

    Hi,
    Iam developing a resource adaptor(RAR). I have deployed my RAR on app server. My problem is that i want to provide version information of my RAR. One way is that i do the same in log files which iam doing presently. Problem is that logging is disabled in most production environment due to performance reasons.
    Otherway is, instead of usual .log file, i write the version information in some .config file which I can create when my adaptor is loaded. Problem with this approach is that i can have mutiple RAR deployed on same app server connected to different instances of EIS. If app server has only single class loader, then this will be a problem as the RAR which is loaded later will override the previous info as only one copy of the file is created.
    Can anyone suggest me a possible way.
    Ashish

    There is noy way for you to write a simple message to the app server log file when the RAR is inited stating the version of the RAR? You also mentioned dumping the RAR version to a file. Why can't you simply write the RAR version to a unique file name by adding a date stamp or some other unique identifier so you don't overwrite the previous file? Maybe I'm missing something.

Maybe you are looking for

  • CRASH "Not enough memory to create clipboard. This should never happen."

    CRASH Error message: "Not enough memory to create clipboard. This should never happen." What the F??? SvK

  • IBook Space Bar not working

    Anyone know if this involves merely a keyboard cleaning or something else? This just started yesterday, and I shut down rather than put it to sleep, and then re-started, thinking it was just some electronic glitch. Still dealing with it today. Any ad

  • Issues In Profitability Analysis (Urgent Urgent...Plz)

    Dear Frends... 1.i want the <b>sales deduction account</b> should come into COPA,what are the assignments should i di????? 2. is it enough if i assign to cost center or else i have to assign to Profit center???? 3.can i activate any thing in OKB9???

  • TA48312 how to update Mac OS 10.5.8?

    Please help me. How to update my Mac OS 10.5.8 to new version?

  • Where is the actions I have recorded

    I have just recorded an action and give it the name "SNOW" . Having clicked on the 4 little lines in the top of the action panel so that I can save the action, and pass it on to friends. I find that the "Save Action .... " is greyed out !! I also fin