You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@juddi.apache.org by sv...@attbi.com on 2003/06/11 13:17:09 UTC

[juddi-Users] Re: SO very very very close!

Earl, just a hunch but try using this:

  BusinessEntity be = new BusinessEntity(null, "New business");

...instead of this:

  BusinessEntity be = new BusinessEntity("", "New business");

Steve
> a ha! I can see juddi! YEAH!!!! But now, when I try to publish (either a
> business or a service) I get:
> 
> errCode:E_invalidKeyPassed
> errInfoText:The uuid_key value passed did not match with any known key
> values.
> 
> The bit of code that produced this was:
> 
> 	AuthToken token = proxy.get_authToken("juddi",	"password");
> 	Vector entities = new Vector();
> 	BusinessEntity be = new BusinessEntity("", "New business");
> 	entities.addElement(be);
> 	BusinessDetail bd =
> proxy.save_business(token.getAuthInfoString(),entities);
> 
> It gets a token, but dies on the proxy.save_business call. Any ideas?
> 
>