cul_hydra 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/app/assets/images/cul_hydra/crystal/binary.png +0 -0
- data/app/assets/images/cul_hydra/crystal/document.png +0 -0
- data/app/assets/images/cul_hydra/crystal/file.png +0 -0
- data/app/assets/images/cul_hydra/crystal/file_broken.png +0 -0
- data/app/assets/images/cul_hydra/crystal/folder_documents.png +0 -0
- data/app/assets/images/cul_hydra/crystal/folder_images.png +0 -0
- data/app/assets/images/cul_hydra/crystal/folder_music.png +0 -0
- data/app/assets/images/cul_hydra/crystal/folder_sound.png +0 -0
- data/app/assets/images/cul_hydra/crystal/folder_video.png +0 -0
- data/app/assets/images/cul_hydra/crystal/kmultiple.png +0 -0
- data/app/assets/images/cul_hydra/crystal/knotify.png +0 -0
- data/app/assets/images/cul_hydra/crystal/mp3.png +0 -0
- data/app/assets/images/cul_hydra/crystal/multimedia2.png +0 -0
- data/app/assets/images/cul_hydra/crystal/video.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/application.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/code.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/css.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/db.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/directory.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/doc.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/file.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/film.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/flash.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/folder_open.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/html.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/java.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/linux.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/music.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/pdf.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/php.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/picture.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/ppt.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/psd.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/ruby.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/script.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/spinner.gif +0 -0
- data/app/assets/images/cul_hydra/filesystem/txt.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/xls.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/zip.png +0 -0
- data/app/controllers/concerns/cul/hydra/application_id_behavior.rb +43 -0
- data/app/controllers/concerns/cul/hydra/controller.rb +22 -0
- data/app/controllers/concerns/cul/hydra/resolver.rb +69 -0
- data/app/controllers/concerns/cul/hydra/thumbnails.rb +62 -0
- data/app/helpers/cul/hydra/ore_proxies_helper_behavior.rb +119 -0
- data/app/helpers/cul/hydra/struct_metadata_helper_behavior.rb +89 -0
- data/app/models/bag_aggregator.rb +7 -0
- data/app/models/concept.rb +23 -0
- data/app/models/concerns/cul/hydra/models.rb +24 -0
- data/app/models/concerns/cul/hydra/models/aggregator.rb +121 -0
- data/app/models/concerns/cul/hydra/models/common.rb +220 -0
- data/app/models/concerns/cul/hydra/models/image_resource.rb +106 -0
- data/app/models/concerns/cul/hydra/models/linkable_resources.rb +108 -0
- data/app/models/concerns/cul/hydra/models/resource.rb +87 -0
- data/app/models/concerns/nfo/common.rb +17 -0
- data/app/models/concerns/nfo/file_data_object.rb +10 -0
- data/app/models/concerns/nfo/folder.rb +10 -0
- data/app/models/concerns/nie/information_element.rb +10 -0
- data/app/models/concerns/ore/proxy.rb +124 -0
- data/app/models/concerns/rdf/cul.rb +77 -0
- data/app/models/concerns/rdf/fcrepo3.rb +360 -0
- data/app/models/concerns/rdf/nfo.rb +807 -0
- data/app/models/concerns/rdf/nie.rb +338 -0
- data/app/models/concerns/rdf/olo.rb +100 -0
- data/app/models/concerns/rdf/ore.rb +101 -0
- data/app/models/concerns/rdf/pimo.rb +605 -0
- data/app/models/concerns/rdf/sc.rb +47 -0
- data/app/models/concerns/sc/canvas.rb +12 -0
- data/app/models/concerns/sc/sequence.rb +21 -0
- data/app/models/content_aggregator.rb +3 -0
- data/app/models/cul/hydra/datastreams/dc_metadata.rb +107 -0
- data/app/models/cul/hydra/datastreams/mods_document.rb +195 -0
- data/app/models/cul/hydra/datastreams/struct_metadata.rb +176 -0
- data/app/models/dc_document.rb +39 -0
- data/app/models/generic_aggregator.rb +68 -0
- data/app/models/generic_object.rb +18 -0
- data/app/models/generic_resource.rb +210 -0
- data/app/models/jp2_image_aggregator.rb +34 -0
- data/app/models/mets_structured_aggregator.rb +18 -0
- data/app/models/resource.rb +78 -0
- data/app/models/resource_aggregator.rb +22 -0
- data/app/models/static_audio_aggregator.rb +12 -0
- data/app/models/static_image_aggregator.rb +32 -0
- data/bin/rails +12 -0
- data/config/fedora.yml +17 -0
- data/config/jetty.yml +6 -0
- data/config/locales/ldpd_hydra.en.yml +125 -0
- data/config/predicate_mappings.yml +79 -0
- data/config/solr.yml +8 -0
- data/config/solr_mappings.yml +26 -0
- data/config/solr_value_maps.yml +41 -0
- data/config/subs.yml +17 -0
- data/fixtures/cmodels/ldpd_ADLMetadata.xml +56 -0
- data/fixtures/cmodels/ldpd_AESMetadata.xml +56 -0
- data/fixtures/cmodels/ldpd_BagAggregator.xml +70 -0
- data/fixtures/cmodels/ldpd_Concept.xml +69 -0
- data/fixtures/cmodels/ldpd_ContentAggregator.xml +70 -0
- data/fixtures/cmodels/ldpd_DynamicAggregator.xml +56 -0
- data/fixtures/cmodels/ldpd_JP2ImageAggregator.xml +60 -0
- data/fixtures/cmodels/ldpd_METSMetadata.xml +56 -0
- data/fixtures/cmodels/ldpd_METSStructuredAggregator.xml +53 -0
- data/fixtures/cmodels/ldpd_MODSMetadata.xml +73 -0
- data/fixtures/cmodels/ldpd_MostRecent.xml +46 -0
- data/fixtures/cmodels/ldpd_PTIFImageAggregator.xml +63 -0
- data/fixtures/cmodels/ldpd_Resource.xml +72 -0
- data/fixtures/cmodels/ldpd_RestrictedResource.xml +54 -0
- data/fixtures/cmodels/ldpd_Since.xml +62 -0
- data/fixtures/cmodels/ldpd_StaticAudioAggregator.xml +54 -0
- data/fixtures/cmodels/ldpd_StaticImageAggregator.xml +71 -0
- data/fixtures/cmodels/ldpd_htest.xml +54 -0
- data/fixtures/cmodels/ldpd_nullbind.xml +63 -0
- data/fixtures/cmodels/ldpd_sdef.Aggregator.xml +71 -0
- data/fixtures/cmodels/ldpd_sdef.Core.xml +48 -0
- data/fixtures/cmodels/ldpd_sdef.Image.xml +47 -0
- data/fixtures/cmodels/ldpd_sdef.Metadata.xml +62 -0
- data/fixtures/cmodels/ldpd_sdef.Resource.xml +76 -0
- data/fixtures/cmodels/ldpd_sdef.ZoomingImage.xml +46 -0
- data/fixtures/cmodels/ldpd_sdep.BagAggregator.xml +160 -0
- data/fixtures/cmodels/ldpd_sdep.BagAggregatorCore.xml +221 -0
- data/fixtures/cmodels/ldpd_sdep.ContentAggregatorCore.xml +221 -0
- data/fixtures/cmodels/ldpd_sdep.DynamicAggregator.xml +171 -0
- data/fixtures/cmodels/ldpd_sdep.DynamicAggregatorCore.xml +215 -0
- data/fixtures/cmodels/ldpd_sdep.JP2Image.xml +220 -0
- data/fixtures/cmodels/ldpd_sdep.JP2ImageAggregator.xml +167 -0
- data/fixtures/cmodels/ldpd_sdep.JP2ImageCore.xml +229 -0
- data/fixtures/cmodels/ldpd_sdep.MODSMetadata.xml +158 -0
- data/fixtures/cmodels/ldpd_sdep.MODSMetadataCore.xml +227 -0
- data/fixtures/cmodels/ldpd_sdep.PTIFImage.xml +222 -0
- data/fixtures/cmodels/ldpd_sdep.PTIFImageAggregator.xml +167 -0
- data/fixtures/cmodels/ldpd_sdep.PTIFImageCore.xml +215 -0
- data/fixtures/cmodels/ldpd_sdep.StaticImage.xml +210 -0
- data/fixtures/cmodels/ldpd_sdep.StaticImageAggregator.xml +186 -0
- data/fixtures/cmodels/ldpd_sdep.StaticImageCore.xml +220 -0
- data/fixtures/cmodels/ore_Proxy.xml +50 -0
- data/fixtures/spec/BLOB/test001.jpg +0 -0
- data/fixtures/spec/CUL_DC/dc.xml +5 -0
- data/fixtures/spec/CUL_MODS/mods-001.xml +25 -0
- data/fixtures/spec/CUL_MODS/mods-all.xml +65 -0
- data/fixtures/spec/CUL_MODS/mods-bad-repo.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-created-range.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-created-single.xml +6 -0
- data/fixtures/spec/CUL_MODS/mods-date-end-with-all-u-characters.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-issued-range.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-issued-single.xml +6 -0
- data/fixtures/spec/CUL_MODS/mods-date-other-range.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-other-single.xml +6 -0
- data/fixtures/spec/CUL_MODS/mods-date-range-short-years.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-start-with-all-u-characters.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-dates-with-all-u-characters.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-dates-with-some-u-characters.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-item.xml +31 -0
- data/fixtures/spec/CUL_MODS/mods-names.xml +35 -0
- data/fixtures/spec/CUL_MODS/mods-notes.xml +8 -0
- data/fixtures/spec/CUL_MODS/mods-ns.xml +2 -0
- data/fixtures/spec/CUL_MODS/mods-origin-info.xml +9 -0
- data/fixtures/spec/CUL_MODS/mods-part.xml +22 -0
- data/fixtures/spec/CUL_MODS/mods-physical-description.xml +12 -0
- data/fixtures/spec/CUL_MODS/mods-physical-location.xml +9 -0
- data/fixtures/spec/CUL_MODS/mods-record-info.xml +4 -0
- data/fixtures/spec/CUL_MODS/mods-relateditem-project.xml +8 -0
- data/fixtures/spec/CUL_MODS/mods-subjects.xml +73 -0
- data/fixtures/spec/CUL_MODS/mods-textual-date.xml +8 -0
- data/fixtures/spec/CUL_MODS/mods-titles.xml +33 -0
- data/fixtures/spec/CUL_MODS/mods-top-level-location-vs-relateditem-location.xml +21 -0
- data/fixtures/spec/CUL_MODS/mods-unmapped-project.xml +7 -0
- data/fixtures/spec/CUL_SOLR/mods-001.xml +1 -0
- data/fixtures/spec/CUL_SOLR/mods-001.yml +30 -0
- data/fixtures/spec/FOXML/content-aggregator.xml +64 -0
- data/fixtures/spec/FOXML/content-cmodel.xml +48 -0
- data/fixtures/spec/FOXML/image-cmodel.xml +48 -0
- data/fixtures/spec/FOXML/resource-max.xml +83 -0
- data/fixtures/spec/FOXML/resource-screen.xml +273 -0
- data/fixtures/spec/FOXML/resource-thumb.xml +86 -0
- data/fixtures/spec/FOXML/static-image-aggregator.xml +31 -0
- data/fixtures/spec/STRUCTMAP/structmap-examples.xml +21 -0
- data/fixtures/spec/STRUCTMAP/structmap-nested.xml +10 -0
- data/fixtures/spec/STRUCTMAP/structmap-recto.xml +4 -0
- data/fixtures/spec/STRUCTMAP/structmap-seq.xml +5 -0
- data/fixtures/spec/STRUCTMAP/structmap-unordered-seq.xml +5 -0
- data/lib/cul_hydra.rb +20 -0
- data/lib/cul_hydra/access_controls_enforcement.rb +53 -0
- data/lib/cul_hydra/controllers.rb +13 -0
- data/lib/cul_hydra/controllers/aggregates.rb +93 -0
- data/lib/cul_hydra/controllers/aggregator_controller_helper.rb +27 -0
- data/lib/cul_hydra/controllers/catalog.rb +12 -0
- data/lib/cul_hydra/controllers/content_aggregators.rb +81 -0
- data/lib/cul_hydra/controllers/datastreams.rb +145 -0
- data/lib/cul_hydra/controllers/helpers.rb +10 -0
- data/lib/cul_hydra/controllers/helpers/active_fedora_helper_behavior.rb +9 -0
- data/lib/cul_hydra/controllers/helpers/application_helper_behavior.rb +16 -0
- data/lib/cul_hydra/controllers/helpers/dc_metadata_helper_behavior.rb +9 -0
- data/lib/cul_hydra/controllers/helpers/hydra_assets_helper_behavior.rb +46 -0
- data/lib/cul_hydra/controllers/helpers/hydra_autocomplete_helper_behavior.rb +35 -0
- data/lib/cul_hydra/controllers/helpers/hydra_uploader_helper_behavior.rb +34 -0
- data/lib/cul_hydra/controllers/helpers/resources_helper_behavior.rb +159 -0
- data/lib/cul_hydra/controllers/resources.rb +161 -0
- data/lib/cul_hydra/controllers/static_image_aggregators.rb +105 -0
- data/lib/cul_hydra/controllers/suggestions.rb +126 -0
- data/lib/cul_hydra/controllers/terms.rb +205 -0
- data/lib/cul_hydra/engine.rb +31 -0
- data/lib/cul_hydra/fedora.rb +41 -0
- data/lib/cul_hydra/fedora/dummy_object.rb +37 -0
- data/lib/cul_hydra/fedora/rubydora_patch.rb +16 -0
- data/lib/cul_hydra/fedora/url_helper_behavior.rb +32 -0
- data/lib/cul_hydra/indexer.rb +102 -0
- data/lib/cul_hydra/om.rb +7 -0
- data/lib/cul_hydra/om/standard_mods.rb +115 -0
- data/lib/cul_hydra/risearch_members.rb +92 -0
- data/lib/cul_hydra/solrizer.rb +10 -0
- data/lib/cul_hydra/solrizer/extractor.rb +27 -0
- data/lib/cul_hydra/solrizer/mods_fieldable.rb +473 -0
- data/lib/cul_hydra/solrizer/terminology_based_solrizer.rb +35 -0
- data/lib/cul_hydra/solrizer/value_mapper.rb +46 -0
- data/lib/cul_hydra/solrizer_patch.rb +172 -0
- data/lib/cul_hydra/version.rb +8 -0
- data/lib/cul_hydra/version.rb~ +8 -0
- data/lib/tasks/cmodel.rake +122 -0
- data/lib/tasks/cul_hydra_dev.rake +54 -0
- data/lib/tasks/index.rake +73 -0
- data/lib/tasks/transform.rake +23 -0
- metadata +503 -0
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<foxml:digitalObject VERSION="1.1" PID="ldpd:sdep.PTIFImageCore"
|
|
3
|
+
xmlns:foxml="info:fedora/fedora-system:def/foxml#"
|
|
4
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
5
|
+
xsi:schemaLocation="info:fedora/fedora-system:def/foxml# http://www.fedora.info/definitions/1/0/foxml1-1.xsd">
|
|
6
|
+
<foxml:objectProperties>
|
|
7
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#state" VALUE="Active"/>
|
|
8
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#label" VALUE="Service Deployment Object for Core services on JPEG2000 aggregators"/>
|
|
9
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#createdDate" VALUE="2008-07-09T13:59:55.703Z"/>
|
|
10
|
+
<foxml:property NAME="info:fedora/fedora-system:def/view#lastModifiedDate" VALUE="2009-04-24T20:24:19.782Z"/>
|
|
11
|
+
</foxml:objectProperties>
|
|
12
|
+
|
|
13
|
+
<foxml:datastream ID="DC" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
14
|
+
<foxml:datastreamVersion ID="DC1.0" LABEL="Dublin Core Record for Service Deployment Object for Resource-to-Metadata relationships" MIMETYPE="text/xml" FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
|
15
|
+
<foxml:xmlContent>
|
|
16
|
+
<oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"
|
|
17
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
18
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
19
|
+
xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
|
|
20
|
+
<dc:title>Service Deployment Object for Core services on JPEG2000 aggregators</dc:title>
|
|
21
|
+
<dc:identifier>ldpd:sdep.PTIFImageCore</dc:identifier>
|
|
22
|
+
</oai_dc:dc>
|
|
23
|
+
</foxml:xmlContent>
|
|
24
|
+
</foxml:datastreamVersion>
|
|
25
|
+
</foxml:datastream>
|
|
26
|
+
<foxml:datastream ID="RELS-EXT" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
27
|
+
<foxml:datastreamVersion ID="RELS-EXT1.0" LABEL="RDF Statements about this object" MIMETYPE="application/rdf+xml" FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0">
|
|
28
|
+
<foxml:xmlContent>
|
|
29
|
+
<rdf:RDF xmlns:fedora-model="info:fedora/fedora-system:def/model#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
30
|
+
<rdf:Description rdf:about="info:fedora/ldpd:sdep.PTIFImageCore">
|
|
31
|
+
<fedora-model:hasModel rdf:resource="info:fedora/fedora-system:ServiceDeployment-3.0"></fedora-model:hasModel>
|
|
32
|
+
<fedora-model:isDeploymentOf rdf:resource="info:fedora/ldpd:sdef.Core"></fedora-model:isDeploymentOf>
|
|
33
|
+
<fedora-model:isContractorOf rdf:resource="info:fedora/ldpd:PTIFImageAggregator"></fedora-model:isContractorOf>
|
|
34
|
+
</rdf:Description>
|
|
35
|
+
</rdf:RDF>
|
|
36
|
+
</foxml:xmlContent>
|
|
37
|
+
</foxml:datastreamVersion>
|
|
38
|
+
</foxml:datastream>
|
|
39
|
+
<foxml:datastream ID="METHODMAP" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
40
|
+
<foxml:datastreamVersion ID="METHODMAP1.0" LABEL="Deployment Method Map" MIMETYPE="text/xml" FORMAT_URI="info:fedora/fedora-system:FedoraSDepMethodMap-1.0">
|
|
41
|
+
<foxml:xmlContent>
|
|
42
|
+
<fmm:MethodMap xmlns:fmm="http://fedora.comm.nsdlib.org/service/methodmap" bDefPID="demo:sdef.Core" name="MethodMap - Basic behaviors for web images.">
|
|
43
|
+
<fmm:Method operationName="rmap" operationLabel="Returns resource map for this image" wsdlMsgName="uriRequest" wsdlMsgOutput="response">
|
|
44
|
+
<fmm:DefaultInputParm defaultValue="$objuri" label="" parmName="objuri" passBy="VALUE" required="true"></fmm:DefaultInputParm>
|
|
45
|
+
<fmm:UserInputParm defaultValue="json" label="response format" parmName="format" passBy="VALUE" required="true"></fmm:UserInputParm>
|
|
46
|
+
<fmm:MethodReturnType wsdlMsgName="response" wsdlMsgTOMIME="text/xml application/json"></fmm:MethodReturnType>
|
|
47
|
+
</fmm:Method>
|
|
48
|
+
<fmm:Method operationName="numberDescriptions" operationLabel="Returns the number of defined descriptions of this object, in Sparql form." wsdlMsgName="uriRequest" wsdlMsgOutput="response">
|
|
49
|
+
<fmm:DefaultInputParm defaultValue="$objuri" label="" parmName="objuri" passBy="VALUE" required="true"></fmm:DefaultInputParm>
|
|
50
|
+
<fmm:MethodReturnType wsdlMsgName="response" wsdlMsgTOMIME="text/xml"></fmm:MethodReturnType>
|
|
51
|
+
</fmm:Method>
|
|
52
|
+
<fmm:Method operationName="describedBy" operationLabel="Returns PIDs for defined descriptions of this object, in parameterized format. No more than max PIDs are returned, starting with the number start object in an ordered list." wsdlMsgName="listRequest" wsdlMsgOutput="response">
|
|
53
|
+
<fmm:DatastreamInputParm defaultValue="" label="" parmName="NULLBIND" passBy="URL_REF" required="false"></fmm:DatastreamInputParm>
|
|
54
|
+
<fmm:DefaultInputParm defaultValue="$objuri" label="" parmName="objuri" passBy="VALUE" required="true"></fmm:DefaultInputParm>
|
|
55
|
+
<fmm:UserInputParm defaultValue="0" label="" parmName="start" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
56
|
+
<fmm:UserInputParm defaultValue="10" label="" parmName="max" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
57
|
+
<fmm:UserInputParm defaultValue="sparql" label="response format" parmName="format" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
58
|
+
<fmm:MethodReturnType wsdlMsgName="response" wsdlMsgTOMIME="text/xml"></fmm:MethodReturnType>
|
|
59
|
+
</fmm:Method>
|
|
60
|
+
<fmm:Method operationName="getViewer" operationLabel="Returns a viewer for this object in an appropriate format" wsdlMsgName="getViewerRequest" wsdlMsgOutput="response">
|
|
61
|
+
<fmm:DatastreamInputParm parmName="SOURCE" passBy="URL_REF" required="true"/>
|
|
62
|
+
<fmm:DefaultInputParm defaultValue="$objuri" label="" parmName="objuri" passBy="VALUE" required="true"></fmm:DefaultInputParm>
|
|
63
|
+
<fmm:UserInputParm defaultValue="text/html" label="response format" parmName="format" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
64
|
+
<fmm:MethodReturnType wsdlMsgName="response" wsdlMsgTOMIME="text/xml text/html application/octet-stream"></fmm:MethodReturnType>
|
|
65
|
+
</fmm:Method>
|
|
66
|
+
<fmm:Method operationName="getIndex" operationLabel="Returns the number of defined descriptions of this object, in Sparql form." wsdlMsgName="uriRequest" wsdlMsgOutput="response">
|
|
67
|
+
<fmm:DefaultInputParm defaultValue="$objuri" label="" parmName="objuri" passBy="VALUE" required="true"></fmm:DefaultInputParm>
|
|
68
|
+
<fmm:UserInputParm defaultValue="solr" label="response format" parmName="format" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
69
|
+
<fmm:MethodReturnType wsdlMsgName="response" wsdlMsgTOMIME="text/plain text/xml application/json"></fmm:MethodReturnType>
|
|
70
|
+
</fmm:Method>
|
|
71
|
+
</fmm:MethodMap>
|
|
72
|
+
</foxml:xmlContent>
|
|
73
|
+
</foxml:datastreamVersion>
|
|
74
|
+
</foxml:datastream>
|
|
75
|
+
<foxml:datastream ID="DSINPUTSPEC" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
76
|
+
<foxml:datastreamVersion ID="DSINPUTSPEC1.0" LABEL="Datastream Input Specification for Service" MIMETYPE="text/xml" FORMAT_URI="info:fedora/fedora-system:format/xml.mets.techMD.OTHER.UNSPECIFIED">
|
|
77
|
+
<foxml:xmlContent>
|
|
78
|
+
<fbs:DSInputSpec xmlns:fbs="http://fedora.comm.nsdlib.org/service/bindspec" label="Datastream Input Specification for Basic behaviors for content objects.">
|
|
79
|
+
<fbs:DSInput DSMax="1" DSMin="1" DSOrdinality="false" wsdlMsgPartName="SOURCE">
|
|
80
|
+
<fbs:DSInputLabel>JP2 source file</fbs:DSInputLabel>
|
|
81
|
+
<fbs:DSMIME>image/jp2</fbs:DSMIME>
|
|
82
|
+
<fbs:DSInputInstruction>JP2 source file to be transformed</fbs:DSInputInstruction>
|
|
83
|
+
</fbs:DSInput>
|
|
84
|
+
</fbs:DSInputSpec>
|
|
85
|
+
</foxml:xmlContent>
|
|
86
|
+
</foxml:datastreamVersion>
|
|
87
|
+
</foxml:datastream>
|
|
88
|
+
<foxml:datastream ID="WSDL" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
89
|
+
<foxml:datastreamVersion ID="WSDL1.0" LABEL="WSDL Bindings" MIMETYPE="text/xml" FORMAT_URI="http://schemas.xmlsoap.org/wsdl/">
|
|
90
|
+
<foxml:xmlContent>
|
|
91
|
+
<wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap" xmlns:soapenc="http://schemas.xmlsoap.org/wsdl/soap/encoding" xmlns:this="webImage" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="Basic behaviors for descriptions and objects." targetNamespace="webImage">
|
|
92
|
+
|
|
93
|
+
<wsdl:types>
|
|
94
|
+
<xsd:schema targetNamespace="webImage">
|
|
95
|
+
<xsd:simpleType name="startType">
|
|
96
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
97
|
+
</xsd:simpleType>
|
|
98
|
+
<xsd:simpleType name="maxType">
|
|
99
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
100
|
+
</xsd:simpleType>
|
|
101
|
+
<xsd:simpleType name="URLType">
|
|
102
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
103
|
+
</xsd:simpleType>
|
|
104
|
+
<xsd:simpleType name="objuriType">
|
|
105
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
106
|
+
</xsd:simpleType>
|
|
107
|
+
<xsd:simpleType name="formatType">
|
|
108
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
109
|
+
</xsd:simpleType>
|
|
110
|
+
</xsd:schema>
|
|
111
|
+
</wsdl:types>
|
|
112
|
+
|
|
113
|
+
<wsdl:message name="uriRequest">
|
|
114
|
+
<wsdl:part name="objuri" type="this:objuriType"></wsdl:part>
|
|
115
|
+
</wsdl:message>
|
|
116
|
+
<wsdl:message name="listRequest">
|
|
117
|
+
<wsdl:part name="start" type="this:startType"></wsdl:part>
|
|
118
|
+
<wsdl:part name="objuri" type="this:objuriType"></wsdl:part>
|
|
119
|
+
<wsdl:part name="max" type="this:maxType"></wsdl:part>
|
|
120
|
+
<wsdl:part name="format" type="this:formatType"></wsdl:part>
|
|
121
|
+
</wsdl:message>
|
|
122
|
+
<wsdl:message name="getViewerRequest">
|
|
123
|
+
<wsdl:part name="SOURCE" type="this:URLType"/>
|
|
124
|
+
<wsdl:part name="objuri" type="this:objuriType"></wsdl:part>
|
|
125
|
+
<wsdl:part name="format" type="this:formatType"></wsdl:part>
|
|
126
|
+
</wsdl:message>
|
|
127
|
+
|
|
128
|
+
<wsdl:message name="response">
|
|
129
|
+
<wsdl:part name="members" type="xsd:base64Binary"></wsdl:part>
|
|
130
|
+
</wsdl:message>
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
<wsdl:portType name="rmapPortType">
|
|
134
|
+
<wsdl:operation name="rmap">
|
|
135
|
+
<wsdl:input message="this:uriRequest"></wsdl:input>
|
|
136
|
+
<wsdl:output message="this:response"></wsdl:output>
|
|
137
|
+
</wsdl:operation>
|
|
138
|
+
<wsdl:operation name="numberDescriptions">
|
|
139
|
+
<wsdl:input message="this:uriRequest"></wsdl:input>
|
|
140
|
+
<wsdl:output message="this:response"></wsdl:output>
|
|
141
|
+
</wsdl:operation>
|
|
142
|
+
<wsdl:operation name="describedBy">
|
|
143
|
+
<wsdl:input message="this:listRequest"></wsdl:input>
|
|
144
|
+
<wsdl:output message="this:response"></wsdl:output>
|
|
145
|
+
</wsdl:operation>
|
|
146
|
+
<wsdl:operation name="getViewer">
|
|
147
|
+
<wsdl:input message="this:getViewerRequest"></wsdl:input>
|
|
148
|
+
<wsdl:output message="this:response"></wsdl:output>
|
|
149
|
+
</wsdl:operation>
|
|
150
|
+
<wsdl:operation name="getIndex">
|
|
151
|
+
<wsdl:input message="this:getIndexRequest"></wsdl:input>
|
|
152
|
+
<wsdl:output message="this:response"></wsdl:output>
|
|
153
|
+
</wsdl:operation>
|
|
154
|
+
</wsdl:portType>
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
<wsdl:service name="rmap">
|
|
158
|
+
<wsdl:port binding="this:rmap_http" name="rmap_port">
|
|
159
|
+
<http:address location="LOCAL"></http:address>
|
|
160
|
+
</wsdl:port>
|
|
161
|
+
</wsdl:service>
|
|
162
|
+
<wsdl:binding name="rmap_http" type="this:rmapPortType">
|
|
163
|
+
|
|
164
|
+
<http:binding verb="GET"></http:binding>
|
|
165
|
+
<wsdl:operation name="rmap">
|
|
166
|
+
<http:operation location="$php_server$/fedora-svc/core/rmap/ptif.php?host=local.fedora.server&port=8080&path=fedora&format=json&objuri=(objuri)"></http:operation>
|
|
167
|
+
<wsdl:input>
|
|
168
|
+
<http:urlReplacement></http:urlReplacement>
|
|
169
|
+
</wsdl:input>
|
|
170
|
+
<wsdl:output>
|
|
171
|
+
<mime:content type="image"></mime:content>
|
|
172
|
+
</wsdl:output>
|
|
173
|
+
</wsdl:operation>
|
|
174
|
+
<wsdl:operation name="numberDescriptions">
|
|
175
|
+
<http:operation location="http://local.fedora.server/fedora/risearch?type=tuples&lang=itql&format=count&query=select+%24a+from+%3C%23ri%3E+where+%24a+%3Chttp%3A%2F%2Fpurl.oclc.org%2FNET%2FCUL%2FmetadataFor%3E+%3C(objuri)%3E"></http:operation>
|
|
176
|
+
<wsdl:input>
|
|
177
|
+
<http:urlReplacement></http:urlReplacement>
|
|
178
|
+
</wsdl:input>
|
|
179
|
+
<wsdl:output>
|
|
180
|
+
<mime:content type="text/xml"></mime:content>
|
|
181
|
+
</wsdl:output>
|
|
182
|
+
</wsdl:operation>
|
|
183
|
+
<wsdl:operation name="describedBy">
|
|
184
|
+
<http:operation location="$php_server$/fedora-svc/core/describedBy/core.php?host=local.fedora.server&port=8080&path=fedora&format=(format)&objuri=(objuri)&max=(max)&start=(start)"></http:operation>
|
|
185
|
+
<wsdl:input>
|
|
186
|
+
<http:urlReplacement></http:urlReplacement>
|
|
187
|
+
</wsdl:input>
|
|
188
|
+
<wsdl:output>
|
|
189
|
+
<mime:content type="text/xml"></mime:content>
|
|
190
|
+
</wsdl:output>
|
|
191
|
+
</wsdl:operation>
|
|
192
|
+
<wsdl:operation name="getViewer">
|
|
193
|
+
<http:operation location="$djatoka_server$/adore-djatoka/adore-djatoka-viewer-2.0/fedora-viewer.html?rft_id=(APPDATA)"/>
|
|
194
|
+
<wsdl:input>
|
|
195
|
+
<http:urlReplacement/>
|
|
196
|
+
</wsdl:input>
|
|
197
|
+
<wsdl:output>
|
|
198
|
+
<mime:content type="text/html"/>
|
|
199
|
+
</wsdl:output>
|
|
200
|
+
</wsdl:operation>
|
|
201
|
+
<wsdl:operation name="getIndex">
|
|
202
|
+
<http:operation location="$php_server$/fedora-svc/core/getIndex/dispatch.php?nullbind=(NULLBIND)&profile=(profile)&objuri=(objuri)&rft_id=(SOURCE)&format=Image/Zooming&model=ZoomingImage"></http:operation>
|
|
203
|
+
<wsdl:input>
|
|
204
|
+
<http:urlReplacement></http:urlReplacement>
|
|
205
|
+
</wsdl:input>
|
|
206
|
+
<wsdl:output>
|
|
207
|
+
<mime:content type="text/xml"></mime:content>
|
|
208
|
+
</wsdl:output>
|
|
209
|
+
</wsdl:operation>
|
|
210
|
+
</wsdl:binding>
|
|
211
|
+
</wsdl:definitions>
|
|
212
|
+
</foxml:xmlContent>
|
|
213
|
+
</foxml:datastreamVersion>
|
|
214
|
+
</foxml:datastream>
|
|
215
|
+
</foxml:digitalObject>
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<foxml:digitalObject VERSION="1.1" PID="ldpd:sdep.StaticImage"
|
|
3
|
+
xmlns:foxml="info:fedora/fedora-system:def/foxml#"
|
|
4
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
5
|
+
xsi:schemaLocation="info:fedora/fedora-system:def/foxml# http://www.fedora.info/definitions/1/0/foxml1-1.xsd">
|
|
6
|
+
<foxml:objectProperties>
|
|
7
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#state" VALUE="Active"/>
|
|
8
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#label" VALUE="Service Deployment Object for Retrieving Smallest Web Images"/>
|
|
9
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#createdDate" VALUE="2008-07-09T13:59:55.703Z"/>
|
|
10
|
+
<foxml:property NAME="info:fedora/fedora-system:def/view#lastModifiedDate" VALUE="2009-04-24T21:51:51.858Z"/>
|
|
11
|
+
</foxml:objectProperties>
|
|
12
|
+
<foxml:datastream ID="AUDIT" STATE="A" CONTROL_GROUP="X" VERSIONABLE="false">
|
|
13
|
+
<foxml:datastreamVersion ID="AUDIT.0" LABEL="Audit Trail for this object" CREATED="2008-07-09T13:59:55.703Z" MIMETYPE="text/xml" FORMAT_URI="info:fedora/fedora-system:format/xml.fedora.audit">
|
|
14
|
+
<foxml:xmlContent>
|
|
15
|
+
<audit:auditTrail xmlns:audit="info:fedora/fedora-system:def/audit#">
|
|
16
|
+
<audit:record ID="AUDREC1">
|
|
17
|
+
<audit:process type="Fedora API-M"/>
|
|
18
|
+
<audit:action>ingest</audit:action>
|
|
19
|
+
<audit:componentID></audit:componentID>
|
|
20
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
|
21
|
+
<audit:date>2009-04-24T21:51:51.858Z</audit:date>
|
|
22
|
+
<audit:justification>Ingested from local file /var/tmp/datamodel-load/staticImageSDep.xml</audit:justification>
|
|
23
|
+
</audit:record>
|
|
24
|
+
</audit:auditTrail>
|
|
25
|
+
</foxml:xmlContent>
|
|
26
|
+
</foxml:datastreamVersion>
|
|
27
|
+
</foxml:datastream>
|
|
28
|
+
<foxml:datastream ID="DC" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
29
|
+
<foxml:datastreamVersion ID="DC1.0" LABEL="Dublin Core Record for Service Deployment Object for Resource-to-Metadata relationships" CREATED="2008-07-09T13:59:56.375Z" MIMETYPE="text/xml" FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/" SIZE="310">
|
|
30
|
+
<foxml:xmlContent>
|
|
31
|
+
<oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"
|
|
32
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
33
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
34
|
+
xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
|
|
35
|
+
<dc:title>Service Deployment Object for Resource-to-Metadata relationships</dc:title>
|
|
36
|
+
<dc:identifier>ldpd:sdep.StaticImage</dc:identifier>
|
|
37
|
+
</oai_dc:dc>
|
|
38
|
+
</foxml:xmlContent>
|
|
39
|
+
</foxml:datastreamVersion>
|
|
40
|
+
</foxml:datastream>
|
|
41
|
+
<foxml:datastream ID="RELS-EXT" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
42
|
+
<foxml:datastreamVersion ID="RELS-EXT1.0" LABEL="RDF Statements about this object" CREATED="2008-07-09T13:59:56.375Z" MIMETYPE="application/rdf+xml" FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0" SIZE="625">
|
|
43
|
+
<foxml:xmlContent>
|
|
44
|
+
<rdf:RDF xmlns:fedora-model="info:fedora/fedora-system:def/model#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
45
|
+
<rdf:Description rdf:about="info:fedora/ldpd:sdep.StaticImage">
|
|
46
|
+
<fedora-model:hasModel rdf:resource="info:fedora/fedora-system:ServiceDeployment-3.0"></fedora-model:hasModel>
|
|
47
|
+
<fedora-model:isDeploymentOf rdf:resource="info:fedora/ldpd:sdef.Image"></fedora-model:isDeploymentOf>
|
|
48
|
+
<fedora-model:isContractorOf rdf:resource="info:fedora/ldpd:StaticImageAggregator"></fedora-model:isContractorOf>
|
|
49
|
+
</rdf:Description>
|
|
50
|
+
</rdf:RDF>
|
|
51
|
+
</foxml:xmlContent>
|
|
52
|
+
</foxml:datastreamVersion>
|
|
53
|
+
</foxml:datastream>
|
|
54
|
+
<foxml:datastream ID="METHODMAP" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
55
|
+
<foxml:datastreamVersion ID="METHODMAP1.0" LABEL="Deployment Method Map" CREATED="2008-07-09T13:59:56.375Z" MIMETYPE="text/xml" FORMAT_URI="info:fedora/fedora-system:FedoraSDepMethodMap-1.0" SIZE="2342">
|
|
56
|
+
<foxml:xmlContent>
|
|
57
|
+
<fmm:MethodMap xmlns:fmm="http://fedora.comm.nsdlib.org/service/methodmap" bDefPID="ldpd:sdef.Image" name="MethodMap - Basic behaviors for web images.">
|
|
58
|
+
<fmm:Method operationLabel="Returns thumbnail of this image" operationName="getThumbnail" wsdlMsgName="imgRequest" wsdlMsgOutput="imgResponse">
|
|
59
|
+
<fmm:DatastreamInputParm defaultValue="" label="" parmName="NULLBIND" passBy="URL_REF" required="true"></fmm:DatastreamInputParm>
|
|
60
|
+
<fmm:DefaultInputParm defaultValue="$objuri" label="" parmName="objuri" passBy="VALUE" required="true"></fmm:DefaultInputParm>
|
|
61
|
+
<fmm:MethodReturnType wsdlMsgName="imgResponse" wsdlMsgTOMIME="image/gif image/jpeg"></fmm:MethodReturnType>
|
|
62
|
+
</fmm:Method>
|
|
63
|
+
<fmm:Method operationLabel="Returns preservation version of this image" operationName="getPreservation" wsdlMsgName="imgRequest" wsdlMsgOutput="imgResponse">
|
|
64
|
+
<fmm:DatastreamInputParm defaultValue="" label="" parmName="NULLBIND" passBy="URL_REF" required="true"></fmm:DatastreamInputParm>
|
|
65
|
+
<fmm:DefaultInputParm defaultValue="$objuri" label="" parmName="objuri" passBy="VALUE" required="true"></fmm:DefaultInputParm>
|
|
66
|
+
<fmm:MethodReturnType wsdlMsgName="imgResponse" wsdlMsgTOMIME="image/tif image/jpeg"></fmm:MethodReturnType>
|
|
67
|
+
</fmm:Method>
|
|
68
|
+
<fmm:Method operationLabel="Returns screen-display version of this image" operationName="getView" wsdlMsgName="imgRequest" wsdlMsgOutput="imgResponse">
|
|
69
|
+
<fmm:DatastreamInputParm defaultValue="" label="" parmName="NULLBIND" passBy="URL_REF" required="true"></fmm:DatastreamInputParm>
|
|
70
|
+
<fmm:DefaultInputParm defaultValue="$objuri" label="" parmName="objuri" passBy="VALUE" required="true"></fmm:DefaultInputParm>
|
|
71
|
+
<fmm:UserInputParm defaultValue="70" label="" parmName="min" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
72
|
+
<fmm:UserInputParm defaultValue="300" label="" parmName="max" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
73
|
+
<fmm:UserInputParm defaultValue="small" label="" parmName="prefer" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
74
|
+
<fmm:MethodReturnType wsdlMsgName="imgResponse" wsdlMsgTOMIME="image/gif image/jpeg"></fmm:MethodReturnType>
|
|
75
|
+
</fmm:Method>
|
|
76
|
+
<fmm:Method operationName="getMetadata" wsdlMsgName="getMetadataRequest" wsdlMsgOutput="response">
|
|
77
|
+
<fmm:DatastreamInputParm defaultValue="" label="" parmName="NULLBIND" passBy="URL_REF" required="true"></fmm:DatastreamInputParm>
|
|
78
|
+
<fmm:DefaultInputParm defaultValue="$objuri" label="" parmName="objuri" passBy="VALUE" required="true"></fmm:DefaultInputParm>
|
|
79
|
+
<fmm:DefaultInputParm defaultValue="info:lanl-repo/svc/getMetadata" parmName="svc_id" passBy="VALUE" required="true"/>
|
|
80
|
+
<fmm:MethodReturnType wsdlMsgName="response" wsdlMsgTOMIME="application/json"/>
|
|
81
|
+
</fmm:Method>
|
|
82
|
+
</fmm:MethodMap>
|
|
83
|
+
</foxml:xmlContent>
|
|
84
|
+
</foxml:datastreamVersion>
|
|
85
|
+
</foxml:datastream>
|
|
86
|
+
<foxml:datastream ID="DSINPUTSPEC" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
87
|
+
<foxml:datastreamVersion ID="DSINPUTSPEC1.0" LABEL="Datastream Input Specification for Service" CREATED="2009-04-24T21:51:51.966Z" MIMETYPE="text/xml" FORMAT_URI="info:fedora/fedora-system:format/xml.mets.techMD.OTHER.UNSPECIFIED" SIZE="510">
|
|
88
|
+
<foxml:xmlContent>
|
|
89
|
+
<fbs:DSInputSpec xmlns:fbs="http://fedora.comm.nsdlib.org/service/bindspec" label="Datastream Input Specification for Basic behaviors for content objects.">
|
|
90
|
+
<fbs:DSInput DSMax="1" DSMin="1" DSOrdinality="false" wsdlMsgPartName="NULLBIND" pid="ldpd:nullbind">
|
|
91
|
+
<fbs:DSInputLabel>NULLBIND Binding</fbs:DSInputLabel>
|
|
92
|
+
<fbs:DSMIME>text/xml</fbs:DSMIME>
|
|
93
|
+
<fbs:DSInputInstruction></fbs:DSInputInstruction>
|
|
94
|
+
</fbs:DSInput>
|
|
95
|
+
</fbs:DSInputSpec>
|
|
96
|
+
</foxml:xmlContent>
|
|
97
|
+
</foxml:datastreamVersion>
|
|
98
|
+
</foxml:datastream>
|
|
99
|
+
<foxml:datastream ID="WSDL" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
100
|
+
<foxml:datastreamVersion ID="WSDL1.0" LABEL="WSDL Bindings" CREATED="2008-07-09T13:59:56.375Z" MIMETYPE="text/xml" FORMAT_URI="http://schemas.xmlsoap.org/wsdl/" SIZE="4362">
|
|
101
|
+
<foxml:xmlContent>
|
|
102
|
+
<wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap" xmlns:soapenc="http://schemas.xmlsoap.org/wsdl/soap/encoding" xmlns:this="webImage" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="Basic behaviors for descriptions and objects." targetNamespace="webImage">
|
|
103
|
+
|
|
104
|
+
<wsdl:types>
|
|
105
|
+
<xsd:schema targetNamespace="webImage">
|
|
106
|
+
<xsd:simpleType name="minType">
|
|
107
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
108
|
+
</xsd:simpleType>
|
|
109
|
+
<xsd:simpleType name="NULLBINDType">
|
|
110
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
111
|
+
</xsd:simpleType>
|
|
112
|
+
<xsd:simpleType name="maxType">
|
|
113
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
114
|
+
</xsd:simpleType>
|
|
115
|
+
<xsd:simpleType name="objuriType">
|
|
116
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
117
|
+
</xsd:simpleType>
|
|
118
|
+
</xsd:schema>
|
|
119
|
+
</wsdl:types>
|
|
120
|
+
<wsdl:message name="imgRequest">
|
|
121
|
+
<wsdl:part name="NULLBIND" type="this:NULLBINDType"></wsdl:part>
|
|
122
|
+
<wsdl:part name="objuri" type="this:objuriType"></wsdl:part>
|
|
123
|
+
</wsdl:message>
|
|
124
|
+
<wsdl:message name="imgResponse">
|
|
125
|
+
<wsdl:part name="image" type="xsd:base64Binary"></wsdl:part>
|
|
126
|
+
</wsdl:message>
|
|
127
|
+
<wsdl:message name="getMetadataRequest">
|
|
128
|
+
<wsdl:part name="NULLBIND" type="this:NULLBINDType"></wsdl:part>
|
|
129
|
+
<wsdl:part name="objuri" type="this:objuriType"></wsdl:part>
|
|
130
|
+
</wsdl:message>
|
|
131
|
+
<wsdl:message name="response">
|
|
132
|
+
<wsdl:part name="exhibit" type="xsd:base64Binary"/>
|
|
133
|
+
</wsdl:message>
|
|
134
|
+
|
|
135
|
+
<wsdl:portType name="imgPortType">
|
|
136
|
+
<wsdl:operation name="getMetadata">
|
|
137
|
+
<wsdl:input message="this:getMetadataRequest"></wsdl:input>
|
|
138
|
+
<wsdl:output message="this:response"></wsdl:output>
|
|
139
|
+
</wsdl:operation>
|
|
140
|
+
<wsdl:operation name="getThumbnail">
|
|
141
|
+
<wsdl:input message="this:imgRequest"></wsdl:input>
|
|
142
|
+
<wsdl:output message="this:imgResponse"></wsdl:output>
|
|
143
|
+
</wsdl:operation>
|
|
144
|
+
<wsdl:operation name="getPreservation">
|
|
145
|
+
<wsdl:input message="this:imgRequest"></wsdl:input>
|
|
146
|
+
<wsdl:output message="this:imgResponse"></wsdl:output>
|
|
147
|
+
</wsdl:operation>
|
|
148
|
+
<wsdl:operation name="getView">
|
|
149
|
+
<wsdl:input message="this:imgRequest"></wsdl:input>
|
|
150
|
+
<wsdl:output message="this:imgResponse"></wsdl:output>
|
|
151
|
+
</wsdl:operation>
|
|
152
|
+
</wsdl:portType>
|
|
153
|
+
<wsdl:service name="img">
|
|
154
|
+
<wsdl:port binding="this:img_http" name="img_port">
|
|
155
|
+
<http:address location="$php_server$/fedora-svc/image/"></http:address>
|
|
156
|
+
</wsdl:port>
|
|
157
|
+
</wsdl:service>
|
|
158
|
+
<wsdl:binding name="img_http" type="this:imgPortType">
|
|
159
|
+
|
|
160
|
+
<http:binding verb="GET"></http:binding>
|
|
161
|
+
<wsdl:operation name="getMetadata">
|
|
162
|
+
<http:operation location="getMetadata/static-image.php?nullbind=(NULLBIND)&objuri=(objuri)"></http:operation>
|
|
163
|
+
<wsdl:input message="this:getMetadataRequest"/>
|
|
164
|
+
<wsdl:output message="this:response"/>
|
|
165
|
+
</wsdl:operation>
|
|
166
|
+
<wsdl:operation name="getThumbnail">
|
|
167
|
+
<http:operation location="getThumbnail/static-image.php?nullbind=(NULLBIND)&objuri=(objuri)"></http:operation>
|
|
168
|
+
<wsdl:input>
|
|
169
|
+
<http:urlReplacement></http:urlReplacement>
|
|
170
|
+
</wsdl:input>
|
|
171
|
+
<wsdl:output>
|
|
172
|
+
<mime:content type="image/gif"></mime:content>
|
|
173
|
+
<mime:content type="image/jpeg"></mime:content>
|
|
174
|
+
<mime:content type="image/png"></mime:content>
|
|
175
|
+
<mime:content type="image/bmp"></mime:content>
|
|
176
|
+
<mime:content type="image/tiff"></mime:content>
|
|
177
|
+
</wsdl:output>
|
|
178
|
+
</wsdl:operation>
|
|
179
|
+
<wsdl:operation name="getPreservation">
|
|
180
|
+
<http:operation location="getPreservation/static-image.php?nullbind=(NULLBIND)&objuri=(objuri)"></http:operation>
|
|
181
|
+
<wsdl:input>
|
|
182
|
+
<http:urlReplacement></http:urlReplacement>
|
|
183
|
+
</wsdl:input>
|
|
184
|
+
<wsdl:output>
|
|
185
|
+
<mime:content type="image/gif"></mime:content>
|
|
186
|
+
<mime:content type="image/jpeg"></mime:content>
|
|
187
|
+
<mime:content type="image/png"></mime:content>
|
|
188
|
+
<mime:content type="image/bmp"></mime:content>
|
|
189
|
+
<mime:content type="image/tiff"></mime:content>
|
|
190
|
+
</wsdl:output>
|
|
191
|
+
</wsdl:operation>
|
|
192
|
+
<wsdl:operation name="getView">
|
|
193
|
+
<http:operation location="getView/static-image.php?nullbind=(NULLBIND)&objuri=(objuri)&min=(min)&max=(max)&prefer=(prefer)"></http:operation>
|
|
194
|
+
<wsdl:input>
|
|
195
|
+
<http:urlReplacement></http:urlReplacement>
|
|
196
|
+
</wsdl:input>
|
|
197
|
+
<wsdl:output>
|
|
198
|
+
<mime:content type="image/gif"></mime:content>
|
|
199
|
+
<mime:content type="image/jpeg"></mime:content>
|
|
200
|
+
<mime:content type="image/png"></mime:content>
|
|
201
|
+
<mime:content type="image/bmp"></mime:content>
|
|
202
|
+
<mime:content type="image/tiff"></mime:content>
|
|
203
|
+
</wsdl:output>
|
|
204
|
+
</wsdl:operation>
|
|
205
|
+
</wsdl:binding>
|
|
206
|
+
</wsdl:definitions>
|
|
207
|
+
</foxml:xmlContent>
|
|
208
|
+
</foxml:datastreamVersion>
|
|
209
|
+
</foxml:datastream>
|
|
210
|
+
</foxml:digitalObject>
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<foxml:digitalObject VERSION="1.1" PID="ldpd:sdep.StaticImageAggregator"
|
|
3
|
+
xmlns:foxml="info:fedora/fedora-system:def/foxml#"
|
|
4
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
5
|
+
xsi:schemaLocation="info:fedora/fedora-system:def/foxml# http://www.fedora.info/definitions/1/0/foxml1-1.xsd">
|
|
6
|
+
<foxml:objectProperties>
|
|
7
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#state" VALUE="Active"/>
|
|
8
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#label" VALUE="Service Deployment listMembers"/>
|
|
9
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#createdDate" VALUE="2008-07-09T13:59:55.703Z"/>
|
|
10
|
+
<foxml:property NAME="info:fedora/fedora-system:def/view#lastModifiedDate" VALUE="2009-04-24T21:26:59.312Z"/>
|
|
11
|
+
</foxml:objectProperties>
|
|
12
|
+
<foxml:datastream ID="AUDIT" STATE="A" CONTROL_GROUP="X" VERSIONABLE="false">
|
|
13
|
+
<foxml:datastreamVersion ID="AUDIT.0" LABEL="Audit Trail for this object" CREATED="2008-07-09T13:59:55.703Z" MIMETYPE="text/xml" FORMAT_URI="info:fedora/fedora-system:format/xml.fedora.audit">
|
|
14
|
+
<foxml:xmlContent>
|
|
15
|
+
<audit:auditTrail xmlns:audit="info:fedora/fedora-system:def/audit#">
|
|
16
|
+
<audit:record ID="AUDREC1">
|
|
17
|
+
<audit:process type="Fedora API-M"/>
|
|
18
|
+
<audit:action>ingest</audit:action>
|
|
19
|
+
<audit:componentID></audit:componentID>
|
|
20
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
|
21
|
+
<audit:date>2009-04-24T21:26:59.312Z</audit:date>
|
|
22
|
+
<audit:justification>Ingested from local file /var/tmp/datamodel-load/staticImageAggregatorSDep.xml</audit:justification>
|
|
23
|
+
</audit:record>
|
|
24
|
+
</audit:auditTrail>
|
|
25
|
+
</foxml:xmlContent>
|
|
26
|
+
</foxml:datastreamVersion>
|
|
27
|
+
</foxml:datastream>
|
|
28
|
+
<foxml:datastream ID="DC" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
29
|
+
<foxml:datastreamVersion ID="DC1.0" LABEL="Dublin Core Record for this object" CREATED="2008-07-09T13:59:56.375Z" MIMETYPE="text/xml" FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/" SIZE="309">
|
|
30
|
+
<foxml:xmlContent>
|
|
31
|
+
<oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"
|
|
32
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
33
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
34
|
+
xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
|
|
35
|
+
<dc:title>Service Deployment Object for listMembers and getSize</dc:title>
|
|
36
|
+
<dc:identifier>ldpd:sdep.StaticImageAggregator</dc:identifier>
|
|
37
|
+
</oai_dc:dc>
|
|
38
|
+
</foxml:xmlContent>
|
|
39
|
+
</foxml:datastreamVersion>
|
|
40
|
+
</foxml:datastream>
|
|
41
|
+
<foxml:datastream ID="RELS-EXT" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
42
|
+
<foxml:datastreamVersion ID="RELS-EXT1.0" LABEL="RDF Statements about this object" CREATED="2008-07-09T13:59:56.375Z" MIMETYPE="application/rdf+xml" FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0" SIZE="640">
|
|
43
|
+
<foxml:xmlContent>
|
|
44
|
+
<rdf:RDF xmlns:fedora-model="info:fedora/fedora-system:def/model#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
45
|
+
<rdf:Description rdf:about="info:fedora/ldpd:sdep.StaticImageAggregator">
|
|
46
|
+
<fedora-model:hasModel rdf:resource="info:fedora/fedora-system:ServiceDeployment-3.0"></fedora-model:hasModel>
|
|
47
|
+
<fedora-model:isDeploymentOf rdf:resource="info:fedora/ldpd:sdef.Aggregator"></fedora-model:isDeploymentOf>
|
|
48
|
+
<fedora-model:isContractorOf rdf:resource="info:fedora/ldpd:StaticImageAggregator"></fedora-model:isContractorOf>
|
|
49
|
+
</rdf:Description>
|
|
50
|
+
</rdf:RDF>
|
|
51
|
+
</foxml:xmlContent>
|
|
52
|
+
</foxml:datastreamVersion>
|
|
53
|
+
</foxml:datastream>
|
|
54
|
+
<foxml:datastream ID="METHODMAP" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
55
|
+
<foxml:datastreamVersion ID="METHODMAP1.0" LABEL="Deployment Method Map" CREATED="2008-07-09T13:59:56.375Z" MIMETYPE="text/xml" FORMAT_URI="info:fedora/fedora-system:FedoraSDepMethodMap-1.0" SIZE="1927">
|
|
56
|
+
<foxml:xmlContent>
|
|
57
|
+
<fmm:MethodMap xmlns:fmm="http://fedora.comm.nsdlib.org/service/methodmap" bDefPID="ldpd:sdef.Aggregator" name="MethodMap - Basic behaviors for collection objects.">
|
|
58
|
+
|
|
59
|
+
<fmm:Method operationLabel="Returns the number of objects currently in this collection." operationName="getSize" wsdlMsgName="getSizeRequest" wsdlMsgOutput="getSizeResponse">
|
|
60
|
+
<fmm:DatastreamInputParm defaultValue="" label="" parmName="NULLBIND" passBy="URL_REF" required="true"></fmm:DatastreamInputParm>
|
|
61
|
+
<fmm:DefaultInputParm defaultValue="$objuri" label="" parmName="objuri" passBy="VALUE" required="true"></fmm:DefaultInputParm>
|
|
62
|
+
<fmm:UserInputParm defaultValue="0" label="" parmName="start" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
63
|
+
<fmm:UserInputParm defaultValue="count" label="" parmName="format" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
64
|
+
<fmm:UserInputParm defaultValue="" label="" parmName="max" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
65
|
+
<fmm:UserInputParm defaultValue="" label="" parmName="callback" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
66
|
+
<fmm:UserInputParm defaultValue="" label="" parmName="_" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
67
|
+
<fmm:MethodReturnType wsdlMsgName="getSizeResponse" wsdlMsgTOMIME="text/xml"></fmm:MethodReturnType>
|
|
68
|
+
</fmm:Method>
|
|
69
|
+
<fmm:Method operationLabel="Returns PIDs for members of this collection, in Sparql form. No more than max PIDs are returned, starting with the number start object in an ordered list." operationName="listMembers" wsdlMsgName="listMembersRequest" wsdlMsgOutput="listMembersResponse">
|
|
70
|
+
<fmm:DatastreamInputParm defaultValue="" label="" parmName="NULLBIND" passBy="URL_REF" required="true"></fmm:DatastreamInputParm>
|
|
71
|
+
<fmm:DefaultInputParm defaultValue="$objuri" label="" parmName="objuri" passBy="VALUE" required="true"></fmm:DefaultInputParm>
|
|
72
|
+
<fmm:UserInputParm defaultValue="0" label="" parmName="start" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
73
|
+
<fmm:UserInputParm defaultValue="sparql" label="" parmName="format" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
74
|
+
<fmm:UserInputParm defaultValue="" label="" parmName="max" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
75
|
+
<fmm:UserInputParm defaultValue="" label="" parmName="callback" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
76
|
+
<fmm:UserInputParm defaultValue="" label="" parmName="_" passBy="VALUE" required="false"></fmm:UserInputParm>
|
|
77
|
+
<fmm:MethodReturnType wsdlMsgName="listMembersResponse" wsdlMsgTOMIME="text/xml"></fmm:MethodReturnType>
|
|
78
|
+
</fmm:Method>
|
|
79
|
+
|
|
80
|
+
</fmm:MethodMap>
|
|
81
|
+
</foxml:xmlContent>
|
|
82
|
+
</foxml:datastreamVersion>
|
|
83
|
+
</foxml:datastream>
|
|
84
|
+
<foxml:datastream ID="DSINPUTSPEC" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
85
|
+
<foxml:datastreamVersion ID="DSINPUTSPEC1.0" LABEL="Datastream Input Specification for Service" CREATED="2009-04-24T21:26:59.454Z" MIMETYPE="text/xml" FORMAT_URI="info:fedora/fedora-system:format/xml.mets.techMD.OTHER.UNSPECIFIED" SIZE="514">
|
|
86
|
+
<foxml:xmlContent>
|
|
87
|
+
<fbs:DSInputSpec xmlns:fbs="http://fedora.comm.nsdlib.org/service/bindspec" label="Datastream Input Specification for Basic behaviors for collection objects.">
|
|
88
|
+
<fbs:DSInput DSMax="1" DSMin="1" DSOrdinality="false" wsdlMsgPartName="NULLBIND" pid="ldpd:nullbind">
|
|
89
|
+
<fbs:DSInputLabel>NULLBIND Binding</fbs:DSInputLabel>
|
|
90
|
+
<fbs:DSMIME>text/xml</fbs:DSMIME>
|
|
91
|
+
<fbs:DSInputInstruction></fbs:DSInputInstruction>
|
|
92
|
+
|
|
93
|
+
</fbs:DSInput>
|
|
94
|
+
</fbs:DSInputSpec>
|
|
95
|
+
</foxml:xmlContent>
|
|
96
|
+
</foxml:datastreamVersion>
|
|
97
|
+
</foxml:datastream>
|
|
98
|
+
<foxml:datastream ID="WSDL" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
99
|
+
<foxml:datastreamVersion ID="WSDL1.0" LABEL="WSDL Bindings" CREATED="2008-07-09T13:59:56.375Z" MIMETYPE="text/xml" FORMAT_URI="http://schemas.xmlsoap.org/wsdl/" SIZE="4456">
|
|
100
|
+
<foxml:xmlContent>
|
|
101
|
+
<wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap" xmlns:soapenc="http://schemas.xmlsoap.org/wsdl/soap/encoding" xmlns:this="members" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="Basic behaviors for collection objects." targetNamespace="members">
|
|
102
|
+
|
|
103
|
+
<wsdl:types>
|
|
104
|
+
<xsd:schema targetNamespace="members">
|
|
105
|
+
<xsd:simpleType name="startType">
|
|
106
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
107
|
+
</xsd:simpleType>
|
|
108
|
+
<xsd:simpleType name="formatType">
|
|
109
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
110
|
+
</xsd:simpleType>
|
|
111
|
+
<xsd:simpleType name="NULLBINDType">
|
|
112
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
113
|
+
</xsd:simpleType>
|
|
114
|
+
<xsd:simpleType name="maxType">
|
|
115
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
116
|
+
</xsd:simpleType>
|
|
117
|
+
<xsd:simpleType name="objuriType">
|
|
118
|
+
<xsd:restriction base="xsd:string"></xsd:restriction>
|
|
119
|
+
</xsd:simpleType>
|
|
120
|
+
</xsd:schema>
|
|
121
|
+
</wsdl:types>
|
|
122
|
+
<wsdl:message name="aggregatorRequest">
|
|
123
|
+
<wsdl:part name="start" type="this:startType"></wsdl:part>
|
|
124
|
+
<wsdl:part name="format" type="this:formatType"></wsdl:part>
|
|
125
|
+
<wsdl:part name="objuri" type="this:objuriType"></wsdl:part>
|
|
126
|
+
<wsdl:part name="max" type="this:maxType"></wsdl:part>
|
|
127
|
+
<wsdl:part name="NULLBIND" type="this:NULLBINDType"></wsdl:part>
|
|
128
|
+
</wsdl:message>
|
|
129
|
+
|
|
130
|
+
<wsdl:message name="listMembersResponse">
|
|
131
|
+
<wsdl:part name="members" type="xsd:base64Binary"></wsdl:part>
|
|
132
|
+
</wsdl:message>
|
|
133
|
+
|
|
134
|
+
<wsdl:message name="getSizeResponse">
|
|
135
|
+
<wsdl:part name="members" type="xsd:base64Binary"></wsdl:part>
|
|
136
|
+
</wsdl:message>
|
|
137
|
+
|
|
138
|
+
<wsdl:portType name="collectionPortType">
|
|
139
|
+
<wsdl:operation name="listMembers">
|
|
140
|
+
<wsdl:input message="this:aggregatorRequest"></wsdl:input>
|
|
141
|
+
|
|
142
|
+
<wsdl:output message="this:listMembersResponse"></wsdl:output>
|
|
143
|
+
</wsdl:operation>
|
|
144
|
+
<wsdl:operation name="getSize">
|
|
145
|
+
<wsdl:input message="this:aggregatorRequest"></wsdl:input>
|
|
146
|
+
|
|
147
|
+
<wsdl:output message="this:getSizeResponse"></wsdl:output>
|
|
148
|
+
</wsdl:operation>
|
|
149
|
+
</wsdl:portType>
|
|
150
|
+
|
|
151
|
+
<wsdl:service name="collection">
|
|
152
|
+
<wsdl:port binding="this:collection_http" name="collection_port">
|
|
153
|
+
<http:address location="LOCAL"></http:address>
|
|
154
|
+
</wsdl:port>
|
|
155
|
+
</wsdl:service>
|
|
156
|
+
|
|
157
|
+
<wsdl:binding name="collection_http" type="this:collectionPortType">
|
|
158
|
+
|
|
159
|
+
<http:binding verb="GET"></http:binding>
|
|
160
|
+
<wsdl:operation name="listMembers">
|
|
161
|
+
<http:operation location="$php_server$/fedora-svc/aggregator/listMembers/static-image.php?nullbind=(NULLBIND)&format=(format)&objuri=(objuri)&max=(max)&start=(start)&callback=(callback)"></http:operation>
|
|
162
|
+
<wsdl:input>
|
|
163
|
+
<http:urlReplacement></http:urlReplacement>
|
|
164
|
+
</wsdl:input>
|
|
165
|
+
<wsdl:output>
|
|
166
|
+
<mime:content type="text/xml"></mime:content>
|
|
167
|
+
</wsdl:output>
|
|
168
|
+
|
|
169
|
+
</wsdl:operation>
|
|
170
|
+
|
|
171
|
+
<wsdl:operation name="getSize">
|
|
172
|
+
<http:operation location="$php_server$/fedora-svc/aggregator/getSize/default.php?nullbind=(NULLBIND)&format=(format)&objuri=(objuri)&max=(max)&start=(start)&callback=(callback)"></http:operation>
|
|
173
|
+
<wsdl:input>
|
|
174
|
+
<http:urlReplacement></http:urlReplacement>
|
|
175
|
+
</wsdl:input>
|
|
176
|
+
<wsdl:output>
|
|
177
|
+
<mime:content type="text/xml"></mime:content>
|
|
178
|
+
</wsdl:output>
|
|
179
|
+
</wsdl:operation>
|
|
180
|
+
</wsdl:binding>
|
|
181
|
+
|
|
182
|
+
</wsdl:definitions>
|
|
183
|
+
</foxml:xmlContent>
|
|
184
|
+
</foxml:datastreamVersion>
|
|
185
|
+
</foxml:datastream>
|
|
186
|
+
</foxml:digitalObject>
|