10-15-2006 03:59 PM
10-17-2006 11:28 AM
<wsdl:import namespace="http://www.alfresco.org/model/content/1.0" location="types.xsd" />to:
<wsdl:import namespace="http://www.alfresco.org/ws/model/content/1.0" location="types.xsd" />I also had to add <wsdl:import namespace="http://www.alfresco.org/ws/model/content/1.0" location="types.xsd" /> to repository-service.xml to get the Webservices Toolkit import accepted. But then upon adding repository-service.wsdl to my VBA project I get an error. So I found that if I change the type of the statements element from cml:CML to let's say xsd:string, then the import works. In other words changing:
<element name="update">to:
<complexType>
<sequence>
<element name="statements" type="cml:CML"/>
</sequence>
</complexType>
</element>
<element name="update">will work. I can't figure out what's wrong with the CML type.
<complexType>
<sequence>
<element name="statements" type="xsd:string"/>
</sequence>
</complexType>
</element>
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.