---++ Using the NVO Registry WebService from Java and C# Below I briefly describe how to make a simple client for the registry prototype. ---+++ The Service URL First we need the service URL which is http://sdssdbs1.stsci.edu/nvo/registry/registry.asmx ---+++ The Client Next we need some Client code - here is a simple client in Java <table><tr> <td width="20"> <br><br> AXIS always creates Localtor classes - where the servie url may be changed.<br> Simple Resource is the object returned by the registry. </td> <td> <pre> import org.us_vo.www.*; class RegClient { public static void main (String[] args) throws Exception { RegistryLocator loc = new RegistryLocator(); RegistrySoap reg = loc.getRegistrySoap(); ArrayOfSimpleResource reses = null; if ( args.length ==0 ) { reses = reg.dumpRegistry(); } else { reses = reg.queryRegistry(args[0]); } for (int i = 0 ; i < reses.getSimpleResource().length; i++) { print(reses.getSimpleResource(i)); } } public static void print(SimpleResource res ) { System.out.println(res.getTitle()+ "|"+ res.getPublisher() + "|" + res.getMaxSR()); } } </pre> </td> -- WilliamOMullane - 02 Oct 2003 <br><br><br> <!-- * Set ALLOWTOPICRENAME = %MAINWEB%.TWikiAdminGroup -->
This topic: IVOA
>
WebHome
>
IvoaEvents
>
InterOpOct2003
>
InterOpOct2003WebGrid
>
WebgridTutorial
>
RegistryClientTutorial
Topic revision: r2 - 2003-10-02 - WilliamOMullane
Copyright © 2008-2025 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki?
Send feedback