In the console, when I click on get_authToken I get the form with: <?xml version="1.0" encoding="utf-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Body> <get_authToken generic="2.0" xmlns="urn:uddi-org:api_v2" userID="***" cred="***"/> </soapenv:Body> </soapenv:Envelope>
In the "***" of userID and cred I tried the combinations "juddi" + "juddi" or "juddi" + "" or "juddi" + "123456" or "jdoe" + "" but it's the same error. 2008/12/1 Pasquale Campitiello <[EMAIL PROTECTED]> > Yes. To configure jUDDI I followed the official document > > http://svn.apache.org/viewvc/webservices/juddi/trunk/docs/Getting-Started.pdf?revision=547750 > so my configuration file are exactly like specified in the document, and > when I click Validate in http://localhost:8080/juddi/ my "jUDDI DataSource > Validation" section is: > > jUDDI DataSource Validation > > + Got a JNDI Context! > + Got a JDBC DataSource (dsname=java:comp/env/jdbc/juddiDB) > + Got a JDBC Connection! > + SELECT COUNT(*) FROM PUBLISHER = 1 > > > In fact if I verify with MySQL: > > > mysql> use juddi; > Database changed > mysql> select * from publisher; > +--------------+----------------+---------------+----------+------------+ > | PUBLISHER_ID | PUBLISHER_NAME | EMAIL_ADDRESS | IS_ADMIN | IS_ENABLED | > +--------------+----------------+---------------+----------+------------+ > | juddi | juddi | [EMAIL PROTECTED] | true | true > | > +--------------+----------------+---------------+----------+------------+ > 1 row in set (0.00 sec) > > > > > 2008/12/1 Kurt T Stam <[EMAIL PROTECTED]> > > Hi Pasquale, >> >> Did you add a publisher? >> >> >> http://svn.apache.org/viewvc/webservices/juddi/trunk/src/main/resources/juddi-sql/insert_publishers.sql?view=markup >> >> --K >> >> >> Pasquale Campitiello wrote: >> >> Hi, >> >> I'm an italian student. I'm trying to link Apache Synapse and jUDDI >> 0.9rc4. In order to implement the interface to link them I have to know how >> jUDDI "looks" to WSDL, how jUDDI can provide UDDI methods etc.. >> I configured correctly jUDDI: I can see the "Happy jUDDI!" page without >> errors. >> But I have a common problem: in the jUDDI console when I click >> get_authToken to obtain an authentication token, and I insert my user and >> cred I get always the same error: >> >> <?xml version="1.0" encoding="utf-8" ?> >> <SOAP-ENV:Envelope xmlns:SOAP-ENV=" >> http://schemas.xmlsoap.org/soap/envelope/"> >> <SOAP-ENV:Header/> >> <SOAP-ENV:Body> >> <SOAP-ENV:Fault> >> <faultcode>SOAP-ENV:Server</faultcode> >> <faultstring>Fault string, and possibly fault code, not >> set</faultstring> >> </SOAP-ENV:Fault> >> </SOAP-ENV:Body> >> </SOAP-ENV:Envelope> >> >> I tried every possible combination of user and cred ("juddi" + "juddi", >> "juddi" + ""; "juddi" + "123456"; "jdoe" + "", ecc.), but everytime >> I got this SOAP response. To configure jUDDI I followed the official >> document >> >> http://svn.apache.org/viewvc/webservices/juddi/trunk/docs/Getting-Started.pdf?revision=547750 >> so my configuration file are exactly like specified in the document. >> >> Googling I read about changing the JDK version. I tried JDK 5 update 10, >> JDK 5 update 16, JDK + JEE 5 update 10, but nothing changed, and besides >> with this versions I can't run Synapse. Now with JDK + JEE 6 update 10, I >> can run Synapse but I'm still blocked with jUDDI.Someone can help me? >> >> Thanks >> >> Pasquale >> >> >> >
