|
-
Oct 13th, 2021, 12:10 PM
#1
Thread Starter
Member
WSDL creating an array and passing to object
-
Oct 29th, 2021, 12:12 PM
#2
Thread Starter
Member
Re: WSDL creating an array and passing to object
Dim loaddata As New wsdl_estes.FullCommoditiesType
Dim comList As New List(Of wsdl_estes.FullCommodityType)
Dim com As wsdl_estes.FullCommodityType
'1St commodity
com = New wsdl_estes.FullCommodityType()
com.class = 60
com.description = ("Used Books")
com.weight = ("1680")
com.pieces = ("1")
com.pieceType = PackagingType.SK
com.dimensions = New wsdl_estes.DimensionsType()
com.dimensions.length = ("42")
com.dimensions.width = ("42")
com.dimensions.height = ("36")
comList.Add(com)
loaddata.commodity = comList.ToArray()
myrequest.Item = loaddata
May thanks Jim for your help
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|