Can AQ be used when running in IBM's WebSphere Application Server?

Hi,
We are using IBM WebSphere Application Server (WAS) but not planning to use MQSeries. We want to use Oracle AQ. Is it possible to run an app in WAS with Oracle AQ functionality being used?
Anyone out there is doing this?
Any info. is greatly appreciated!
Thanks.
Alex

If you ever find the answer, please let me know. I am trying to do the same with WebLogic but with little success. I have participated in the following discusiions:
http://newsgroups.bea.com/cgi-bin/dnewsweb?cmd=article&group=weblogic.developer.interest.jms&item=6218
http://marvel.oracle.com/pls/otn/f?p=17000:8:25148205767784132::NO::F17000_P8_DISPLAYID,F17000_P8_CRITERIA:40460583213,
If you are not using MDB in WAS or WAS MDB supports transacted session, then there is a good chance that you can use AQ/JMS. BTW, why don't you want to use MQ Series?

Similar Messages

  • Requirements for running SOA 11g on Websphere Application Server

    Hello All,
    Could somebody please provide me with the requirements needed to run SOA 11g applications on Websphere Application Server(WAS) like what version of WAS is required etc.
    Thanks

    The latest release of SOA Suite 11g 11.1.1.4.0 (PS3) is certified on Oracle Weblogic Server and IBM WebSphere Server. Please refer certification related information here -
    http://www.oracle.com/technetwork/middleware/ias/downloads/fusion-certification-100350.html
    Release 11.1.1.1.x to release 11.1.1.3.x are supported on Oracle Weblogic Server only.
    OAS 10g is not a supported application server for 11g Soa Suite.
    Regards,
    Anuj

  • What Runtime is Flash Builder using when running or debugging an AIR application?

    I just updated my AIR runtime to 3.0 and noticed that my AIR application doesn't work anymore (my logfile reports an Uncaught Error #1508). So I tried to debug it with Flash Builder, but when I run it there, everything works just fine. So I uninstalled the AIR runtime completely but noticed that I can execute my AIR app within Flash Builder still just fine. So the AIR runtime used within Flash Builder seems to be a different one than the systemwide installed AIR runtime. How Do I chose within Flash Builder which runtime to use and how do I update this runtime?

    When you use Flash Builder, it uses the copy of the AIR SDK that is inside the Flex SDK. This has a complete AIR runtime that is used for debugging. You can choose which AIR runtime to use by switching to a Flex SDK that has a different version of AIR. You can update any Flex SDK by copying the new AIR SDK into it, replacing any existing AIR files. (On a Mac there are some gotcha's here because copied folders are replaced not combined.)

  • ASP Web Forms Error: Session state can only be used when enableSessionState is set to true

    Hello,
    I am developing a custom application page for a custom Web Forms I am creating, which I plan on using for custom task form into SharePoint 2010 Foundation.
    Currently, I am trying to test it in Debug Mode using Visual Studio 2010 but when I am trying to use Sessions I get the error:
    Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included in the <configuration>\<system.web>\<httpModules> section in the application configuration
    I've already done this on trying to fix:
    On my page
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestForm.aspx.cs" Inherits="TestForm" EnableSessionState="True" %>
    And on my web.config
    <pages enableSessionState="true">..<httpModules>
    <remove name="Session" />
      <add name="Session" type="System.Web.SessionState.SessionStateModule, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
    </httpModules>
    Note: I am getting an error when I try to add <module> into web.config
    ASP .NET State Service is currently running.
    And the part where it keeps error is when in PageLoad, I try to set a List object something like this:
    List<object> myobject
    get
    if (Session["object"] == null)
    Session["object"] = new List<object>();
    return Session["object"] as List<object>;
    set
    Session["object"] = value;
    protected void Page_Load(object sender, EventArgs e)
    myobject= new List<object>();
    BUT the error still persists! I also try to restart IIS but still the error still happens.
    I am running out of ideas so can you help me out?
    Thank you!

    Could be your skype intercepting your requests at 80 port, in Skype options uncheck
    Or Your IE has connection checked for Proxy when there is no proxy
    Or your fiddler could intercept and act as proxy, uncheck it!
    Solves the above problem, It solved mine!
    HydTechie
    HydPhani

  • [svn] 1433: adding 'console' security constraint to MBeanServerGateway remote object for MBean tests and ds-console , used when running on Websphere with administrative security enabled.

    Revision: 1433
    Author: [email protected]
    Date: 2008-04-28 13:13:12 -0700 (Mon, 28 Apr 2008)
    Log Message:
    adding 'console' security constraint to MBeanServerGateway remote object for MBean tests and ds-console, used when running on Websphere with administrative security enabled. Should call setCredentials("bob","bob1") to use this RO.
    Modified Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/WEB-INF/flex/remoting-config.mods.xml
    blazeds/branches/3.0.x/qa/apps/qa-regress/WEB-INF/flex/services-config.mods.xml

    Hi,
    It seems that you were using Hyper-V Remote Management Configuration Utility from the link
    http://code.msdn.microsoft.com/HVRemote, if so, you can refer to the following link.
    Configure Hyper-V Remote Management in seconds
    http://blogs.technet.com/jhoward/archive/2008/11/14/configure-hyper-v-remote-management-in-seconds.aspx
    By the way, if you want to perform the further research about Hyper-V Remote Management Configuration Utility, it is recommend that you to get further
    support in the corresponding community so that you can get the most qualified pool of respondents. Thanks for your understanding.
    For your convenience, I have list the related link as followed.
    Discussions for Hyper-V Remote Management Configuration Utility
    http://code.msdn.microsoft.com/HVRemote/Thread/List.aspx
    Best Regards,
    Vincent Hu

  • Can getGeneratedKeys() be used when executing batches of statements?

    Hi all,
    this question was posted in this thread:
    Can getGeneratedKeys() be used when executing batches of statements?
    but unfortunately I didn't find the answered appropriate.
    That thread is now locked, so I would like to start it again here.
    This is a summary of the other thread:
    Can you retrieve keys generated by a batch of insert statements? The following code produces an ArrayIndexOutOfBoundsException from the Oracle T4CNumberAccessor.unmarshalOneRow() method (see stack trace at the bottom of this message).
    The code is:
    String sql = "INSERT INTO FOO (ID, NAME) VALUES (FOO_SEQ.NEXTVAL, ?)";
    String generatedColumns[] = {"ID"};
    PreparedStatement pstmt = connection.prepareStatement(sql, generatedColumns);
    pstmt.setString(1, "A");
    pstmt.addBatch();
    pstmt.setString(1, "B");
    pstmt.addBatch();
    pstmt.setString(1, "C");
    pstmt.addBatch();
    //EXCEPTION OCCURS HERE
    pstmt.executeBatch();
    The exception is:
    java.lang.ArrayIndexOutOfBoundsException: 22
    at oracle.jdbc.driver.T4CNumberAccessor.unmarshalOneRow(T4CNumberAccessor.java:190)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:610)
    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:216)
    at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:955)
    at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:10580)
    The only answer given was:
    "You should directly specify how big your batching is. For that reason you may use ExecutionContext where you can set setBatchingLimit(int) and setBatching(bool). This operation will tell execution context the size of supposed batching and also should be batching performed at all or not. You can add batching jobs but you can not execute the jobs without proper initialization of batching job size - it will fail with out of bounds."
    ExecutionContext is not something I found in jdbc drivers, so I'm a bit confused about this answer.
    Did anyone solve the problem?
    Thanks,
    Michele

    >
    We have the same problem. No solution so far.
    >
    I never found a definitive solution but testing seems to show that this is not possible.
    There is no code that can be written to get the generated keys if batching is used.
    This is because the 'getGeneratedKeys' method must be called on the prepared statement and would return the generated keys as a ResultSet object. But when batching there is only one prepared statement but multple sets of parameters, one for each batch entry.
    Thus there could only be one call to 'getGeneratedKeys' since there is only one prepared statement. This strongly implies that it is not possible to use 'getGeneratedKeys' when batching.
    See Retrieval of Auto-Generated Keys in the JDBC Dev guide
    http://docs.oracle.com/cd/B19306_01/java.102/b14355/jdbcvers.htm#CHDEGDHJ

  • AIR 3.8.0.440 / iOS: build fails with "ld: -pie can only be used when targeting iOS 4.2 or later"

    With AIR 3.8.0.440, iOS build with "adt -package -target ipa-ad-hoc" fails with a linker error:
    ld: -pie can only be used when targeting iOS 4.2 or later
    What's the correct option to suppress this error or does it need a fix for adt?
    In the app.xml,
    <key>MinimumOSVersion</key>
                <string>5.0</string>
    is already present in the iPhone InfoAdditions section.
    (Building the same app with AIR 3.8.0.370 is fine)

    Hi,
    Can you make sure that both your old ane and new ane are not present in your extensions directory.
    Also, how are you zipping/unzipping the ANE?
    If you are on a Mac, try these steps on the terminal:
    1) Create a new temp directory, say temp (mkdir temp)
    2) cd temp
    3) Copy the ane you need to make changes to into this directory.
    4) unzip nameofane.ane
    5) rm nameofane.ane
    6) Make changes to the platform.xml file using a text editor or vim
    7) cd to the temp directory again, (if you are now elsewhere)
    8) zip -r nameofane.ane .
    9) Copy the ane file created into your extensions directory, where you have placed the other extensions and then, package the IPA using adt.
    If you are on Win,
    1) Rename the .ane to .zip
    2) Extract the contents of .zip
    3) Make changes to platform.xml and save it.
    4) Go back to the directory where you extracted the files, select all the folders/files and right click to zip them back.
    5) Rename the .zip to .ane and then, package the IPA.
    It should work.

  • Session state can only be used when enablesessionstate is set to true.

    When I try to open up a certain webpage it says; Session state can only be used when enablesessionstate is set to true. What does it mean and what should I do?

    Contact the webmaster for that site and report the problem.

  • Problem with ANE - "ld: -pie can only be used when targeting iOS 4.2 or later"

    I'm trying to compile a simple AIR Mobile app for iOS, incorporating an ANE to support Localytics
    http://flashsimulations.com/2012/06/18/localytics-adobe-air-native-extension/
    Compilation fails with the message "ld: -pie can only be used when targeting iOS 4.2 or later"
    Surely 7.0 is later than 4.2! (I'm using Flex 4.6 - AIR 3.9 SDKS). Tried building with FDT and with Flash CC, and against earlier versions of the iOS SDK (6.0, 5.0).
    Any suggestions?

    thanks, but can you be more specific? Presumably I add something in this part:
        <iPhone>
            <InfoAdditions><![CDATA[<key>UIDeviceFamily</key>
                                                  <array>
                                                      <string>1</string>
                                                      <string>2</string>
                                                  </array>
                                                  <key>UIStatusBarStyle</key>
                                                  <string>UIStatusBarStyleBlackOpaque</string>
                                                  <key>UIRequiresPersistentWiFi</key>
                                                  <string>YES</string>]]></InfoAdditions>
            <requestedDisplayResolution>high</requestedDisplayResolution>
        </iPhone>

  • Policy Agent 2.1 for IBM WebSphere Application Server 5.0 can't install

    I install Policy Agent 2.1 for IBM WebSphere Application Server 5.0
    But Can't install success
    resone:
    Base Installation completed Successfully
    WebSphere 5.0 Agent ClassPath : C:/Sun/IdentityServer/j2ee_agents/lib/am_sdk.jar;C:/Sun/IdentityServer/j2ee_agents/lib/am_services.jar;C:/Sun/IdentityServer/j2ee_agents/lib/am_sso_provider.jar;C:/Sun/IdentityServer/j2ee_agents/lib/am_logging.jar;C:/Sun/IdentityServer/j2ee_agents/config/F__Program Files_WebSphere_AppServer_config_cells_tmbsp103_nodes_tmbsp103_servers_server1;C:/Sun/IdentityServer/j2ee_agents/locale
    WebSphere 5.0 Agent Boot ClassPath : C:/Sun/IdentityServer/j2ee_agents/lib/jdk_logging.jar
    WebSphere 5.0 Agent JVM options : -Damconfig=AMAgent -Dmax_conn_pool=10 -Dmin_conn_pool=1 -Dcom.iplanet.coreservices.configpath=C:/Sun/IdentityServer/j2ee_agents/config/F__Program Files_WebSphere_AppServer_config_cells_tmbsp103_nodes_tmbsp103_servers_server1/ums -Djava.util.logging.manager=com.sun.identity.log.LogManager -Djava.util.logging.config.file=C:/Sun/IdentityServer/j2ee_agents/config/F__Program Files_WebSphere_AppServer_config_cells_tmbsp103_nodes_tmbsp103_servers_server1/AMAgent.properties -Djava.protocol.handler.pkgs=com.ibm.net.ssl.internal.www.protocol -Dws.ext.dirs=C:/Sun/IdentityServer/j2ee_agents/lib
    The server.policy file was configured successfully.
    Global Security Settings Configured Successfully.
    sas.client.props file Configuration FAILED.
    soap.client.props file Configuration FAILED.
    sas.client.props /soap.client.props two file how to Configuration ??

    From your description, since the agent installs file with a different JRE, I would suspect it has something to do with the availability of JCE provider in the first JRE. By default, WebSphere's JRE is equipped with IBM JCE provider which is what the agent uses to encrypt the necessary
    information. If this provider is not configured correctly it could result in the error that you are seeing. Please check the WebSphere installation and make sure that the JRE used by it has the necessary IBM JCE provider configured. The java.security file for this should contain something like:
    security.provider.1=sun.security.provider.Sun
    security.provider.2=com.ibm.crypto.provider.IBMJCE
    security.provider.3=com.ibm.jsse.IBMJSSEProvider
    security.provider.4=com.ibm.security.cert.IBMCertPath
    security.provider.5=com.ibm.crypto.pkcs11.provider.IBMPKCS11
    Also, make sure that when you are installing the agent you specify the Java Home as prompted by the agent to point to the location where this JRE is installed. Typically this is under WebSphere/AppServer/java directory. HTH, Jerry

  • Can we Run 10g Forms & Reports without Application Server

    Currently We are using form 5 and reports 3.5
    we are willing to upgrade .
    we are told that we can upgrade only to 10g developer suit
    and for that Application Server is must
    Our requirement is for LAN based application only
    Do we have to go-in for application Server
    DOes the 10g forms and 10g reports have Form server /report server which can help us to run application using Browser but without IAS
    CK

    Chaand,
    for production environments you must run Forms and Reports through Oracle Application Server as there no longer is a client-server runtime. For development puposes tehre is a HTTP server in Oracle Developer Suite that is used to run both servers.
    Frank

  • JSP on IBM WebSphere Application Server 3.5.4

    Hi, Could pls. someone suggest what is required to be done to get a JSP working on IBM WebSphere Application Server.
    This is what I have tried so far:
    One of the directories on the app server is
    C:\WebServer\AppServer\hosts\default_host\examples\web
    When I place a JSP in the above path, it works fine (http://localhost/webapp/examples/xyz.jsp in the browser).
    Question:
    Where is webapp (as it appears in the URL) defined?
    Then, I go on to create new directories as follows
    C:\WebServer\AppServer\hosts\default_host\MyApps
    C:\WebServer\AppServer\hosts\default_host\MyApps\web
    Place a working JSP in C:\WebServer\AppServer\hosts\default_host\MyApps\web. And when I enter http://localhost/webapp/MyApps/xyz.jsp or http://localhost/MyApps/xyz.jsp in the browser, the JSP can't be located.
    What is required to be done (from mapping point of view) and where? Does anything pertaining to JSP need to be defined on the HTTP Web Server (not for JSP's I think). Where should I put the JSP file so that everything for the application could be grouped together and it will work as well.
    I have gone through other postings on this issue on this forum but they have been of little help.
    Any thoughts on how to get this working.
    Thanks

    I use IBM Visual Age 3.5 & 4 which contains a scaled down vesion of Websphere for running servlet and JSPs. I am very familiar with the intricacies of running web apps in in this scaled down environment. What I'm about to tell you may or may not apply to WAS but it should help you.
    You can't simply add a directory under default_hosts and expect a new web app to appear. Websphere only recognizes web apps that are set up properly in the servlet_engine file. Each server has it on servlet_engine file located in the properties directory. For the default server, the file is named default.servlet_engine. In that file you must add a new <webspher-webgroup> element as a child element to <websphere-servelet-host name="default_host">. I added a web app to my server and it looks like this.
    <websphere-webgroup name="second_app">
           <description>The second app</description>
           <document-root>$approot$/web</document-root>
           <classpath>$approot$/servlets$psep$$server_root$/servlets</classpath>
           <root-uri>/</root-uri>
           <auto-reload enabled="true" polling-interval="3000"/>
           <shared-context>false</shared-context>
      </websphere-webgroup>I can't remember if it automatically creates the directory structure for you now or not, but at any rate, this web app will be stored in c:\WebServer\AppServer\hosts\default_host\second_app with the enclosed web direrectory as your location for JSPs.
    One more thing to mention. For every web-app you create, there is a descriptor file similiar to the web.xml deployment descriptor you see in /WEB-INF for the servlet 2.2+ spec. In my case the file is name second_app/servlets/second_app.web_app. In the descriptor you would probably want to configure some settings specific to your web app such as servet registration, init parameters and which version of the jsp compiler to use.
    Since IBM came out with WAS 3.5 before the Servlet 2.2 spec went mainstream for Servlet Containers, WAS's configuration is quite unconventional. But, I found that the documentation that comes with WAS explained all these configuration quirks quite well.
    Hope this helps
    Steve

  • Error in EJB running on WebSphere Application Server v6

    Hi,
    I am getting the following exception when a transaction ends in
    Stateless Session EJB:
    [8/4/05 13:04:00:396 CDT] 0000004d LocalTranCoor W   WLTC0033W: Resource
    imssDS rolled back in cleanup of LocalTransactionContainment.
    [8/4/05 13:04:00:406 CDT] 0000004d LocalTranCoor W   WLTC0032W: One or more
    local transaction resources were rolled back during the cleanup of a
    LocalTransactionContainment.
    [8/4/05 13:04:00:456 CDT] 0000004d SystemOut     O Error en el servlet:
    CORBA TRANSACTION_ROLLEDBACK 0x0 No; nested exception is:
    org.omg.CORBA.TRANSACTION_ROLLEDBACK:
    javax.transaction.TransactionRolledbackException:  ; nested exception is:
    com.ibm.websphere.csi.CSITransactionRolledbackException:   vmcid: 0x0
    minor code: 0  completed: No
    [8/4/05 13:04:00:456 CDT] 0000004d SystemOut     O terminaTransaccion().
    Rollback
    [8/4/05 13:04:00:456 CDT] 0000004d SystemOut     O
    javax.servlet.ServletException: CORBA TRANSACTION_ROLLEDBACK 0x0 No; nested
    exception is:
    org.omg.CORBA.TRANSACTION_ROLLEDBACK:
    javax.transaction.TransactionRolledbackException:  ; nested exception is:
    com.ibm.websphere.csi.CSITransactionRolledbackException:   vmcid: 0x0
    minor code: 0  completed: No
    at HClinicaPPServlet.service(HClinicaPPServlet.java:597)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at
    com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1
    212)
    at
    com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.
    java:629)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2837)
    at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220)
    at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204)
    at
    com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681)
    at
    com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
    at
    com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(Ht
    tpInboundLink.java:421)
    at
    com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(Ht
    tpInboundLink.java:367)
    at
    com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.j
    ava:276)
    at
    com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscrimin
    aters(NewConnectionInitialReadCallback.java:201)
    at
    com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewCon
    nectionInitialReadCallback.java:103)
    at
    com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManage
    r.java:548)
    at
    com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java
    (Compiled Code))
    at
    com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java
    :934)
    at
    com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.jav
    a:1021)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1332)The EJB is being invoked from a servlet. The servlet calls three methods
    from the EJB, the first one initializes a database connection, the second
    one executes a query against a SQL Server database and the third method
    closes the connection. The exception occurs while calling the third method.
    The EJB was working fine in WebSphere Application Server 4.0, but we are
    helping this customer migrate to WebSphere Application Server 6, but this
    error arised.
    The EJB is defined as follows in the ejb-jar.xml deployment descriptor:
      <session id="HistClinicaPP">
       <ejb-name>HistClinicaPPEJB</ejb-name>
       <home>HistoriaClinica.HistClinicaPPHome</home>
       <remote>HistoriaClinica.HistClinicaPP</remote>
       <ejb-class>HistoriaClinica.HistClinicaPPBean</ejb-class>
       <session-type>Stateless</session-type>
       <transaction-type>Bean</transaction-type>
       <resource-ref id="ResourceRef_1123110667486">
        <description>
        </description>
        <res-ref-name>imssDS</res-ref-name>
        <res-type>javax.sql.DataSource</res-type>
        <res-auth>Application</res-auth>
        <res-sharing-scope>Shareable</res-sharing-scope>
       </resource-ref>
      </session>The ibm-ejb-jar-ext.xmi files contains the following:
      <ejbExtensions xmi:type="ejbext:SessionExtension"
    xmi:id="SessionExtension_1123174793374">
        <enterpriseBean xmi:type="ejb:Session"
    href="META-INF/ejb-jar.xml#HistClinicaPP"/>
        <beanCache xmi:id="BeanCache_1123175678367" activateAt="ONCE"/>
        <internationalization xmi:id="BeanInternationalization_1123175807173"
    invocationLocale="CALLER"/>
        <localTransaction xmi:id="LocalTransaction_1123174793374"
    boundary="BeanMethod" resolver="Application" unresolvedAction="Rollback"/>
      </ejbExtensions>I tried copying the configuration from WAS 4.0, the only piece of the 4.0.x
    descriptor missing in the ext file is <structure>, since I couldn't find a
    matching property in Rational Application Developer 6.0 for WAS 6.0. This is
    what the ibm-ejb-jar-ext.xmi in WAS 4.0 contains for this bean:
      <ejbExtensions xmi:type="ejbext:SessionExtension"
    xmi:id="SessionExtension_17" timeout="600">
        <enterpriseBean xmi:type="ejb:Session"
    href="META-INF/ejb-jar.xml#Session_9"/>
        <structure xmi:id="BeanStructure_17" inheritenceRoot="false"/>
        <beanCache xmi:id="BeanCache_17" activateAt="ONCE"/>
        <internationalization xmi:id="BeanInternationalization_17"
    invocationLocale="CALLER"/>
        <localTran xmi:id="LocalTran_17" boundary="BEAN_METHOD"
    unresolvedAction="ROLLBACK"/>
      </ejbExtensions>I am not an expert in EJBs, so I don't know how to correct this problem, any
    help would be appreciated.
    Thanks in advance,
    Jorge Gomez

    Hi,
    According to WAS 6 , every opened connection has to be commited (or rolledback) explicitly (didnt try autocommit) before closing. Even if all you have done with that connection is a SELECT Query.
    This has apparently solved the same problem I was getting. implement it and see whether it helps you.

  • Coldfusion 7.0 ear package running on websphere application server 6.1

    I try to run a coldfusion ear package on a webspehere 6.1
    application server. It all seems to install correct but when I try
    to open the specific url I get this error:
    Error 500: The Security service is not available.
    Does anyone know what is to be done here to get this ear file
    working.
    This ear file contains the complete coldfusion module as it
    seems and just a small simple script for testing reasons but it
    won't work.
    If anybody can help me with this it would be great.

    This would fall into the realm of anecdotal evidence.
    Business Objects XI 3.1 SP2 FP2.7
    Websphere Application Server 6.1 on Windows, have run environments with fix pack 19, fix pack 23, and fix pack 33 without Websphere related problems.  The list for supported Websphere platforms for Windows is the same as AIX.
    Now having said that, I would suspect that SAP does not test Business Objects with each of the available Websphere fix packs.

  • Add IBM WebSphere Application Server to Gird Control.

    I am trying add IBM Web sphere Application Server to grid control getting below error.
    No application servers were found on the host abc.com. If the port is SSL enabled, specify the port number and the Trusted Keystore file name.
    Grid control & Websphere are installed on same server.
    Can anyone help me out.
    Thanks in advance.

    Hyperion Analyzer 6.2.x supports IBM WebSphere 3.5.5 and 4.0.3 on Windows NT 4.0, Windows 2000, AIX 4.3 or Solaris 8. What operating system is running on your IBM iSeries server?

