Questions tagged [websphere-9]

Version 9.x of IBM WebSphere Application Server (WAS)

68 questions
1
vote
0 answers

CDIDeploymentRuntimeException in WAS 9 Inject is not working

After migrating from WAS 8 to WAS 9 we are getting the following exceptions , it Used to work in WAS 8. Project is using : WAS 9, JSF MyFaces 2.2 , J2EE 7 , primefaces . Caused by: com.ibm.ws.cdi.CDIDeploymentRuntimeException:…
Raj
  • 25
  • 2
  • 5
1
vote
1 answer

Web Project Not Starting in Websphere 9 with CDI related Exception for BValInterceptor

I'm trying to Start Web Project in Websphere 9, however I'm getting Runtime Exceptions realted CDI Note: The Project is working in WAS 8.5 but after migrating to WAS 9, I'm getting this issue. I have also used these properties to disable CDI.…
iLearn
  • 991
  • 1
  • 13
  • 27
1
vote
1 answer

Unable to start application after migrating to Websphere 9

I am trying to migrate my applications to websphere 9 from wensphere 8.5.5.x. My application was developed on Java 7. I changed the JRE to 1.8 and created a maven build on JDK 1.8 as WAS 9 supports java 8. After I deployed my application EAR to WAS…
NOT_FOUND
  • 125
  • 2
  • 13
1
vote
1 answer

Add namespace prefix in every element in SOAP response

I'm creating a web service where the client that is calling my service expects namespace prefix in every element in the SOAP response. In simple example, the client want response like this:
Dragan Menoski
  • 1,092
  • 14
  • 33
1
vote
0 answers

How to get HTML url from Websphere Portal server?

I made a new url page in Portal administration, now I want this link (not a decoded one, exactly the string in text box) in my java code. How can I get it? Image of the field, which I want value of
1
vote
2 answers

REST Spring Boot Web Service on Websphere 9

I want to create a Spring Boot REST Web Service and deploy and publish it in Traditional Websphere 9 Application Server. Is it possible ? What all challenges I might encounter? Can someone please provide me few pointers for reference?
Akshay
  • 33
  • 1
  • 7
1
vote
0 answers

Why doesn't Websphere 9 detect Annotated mappedName value for EJBs?

Following is my Sample Code: AddStatelessBean.java: @Stateless(name = "AddStatelessBean", mappedName="ASBean") @Remote(AddStatelessBean.class) @LocalBean public class AddStatelessBeanImpl implements AddStatelessBean { public int add(int a, int…
1
vote
0 answers

Spring boot controller path giving 404 on websphere 9

I have a spring boot 2.0 application that is working fine on embedded tomcat , now I generated a war from this applcation using apply plugin: 'war' in build.gradle file , the war is generated and deployed successfully on websphere 9 ... I tried…
osama yaccoub
  • 1,884
  • 2
  • 17
  • 47
0
votes
0 answers

Static compression for static files in Websphere Application Server 9

Is it possible to compress static files in IBM WAS 9 without using IBM HTTP Server. If possible please guide me. I found a way to do it in IHS, in this format. # Other configuration directives for the virtual host AddOutputFilterByType…
0
votes
2 answers

Some java @Schedule not triggering in Websphere, and some are

I have six Java Scheduler classes, each with a different purpose but all coded in the same way. Only three of these are triggering on my WebSphere Application Server installation. Interface: import javax.ejb.Local; @Local public interface…
simonalexander2005
  • 4,338
  • 4
  • 48
  • 92
0
votes
0 answers

How to setup WebSphere JNDI Lookup without Datasource Credentials in Java

I am trying to use JNDI lookup to access a Datasource defined in WebSphere 9. The datasource is being accessed while the EAR file is being generated using maven. Initially it was using Basic DataSource however I want to remove the datasource…
0
votes
1 answer

Default server1 name change in webspher application server

Can we change the server name which is by default server1 is set but now we want to change because 2 profiles there both server name server1 so any steps there for name change webspher application server 9 in Linux
0
votes
0 answers

IBM MQ - Websphere Application Server - MQ Failover

I have a JEE application (simple EJB application which puts a message to queue) which needs to connect to a uniform cluster queue managers (QMC1, QMC2) and PUT messages. The JEE application runs in a Wepshpere application server,and uses CCDT, with…
Yasothar
  • 435
  • 1
  • 7
  • 24
0
votes
0 answers

How to fire an automatic EJB timer manually

I am running a Jakarta EE application in a clustered WebSphere Application Server ND 9 environment. This application uses @Schedule annotations to schedule various events that happen once a day, or once an hour; as automatic, persistent…
simonalexander2005
  • 4,338
  • 4
  • 48
  • 92
0
votes
1 answer

Is it possible to skip any missed @schedule events instead of catching them up?

Using Websphere 9, I have a schedule service, e.g: @Schedule(minute="30", hour="6-20", dayOfWeek="Mon-Fri", dayOfMonth="*", month="*", year="*", info="TimerName", persistent=true) public void scheduledTimeout(final Timer t) { // do…
simonalexander2005
  • 4,338
  • 4
  • 48
  • 92