Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
593 views

Does weblogic support CDI Beans?

I started to work with weblogic 11g version 10.3.2.0 Does weblogic support CDI Beans ? Thanks
4
votes
1answer
95 views

Viewing Deployed Apps in Weblogic Server

I am new to weblogic and I would like to find out how my files are arrange in Weblogic? I have used only Tomcat and this is the first time where I will deploy in a Weblogic Server. In Tomcat, I could ...
3
votes
2answers
241 views

How do you force Weblogic to print “null” in jsp files, rather than empty string “”, for variables with null as the value?

Suppose I have JS code inside a jsp files, such as this: <% String test = null; %> var test = <%=test%>; With Tomcat and Websphere the resulting JS will be: var test = null; ...
3
votes
1answer
62 views

Organising domain in WebLogic

I’m working with a client that has its WebLogic (version is 11g) domains organised in terms of usegage – so one for production, one for test, one for dev, and all applications have to share a single ...
3
votes
2answers
2k views

Any decent weblogic tutorial?

We are migrating an application from Tomcat to WebLogic. There are many things we just don't know about. Is there any decent tutorial out there? We know about this but I'd like to read about ...
3
votes
2answers
1k views

Multiple JSTL Versions in Weblogic J2EE App

Thanks in advance for taking a look :) I'm hard at work on a J2EE web app (in JDeveloper) and recently added some functionality that required JSTL, and I've hit a little bit of a snag. Whenever I try ...
2
votes
1answer
86 views

Default Path for WebLogic site root on RedHat 5

I am flying blind and could use some help. I am a long time windows web developer/web admin and I have inherited a WebLogic 11g/RHEL5 box. I'm trying to figure out where the website files might be. ...
2
votes
2answers
201 views

Commit while Open new Transaction within Transaction

Using Ejb3.0, Weblogic 11g, JDBC I am invoking a method which is running remotely in another deployment EAR. The method in the remote deployment being invoked but it's annotated with the ...
2
votes
1answer
577 views

WebLogic: can't get roles for user in EJB3

In my EJB 3 I try to test for the roles of the principal but it always returns false. In my WebLogic 11g Console I defined under "MyDomain" -> "Security Realms" -> "myrealm" -> "Users and Groups" 3 ...
2
votes
2answers
540 views

Attempting Ant build with Weblogic 10.3 Dependency

I'm a CM and am responsible for our Continuous build process, and helping the developers define and use the builds correctly. I try to set things up in such a way that the developer merely has to ...
2
votes
2answers
885 views

How to change deployment order in WebLogic?

According to this documentation it is possible to change deployment order in WebLogic: ...
2
votes
1answer
389 views

Weblogic capacity sizing

Please can anyone suggest.We are trying to estimate how manay managed server instances are required in a weblogic domain and how many servers would we need as well. Our estimate is that on there will ...
2
votes
3answers
786 views

Weblogic 11g URL Rewrite

I have a client running a WebLogic 11g install on a Windows Server machine who wishes to implement Apache-style mod_rewrite-like functionality to translate requests for http://easyurl.com to ...
2
votes
1answer
4k views

JasperReports NoClassDefFoundError exception on net.sf.jasperreports.engine.util.JRStyledTextParser

When trying to export on WebLogic 11g, it throws NoClassDefFound exception. I checked the application WAR and jasperreports-3.7.4.jar is included in WEB-INF/lib folder. What is the error? StackTrace ...
2
votes
2answers
1k views

Weblogic 11g and JavaEE 6

I was wondering if Weblogic 11g already supports JavaEE 6. As I didn't find anything about it in google, I thought that it didn't, until I found a comment saying that Oracle WebLogic Server 11g is JEE ...
2
votes
1answer
1k views

Using Jersey Client inside EJB 3 stateless session bean on Weblogic

I am using Jersey client inside a EJB 3 stateless session bean. I can deploy the EJB project on Weblogic 11g. But when I try to look up the bean from a JSP, I get the following error ...
2
votes
1answer
4k views

Spring MVC 3.0.0 app won't bootstrap on Weblogic Server 11gR1 - ClassCastException

