You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@juddi.apache.org by Kurt T Stam <ku...@gmail.com> on 2009/10/12 21:12:17 UTC

Re: latin

Connell, Brian [USA] wrote:
>
> Hey Kurt,
>
>  
>
> I was talking with a friend about the latin I say-he said it was some 
> lapis sumthin-basically like default data. He also said it was a part 
> of SOAPUI-nothing to do with your project.
>
>  
>
> I am interested if you have input on why I'm getting the String out of 
> range error if you have it, though.
>
>  
>
> Thanks!
>
> ---Brian
>
Hi Brian,

I was wondering what you meant by the latin.. Anyway, you found a bug, 
related to having a publisher owning multiple keyGenerators. I'm going 
to fix it on the trunk.

You can fix your source  by updating UddiEntityPublisher line 111 from:

String keyGenPartition = keyGenKey.substring(0, 
key.lastIndexOf(KeyGenerator.PARTITION_SEPARATOR));

to

String keyGenPartition = keyGenKey.substring(0, 
keyGenKey.lastIndexOf(KeyGenerator.PARTITION_SEPARATOR));

I have opened a bug for it: 
http://issues.apache.org/jira/browse/JUDDI-292 and I'm fixing it on the 
trunk now.

--Kurt