Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I stop service reference generating ArrayOfString instead of string[]?

I have a web method with a signature like this:

public string[] ToUpper(string[] values)

I am using the 'Add Service reference' in Visual Studio 2010 to generate a reference to my service. Unfortunately, this process creates a proxy class called 'ArrayOfString' and uses this type instead of the expected 'string[]' type. The generated async service call signature ends up looking like this:

public void ToUpperAsync(Demo.ServiceReference.ArrayOfString values) { }
public void ToUpperAsync(Demo.ServiceReference.ArrayOfString values, object userState) { }

I have tried all the options of the 'Collection' drop down on the config service reference form and it doesn't seem the make a difference.

This was working previously, but for some reason it suddenly stopped working, perhaps after removing another web method from the service.

How do I get the generated service reference class to use the string[] type instead of a generated ArrayOfString type? Any help on this would be greatly appreciated.

EDIT: As @Oleg suggests, I am using ASMX web services.

like image 217
Luke Baulch Avatar asked Feb 08 '11 04:02

Luke Baulch


3 Answers

this change to XmlSerializer can ben done inside the Reference.svcmap file. Open it inside the Service Reference folder and change the Serializer xml node from "Auto" to "XmlSerializer" this solves the problem! Cheers

like image 50
paketman Avatar answered Oct 18 '22 20:10

paketman


I could reproduce your problem when adding a "Service reference" to an ASMX style web service. However when adding "Service refernce" to a WCF service or "Web reference" to an ASMX service argument was of type string[].

According to this I think that you can fix your problem by replacing "Service reference" by "Web reference".

Press "Advanced..." button on "Add service reference dialog". Add service reference

Press "Add web reference..." Advanced

Insert service url and add web reference Add web reference

like image 43
Oleg Rudckivsky Avatar answered Oct 18 '22 22:10

Oleg Rudckivsky


Too late but can help people in the future...

Use the svcutil and explicitly inform the command line util that you want the proxy class to be serialized by the XmlSerializer and not the DataContractSerializer (default). Here's the sample:

svcutil /out:c:\Path\Proxy.cs /config:c:\Path\Proxy.config /async /serializer:XmlSerializer /namespace:*,YourNamespace http://www.domain.com/service/serviceURL.asmx

Note that the web service is an ASP.NET web service ok?!

like image 34
Fergara Avatar answered Oct 18 '22 20:10

Fergara