You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@juddi.apache.org by "SourceForge.net" <no...@sourceforge.net> on 2003/09/26 05:59:07 UTC

[juddi-Developers] [ juddi-Bugs-812909 ] ServiceInfo not unmarshalled properly

Bugs item #812909, was opened at 2003-09-25 23:40
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=434422&aid=812909&group_id=42875

Category: Transport Layer
Group: Development
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Alex Ceponkus (aceponkus)
Summary: ServiceInfo not unmarshalled properly

Initial Comment:
Due to a bug in ServiceInfoHandler.java, the serviceKey 

attribute of ServiceInfo elements is not unmarshalled.



In the method unmarshal(), the snippet:



    // Attributes

    obj.setBusinessKey(element.getAttribute

("serviceKey"));

    obj.setBusinessKey(element.getAttribute

("businessKey"));



should be:



    // Attributes

    obj.setServiceKey(element.getAttribute

("serviceKey"));

    obj.setBusinessKey(element.getAttribute

("businessKey"));



Marcel

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=434422&aid=812909&group_id=42875