You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2012/06/15 03:29:21 UTC

svn commit: r1350439 [1/5] - in /manifoldcf/branches/CONNECTORS-474: ./ connectors/meridio/lib-proprietary/ connectors/sharepoint/ connectors/sharepoint/wsdls/ site/src/documentation/content/xdocs/en_US/ site/src/documentation/content/xdocs/ja_JP/

Author: kwright
Date: Fri Jun 15 01:29:21 2012
New Revision: 1350439

URL: http://svn.apache.org/viewvc?rev=1350439&view=rev
Log:
Include WSDLs for SharePoint services directly.

Added:
    manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/DspSts.wsdl   (with props)
    manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/Lists.wsdl   (with props)
    manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/Permissions.wsdl   (with props)
    manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/usergroup.wsdl   (with props)
    manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/versions.wsdl   (with props)
    manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/webs.wsdl   (with props)
Removed:
    manifoldcf/branches/CONNECTORS-474/connectors/meridio/lib-proprietary/
Modified:
    manifoldcf/branches/CONNECTORS-474/LICENSE.txt
    manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/build.xml
    manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/MCPermissions.wsdl   (props changed)
    manifoldcf/branches/CONNECTORS-474/site/src/documentation/content/xdocs/en_US/how-to-build-and-deploy.xml
    manifoldcf/branches/CONNECTORS-474/site/src/documentation/content/xdocs/ja_JP/how-to-build-and-deploy.xml

Modified: manifoldcf/branches/CONNECTORS-474/LICENSE.txt
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-474/LICENSE.txt?rev=1350439&r1=1350438&r2=1350439&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-474/LICENSE.txt (original)
+++ manifoldcf/branches/CONNECTORS-474/LICENSE.txt Fri Jun 15 01:29:21 2012
@@ -180,3 +180,8 @@ The Meridio Connector portion of this so
 interface descriptions generated in part from proprietary libraries licensed
 by Meridio, Inc., a division of Autonomy, Inc., a subsidiary of Hewlett
 Packard, Inc.
+
+The SharePoint Connector portion of this software includes application
+interface descriptions generated in part from proprietary libraries licensed
+by Microsoft, Inc.
+

Modified: manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/build.xml?rev=1350439&r1=1350438&r2=1350439&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/build.xml Fri Jun 15 01:29:21 2012
@@ -19,7 +19,7 @@
 
     <import file="../connector-build.xml"/>
 
-    <target name="calculate-condition">
+    <!-- target name="calculate-condition">
         <available file="lib-proprietary/DspSts.wsdl" property="DspStsStatus"/>
         <available file="lib-proprietary/Lists.wsdl" property="ListsStatus"/>
         <available file="lib-proprietary/Permissions.wsdl" property="PermissionsStatus"/>
@@ -40,29 +40,29 @@
     
     <target name="precompile-check" depends="calculate-condition" unless="canBuild">
         <echo message="SharePoint Connector cannot be built without DspSts.wsdl, Lists.wsdl, Permissions.wsdl, usergroup.wsdl, versions.wsdl, and webs.wsdl"/>
-    </target>
+    </target -->
 
     <target name="classcreate-wsdls" depends="precompile-check" if="canBuild">
         <antcall target="classcreate-wsdl">
-            <param name="wsdlname" value="lib-proprietary/DspSts.wsdl"/>
+            <param name="wsdlname" value="wsdls/DspSts.wsdl"/>
         </antcall>
         <antcall target="classcreate-wsdl">
-            <param name="wsdlname" value="lib-proprietary/Lists.wsdl"/>
+            <param name="wsdlname" value="wsdls/Lists.wsdl"/>
         </antcall>
         <antcall target="classcreate-wsdl">
             <param name="wsdlname" value="wsdls/MCPermissions.wsdl"/>
         </antcall>
         <antcall target="classcreate-wsdl">
-            <param name="wsdlname" value="lib-proprietary/Permissions.wsdl"/>
+            <param name="wsdlname" value="wsdls/Permissions.wsdl"/>
         </antcall>
         <antcall target="classcreate-wsdl">
-            <param name="wsdlname" value="lib-proprietary/usergroup.wsdl"/>
+            <param name="wsdlname" value="wsdls/usergroup.wsdl"/>
         </antcall>
         <antcall target="classcreate-wsdl">
