Hello,
On Tue, Sep 25, 2007 at 06:34:34AM -0700, Gokop Goteng wrote:
> Please I am trying to use the fortune example to register a resource. I am
> following the documentation on
> GT 4.0 Index Service: How to Write a Simple Execution Aggregator Information
> Provider for MDS4and I got this error:
>
>
> [EMAIL PROTECTED] ~]$ $GLOBUS_LOCATION/bin/mds-servicegroup-add -s
> https://127.0.0.1:8443/wsrf/services/DefaultIndexService
> fortune-provider-registration.xml
> Processing configuration file...
> Error: Fatal Error: URI=null Line=5: The prefix "wsa" for element
> "wsa:Address" is not bound.
Can you send the content of the fortune-provider-registration.xml file
you're using? This error indicates that the file has been altered and
that the line near the top of the file containing "xmlns:wsa" is
missing or invalid. By default, the first few lines should look like
this (at least in the example):
----------------------------
<?xml version="1.0" encoding="UTF-8" ?>
<ServiceGroupRegistrations
xmlns="http://mds.globus.org/servicegroup/client"
xmlns:sgc="http://mds.globus.org/servicegroup/client"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"
xmlns:agg="http://mds.globus.org/aggregator/types">
----------------------------
-Neill.