I have a Spring MVC (3.0.0.RELEASE) based application I need to deploy to Oracle Weblogic Server 11gR1. It works fine on Spring TC Server. When I deploy my application WAR file (either via ...
1
vote
1answer
44 views

Adding TransactionSynchronizationRegistry in weblogic-ejb-jar.xml

I'm trying to use 'TransactionSynchronizationRegistry' via EJB injection in a session bean. However during deployment on a weblogic App Server i got the error that 'TransactionSynchronizationRegistry' ...
1
vote
2answers
33 views

multiport Weblogic

I am using oracle 11g and web logic Application Server I want to create multiple port listener for example http://ip(192.168.10.11:8080)/applicationName/index.jsp ...
1
vote
1answer
46 views

custom cache reload in java on weblogic

I have a requirement to cache xml bean java objects by reading xml’s from database . I am using a HashMap in memory to maintain my java objects. I am using spring for DI and Weblogic 11g app server. ...
1
vote
1answer
45 views

I'm trying to get the name of a server in Weblogic to use in my log4j Config

I'm using log4j in a project that is being deployed to a clustered Weblogic 11g environment, and I'm trying to get the name of the server that has the app deployed on it to use for logs. I seem to ...
1
vote
1answer
274 views

Problem with Weblogic Upgrade

I'm currently in the process of upgrading my WebLogic version from 10.0 to 10.3.3. I did manage to successfully create a new 10.3 domain, but when I try to start it, I get the following error: ...
1
vote
1answer
204 views

Reading a config file from weblogic domain dir

I have a config file which lists all the configuration details for Logback.xml like the log file location and log level etc. I have this file placed in resources under the weblogic domain dir. I also ...
1
vote
2answers
2k views

How to lookup JNDI resources on WebLogic?

I deployed a legacy application on WebLogic 11g. The application has the following code: Context context = new InitialContext(); dataSource = (javax.sql.DataSource) ...
1
vote
3answers
772 views

Injecting EJB3.0 Beans into JSF2.0 Backing Beans… Impossible?

I'm working on a JSF project on Weblogic 11g, and our initial design is calling for JSF Backing Beans to invoke EJB3.0 beans to perform business logic and data access calls. The @EJB annotation ...
1
vote
1answer
53 views

Getting server Name

Hi all I am using Weblogic11, EJB3.0 I am working in Cluster. I would like to retrieve inside the Java code the current server Name(instance/id). since I want to do some operation on one server one ...
1
vote
1answer
116 views

Migrating MBean services from JBoss to WebLogic

The company I work for is migrating to a new data center. We'll be using WebLogic instead of JBoss what we're using now. I'm tasked with migrating the deployment (modifying ant scripts, ...etc) of ...
1
vote
0answers
172 views

How to view help instructions in Oracle Weblogic 11g console

I just installed Oracle Weblogic 11g with the zip developper package on Linux. I managed to create a domain, servers declare a machine, start the nodemanager however, I cannot access the help links ...
1
vote
1answer
495 views

How to enable DomainRuntimeMBean?

I've been trying to installing JDeveloper and Weblogic server , and when trying to login as first time as Administrator in console of weblogic , The Server give me this error A required MBean Server ...
1
vote
1answer
1k views

Weblogic No unique bean of type [javax.persistence.EntityManager]

I am new to EJB3 and working on an exisitng code. We are using weblogic10.3 and the below code works fine @Stateless(mappedName="ProcessIssacIncomingMessage") ...
1
vote
0answers
301 views

Weblogic and BOM

We have web application with static content - html files, js files, images, etc. There are byte order mark at the beginning of all html files. These files were genereted by some tool. So I cannot ...
1
vote
1answer
350 views

How to check if application was deployed on a specific managed server?

I use following wlst command in order to check if application was already deployed before: oldApplication = find(name=d['name'], type='AppDeployment') But it does not show that application was ...
1
vote
2answers
678 views

MQ With WLS Foreign Server

I am facing two issues when i try to connect to MQ which is deployed on a Remote Server from Weblogic Server(WLS) by creating a Foreign Server. 1. When I try to connect to MQ Queuemanager in Bindings ...
1
vote
2answers
1k views

How to use @PostConstruct to create timers in a stateless bean EJB3?

I want to create a timer EJB3 when a stateless bean is created in the pool. But if I use @PostConstruct I get the exception: java.lang.IllegalStateException: [EJB:010193]Illegal call to EJBContext ...
1
vote
3answers
3k views

Weblogic EJB calls start to fail under moderate load with OptionalDataException

Our system setup consists of two Weblogic 10.3 servers: one hosts the presentation layer and the other hosts the EJBs. The system runs fine under moderate load for some time (one to several days) ...
1
vote
1answer
879 views

XSLT transfer fails because Weblogic cannot find a class located in rt.jar

We have encountered a very strange class not found problem in our web app running on Weblogic 10.3. In our code we do a pretty standard XSLT transformation. UtilRequestManagerBean.java: ...
1
vote
1answer
483 views

Weblogic server level workmanager not being used

I have defined a work manager (Global Workmanager) which has targets as managed servers. When an ear application (containing many ejbs) is deployed on the server and the ejbs are invoked, it only ...
1
vote
1answer
777 views

MDB Transaction Propagation

I am very new to EJB 3.0 I have deployed a EAR in WebLogic 10.3 g which have two ejb modules called ServicesDump MessageDump In ServicesDump i have a session bean which doing the database ...
1
vote
4answers
3k views

How to change Weblogic 10/11's log format?

I want to change the log format for Weblogic's server log. Right now it's generating logs using its default format-- I want to be able to specify my own format. For example, it generates logs that ...
1
vote
4answers
2k views

Solaris JMS Client connect to Weblogic 11g t3s security problem

When I try to connect Weblogic t3s protocol in Solaris Server, it shows this error: java.lang.IllegalStateException: Not enough cryptography available to enable a cipher suite! at ...
1
vote
3answers
672 views

64 bit weblogic 32 bit oracle DB

I have 64 bit Weblogic 11g installed on 64 bit Linux and trying to connect to a DB by creating a JDBC data source for Oracle 10g on 32 bit. I have connected another Weblogic 32 bit successfully to ...
1
vote
1answer
3k views

Where is Bea Weblogic Work Folder

I know that this may be a trivial question but I really cannot find the work folder in Oracle BEA weblogic 10.3. Unlike the Apache Tomcat where it is clearly in the work directory usually under ...
0
votes
0answers
11 views

disabling individual webservices in weblogic deployment

I am developing web service applications on eclipse and deploy them on weblogic 11g. I have a big java project in which I define a couple of web service classes, by adding @WebService and @WebMethod ...
0
votes
0answers
35 views

JDeveloper IntegratedWebLogicServer not able to build default domain

I am trying to run the JDeveloper Integrated Weblogic server (11.1.1.5) on Windows 7 x64 and keep running into this error from within JDeveloper: [Starting Server Instance IntegratedWebLogicServer] ...
0
votes
0answers
24 views

Weblogic and log4j properties externalization

I have a scenario of weblogic properties file , where i am externalizing it To a given classpath of the weblogic in the script setDomainEnvAppli.sh and with a symbolic link i am able to reach the ...
0
votes
1answer
29 views

Why does Fusion Middleware forwarding cause issues with my Spring Security authentication process?

We have Fusion Middleware set up to handle our certificates. It's configured on port 443 and forwards its requests after handling the certification process to an instance of weblogic 11g set up on ...
0
votes
1answer
16 views

Book on Weblogic Server

I am currently looking for a book that will teach me the in's and out's of using the Weblogic 10.3 as my application server. I am currently using Servlet/JSP/EJB/JSF/JPA as the technology but right ...
0
votes
1answer
59 views

Getting “500” Error in Weblogic Access Log. I want to avoid this in the access logs

Following is the access log record for Weblogic 11g server of my application. I are getting 500 error in this log "warning.js". I don't need it to appear in this log. 10.152.61.34 - tremblj2 ...
0
votes
0answers
44 views

web.xml property override by Weblogic deployment plan

Trying to override my web.xml file's <login-config> <auth-method>BASIC</auth-method> </login-config> I tried using the following deployment plan which seems like it ...
0
votes
0answers
34 views

Migrating jboss portal server to Weblogic portal

I have developed a spring portlet mvc application. I have deployed it on Jboss Portal and it is working fine. I want to deploy app on Weblogic portal now. Could you please let me know mapping between ...

1 2 3