• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

SOAP connect for WebSphere vs TomCat

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am programing using RAD (Rational Application Developer) a version of Eclipse which has built in WebSphere Server. When execute my program it works properly. But when I export it as a war file and run it with Apache Tomcat server I get the following error:


com.ibm.websphere.management.exception.ConnectorException: ADMC0053E: The system cannot create a SOAP connector to connect to host localhost at port 8880 with SOAP connector security enabled.


my Code:

Properties connectProps = new Properties();
connectProps.setProperty("javax.net.ssl.trustStore", "C:\\cacerts.jks");
connectProps.setProperty("javax.net.ssl.keyStore", "C:\\cacerts.jks");
connectProps.setProperty("javax.net.ssl.trustStorePassword", "changeit");
connectProps.setProperty("javax.net.ssl.keyStorePassword", "changeit");

connectProps.setProperty(AdminClient.CONNECTOR_TYPE, AdminClient.CONNECTOR_TYPE_SOAP);

connectProps.setProperty(AdminClient.CONNECTOR_SECURITY_ENABLED, "true");

connectProps.setProperty(AdminClient.CONNECTOR_HOST, host);
connectProps.setProperty(AdminClient.CONNECTOR_PORT, port);

if (user!=null && !user.equalsIgnoreCase("null")){
connectProps.setProperty(AdminClient.USERNAME, user);
connectProps.setProperty(AdminClient.PASSWORD, password);
}

admin = AdminClientFactory.createAdminClient(connectProps);
The Error occurs at the last line.

Any idea how to resolve the issue?

Thanks in advance for your help.
 
Whose rules are you playing by? This tiny ad doesn't respect those rules:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic