Questions tagged [weblogic]

WebLogic Server is a Java EE application server from Oracle. WebLogic Server is the centerpiece of Oracle's Fusion Middleware platform.

WebLogic is an Oracle owned brand that builds a complete product suite consisting of a couple of Java EE related products, such as:

  1. Java EE application server, WebLogic Application Server
  2. WebLogic JRockit JVM
  3. WebLogic RealTime Edition
  4. Virtual Assembly Builder

WebLogic came to Oracle through the acquisition of BEA Systems Inc. in 2008. See the Wikipedia entry for a complete history.

References

6049 questions
1
vote
2 answers

WebLogic and Top Link confusion

I'm trying to install Oracle WebLogic Server, then when I look for the generic version, TopLink comes up! What is the deal ? I dont need to integrate my server with TopLink, but I have to if I want the generic version! Thanks,
0bserver07
  • 3,390
  • 1
  • 28
  • 56
1
vote
1 answer

Checking clustered EJBs in Weblogic

I am testing a J2EE application in a clustered Weblogic 10.3.5 environment. As described in http://download.oracle.com/docs/cd/E12840_01/wls/docs103/cluster/failover.html#wp1044561, I have configured the following in…
prepetti
  • 367
  • 1
  • 2
  • 11
1
vote
3 answers

Setting Domain Credential during WebLogic WLST offline domain creation?

I have successfully created WLS 10.3.5 domains using offline WLST, along the lines of readTemplate(template); set("name","DomainName"); ... One detail remains: I need to set the "Credential" of each domain to a common random value, across all…
mgaert
  • 2,338
  • 21
  • 27
1
vote
3 answers

NotSerializableException on HashMap

I've a hash map like : Map gen = HashMap When I execute AccessController.doPrivileged(gen), it throws exception as follows. Can anyone help me on this. java.security.PrivilegedActionException: java.io.NotSerializableException:…
Sastrija
  • 3,284
  • 6
  • 47
  • 64
1
vote
1 answer

Creating JAX WS web service from wsdl under Maven Web application in Netbeans 7.0.1 and deploying it to Oracle Weblogic server 10.3.5

I am trying to create a simple calculator web service (jax ws) from wsdl in Netbeans 7.0.1 and deploying it in weblogic servcer 10.3.5. Maven is the build tool I am using. I did the following: - Create a new Maven Web application. - Create a new…
Nipen
  • 11
  • 1
  • 4
1
vote
1 answer

What is the default max value for Weblogic 10's self-tuning-thread-pool-size-max parameter?

I'm seeing a production server which is peaking at over 100 threads and with occasional queue length spikes of 20-30. The underlying hardware has plenty of excess capacity. I'm wondering if the self-tuning thread pool has a default max number of…
rmp
  • 199
  • 2
  • 9
1
vote
1 answer

Internal applications consoleapp, uddi, wlstestclient not deployed by default during installation of Weblogic Server 10.3 on Windows

Thanks in advance for your time. I need to explain a little bit of the background before I get to my issue so thanks again for reading. After installing the Windows version of Weblogic 10.3 and deploying my application on my localhost, I started up…
veeCan
  • 45
  • 1
  • 2
  • 10
1
vote
2 answers

Define a simple string JNDI property in Weblogic 10.0

My application requires a JNDI property, which basically is a simple java.lang.String. In tomcat this is easy to define the context.xml, while it's also easy in the glassfish admin console. However, I cannot find how to do this in Weblogic 10.0. My…
Steven De Groote
  • 2,187
  • 5
  • 32
  • 52
1
vote
1 answer

Use JMX (MBean) to log WebLogic status

I know we can use MBean to get WebLogic's status. For example, use JDBCDataSourceRuntimeMBean (http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e13951/core/index.html) to get the JDBC status. And use other MBeans, we can also get the status…
Dennys
  • 587
  • 2
  • 13
  • 33
1
vote
1 answer

Redirect on weblogic

I have a legacy website that has URL like mysite.com/aaa/bbb and new one that is mysite.com/aaa . I want all users that go to mysite.com/aaa/bbb to go to mysite.com/aaa instead - what's the best and easiest way to do it? I only have one .war file…
Roman Goyenko
  • 6,965
  • 5
  • 48
  • 81
1
vote
2 answers

How do large sites handle pushing new updates

What security measures are taken and what's the process large sites use when new updates are pushed? Do they replace the current code? Do they create a new directory with the new code then redirect all traffic to that directory? Are the scripts…
Michael Grigsby
  • 11,467
  • 9
  • 33
  • 52
1
vote
1 answer

EJB Timer long running method and Weblogic 10.3.4 issues

I have a EJB Timer 3.0, and this timer has a method that approximately runs for 6 hours per call. The Timer I have implemented is below: @Stateless @TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED) public class BatchJobConsumerTimer…
st.
  • 166
  • 6
  • 24
1
vote
2 answers

What is the best way to cache data in an EJB?

I have some common data that all of my EJBs will need, so I decided to write 1 EJB to go and get the data, while the other EJBs will call the first EJB to get the data. Now I want to cache the data in the EJB so that it does not have to go back to…
Tony Borf
  • 4,579
  • 8
  • 43
  • 51
1
vote
1 answer

Controlling JMS Server: too many MDBeans created (weblogic)

I have an application that does a delayed operation. User generates 1 million messages that are stored in the JMS Queue and then a MDBeans are consuming these messages and performing some action and storing data in the database. Since JMS Queue is…
Alex
  • 111
  • 1
  • 5
1
vote
0 answers

Load-time weaving with Spring, Eclipselink and Weblogic 10.x server

Can someone provide really working, verified configuration of Spring load-time weaving using EclipseLink on Weblogic server? It seems that docs (…
Ondrej Bozek
  • 10,987
  • 7
  • 54
  • 70