Does weblogic 5.1 support JTA ?

          Hi,
          I am interested in knowing if weblogic 5.1 support JTA.
          Though the EJB1.1 spec speaks of JTA, there is not mention of JTA in weblogic
          5.1 docs.
          THanks
          Jai
          

WLS 5.1 does support JTA, but it does not support XA or 2PC. These are
          supported in WLS 6.0 and later.
          -- Rob
          kumar J wrote:
          > Hi,
          >
          > I am interested in knowing if weblogic 5.1 support JTA.
          >
          > Though the EJB1.1 spec speaks of JTA, there is not mention of JTA in weblogic
          > 5.1 docs.
          >
          > THanks
          > Jai
          

Similar Messages

  • Does WebLogic 6.x support Solaris for Intel x86 platform?

    Does WebLogic 6.x support Solaris for Intel x86 platform?
    Thanks,
    Levi

    levi wrote:
    Does WebLogic 6.x support Solaris for Intel x86 platform?
    Thanks,
    See http://edocs.bea.com/wls/platforms/index.html - as far as I
    can tell, it is not supported.
    regards,
    Per Jessen

  • Does weblogic 5.1 support form based authentication of servlets

              Hi,
              Does weblogic 5.1 support form based authentication?
              If yes is any setup need to be done?
              <HTML>
              <BODY>
              This is a test for form based authentication
              <FORM action="j_security_check">
              <input type="j_name" value="hi">
              <input type="j_password" value="hi">
                   <input type="submit" value="hi">
              </FORM>
              </BODY>
              </HTML>
              If i submit a form to j_security_check, weblogic throws "404 file not found error".
              thanks
              

              you must add this to yor web.xml file:
              <login-config>
              <auth-method>FORM</auth-method>
              <realm-name>LDAPRealm</realm-name>
              <form-login-config>
              <form-login-page>/logon.jsp</form-login-page>
              <form-error-page>/logonerror.jsp</form-error-page>
              </form-login-config>
              </login-config>
              greetings
              "Cameron Purdy" <[email protected]> wrote:
              >Yes. You have to specify in web.xml per spec.
              >
              >Peace,
              >
              >--
              >Cameron Purdy
              >Tangosol, Inc.
              >http://www.tangosol.com
              >+1.617.623.5782
              >WebLogic Consulting Available
              >
              >
              >"antony" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >>
              >> Hi,
              >>
              >> Does weblogic 5.1 support form based authentication?
              >> If yes is any setup need to be done?
              >>
              >> <HTML>
              >> <BODY>
              >> This is a test for form based authentication
              >> <FORM action="j_security_check">
              >> <input type="j_name" value="hi">
              >> <input type="j_password" value="hi">
              >> <input type="submit" value="hi">
              >> </FORM>
              >> </BODY>
              >> </HTML>
              >>
              >> If i submit a form to j_security_check, weblogic throws "404 file not
              >found error".
              >>
              >> thanks
              >>
              >
              >
              

  • Does Weblogic 5.1 support the STANDARD javax.servlet.request.X509Certificate attribute?

    Hello!
    My strong suspicion from looking at the Weblogic SSL documentation on
    http://e-docs.bea.com is that WebLogic SSL does not put any client-side
    certificates into the 'javax.servlet.request.X509Certificate' attribute
    of a servlet's HttpServletRequest (as an array of
    java.security.cert.X509Certificate instances).
    Currently, it appears that Weblogic uses a proprietary attribute name
    ('weblogic.security.somethingOrOther') and returns instances of the
    deprecated Java 1.1 java.security.Certificate class.
    When will Weblogic support this aspect of the Servlet 2.2 specification,
    if it doesn't already?
    Regards,
    James W.

    I just verified this with the Java doc. Either the Java documentation is
    incorrect or we are still using the older version of the certificate
    encoding class. I will check on this, we may have fixed it in a subsequent
    service pack.
    Thanks,
    Michael
    Michael Girdley
    Product Manager, WebLogic Server & Express
    BEA Systems Inc
    "James Webster" <[email protected]> wrote in message
    news:[email protected]..
    Hello!
    My strong suspicion from looking at the Weblogic SSL documentation on
    http://e-docs.bea.com is that WebLogic SSL does not put any client-side
    certificates into the 'javax.servlet.request.X509Certificate' attribute
    of a servlet's HttpServletRequest (as an array of
    java.security.cert.X509Certificate instances).
    Currently, it appears that Weblogic uses a proprietary attribute name
    ('weblogic.security.somethingOrOther') and returns instances of the
    deprecated Java 1.1 java.security.Certificate class.
    When will Weblogic support this aspect of the Servlet 2.2 specification,
    if it doesn't already?
    Regards,
    James W.

  • Does WebLogic 5.1 Support EAR Files

    In the WebLogic 5.1 online documentation I have been able to find a section
    on Web Application (WAR) examples, but I have not found any reference to
    support for Enterprise Application (EAR) examples using the search
    capabilities implemented with the BEA e-docs web pages.
    Are EAR files supported, or must we make do with WAR files? If EAR files
    are supported, please point me to the appropriate section of the online
    documentation.
    Thanks.

    John,
    I forgot to mention that the case I'm describing below is when I tried to use a
    web application in WebLogic 5.1 service pack 4. No one from BEA has attempted to
    solve the problem yet. Supposedly I have a sales guy trying to get me some
    support.
    Steve
    "Steven D. Wilkinson" wrote:
    John,
    That wouldn't suprise me because if you pass classes between servlets and JSPs
    in the HttpServletRequest object you get the dreaded ClassCastException. The
    problem is that the utility class that I'm passing is in the class path of the
    web application and the servlet has already loaded it into the JVM, then the
    JSP tries to load it. Well since WebLogic does funky stuff with the class
    loader and since the ClassLoader for Servlets is not the same as for Servlets
    you get the ClassCastException. Oh well, hopefully Tech Support will try to
    fix this.....
    Good luck....
    Always remember when BEA says that WebLogic is compliant to a spec that only
    means that they are for the things they have tested, not the whole spec.
    Humm.... Wonder if IPlanet Application Server would have this problem? :->
    Steve
    "John J. Feigal" wrote:
    In the WebLogic 5.1 online documentation I have been able to find a section
    on Web Application (WAR) examples, but I have not found any reference to
    support for Enterprise Application (EAR) examples using the search
    capabilities implemented with the BEA e-docs web pages.
    Are EAR files supported, or must we make do with WAR files? If EAR files
    are supported, please point me to the appropriate section of the online
    documentation.
    Thanks.--
    Steven D. Wilkinson
    [email protected]
    Steven D. Wilkinson
    [email protected]

  • Does WebLogic 6.1 support client mode of MQ ?

    I know WebLogic 6.1 is not supported yet. But we're still using it and plan to upgrade.
              AS-IS: WebLogic 6.1sp1 and IBM MQSeries 5.2 now. (using binding mode and XA)
              TO-BE: WebLogic 10 and WebSphere MQ 6.02 (using client mode and XA)
              We plan to upgrade MQ first, so, we need to know could WebLogic 6 supports to use client mode and XA with MQ 6.0. I only know WebLogic 8.1 is ok, but I cannot find document for WebLogic 6.
              btw, is there any suggestion for this upgrade ?

    Hi,
              I can think of a few things worth noting:
              (A) I don't recall there being any specific support for MQ XA in 6.1SP1 - not even in MDBs. I think its likely that your current app just calls the MQ APIs directly and manually enlists MQ with the current transaction. This is all outside of WebLogic's control and will still work. (See the interop FAQ link below for an explanation of manual enlistment.)
              (B) Since 6.0, we've added a significant set of features to aid with foreign JMS vendor integration, particularly in the area of transparent XA integration, and we've also upgraded WebLogic JMS in general. These three links are probably a good place to get started if you care to review them:
              http://edocs.bea.com/wls/docs100/jms/interop.html
              http://edocs.bea.com/wls/docs100/jms_admin/intro.html#jms_features
              http://edocs.bea.com/wls/docs100/messaging.html
              (C) Very recently, I've heard that there have been some problems integrating WebLogic with MQ 6.0's "JMS 1.1 specification only" jars. These problems are being addressed or already have been addressed in newer releases but I doubt they've been looked at for version 6.0. Since its likely you're not planning to use the JMS 1.1 APIs in the very near term, I think this should not be a problem for you - you can just make sure to use MQ 6.0's JMS 1.0.2 jars.
              Hope this helps,
              Tom

  • Does Weblogic 8.1 support JDK 1.5

    Dear All,
    I tried to use JDK 1.5 with weblogic 8.1 but I couldn't. Can I do this. When I change the JAVA_HOME to be JDK 1.5 I got the following error while weblogic tries to initialize:
    The WebLogic Server did not start up properly.
    java.io.InvalidClassException: javax.management.MBeanAttributeInfo; local class
    incompatible: stream classdesc serialVersionUID = 7043855487133450673, local class serialVersionUID = 8644704819898565848
    Anyone can help...
    Regards,
    Fahad

    Your crash could be solved by the fix for [6579892|http://bugs.sun.com/view_bug.do?bug_id=6579892], which is reported as being in progress.
    Also of interest is [6372116|http://bugs.sun.com/view_bug.do?bug_id=6372116], which would certainly make your problem go away. Unfortunately, this was fixed in 5.0 and brought forward, but not backported to 1.4.2, so it doesn't help you. You could add a comment and vote for this one to raise the awareness of the issue.

  • Does Weblogic 8.1 supports jdk 1.3x?

    Do you know if it's officially supported, if so, has any one tried it.
    Thanks in advance
    Van

    Not supported, imagine it will not work due to JAAS differences betwen 13
    and 14.
    mbg
    "Van" <[email protected]> wrote in message
    news:3ef748ac$[email protected]..
    >
    Do you know if it's officially supported, if so, has any one tried it.
    Thanks in advance
    Van

  • Does weblogic server supports JSP tag pooling

              We use lot of Custom Tags in our app, we want improve the performance of JSP pages.
              Does Weblogic JSP engine supports JSP Tag Pooling similar to what JASPER (Tomcat
              JSP Engine) supports.
              If not, is there any way to plug-in my own Tag Pooling classes into JSP Engine.
              Thanks
              Ramesh
              

    This type of questions are appropriate for the Forms discussion forum.
    raghu

  • Does Siebel 8.1 Supports Hijri or Arabic Calender ?

    Dear Sir,
    Does Siebel 8.1 Supports HIjri or Arabic Calender ?
    I have Insurance application in my company.I have Account screen,in this account screen one field has created called Date so for this date Field I want Arabic Calender.Does It possible in Siebel 8.1.If it is possible in siebel 8.1 then please give me the details.
    please reply me soon.I am waiting for your Reply.
    Thankx & Regards
    Ahmed.
    Edited by: 857690 on Jan 15, 2012 1:27 AM

    Sorry, the question is
              Does Weblogic 8.1 supports "referral"?

  • Does Weblogic server 9.2 provide support for CRL checking

    Does Weblogic server 9.2 provide support for CRL checking?

    No, but you can create a custom CertPath provider for your own implementation.
    Mike
    Weblogic/J2EE Security Blog: http://monduke.com

  • Does Weblogic server 8.1 support "LIMIT and OFFSET" in EJB QL?

    hi,
    Can any one tell me does 8.1 server support "limit" and "offset" keywords in EJB-QL?
    I tried to define a finder method in the workshop with the following syntax:
    @ejbgen:finder ejb-ql="SELECT OBJECT(o) from EmpBean OFFSET ?1 LIMIT ?2" generate-on="Local" signature="Collection findEmp(java.lang.Integer st,java.lang.Integer en)"
    I get the following error
    ERROR: ERROR: Error from ejbc: [EJB:011017]Error while reading 'META-INF/weblogic-cmp-rdbms-jar.xml'. The error was:
    ERROR: Query:
         EJB Name: EmpBean
         Method Name: findEmp
         Parameter Types: (java.lang.Integer, java.lang.Integer)
    SELECT OBJECT(o) from EmpBean OFFSET =>> 1 <<= LIMIT 2
    EJB QL Parser Error.
    39: unexpected token: 1
    What am I doing wrong?
    thanks

    <p>I could not find any documentation that suggested LIMIT or OFFSET where supported. Some of our developers needed to use limit, in the end all I could suggest was using a dynamic query and setting the maximum number of results see here
    .</p>
    <p>
    Hussein Badakhchani</br>
    </p>

  • Does Weblogic Server 5.1 supports RedHat Linux 6.2?

    Hello All,
    Does Weblogic Server 5.1 supports RedHat Linux 6.2?
    Best Regards,
    Samuel Yung
    [email protected]

    FYI.
    I am running RH 6.2 and Weblogic 5.10 with no problems.
    w/Apache 1.3.12
    Only using WL for EJBs and jdbc pool at this time. So your milage may vary.
    Michael Girdley wrote:
    No, not yet. Version 6.0 will.
    The platform support page for WebLogic Server is located at:
    http://www.weblogic.com/platforms/index.html
    This page has the latest and greatest information on the platforms that
    WebLogic is certified and supported on.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "Samuel Yung" <[email protected]> wrote in message
    news:[email protected]..
    Hello All,
    Does Weblogic Server 5.1 supports RedHat Linux 6.2?
    Best Regards,
    Samuel Yung
    [email protected]
    /\/\i|<e
    Mike Kincer
    Solutions Developer/Engineer
    Atlas Commerce "ebusiness evolved"
    Office phone: +1-607-741-9988
    mailto:[email protected] [http://www.atlascommerce.com]

  • Does Weblogic Server 5.1 supports RedHat Linux 7?

    Does Weblogic Server 5.1 supports RedHat Linux 7?
    Thanx in advance.

    FYI.
    I am running RH 6.2 and Weblogic 5.10 with no problems.
    w/Apache 1.3.12
    Only using WL for EJBs and jdbc pool at this time. So your milage may vary.
    Michael Girdley wrote:
    No, not yet. Version 6.0 will.
    The platform support page for WebLogic Server is located at:
    http://www.weblogic.com/platforms/index.html
    This page has the latest and greatest information on the platforms that
    WebLogic is certified and supported on.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "Samuel Yung" <[email protected]> wrote in message
    news:[email protected]..
    Hello All,
    Does Weblogic Server 5.1 supports RedHat Linux 6.2?
    Best Regards,
    Samuel Yung
    [email protected]
    /\/\i|<e
    Mike Kincer
    Solutions Developer/Engineer
    Atlas Commerce "ebusiness evolved"
    Office phone: +1-607-741-9988
    mailto:[email protected] [http://www.atlascommerce.com]

  • Does WebLogic Server 8.1 supports ejb2.1(timer service)

    1.does WebLogic Server 8.1(SP5) supports ejb2.1 (timer service)?
    2. does ejb 2.0 support timer service?

    Hi,
    1. No, EJB Timer support was added in WLS 9.0.
    2. No, EJB Timers were introduced in EJB 2.1.
    - Matt

Maybe you are looking for