Weblogic Enterprise 5.1 and threads

I know when building servers based on WLE 4.2 in was a big no-no to link in threading libraries like pthread and thread. Is this still the case in Weblogic Enterprise 5.1?

According to the product information, WLE 5.1 does not support Oracle 8.1.6, it
only goes up to
Oracle 8.1.5. But in general, I thought that with oracle there are 2 sets of
libraries, one for threads and
one for non-threaded support. You need to use the correct one, in the case of
WLE, that would be the
non-threaded one.
MAS
Paul Power wrote:
Thanks Mary,
Do you know of any customers who have managed to work
with Oracle 8.1.6 without linking with the thread libraries ?
cheers,
P.
Mary Ann Slavin wrote in message <[email protected]>...
WLE 5.1 C++ is not a threaded product. Compiling WLE 5.1 C++ with thread
libraries is not supported and will give unpredictable results for allprograms.
This should not be done.
Paul Power wrote:
Hi Mary,
Is it a dictate from BEA that you "can't" link with thread libraries ?
We are using WLE 5.0.1 ( and some 5.1) with Oracle 8.1.6 on
Solaris and found that we had to link using -lthread in order to use
Oracle (not the case in 8.1.5)
We don't actually attempt to try any threading in our apps and
have not had any problems yet but if it's the case that there
are known problems using threads we'd love to hear about
them :-)
As an aside, is Oracle 8.1.6 cleared for use by WLE ?
P.
Mary Ann Slavin wrote in message <[email protected]>...
No matter how WLE 5.1 C++ is used, it cannot be compiled with threadedlibraries, so that restriction remains.
A WLE C++ server can act as a client and call a WLE Java Server. Doingthis does not require the WLE C++ server to be compiled with threaded
libraries.
Wendell MacKenzie wrote:
Does this also mean if CORBA C++ servers want to invoke threaded
JavaServers
the same DEFECT will be prevent this from being accomplished?
Mary Ann Slavin wrote:
WLE 5.1 does not have threads in the C++ clients or servers. Java
threads are naturally occuring in the language, however, there are WLE
restrictions on what can be done in the
Java threads. These are documented.
jd wrote:
I know when building servers based on WLE 4.2 in was a big no-no
to
link in threading libraries like pthread and thread. Is this still thecase
in Weblogic Enterprise 5.1?
>

