Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a new project whereas i need to consume a webservice from the following address: http://opensearch.addi.dk/1.1/ The service is a library service for querying books etc. When i feed my visual studio the wsdl (shown in bottom of page) i cannot consume it or Call it. Shouldnt this be this simple or am i missing something. I would hate to be forced to write All the soap XML myself and to parse the request.

Anyone know if im missing something?

EDIT It seems VS cannot resolve this xsd

<xs:redefine schemaLocation="dcterms.xsd">
<xs:group name="elementsAndRefinementsGroup">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:group ref="elementsAndRefinementsGroup"/>
<xs:element ref="anyElements"/>
</xs:choice>
</xs:sequence>
</xs:group>
</xs:redefine>

because it has a self-reference within a group. This is legal according to the xsd specification, but VS doesnt seem to agree...

share|improve this question
Could you clarify what you mean by "feed my visual studio the wsdl"? Are you using it to add a Service Reference? Adding a file containing the WSDL to your VS project? Something else? Also, it would probably help if you mentioned which version of Visual Studio you are using. – Frank Boyne May 27 '11 at 18:45
Using vs2010, just using the ADD service reference, cmi King advanced, Then ADD Web reference – Brian Hvarregaard May 27 '11 at 19:06
Why are you using "Add Web Reference"? – John Saunders May 27 '11 at 19:54
Also, what is not working? – John Saunders May 27 '11 at 19:55
Please see my answer to Michael Kennedy below – Brian Hvarregaard May 31 '11 at 9:40
show 1 more comment

1 Answer

up vote 1 down vote accepted

Just run wsdl.exe and pass in the file and the final URL, namespace, etc. in the commandline.

Be sure to use a "Visual Studio Command Prompt", not the regular one.

share|improve this answer
I tried doing this, but it fails, with an error: "The binding "osSearchServiceSoapBinding" cannot be imported from the namespace "oss.dbc.dk/ns/opensearch_wsdl. The action "search" cannot be imported. The Group "elementAndRefinementsGroup" from the targetNamespace="purl.org/dc/terms/"; has an invalid definition: Circular reference. Roughly translated from my danish error message – Brian Hvarregaard May 31 '11 at 9:22
Possibly it's an advanced WCF binding rather than straight SOAP 1.1? You can try a similar command with SvcUtil.exe. – Michael Kennedy May 31 '11 at 15:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.