Maybe you are looking for

  • How do I return my mid 2011 MacBook Air to Factory Specifications? Can I use the built in Lion recovery and wipe my data from the hard disk by reformatting it?

    I want to trade in my old mid 2011 MacBook Air for a new MacBook Pro. After I have transferred my data to the new MacBook Pro, how do I reformat the hard disk to wipe all my data and return it to Factory specifications? Will the built in Lion recover

  • Xdebug 2.1.3-2 and netbeans issue

    After upgrading to 2.1.3-2 I encountered issues with debugging php code in netbeans 7.2 (netbeans kept loosing socket). Downgrading back to 2.1.2-1 saved the day. I am curious if I am just alone and if anybody found the way how to fix it eventually.

  • BILLING and PHANTOM CHARGES

    I have had verizon fios for about a year now. Every month I have had to contact them about charges for stuff I did not order. Movies channels and packages I did not order keep showing up. They put the MLB package on my bill and I had to call back 3 m

  • OPMN starup issue -

    Hi , We have two instances on Essbase server. epmsystem1 and epmsystem2. I am running the below commands at "../Middleware/user_projects/epmsystem1/bin" 1. When I use the below command and got the message as below. $ ./startEssbase.sh Starting Essbas

  • Restore incremental backup with rman

    Dear Friends can u tell me how to restore an incremental backup with rman? i backup my rman with statement below : 1. backup full database format '/oracle/PRD/sapbackup/%U'; the results was : -rw-r----- 1 oraprd dba 19006996480 Jun 10 12:08 0ojiit4n_