Similar Messages

  • WebLogic Enterprise 6.0 and Tuxedo 8.0

    hi folks,
    I have to propose a customer an BEA back-end processing solution with their
    web services, but I've got confused in choosing between WebLogic Enterprise
    6.0 and Tuxedo 8.0. So I need to know what is the different things during
    these products. And, are they an identical product and license ?
    Thanks in advance,
    Apichai H.

    Peter,
    Thank you so much.
    Apichai H.
    "Peter Holditch" <[email protected]> wrote in message
    news:[email protected]..
    Apichai,
    The latest release of WebLogic Enterprise is a bundle of the WebLogicServer
    product (for java programming) and the Tuxedo 8.0 product (for COBOL/C/C++
    XATMI programming and C++/ CORBA programming) with a connector betweenthe
    two.
    Regards,
    Peter.
    Got a Question? Ask BEA at http://askbea.bea.com
    The views expressed in this posting are solely those of the author, andBEA
    Systems, Inc. does not endorse any of these views.
    BEA Systems, Inc. is not responsible for the accuracy or completeness ofthe
    information provided
    and assumes no duty to correct, expand upon, delete or update any of the
    information contained in this posting.
    Apichai Homrossukhon wrote:
    hi folks,
    I have to propose a customer an BEA back-end processing solution with
    their
    web services, but I've got confused in choosing between WebLogicEnterprise
    6.0 and Tuxedo 8.0. So I need to know what is the different thingsduring
    these products. And, are they an identical product and license ?
    Thanks in advance,
    Apichai H.

  • Weblogic 10gR3 standard edition and enterprise edition

    Difference between weblogic 10gR3 standard edition and enterprise edition ??

    WebLogic Server software is the same in all of the various download distributions available that vary on platform and 32/64 bit architecture. However, which features are licensed for use vary by the edition customers license, which is covered here:
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14860/products.htm#i1041725
    That link is for WLS 11g, but it applies generally to WLS 10.3.0 as well.

  • Application deployment order with weblogic-ejb-jar.xml and jndi-name

    I have two applicatation working on Weblogic server v. 10.3.6.
    First of them creating one ejb stateless bean and creates JNDI maping for it (in weblogic-ejb-jar.xml file):
    <weblogic-enterprise-bean>
         <ejb-name>ConfigMenegerBean</ejb-name>
         <stateless-session-descriptor>
         <stateless-session-descriptor>
              <business-interface-jndi-name-map>
              <business-remote>package.ConfigurationSessionRemote</business-remote>
              <jndi-name>ConfigMeneger</jndi-name>
              </business-interface-jndi-name-map>
         </stateless-session-descriptor>
         <enable-call-by-reference>true</enable-call-by-reference>
         <jndi-name>ConfigMeneger</jndi-name>
    </weblogic-enterprise-bean>
    Second appication have to refer for this bean by JNDI using spring been lookup :
    <jee:jndi-lookup id="configManager" jndi-name="ConfigMeneger"/>
    I changed deployment order parameter for both apllication(first=100 and second=500) in order to first app start first and share bean by jndi to another application. Unfortuantelly I got an error :
    javax.naming.NameNotFoundException: Unable to resolve 'ConfigMeneger'. Resolved ''; remaining name 'ConfigMeneger'
    How can I configure deployment order that first application make jndi mapping for bean, before the second application will use it ?

    Ok in a way I have solved my problem (even if I am not completely satisfied by the way on how to proceed...). So thanks to message "JBuilder7.0 and Weblogic6.1" on EJB sun forum :
    http://forum.java.sun.com/thread.jsp?thread=285735&forum=13&message=1255488
    I have tried the following actions (mentionned in the other forum messages):
    - To preserve changes to weblogic*.xml, the safest way is to change the ejb-borland.xml.
    (I am not sure that I have applied this advice correctly, because I suppose that syntax is not similar in weblogic file or borland file).
    And you can MANUALLY update the weblogic file in your JAR archive.
    1. Open the EJB JAR file in Winzip and extract the weblogic-ejb-jar.xml file, so that a copy exists in your
    project directory.
    2. Open this file (in Notepad), add the WebLogic specific information, and then save the file.
    3. Now, when you are finished with the build cycle and are ready to deploy, you may open the EJB jar file
    and swap in the weblogic-ejb-jar.xml file."
    Good Luck.

  • Weblogic.ejb20.locks.LockTimedOutException and pb with weblogic-ejb-jar.xml

    Hello All,
    I get a strange problem when I try to log in to the J2EE application based on EJBs:
    weblogic.ejb20.locks.LockTimedOutException
    I see that I can add an option to the weblogic-ejb-jar.xml file, and I hope that can help for my previous problem:
    <weblogic-enterprise-bean><stateful-session-descriptor>
    <allow-concurrent-calls>true</allow-concurrent-calls>
    </stateful-session-descriptor></weblogic-enterprise-bean>
    But I can not edit the weblogic-ejb-jar.xml file under JBuilder ! the file is probably read-only, but I do not know how to change the property. I can not find this file directly under JBuilder directories.
    So I have tried to open the module.jar that contained this file. I have checked: the file is not read-only. I have modified directly manually the weblogic-ejb-jar.xml file, but now I get this error in Jbuilder when I open the weblogic-ejb-jar.xml file:
    URL: Transformation requires a XSL StyleSheetThe Node does not have a style sheet associated with itEither add a style sheet using the Add stylesheets button on the toolbar or add a valid XSL Processing instruction to the document directly
    In conclusion, what should I do to be able to modify the weblogic-ejb-jar.xml file properly ??

    Ok in a way I have solved my problem (even if I am not completely satisfied by the way on how to proceed...). So thanks to message "JBuilder7.0 and Weblogic6.1" on EJB sun forum :
    http://forum.java.sun.com/thread.jsp?thread=285735&forum=13&message=1255488
    I have tried the following actions (mentionned in the other forum messages):
    - To preserve changes to weblogic*.xml, the safest way is to change the ejb-borland.xml.
    (I am not sure that I have applied this advice correctly, because I suppose that syntax is not similar in weblogic file or borland file).
    And you can MANUALLY update the weblogic file in your JAR archive.
    1. Open the EJB JAR file in Winzip and extract the weblogic-ejb-jar.xml file, so that a copy exists in your
    project directory.
    2. Open this file (in Notepad), add the WebLogic specific information, and then save the file.
    3. Now, when you are finished with the build cycle and are ready to deploy, you may open the EJB jar file
    and swap in the weblogic-ejb-jar.xml file."
    Good Luck.

  • Weblogic Enterprise manager with Oracle Portal

    Hi All,
    Iam working on a architecture defination which is basically a B2B and B2C based web applications. I intially thought the Oracle Portal+Oracle BPM as the right combination as it gives a complete technical stack as well as we will have a well defined control over the integrations.
    Since the application requires high sclability and high transactions support, wanted to choose Weblogic Enterprise manager instead of oracle AS. In this context i have following quoestions
    1. Will the Oracle Portal+Oracle Discoverer+Portlets(PLSQL, JAVA) can be ported onto WEBLOGIC Enterprise manager server?
    2. What is the feature of OracleASOC4J?
    Request to respond on this as quicly as possible
    Advance Thanks,
    Sreedhar

    In a RAC environment database control runs by default on a master mode,when this node goes down,EM does the same. There's a comprehensive article on metalink how to handle this:
    How to manage DB Control 10.2 for RAC Database with emca
    Doc ID: 395162.1
    Werner

  • I log in to 'HP Enterprise Business Community' and 'Consumer Support Forums' with the same username?

    Hi,,
    I am expecting that I must use a different user ID to log in to each of 'HP Enterprise Business Community' and 'Consumer Support Forums.'
    However, I am logged in to both with the same user id.
    Then, how to get to  my subcriptions I posted in each forum?
    Although I  log in to the 'HP Enterprise Business Community ' and Consumer Support Forums' with  same user name, when clicking on my user name while logged in to 'Consumer Support Forums'. , then I only noticed my posts posted at this forum. However, thos  posted in HP Enterprise Business Community, I didn't find them. To see them, then I must click on my usename while  logged in to HP Enterprise Business Community.
    Could you please confirm this for me?

    The Enterprise and Consumer forums are separate communities.  Even if you use the same username, you need to go to them separately to view your subscribed threads.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • OracleIAS and Information about Process and Threads

    Hi all,
    I need to know information about the running process and threads inside a Conteiner or an Enterprise Application, is it possible?
    Thanks in advance.

    Hi,
    Probably all of mentioned in some extent - depends, which data system needs.
    regards,
    wojciech

  • WebLogic Enterprise 5.1: Which version of Tuxedo included?

    Hi,
    can you tell me, which version of Tuxedo is included in WebLogic Enterprise
    5.1?
    Thanks,
    Marita

    Marita,
    My understanding is that it is a version of Tuxedo based on v6.5, but not
    released in any form other than as the deployment engine for WLE 5.x
    Tuxedo 8.0 (which includes the C++ CORBA support formerly only available as part
    of the "WLE" product obviously shares a single Tuxedo kernel between ATMI and CORBA
    Of course, as with all Tuxedo versions, the version underpining WLE 5.x will
    interoperate with other supported versions, so the exact version shouldn't be a
    cause for concern.
    Regards,
    Peter.
    Got a Question? Ask BEA at http://askbea.bea.com
    The views expressed in this posting are solely those of the author, and BEA
    Systems, Inc. does not endorse any of these views.
    BEA Systems, Inc. is not responsible for the accuracy or completeness of the
    information provided
    and assumes no duty to correct, expand upon, delete or update any of the
    information contained in this posting.
    Marita León Ohl wrote:
    Hi,
    can you tell me, which version of Tuxedo is included in WebLogic Enterprise
    5.1?
    Thanks,
    Marita

  • Query weblgoic runtime JVM and thread that carry the user credential

    Hi there,
    So far as I know, weblogic keeps track of user credentials from
    different JVM and different thread. However, for the same thread within
    same JVM, weblogic only keep on user credential in the EJBContext. So,
    is there any way or any API for me to query the JVM and thread that
    carries the user credential? My purpose is to prevent second login from
    the same JVM in the same thread.
    Thanks,
    Cathy

    Hi there,
    So far as I know, weblogic keeps track of user credentials from
    different JVM and different thread. However, for the same thread within
    same JVM, weblogic only keep on user credential in the EJBContext. So,
    is there any way or any API for me to query the JVM and thread that
    carries the user credential? My purpose is to prevent second login from
    the same JVM in the same thread.
    Thanks,
    Cathy

  • Spring Facet not available in Weblogic Enterprise Pack for Eclipse?

    Hi guys, just wondering if the Spring Facet will be available for the Weblogic Enterprise Pack for Eclipse? If yes, when can we expect this to be released?

    Spring Facet and other integration with Spring IDE will be in the next release of Oracle Enterprise Pack for Eclipse, which will ship in the next couple of months.
    - Konstantin

  • Weblogic 12.1.1 increases threads with 'Retry rollback request for tx:' How to fix ?

    Hello, Weblogic 12.1.1 increases threads with 'Retry rollback request for tx:'  And in all threads Xid is identical
    For this reason, the server begins to work very slowly and ultimately it is necessary to restart.
    The problem is similar to the Doc ID 1287437.1  - WebLogic Server Retries Rollback Request Threads Until Server is Out of Resources. But we have a version 12.1.1 , not 10.3.3.
    The sample in the screenshot.
    Help me please, thanks

    Hi,
    Increasing the size of the redo logfile size may reduce the number of switches as it takes time to fill the file up but your system's redo generatin will stil be the same. Reduce the frequent commits.
    Use the following notes to further narrow down the possible root cause.
    WAITEVENT: "log file sync" Reference Note [ID 34592.1]
    WAITEVENT: "log file parallel write" Reference Note [ID 34583.1]

  • Is weblogic jax-ws generated client thread safe

    Hi
    I want to use JAX-WS webservice on weblogic 10.3.
    Is there any best practices on how to generate the client stub ? Are the client stubs generated by weblogic thread-safe or is there any pool to implement.
    I've read on some old forum posts that with older versions of weblogic client stub was not thread safe when using SSL : is it always the case ?
    Regards
    Sébastien

    Hello Ravish,
    Can you please confirm the following:
    1) Check the Admin>Web Services Utilization page in CRMOD to see if the request is received
    2) Do you receive any response from CRMOD on the client side and if so, please post the SOAP response
    3) Have you tried other objects and had any issues with them?
    Thanks,
    Sean

  • WebLogic Enterprise Security???

    Does anybody tell me how long the weblogic enterprise security is in the market?
    And also what is the specific business purpose of this product?
    Thanks
    Lara

    These pages have a lot of info on the subject:
    http://dev2dev.bea.com/products/wlesecurity/index.jsp
    http://www.bea.com/framework.jsp?CNT=overview.htm&FP=/content/products/security/
    Pavel.
    "Lara123" <[email protected]> wrote:
    >
    Does anybody tell me how long the weblogic enterprise security is in
    the market?
    And also what is the specific business purpose of this product?
    Thanks
    Lara

  • Weblogic Server vs Weblogic Enterprise

    What is the difference in security functionality between Weblogic Server and
    Weblogic Enterprise? Can I use Weblogic Server in conjunction with a single
    user sign on to secure my EJB objects?
    thanks
    scott

    I suggest taking a look at our external website: www.BEA.com. A summary of
    the WLS security is located there -- and you can also look at the product
    WLE to check out the security functionality there.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "scott mcfadden" <[email protected]> wrote in message
    news:[email protected]..
    What is the difference in security functionality between Weblogic Serverand
    Weblogic Enterprise? Can I use Weblogic Server in conjunction with asingle
    user sign on to secure my EJB objects?
    thanks
    scott

Maybe you are looking for

  • How to add a new char in Update rule

    Hi Gurus: I copied update rules from an old cube. This new cube is a copy of old cube - almost. One of the char is missing in the new cube when compared to old cube. There is a small update routine for that char which I need to introduce to new cube.

  • Unwanted blank pages appearing in 7.0.5 (but working in 9)

    I'm trying to create a form which has a front page and three optional additional sections that appear when the respective buttons are clicked. I need the form to work in Reader 7.0.5 I've got it working just fine in LiveCycle 8.2 and Acrobat 9, but w

  • Problem setting up an email account on mini.

    I setup my wife's account on my iPad as a test with no problem. But when I try to set it up on her mini it hangs in the "Verifying" stage of account setup and never completes! I have to do a reboot to get back to "home" pages. Results are the same wh

  • Problem in MC.2 Report

    Hi, I am getting the value of the particular plant stock details in MC.2 Report in the DEV server.  But same report which is not working in Production system. All the values zero only i m getting.  But when i double click that zero it showing all the

  • I can't import mp3 files into iTunes

    Just recently, I find that I can't drag/drop (or import) .mp3 files into iTunes (12.1.0.50). I did confirm that the files aren't locked. Any ideas?  Thanks!