serge
serge

Reputation: 1609

WSDL import issue Delphi XE2

On my server I previously had method:

public boolean isValid(NameMinData[] names){
}

So Delphi generated type:

Array_Of_NameMinData = array of NameMinData;

Later I add a method on my server:

public NameMinData[] getValidNames(NameMinData[] names){
}

After generation Delphi changed my type name into:

getValidNamesResponse = array of NameMinData;

This is very annoying because I used this type in a lot of places. Any idea is to how to force Delphi to generate original name?

Upvotes: 1

Views: 421

Answers (1)

serge
serge

Reputation: 1609

I poked around and figured out that you need to check Map pure collections to wrapper class types. This resolved my issue.

enter image description here

Upvotes: 2

Related Questions