Jumps: IvoaResReg :: registry mail archive :: RegistryMetadata :: VOResourceV10 :: RegUpgradeSummer2006
Meetings: InterOpMay2006ResReg :: InterOpSep2006ResReg

Adapting to Corrections to the Registry Interface WSDL

Author: RayPlante

This is draft version of a note to be submitted to the IVOA Document Repository.

Abstract

Prior to 24 September 2008, an inconsistency was discovered in the IVOA Registry Interface standards document (v1.00) between the text and the actual WSDL document included in the appendix and provided on the IVOA web site (via http://www.ivoa.net/wsdl/). The Registry Working Group plans to change the WSDL to match the text. Consequently, this has implications for current registries that are compliant with the uncorrected WSDL. This document describes how the WSDL is being changed as well as how we can provide backward compatible support for currently deployed registries. In particular, we will correct the official WSDL without changing the namespace. We describe how registry providers should indicate which versions of the WSDL are supported, how clients can learn which interface is supported, and how registries and clients may choose to support both the corrected and uncorrected interface.

1. Introduction: the Problem

The Registry Interface v1.00 (RI) contains an inconsistency in the description of the keyword search interface between the text provided in section 2.1.3 and the WSDL spelled out in Appendix A.1. In the text description, the 3rd and 4th arguments to the KeywordSearch operation, from and max, respectively, control which sequence of matched records are returned. The from parameter indicates "the minimum position in the complete set of matched records of the range of records to be returned", and max indicates "the maximum number of matched records to return". Thus the position of the last record returned is from+max-1. When a client uses this to page through a large number of matched records, the value of from for the next query will be from+max.

In the WSDL document, the 3rd and 4th parameters controling the range of matches are called from and to. The intended meaning of from is the same as described above, but to indicated the position last record to display. When paging, the value of to for the next query would be to+1.

As of 24 September 2008, the copy of the WSDL as given in the appendix has been also available on the IVOA Web site (via http://www.ivoa.net/wsdl). Consequently, this is typically been the basis for implementations up to that date.

The discrepancy presumably resulted from an incomplete edit to the RI document. In an earlier version, both the Search and the KeywordSearch operations took the from and to argument parameters. After review by the working group, it was decided to change it to from and max for both of the operations. While the text was updated in both places, the WSDL was only updated for the Search operation.

2. Correcting the Standard and Impact on Existing Implementations

As from and max represent the intention of the working group review, the next version of the RI document will change the WSDL to match the description in the text of section 2.1.3. To minimize the disruption to existing deployed registries and clients, the namespace for the WSDL document will not be changed.

Normally, changing the interface defined in the WSDL to this extent would wreak havoc with existing clients. However, our working group discussions suggest in this particular case, such a change will not have a major practical impact, mainly due to the current lack of penetration of the RI standard search interface. The most extensive use of the standard search interface today is within the Astrogrid project, specifically via its desktop environment. In this case, nearly all of the registry queries are done via the XQuerySearch operation, and the KeywordSearch interface is not used at all.

Other IVOA registries (e.g. from NVO and Euro-VO) are in a less mature state and would be more easily adapted.

The reference implementation of the client library provided by the NVO's IVOARegistry package and is actively supported, though not widely used outside of the NVO Project at this time. The latest version is aware of the problem described in this Note: it pulls the WSDL from the service and attempts to analyze whether its KeywordSearch supports the to or the max parameter and adapts its query accordingly. This analysis is not trivial nor robust, so a simpler solution for making this distinction would be helpful.

While it seems the proposed correction to the WSDL will result in few effects seen by users today, it will be important that registry server and client applications incorporate the change to prevent problems in the future. Of course, there may be some period of time, particularly for AstroGrid registries, before all implementations of the RI can be brought into compliance with the corrected WSDL. Therefore, it is worth spelling out a plan for providing compatibility across corrected and uncorrected implementations.

3. Providing Compatibility Across Corrected and Existing Implementations

This section addresses the expectation that once the RI search interface is changed, there will exist some Registries supporting in the KeywordSearch interface the old to parameter and some supporting the new max parameter. It would be helpful if a client could be constructed to talk to either variety in a manner that is transparent to the user. To enable this, this note proposes the following:

  • A pre-corrected registry updates the VOResource description of itself, setting the version attribute to the search interface element to "1.0p" (for pre-1.0). This updated VOResource should be returned by the registry's GetIdentity search operation.
  • A client that wishes to support pre-corrected registries calls the GetIdentity operation to determine which interface it can use.
  • A server may wish to support both varieties within the same webservice implementation. In this case, the server should use an altered version of the RegistrySearch WSDL presented with this Note.

The efficacy of this proposal is based on two assumptions:

  • it is so straight-forward to update an existing registry's (namely, AstroGrid's) VOResource description that it can be done more-or-less immediately without disruption to existing users.
  • the standard KeyworkSearch function is not widely used at this time. In particular, there are few existing standard registry search clients applications in use that rely on the KeyworkSearch function. Those that do exist can be updated quickly.

3.1. Updating VOResource Descriptions

This document proposes that we use a registry's resource description to indicate whether the search interface supports the to parameter (the uncorrected interface) or the max parameter. For uncorrected services, the <interface> element should have the version attribute set to '1.0p' (mneumonic: pre-1.0):

   <capability xsi:type="vr:Search" 
               standardID="ivo://ivoa.net/std/Registry">
      <interface xsi:type="vr:WebService" version="1.0p" >
         <accessURL use="post"> http://my.registry.org/search </accessURL>
      </interface>
   </capability>

If a registry supports max parameter of the corrected interface, it should set version="1.0":

   <capability xsi:type="vr:Search" 
               standardID="ivo://ivoa.net/std/Registry">
      <interface xsi:type="vr:WebService" version="1.0" >
         <accessURL use="post"> http://my.registry.org/search </accessURL>
      </interface>
   </capability>

As per the VOResource standard (s3.2.2), version 1.0 should be assumed when no version attribute is provided--i.e. the max parameter is supported.

For maximum compatibility, a registry may choose to support both interfaces. In this case, both interface entries should be included. They may point to the same access URL (see S3.3 below):

   <capability xsi:type="vr:Search" 
               standardID="ivo://ivoa.net/std/Registry">
      <interface xsi:type="vr:WebService" version="1.0p" >
         <accessURL use="post"> http://my.registry.org/search </accessURL>
      </interface>
      <interface xsi:type="vr:WebService" version="1.0" >
         <accessURL use="post"> http://my.registry.org/search </accessURL>
      </interface>
   </capability>

3.2. Client application strategies

3.3. Servers supporting both interfaces: the modified WSDL


Edit | Attach | Watch | Print version | History: r12 | r10 < r9 < r8 < r7 | Backlinks | Raw View | Raw edit | More topic actions...
Topic revision: r8 - 2008-09-26 - RayPlante
 
This site is powered by the TWiki collaboration platform Powered by Perl This site is powered by the TWiki collaboration platformCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback