Hi Wolfgang,
Is anything being logged on the server? Look for juddi.log. Please provide App Server name and version as well as anything you find in the log.
The console assumes that the registry it's calling is accessable at http://localhost:8080/juddi. If it's not then you will have to change the following three lines in controller.jsp
to point to the location of your jUDDI registry.
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");
final URL PUBLISH_URL = new URL(" http://localhost:8080/juddi/publish");
final URL ADMIN_URL = new URL("http://localhost:8080/juddi/admin");
Steve
On 9/15/05, Wolfgang Schreiner <[EMAIL PROTECTED]> wrote:
Hi *,
I decided to use HSQLDB for jUDDI information storage and deployment
actually worked fine. HSQL comes with a graphical administration tool,
which I used to insert some PUBLISHER information and happijuddi.jsp
returns the following output:
+ Got a JNDI Context!
+ Got a JDBC DataSource (dsname=java:comp/env/jdbc/juddiDB)
+ Got a JDBC Connection!
+ SELECT COUNT(*) FROM PUBLISHER = 1
which made me confident that everything works properly.
Unfortunately, the jUDDI Console returns a fault SOAP message containing:
<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv=" http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<soapenv:Fault>
<faultcode xmlns:ns1=" http://xml.apache.org/axis/">ns1:Server.generalException</faultcode>
<faultstring></faultstring>
<faultactor></faultactor>
<detail/>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
So, what's wrong here? This happens with every get_*, save_*, find_*, ... method I call via the Console
regards,
Wolfgang
