Skip to content

Commit

Permalink
Merge pull request #186 from jd-au/fix-oai-pmh-xsd-location
Browse files Browse the repository at this point in the history
reg: update location of OAI-PMH.xsd
  • Loading branch information
pdowler authored Aug 26, 2024
2 parents cf793a0 + 0aabccf commit 367708c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reg/src/main/java/org/opencadc/reg/oai/OAIWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ private Document createEnvelopeOAI(URL oaiEndpoint, String oaiRequest) {
//root.addNamespaceDeclaration(xsd);
root.addNamespaceDeclaration(xsi);
root.setAttribute("schemaLocation",
"http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd", xsi);
"http://www.openarchives.org/OAI/2.0/ https://www.openarchives.org/OAI/2.0/OAI-PMH.xsd", xsi);

Document ret = new Document();
ret.addContent(root);
Expand Down

0 comments on commit 367708c

Please sign in to comment.