1. WebSphere web.xml / bindings issue stackoverflow.comI just recently started having issues while deploying EARS within websphere. The error I get after I install the apps is provided below.
|
2. WebSphere 7.0 binding files example please .... forums.oracle.comWebSphere 7 requires .xml configuration files vs previous versions where it required .xmi files. Can someone post example of ibm-web-bnd.xml I need to convert the existing ibm-web-bnd.xmi to a new format. And can not find how to do it. It was suggested to use IBM RAD , I am currently downloading it, it allegedly has a conversion wizard. Is there a ... |
3. Websphere 6.0 : javax.naming.CommunicationException: simple bind failed: forums.oracle.comThe web application is deployed on Websphere 6.0 and for changing password of a user I am using "simple" bind mechanism to bind with ldap to get the context. Code is as below : env.put(Context.SECURITY_AUTHENTICATION,"simple"); env.put(Context.SECURITY_PRINCIPAL,adminName); env.put(Context.SECURITY_CREDENTIALS,adminPassword); env.put(Context.SECURITY_PROTOCOL,"ssl"); env.put(Context.PROVIDER_URL,ldapURL); // Create the initial directory context DirContext ctx = new InitialLdapContext(env,null); Everything works fine but if I restart the server couple of ... |