-            <param name="wsdlname" value="lib-proprietary/versions.wsdl"/>
+            <param name="wsdlname" value="wsdls/versions.wsdl"/>
         </antcall>
         <antcall target="classcreate-wsdl">
-            <param name="wsdlname" value="lib-proprietary/webs.wsdl"/>
+            <param name="wsdlname" value="wsdls/webs.wsdl"/>
         </antcall>
     </target>
 
@@ -77,7 +77,7 @@
         </copy>
     </target>
 
-    <target name="download-dependencies">
+    <!-- target name="download-dependencies">
         <get src="http://www.wssdemo.com/_vti_bin/Permissions.asmx?wsdl=true" dest="lib-proprietary/Permissions.wsdl"/>
         <get src="http://www.wssdemo.com/_vti_bin/DspSts.asmx?wsdl=true" dest="lib-proprietary/DspSts.wsdl"/>
         <get src="http://www.wssdemo.com/_vti_bin/Lists.asmx?wsdl=true" dest="lib-proprietary/Lists.wsdl"/>
@@ -90,6 +90,6 @@
         <delete>
             <fileset dir="lib-proprietary" excludes="README.txt"/>
         </delete>
-    </target>
+    </target -->
 
 </project>

Added: manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/DspSts.wsdl
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/DspSts.wsdl?rev=1350439&view=auto
==============================================================================
--- manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/DspSts.wsdl (added)
+++ manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/DspSts.wsdl Fri Jun 15 01:29:21 2012
@@ -0,0 +1,232 @@
+<!-- Licensed to the Apache Software Foundation (ASF) under one or more
+     contributor license agreements. See the NOTICE file distributed with
+     this work for additional information regarding copyright ownership.
+     The ASF licenses this file to You under the Apache License, Version 2.0
+     (the "License"); you may not use this file except in compliance with
+     the License. You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+
+<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://schemas.microsoft.com/sharepoint/dsp" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://schemas.microsoft.com/sharepoint/dsp" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+  <wsdl:types>
+    <s:schema elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/sharepoint/dsp">
+      <s:import namespace="http://www.w3.org/2001/XMLSchema" />
+      <s:element name="queryRequest" nillable="true" type="tns:QueryRequest" />
+      <s:complexType name="QueryRequest">
+        <s:sequence>
+          <s:element minOccurs="0" maxOccurs="1" name="dsQuery" type="tns:DSQuery" />
+          <s:element minOccurs="0" maxOccurs="1" name="ptQuery" type="tns:PTQuery" />
+        </s:sequence>
+      </s:complexType>
+      <s:complexType name="DSQuery">
+        <s:sequence>
+          <s:element minOccurs="0" maxOccurs="1" name="Query" type="tns:DspQuery" />
+        </s:sequence>
+        <s:attribute name="select" type="s:string" />
+        <s:attribute default="both" name="resultContent" type="tns:ResultContentType" />
+        <s:attribute default="element" name="columnMapping" type="tns:ColumnMappingType" />
+        <s:attribute name="resultNamespace" type="s:string" />
+        <s:attribute name="resultPrefix" type="s:string" />
+        <s:attribute name="resultRoot" type="s:string" />
+        <s:attribute name="resultRow" type="s:string" />
+        <s:attribute name="startPosition" type="s:string" />
+        <s:attribute name="comparisonLocale" type="s:string" />
+      </s:complexType>
+      <s:complexType name="DspQuery">
+        <s:sequence>
+          <s:element minOccurs="0" maxOccurs="1" name="ServerParameterInfo" type="tns:ServerParameterInfo" />
+          <s:element minOccurs="0" maxOccurs="1" name="Fields" type="tns:Fields" />
+          <s:element minOccurs="0" maxOccurs="1" name="ServerParameters" type="tns:ArrayOfServerParameter" />
+          <s:element minOccurs="0" maxOccurs="1" name="Where">
+            <s:complexType mixed="true">
+              <s:sequence>
+                <s:any />
+              </s:sequence>
+            </s:complexType>
+          </s:element>
+          <s:element minOccurs="0" maxOccurs="1" name="OrderBy" type="tns:ArrayOfOrderField" />
+        </s:sequence>
+        <s:attribute default="-1" name="RowLimit" type="s:long" />
+      </s:complexType>
+      <s:complexType name="ServerParameterInfo" />
+      <s:complexType name="Fields">
+        <s:sequence>
+          <s:element minOccurs="0" maxOccurs="unbounded" name="Field" type="tns:Field" />
+          <s:element minOccurs="0" maxOccurs="1" name="AllFields" type="tns:AllFields" />
+        </s:sequence>
+      </s:complexType>
+      <s:complexType name="Field">
+        <s:attribute name="Name" type="s:string" />
+        <s:attribute name="Alias" type="s:string" />
+      </s:complexType>
+      <s:complexType name="AllFields">
+        <s:attribute default="false" name="IncludeHiddenFields" type="s:boolean" />
+      </s:complexType>
+      <s:complexType name="ArrayOfServerParameter">
+        <s:sequence>
+          <s:element minOccurs="0" maxOccurs="unbounded" name="ServerParameter" type="tns:ServerParameter" />
+        </s:sequence>
+      </s:complexType>
+      <s:complexType name="ServerParameter">
+        <s:simpleContent>
+          <s:extension base="s:string">
+            <s:attribute name="Name" type="s:string" />
+            <s:attribute default="false" name="Null" type="s:boolean" />
+          </s:extension>
+        </s:simpleContent>
+      </s:complexType>
+      <s:complexType name="ArrayOfOrderField">
+        <s:sequence>
+          <s:element minOccurs="0" maxOccurs="unbounded" name="OrderField" type="tns:OrderField" />
+        </s:sequence>
+      </s:complexType>
+      <s:complexType name="OrderField">
+        <s:attribute name="Name" type="s:string" />
+        <s:attribute default="ASC" name="Direction" type="tns:OrderDirection" />
+      </s:complexType>
+      <s:simpleType name="OrderDirection">
+        <s:restriction base="s:string">
+          <s:enumeration value="ASC" />
+          <s:enumeration value="DESC" />
+        </s:restriction>
+      </s:simpleType>
+      <s:simpleType name="ResultContentType">
+        <s:restriction base="s:string">
+          <s:enumeration value="both" />
+          <s:enumeration value="schemaOnly" />
+          <s:enumeration value="dataOnly" />
+        </s:restriction>
+      </s:simpleType>
+      <s:simpleType name="ColumnMappingType">
+        <s:restriction base="s:string">
+          <s:enumeration value="element" />
+          <s:enumeration value="attribute" />
+        </s:restriction>
+      </s:simpleType>
+      <s:complexType name="PTQuery">
+        <s:sequence>
+          <s:any minOccurs="0" maxOccurs="unbounded" />
+        </s:sequence>
+      </s:complexType>
+      <s:element name="queryResponse">
+        <s:complexType mixed="true">
+          <s:sequence>
+            <s:any />
+          </s:sequence>
+        </s:complexType>
+      </s:element>
+      <s:element name="authentication" type="tns:Authentication" />
+      <s:complexType name="Authentication">
+        <s:sequence>
+          <s:any minOccurs="0" maxOccurs="unbounded" />
+        </s:sequence>
+        <s:anyAttribute />
+      </s:complexType>
+      <s:element name="dataRoot" type="tns:DataRoot" />
+      <s:complexType name="DataRoot">
+        <s:sequence>
+          <s:element minOccurs="0" maxOccurs="1" name="root" type="s:string" />
+        </s:sequence>
+        <s:attribute default="true" name="allowRemoteDataAccess" type="s:boolean" />
+        <s:anyAttribute />
+      </s:complexType>
+      <s:element name="request" type="tns:RequestHeader" />
+      <s:complexType name="RequestHeader">
+        <s:attribute name="document" type="tns:DocumentType" use="required" />
+        <s:attribute name="method" type="tns:MethodType" use="required" />
+        <s:anyAttribute />
+      </s:complexType>
+      <s:simpleType name="DocumentType">
+        <s:restriction base="s:string">
+          <s:enumeration value="content" />
+          <s:enumeration value="system" />
+        </s:restriction>
+      </s:simpleType>
+      <s:simpleType name="MethodType">
+        <s:restriction base="s:string">
+          <s:enumeration value="query" />
+        </s:restriction>
+      </s:simpleType>
+      <s:element name="versions" type="tns:Versions" />
+      <s:complexType name="Versions">
+        <s:sequence>
+          <s:element minOccurs="0" maxOccurs="unbounded" name="version" type="s:string" />
+        </s:sequence>
+        <s:anyAttribute />
+      </s:complexType>
+    </s:schema>
+  </wsdl:types>
+  <wsdl:message name="queryRequestSoapIn">
+    <wsdl:part name="Request" element="tns:queryRequest" />
+  </wsdl:message>
+  <wsdl:message name="queryRequestSoapOut">
+    <wsdl:part name="queryRequestResult" element="tns:queryResponse" />
+  </wsdl:message>
+  <wsdl:message name="queryRequestauthentication">
+    <wsdl:part name="authentication" element="tns:authentication" />
+  </wsdl:message>
+  <wsdl:message name="queryRequestdataRoot">
+    <wsdl:part name="dataRoot" element="tns:dataRoot" />
+  </wsdl:message>
+  <wsdl:message name="queryRequestrequest">
+    <wsdl:part name="request" element="tns:request" />
+  </wsdl:message>
+  <wsdl:message name="queryRequestversions">
+    <wsdl:part name="versions" element="tns:versions" />
+  </wsdl:message>
+  <wsdl:portType name="StsAdapterSoap">
+    <wsdl:operation name="Query">
+      <wsdl:input name="queryRequest" message="tns:queryRequestSoapIn" />
+      <wsdl:output name="queryRequest" message="tns:queryRequestSoapOut" />
+    </wsdl:operation>
+  </wsdl:portType>
+  <wsdl:binding name="StsAdapterSoap" type="tns:StsAdapterSoap">
+    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
+    <wsdl:operation name="Query">
+      <soap:operation soapAction="http://schemas.microsoft.com/sharepoint/dsp/queryRequest" style="document" />
+      <wsdl:input name="queryRequest">
+        <soap:body use="literal" />
+        <soap:header message="tns:queryRequestauthentication" part="authentication" use="literal" />
+        <soap:header message="tns:queryRequestdataRoot" part="dataRoot" use="literal" />
+        <soap:header message="tns:queryRequestrequest" part="request" use="literal" />
+        <soap:header message="tns:queryRequestversions" part="versions" use="literal" />
+      </wsdl:input>
+      <wsdl:output name="queryRequest">
+        <soap:body use="literal" />
+        <soap:header message="tns:queryRequestversions" part="versions" use="literal" />
+      </wsdl:output>
+    </wsdl:operation>
+  </wsdl:binding>
+  <wsdl:binding name="StsAdapterSoap12" type="tns:StsAdapterSoap">
+    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
+    <wsdl:operation name="Query">
+      <soap12:operation soapAction="http://schemas.microsoft.com/sharepoint/dsp/queryRequest" style="document" />
+      <wsdl:input name="queryRequest">
+        <soap12:body use="literal" />
+        <soap12:header message="tns:queryRequestauthentication" part="authentication" use="literal" />
+        <soap12:header message="tns:queryRequestdataRoot" part="dataRoot" use="literal" />
+        <soap12:header message="tns:queryRequestrequest" part="request" use="literal" />
+        <soap12:header message="tns:queryRequestversions" part="versions" use="literal" />
+      </wsdl:input>
+      <wsdl:output name="queryRequest">
+        <soap12:body use="literal" />
+        <soap12:header message="tns:queryRequestversions" part="versions" use="literal" />
+      </wsdl:output>
+    </wsdl:operation>
+  </wsdl:binding>
+  <wsdl:service name="StsAdapter">
+    <wsdl:port name="StsAdapterSoap" binding="tns:StsAdapterSoap">
+      <soap:address location="http://www.wssdemo.com/_vti_bin/DspSts.asmx" />
+    </wsdl:port>
+    <wsdl:port name="StsAdapterSoap12" binding="tns:StsAdapterSoap12">
+      <soap12:address location="http://www.wssdemo.com/_vti_bin/DspSts.asmx" />
+    </wsdl:port>
+  </wsdl:service>
+</wsdl:definitions>

Propchange: manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/DspSts.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: manifoldcf/branches/CONNECTORS-474/connectors/sharepoint/wsdls/DspSts.wsdl
------------------------------------------------------------------------------
    svn:keywords = Id