On Sat, Oct 06, 2007 at 05:13:05AM -0700, Gokop Goteng wrote: > Please I am using the GT4 manual on Index Service: How To Write a Simple > Execution Aggregator Information Provider for MDS4. I followed the steps to > test the fortune example. I got the following error and I have posted it to > the gt-user group, I could not get help: > > $GLOBUS_LOCATION/bin/mds-servicegroup-add -s > http://isxp1313c.sims.cranfield.ac.uk:8080/wsrf/services/DefaultIndexService > fortune-provider-registration.xml > Processing configuration file... > Error: Fatal Error: URI=null Line=6: The prefix "wsa" for element > "wsa:Address" is not bound. > [EMAIL PROTECTED] ~]$ > > > My code is: > > <?xml version = "1.0" encoding="UTF-8"?> > <ServiceGroupRegistrations> > > <defaultServiceGroupEPR> > > <wsa:Address>http://isxp1313c.sims.cranfield.ac.uk:8080/wsrf/services/DefaultIndexService > </wsa:Address>
The error says, "The prefix "wsa" for element "wsa:Address" is not bound", and that is evidently the case since it's used in the above file. In short, you're missing ALL of the prefixes required for that example. Download the file again from: http://www.globus.org/toolkit/docs/4.0/info/index/fortune-provider-registration.xml IMPORTANT: When you download the fortune-provider-registration file, you MUST right click and save the file. If you click it and view it in firefox and cut and paste it, it will be incomplete like what you're showing above. If you're using GNU/Linux, you can simply use this command at a terminal to fetch it properly: wget http://www.globus.org/toolkit/docs/4.0/info/index/fortune-provider-registration.xml -Neill.
