I have a Webservice which tells me this is the function parameters..
Public Function Create(ByVal Name As String, ByVal templateId As Integer)
The issue is the templateid is a GUID. if i pass this into the Function the function wont work as it needs to be an integer. I can def say the templateid is a GUID from a SQL database.
so how can i change that GUID into an integer so the function will accept it? is it possible?
all parse tests have come back as false meaning its not possible.
I'm assuming from the function definition that it's Visual Basic, in which the
Integer
type is a 32 bit signed integer. Even if it were a 64 bit unsigned integer, a[guid]
is 128 bits, so its value will not fit into anInteger
.