Amber,
 
It's an easy fix.  By default the console points to port 8080 on localhost for the UDDI service endpoints.  Change the following three lines  (actually just the port numbers) in the "controller.jsp" page:
 
  final URL INQUIRY_URL = new URL("http://localhost:8080/juddi/inquiry");
  final URL PUBLISH_URL = new URL(" http://localhost:8080/juddi/publish");
  final URL ADMIN_URL =   new URL("http://localhost:8080/juddi/admin");
 
to:
 
  final URL INQUIRY_URL = new URL("http://localhost:7001/juddi/inquiry");
  final URL PUBLISH_URL = new URL(" http://localhost:7001/juddi/publish");
  final URL ADMIN_URL =   new URL("http://localhost:7001/juddi/admin");
 
This should do it.
 
Steve

 
On 9/21/05, Amber Verma <[EMAIL PROTECTED]> wrote:
Hi All,
 
I am working on jUDDI, i've deployed it on WebLogic Server 8.1. The jUDDI happiness page ( http://localhost:7001/juddi/happyjuddi.jsp) loads succesfully with all the checkings done. But when i try to call a function through the jUDDI console ( http://localhost:7001/juddi/console/) I get an error (shown below).
 
The details are as under -
Page URL:
 
SOAP Request:
 
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv=" http://schemas.xmlsoap.org/soap/envelope/">
  <soapenv:Body>
    <get_publisherDetail generic="1.0" xmlns="urn:juddi-org:api_v1">
      <publisherID>jdoe</publisherID>
    </get_publisherDetail>
  </soapenv:Body>
</soapenv:Envelope>
 
HTML Response (Error):

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Draft//EN">
<HTML>
<HEAD>
<TITLE>Error 500--Internal Server Error</TITLE>
</HEAD>
<FONT FACE=Helvetica><BR CLEAR=all>
<TABLE border=0 cellspacing=5><TR><TD><BR CLEAR=all>
<FONT FACE="Helvetica" COLOR="black" SIZE="3"><H2>Error 500--Internal Server Error</H2>
</FONT></TD></TR>
</TABLE>
<TABLE border=0 width=100% cellpadding=10><TR><TD VALIGN=top WIDTH=100% BGCOLOR=white><FONT FACE="Courier New"><pre>java.lang.NoSuchMethodError : javax.xml.soap.SOAPMessage.setProperty(Ljava/lang/String;Ljava/lang/Object;)V
 at org.apache.juddi.registry.AbstractService.doPost(AbstractService.java:344)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java :760)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:996)
 at weblogic.servlet.internal.ServletStubImpl.invokeServlet (ServletStubImpl.java:419)
 at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
 at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java :6452)
 at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
 at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
 at weblogic.servlet.internal.WebAppServletContext.invokeServlet (WebAppServletContext.java:3661)
 at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2630)
 at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
 at weblogic.kernel.ExecuteThread.run (ExecuteThread.java:178)
</pre></FONT></TD></TR>
</TABLE>

</HTML>

Please help.

Thanks.

Amber


Yahoo! India Matrimony: Find your partner now.


Reply via email to