OAI validation error

165 Views Asked by At

I validated my oai code in openarchives.So many error.Cleared mostly.But still have 2 errors.It shows error like 'FAIL POST test 1 for Identify was unsuccessful, an OAI error response was received'.Anyone know what kind of error is this.Attached error image Thank you

1

There are 1 best solutions below

5
On BEST ANSWER

It looks like your OAI server does not accept POST requests for these verbs. OAI servers are expected to treat POST and GET requests in the same way.

For instance, these two requests give the same result:

curl -d "verb=Identify" http://export.arxiv.org/oai2
curl http://export.arxiv.org/oai2?verb=Identify

It should be the same for your server.