Author Topic: AuthorID & ProductID  (Read 2541 times)

kourou

  • Jr. Member
  • **
  • Posts: 81
  • Anything that can go wrong will go wrong
    • FANNY (Discord)
AuthorID & ProductID
« on: November 22, 2018, 04:32:52 PM »
hi,
Thanks Gary for the new release GGG  :D
question, where can we fill the author and product IDs ? this is what i have in the .vap

<AuthorID xsi:nil="true" />
<ProductID xsi:nil="true" />

shouldn't be like this ?

<AuthorID xsi:nil="true"> value </AuthorID>
<ProductID xsi:nil="true"> value </ProductID>



Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4759
  • RTFM
Re: AuthorID & ProductID
« Reply #1 on: November 22, 2018, 04:57:28 PM »
If you want to use those tags, the format would be
Code: [Select]
<AuthorID> value </AuthorID>
<ProductID> value </ProductID>

As their contents would not be nil(NULL, I.E. nothing).

kourou

  • Jr. Member
  • **
  • Posts: 81
  • Anything that can go wrong will go wrong
    • FANNY (Discord)
Re: AuthorID & ProductID
« Reply #2 on: November 23, 2018, 12:01:30 PM »
If you want to use those tags, the format would be
Code: [Select]
<AuthorID> value </AuthorID>
<ProductID> value </ProductID>

As their contents would not be nil(NULL, I.E. nothing).
I got an error with this syntax.
Modify : I suppose it is the format ok i see

Gary

  • Administrator
  • Hero Member
  • *****
  • Posts: 2827
Re: AuthorID & ProductID
« Reply #3 on: November 23, 2018, 12:06:52 PM »
What exactly did you put in there to get the error?

It should look something like this:

<AuthorID>{59914080-91C0-4DDB-83B4-72B558D09AD2}</AuthorID>

or

<AuthorID>59914080-91C0-4DDB-83B4-72B558D09AD2</AuthorID>

kourou

  • Jr. Member
  • **
  • Posts: 81
  • Anything that can go wrong will go wrong
    • FANNY (Discord)
Re: AuthorID & ProductID
« Reply #4 on: November 23, 2018, 12:20:37 PM »
I did not think it needed a guid, with only hexadecimal characters. My bad