Questions tagged [websphere-7]

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

811 questions
1
vote
0 answers

DataSource in WAS7 and Oracle DB Kerberos

I've got user in Oracle DB which is created as "identified externally" and logs in via Kerberos. Is it possible to configure WAS7 DataSource to establish connection under this user? When user in Oracle is created as "identified by password" there is…
Vladimir Kravets
  • 330
  • 6
  • 21
1
vote
1 answer

Access Websphere datasource from standalone java application without specifying username/password

I am writing a standalone application which will get the datasource from Websphere Application Server, get the db connection and perform some business logic. import java.sql.Connection; import java.sql.SQLException; import…
Abs
  • 458
  • 1
  • 7
  • 17
1
vote
0 answers

Websphere - AJAX POST request error

I am using ajax to send data from the client to my server in JSON format and am getting the error message below. Has anybody else managed to resolved this issue ?, because it seems like a lot of people have been getting…
mh377
  • 1,656
  • 5
  • 22
  • 41
1
vote
2 answers

limiting who can login by role with j2ee form based authentication

I'm using declarative J2EE form based authentication in my webapp, following the instructions given in various places such as here: http://java.dzone.com/articles/understanding-web-security It appears that the login via j_security_check allows all…
Toaomalkster
  • 115
  • 8
1
vote
1 answer

The 'correct' way to instantiate JPA manager bean?

I'm using IBM RAD to develop some JPA entities, and from those, corresponding JPA Manager Beans. Manager beans (which are generated by RAD) have the following member: @PersistenceUnit private EntityManagerFactory emf; I'm not sure how to correclty…
miha
  • 3,287
  • 3
  • 29
  • 44
1
vote
1 answer

Error on deploying Java EE 6 on WAS7

I'm trying to deploy an EJB 3 EAR project to WebSphere 7. From RSA 8.0 I select the EAR file. When I select the EAR project > run as > Server > WAS7 I get the following error: "the server does not support version 6.0 of the J2EE Enterprise…
sonx
  • 661
  • 4
  • 19
  • 31
1
vote
0 answers

To display a read error when the source file is used by other applications while transfering using MQFTE?

I need to display a read error when the source file is being used by other applications. For example : Source filename: test.txt Content: Test file. The above content is stored in the txt file and saved. The txt file is opened and is modified as…
trilawney
  • 1,786
  • 6
  • 28
  • 36
1
vote
2 answers

Eclipse JavaEE (Maven)project WAS 7 migration to IntelliJ

I'm trying to migrate a maven project from Eclipse to IntelliJ and would like to start/run/deploy to WebSphere portal. My problem is that Eclipse IDE allows multiple open projects and one of the projects is an EAR that deploys a war file to…
Henrique C.
  • 948
  • 1
  • 14
  • 36
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

org.springframework.web.servlet.DispatcherServlet error in migration from Spring 3.0 to Spring 3.1

I'm migrating a web application from Spring 3.0 to Spring 3.1. These are the depencies I changed in the pom, for every dependency I changed 3.0.3.RELEASE to 3.1.4.RELEASE:
Luke
  • 1,633
  • 3
  • 23
  • 37
1
vote
1 answer

sun.security.ssl.allowUnsafeRenegotiation

Does the option "-Dsun.security.ssl.allowUnsafeRenegotiation=true" work in IBM's JVM that ships with WebSphere 7
dat
  • 11
  • 1
  • 2
1
vote
1 answer

Creating cluster member removes some configuration

I'm using WAS ND and want to have dmgr profile with federated managed profile app. I am creating cluster using: AdminTask.createCluster('[-clusterConfig [-clusterName %s -preferLocal true]]' % nameOfModulesCluster) Next, I'm configuring my WAS…
deem
  • 1,252
  • 1
  • 19
  • 38
1
vote
0 answers

SSL Handshake failure from IBM WAS 7 to IIS 8.5

We have a web service running on JBOSS EAP7 which is behind IIS 8.5. The webservice works fine on the Internet Explorer using both http://webservice and https://webservice. We have another application running on IBM WAS 7 which consumes this web…
slash
  • 593
  • 8
  • 16
1
vote
3 answers

How to set a friendly url for a hidden page in WebSphere Portal 7

We need to create a couple of pages for our WebSphere Portal 7 installation which a user can access without having to log in to the portal. We'd also like these pages to have friendly URLs (e.g. http://portal/wps/somePage). We'd like the page to be…
GaZ
  • 2,346
  • 23
  • 46
1
vote
1 answer

Redirection to Angular2 page from Servlet results in 404

I've an old application that is at Java 1.6, Servlet 2.5 and deployed as WAR on a Websphere Application Server 7.x version. Now, I'm trying to add a newly written page with Angular2 framework and typescript. My web.xml has the following servlet…