Explanation | The JAXR provider caught a org.uddi4j.UDDIException while sending a request to the UDDI registry. |
Action | Examine the exception information to determine its cause. |
Explanation | The JAXR provider caught a TransportException while sending a request to the UDDI registry. |
Action | Examine the exception information to determine its cause. |
Explanation | There was an attempt to set both the AccessURI and the TargetBinding of a ServiceBinding interface. |
Action | Set either an AccessURI object or a TargetBinding object. |
Explanation | The object passed to the setSourceObject method was not an Organization. |
Action | Pass only Organization objects to the setSourceObject method. |
Explanation | There was an attempt to save an Association that did not have both source and target objects set. |
Action | Ensure that both source and target objects are set before you save Associations. |
Explanation | The object that was passed to the setTargetObject method was not an Organization. |
Action | Pass only Organization objects to the setTargetObject method. |
Explanation | An associationKey object did not have the correct format. |
Action | Ensure that associationKey objects that are passed to the deleteAssociations method have the correct format. |
Explanation | When finding Associations, a Concept was passed in the associationTypes Collection that was from the AssociationType enumeration, but did not have a value that is valid for UDDI. When saving Associations, an Association was passed whose associationType Concept was from the AssociationType enumeration, but did not have a value that is valid for UDDI. |
Action | Use only Concepts for associationType objects that are from the AssociationType enumeration and have the value HasChild, HasParent, RelatedTo or EquivalentTo. |
Explanation | When finding Associations, a Concept was passed that was not from the AssociationType enumeration in the associationTypes Collection. When saving Associations, an Association was passed whose associationType Concept was not from the AssociationType enumeration. |
Action | Use only Concepts from the AssociationType enumeration for associationType objects. |
Explanation | A taxonomy Concept was passed to the createClassificationScheme method. This method allows Concepts that are returned by the BusinessQueryManager.findConcepts call to be converted to a ClassificationScheme. |
Action | Ensure that the Concept that is passed is semantically a ClassificationScheme. |
Explanation | A method that required a connection to the registry was called after the connection was closed by a call to the Connection.close() method. |
Action | Do not call methods that require a connection to the registry after the connection has been closed. |
Explanation | The createConnection() method was called before the properties had been set on the ConnectionFactory. |
Action | Ensure that the ConnectionFactory properties have been set before attempting to create a connection. |
Explanation | The JAXR provider caught a javax.xml.parsers.ParserConfigurationException while attempting to initialize the XML parser. |
Action | Examine the exception information to determine its cause. |
Explanation | The JAXR provider caught a java.io.IOException while attempting to parse the XML request. |
Action | Examine the exception information to determine its cause. |
Explanation | The JAXR provider caught a java.io.IOException while attempting to serialize the XML response. |
Action | Examine the exception information to determine its cause. |
Explanation | A null interfaceName was passed to the createObject method. |
Action | Ensure that a valid interfaceName is passed to the createObject method. |
Explanation | The JAXR provider has encountered a line in an enumeration data file that is not valid while the connection is being initialized. The JAXR provider will ignore the line that is not valid and will be unaffected. |
Action | Ensure that the enumeration data file is valid so that all members of the enumeration can be used. The correct format of each line is <enumeration name><separator char><concept value>. |
Explanation | The JAXR provider caught a java.io.IOException while attempting to read an enumeration data file. |
Action | Examine the exception information to determine its cause. |
Explanation | The JAXR provider has encountered a property value that is not valid in the enumerationConfig.properties file while the connection is being initialized. The JAXR provider will ignore the property that is not valid, and therefore ignore the corresponding enumeration. |
Action | Ensure that the enumerationConfig.properties file is valid so that all enumerations can be used. The correct format of each line is <enumeration ID>=<enumeration name>,<data filename>,<separator char>. |
Explanation | The JAXR provider detected a java.io.IOException while attempting to read the enumerationConfig.properties file. |
Action | Examine the exception information to determine its cause. |
Explanation | The JAXR provider detected a java.io.IOException while attempting to read the taxonomyConfig.properties file. |
Action | Examine the exception information to determine its cause. |
Explanation | A Uniform Resource Identifier (URI) that does not use the correct URI syntax was passed to the setExternalURI method when URI validation was set to true by passing true to the ExternalLink.setValidateURI(boolean validate) method. |
Action | Either ensure that the URI uses the correct syntax, or set URI validation to false. |
Explanation | An inaccessible Uniform Resource Identifier (URI) was passed to the setExternalURI method when URI validation was set to true by passing true to the ExternalLink.setValidateURI(boolean validate) method. |
Action | Either ensure that the URI is accessible, or set URI validation to false. |
Explanation | An interface name that was passed to the createObject method is not valid. |
Action | Pass only valid interface names to the createObject method. Valid interface names are public final static String fields of the LifeCycleManager class. |
Explanation | The setClassificationScheme method of an internal Classification interface was called. |
Action | Do not attempt to modify the ClassificationScheme of an internal Classification interface directly. The ClassificationScheme of an internal Classification interface is determined by the Classification's Concept and cannot be modified independently. |
Explanation | The setName method of an internal Classification interface was called. |
Action | Do not attempt to modify the name of an internal Classification interface directly. The name of an internal Classification interface is determined by the Classification's Concept interface and cannot be modified independently. |
Explanation | The setValue method of an internal Classification interface was called. |
Action | Do not attempt to modify the value of an internal Classification interface directly. The value of an internal Classification interface is determined by the Classification's Concept interface and cannot be modified independently. |
Explanation | A Concept without a parent ClassificationScheme (that is, it is not a taxonomy Concept) was passed to the setConcept method. When you set the Concept of a Classification interface, the Classification interface becomes internal, and must have a parent ClassificationScheme to be valid. |
Action | Pass only Concepts that represent taxonomy elements to the setConcept method. |
Explanation | There was an attempt to save a taxonomy Concept as a UDDI tModel in the registry. Taxonomy Concepts are used to classify objects saved in the registry, but they cannot be saved independently. |
Action | Do not save taxonomy Concepts in the registry. |
Explanation | There was an attempt to create a taxonomy Concept whose parent was not a Concept or a ClassificationScheme. |
Action | Ensure that the parent of a taxonomy Concept is another Concept or a ClassificationScheme. |
Explanation | The getPath() method was called on a Concept that was not a taxonomy Concept, but only taxonomy Concepts have parents and therefore paths. |
Action | Do not call the getPath() method on a Concept that is not a taxonomy Concept. |
Explanation | The getPath() method was called on a Concept that did not have a value. |
Action | A Concept must have a value to have a path, so do not attempt to call the getPath() method on Concepts that do not have a value. |
Explanation | The getPath() method was called on a Concept whose ClassificationScheme did not have an ID, therefore the Concept does not have a path. |
Action | Do not call the getPath() method on a Concept whose ClassificationScheme does not have an ID. |
Explanation | The createConnection method was called when the ConnectionFactory property javax.xml.registry.uddi.maxRows did not contain a valid integer. |
Action | Ensure that if the javax.xml.registry.uddi.maxRows ConnectionFactory property is set, it contains a valid integer. |
Explanation | The String passed to the makeRegistrySpecificRequest method was not valid XML. |
Action | Ensure that the String passed to the makeRegistrySpecificRequest method is valid XML. |
Explanation | The createConnection method was called when the ConnectionFactory property javax.xml.registry.lifeCycleManagerURL contained a Uniform Resource Identifier (URI) that does not use the correct URI syntax. |
Action | Ensure that the javax.xml.registry.lifeCycleManagerURL ConnectionFactory property contains a URL that uses the correct syntax. |
Explanation | The createConnection method was called when the ConnectionFactory property javax.xml.registry.queryManagerURL contained a Uniform Resource Identifier (URI) that does not use the correct URI syntax. |
Action | Ensure that the javax.xml.registry.queryManagerURL ConnectionFactory property contains a URL that uses the correct syntax. |
Explanation | More than one ClassificationScheme was found that matched the search criteria. |
Action | Narrow the search criteria to find only one ClassificationScheme. |
Explanation | The objectType that was passed is not valid. |
Action | Use a valid objectType. |
Explanation | The type of object that was passed to the saveObjects method cannot be saved directly in the registry. |
Action | Ensure that objects passed to the saveObjects method are of a valid type. Valid types are Association, ClassificationScheme, Concept, Organization, Service, and ServiceBinding. |
Explanation | An objectType of LifeCycleManager.CONCEPT was passed, but the id or one of the objectKeys was that of a ClassificationScheme. |
Action | Specify the correct objectType that corresponds to the object keys. |
Explanation | An objectType of LifeCycleManager.CLASSIFICATIONSCHEME was passed, but the id or one of the objectKeys was that of a Concept. |
Action | Specify the correct objectType that corresponds to the object keys. |
Explanation | The requestId specified was not found. |
Action | Pass only valid requestIds to the getBulkResponse method. After the getBulkResponse method is called once for a particular requestId, that requestId is removed from the cache, and any subsequent calls to the getBulkResponse method for that requestId will result in an InvalidRequestException. |
Explanation | A semantic equivalence is defined, in the javax.xml.registry.semanticEquivalences property of a ConnectionFactory object, for a Concept in the PostalAddressAttributes enumeration, when there is no equivalent Concept defined in an internal taxonomy. |
Action | Ensure that the Concept paths used in the javax.xml.registry.semanticEquivalences ConnectionFactory property are defined in a internal taxonomy. |
Explanation | The javax.xml.registry.semanticEquivalences ConnectionFactory contains a keyPair that contains more than two elements. |
Action | Ensure that the javax.xml.registry.semanticEquivalences ConnectionFactory property has the correct format, as defined in the JAXR specification. |
Explanation | The javax.xml.registry.semanticEquivalences ConnectionFactory contains a keyPair that does not contain the path of a Concept in the PostalAddressAttributes enumeration. Semantic equivalences for UDDI JAXR providers are allowed only for Concepts in the PostalAddressAttributes enumeration. |
Action | Define semantic equivalences only for Concepts in the PostalAddressAttributes enumeration. |
Explanation | An slot name that was not valid was passed to one of the methods of the ExtensibleObject interface. |
Action | Ensure that the slot name is valid for the particular instance of ExtensibleObject. |
Explanation | A collection of values was passed to the setValues method that contained duplicate values. |
Action | Pass only a collection of unique values to setValues method. |
Explanation | A Slot with name Slot.SORT_CODE_SLOT and multiple values was passed to the addSlot method. |
Action | When adding a Slot with the name Slot.SORT_CODE_SLOT to a PostalAddress, ensure that it has only one value. |
Explanation | There was an attempt to give a SpecificationLink more than one ExternalLink. |
Action | Give a SpecificationLink a maximum of one ExternalLink. |
Explanation | There was an attempt to give the SpecificationLink more than one usage parameter. |
Action | Give a SpecificationLink a maximum of one usage parameter. |
Explanation | There was an attempt to set a Concept with a parent (that is, a taxonomy Concept) as the specification object of the SpecificationLink. |
Action | Set a specification Concept as the specification object of a SpecificationLink. |
Explanation | There was an attempt to set a RegistryObject that was not a Concept as the specification object of a SpecificationLink. |
Action | Set a specification Concept as the specification object of a SpecificationLink. |
Explanation | A namePattern that contained an escape sequence that was not valid was passed to one of the indicated methods. |
Action | Ensure that the escape sequences in namePatterns are valid. |
Explanation | A namePattern that ended with an escape sequence that was not valid was passed to one of the indicated methods. |
Action | Ensure that the escape sequences in namePatterns are valid. |
Explanation | The createConnection() method was called when the System property http.proxyPort contained a String that was not a valid integer. |
Action | Ensure that if the System property http.proxyPort is set, it contains a valid integer. |
Explanation | A taxonomy data file contains a line that is not valid. |
Action | Ensure that the line format is correct. The format of each line is <taxonomy ID><Concept name><Concept value><Concept parent>. |
Explanation | A taxonomy data file contains a line for a Concept whose parent cannot be located in that file. |
Action | Ensure that a parent exists for each Concept in the taxonomy data file. |
Explanation | The JAXR provider detected a java.io.IOException while attempting to read the taxonomy data file. |
Action | Examine the exception information to determine its cause. |
Explanation | A property value that was not valid was found in the taxonomyConfig.properties file while the connection is being initialized. The JAXR provider will ignore the property that is not valid, and therefore ignore the corresponding taxonomy. |
Action | Ensure that the taxonomyConfig.properties file is valid so that all taxonomies can be used. The correct format of each line is <taxonomy ID>=<tModelKey>,<data filename>,<separator char>. |
Explanation | An object was passed to a method, where that method was not expecting an object of that type. |
Action | Pass objects of the appropriate type to JAXR methods. |
Explanation | An object that was not a String or a LocalizedString was passed as a namePattern to a query method. |
Action | Use Strings or LocalizedStrings as namePattern objects. |
Explanation | There was an attempt to create a connection without specifying the javax.xml.registry.queryManagerURL ConnectionFactory property. |
Action | Specify the javax.xml.registry.queryManagerURL ConnectionFactory property before attempting to create a Connection. |
Explanation | There was an attempt to create a connection with a value of the javax.xml.registry.security.authenticationMethod ConnectionFactory property that was not valid. |
Action | Use a valid value for this property. Valid values are UDDI_GET_AUTHTOKEN and HTTP_BASIC. |
Explanation | There was an attempt to classify a ServiceBinding interface using an external Classification, which therefore is not a Classification with a sub-Concept of the internal URLType enumeration. |
Action | Classify a ServiceBinding interface using a sub-Concept of the internal URLType enumeration. |
Explanation | There was an attempt to classify a ServiceBinding interface using an internal Classification interface that has a Concept that is not a sub-Concept of the internal URLType enumeration. |
Action | Classify a ServiceBinding interface using a sub-Concept of the URLType enumeration. |