I have a ASP.NET web service (.asmx) with methods that receives int arrays (int[]) and nullable int arrays (int?[]) as parameters. I also have a test web application for consuming this web service via a Service Reference.

The problem is that every time I change something in the web service code, recompile it and update the service reference at the test application, a different type of parameter is generated for the web service methods on the test application. For example:

On the first build and service update, the method signature generated by Visual Studio at the test app is:

void MyMethod(int[] firstParam, int?[] secondParam).

Then I make some changes, do it again and get something like:

void MyMethod(ArrayOfInt fistParam, ArrayOfInt1 secondParam)

(with ArrayOfInt being the equivalent of int[] and ArrayOfInt1 being the equivalent of int?[]).

Once more, and I get:

void MyMethod(ArrayOfInt1 firstParam, ArrayOfInt secondParam),

with ArrayOfInt and ArrayOfInt1 swaped (ArrayOfInt1 being now the equivalent of int[] and ArrayOfInt being the equivalent of int?[]).



What I really want is to use the simple int[] and int?[] types (no matter how many times I recompile and update the service reference!). How can I achieve this?

link|improve this question

Does no one ever found the reason for this? Does no one ever got annoyed with this silly behavior? – Raphael Aug 25 '11 at 13:45
1  
Are you using ASP.NET (asmx) web services, or WCF? – rally25rs Sep 26 '11 at 12:39
Sounds like you should turn on WCF – Seb Sep 26 '11 at 12:42
I'm using ASP.NET, and I can't turn to WCF yet (for business reasons). – Raphael Sep 26 '11 at 16:47
1  
Silly, but you can avoid by creating your own collection array class and using it in method as arguments, compiler won't interfere then. – hungryMind Oct 17 '11 at 14:37
show 3 more comments
feedback

1 Answer

up vote 0 down vote accepted

Try using wsdl.exe tool to generate web service proxy instead using Visual Studio.

This work for me!

link|improve this answer
What makes you think this would solve his problem? Did you have this problem, then solved it by using wsdl.exe? – John Saunders Nov 28 '11 at 19:06
Yes, when I use wsdl.exe, I can use int[] instead ArrayOfInt(). – Alberto Fojo Nov 29 '11 at 9:02
It worked fine, but I was looking for a solution inside Visual Studio. If no one gives a solution for this, I'll accept this answer, for I think Visual Studio simply can't do this. – Raphael Dec 12 '11 at 14:18
Well, I think there isn't a solution for this inside Visual Studio... so using wsdl.exe works fine as a workaround. Thanks all for the effort! – Raphael Dec 15 '11 at 14:05
feedback

Your Answer

 
or
required, but never shown

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