NetTalk Central

Author Topic: NT8.02 Packet change?  (Read 2407 times)

johanco123

  • Full Member
  • ***
  • Posts: 245
    • View Profile
    • Email
NT8.02 Packet change?
« on: March 25, 2014, 02:45:14 AM »
Hi Bruce
NT8.02.
M original statement was:
packet =  p_web.SetSessionValue('SV_PDE:UniqueCode',clip(PDE:UniqueCode))
then I change it to
packet.SetValue(p_web.SetSessionValue('SV_PDE:UniqueCode',clip(PDE:UniqueCode)))
is this correct?

Tanks
Johan

Alberto

  • Hero Member
  • *****
  • Posts: 1871
    • MSN Messenger - alberto-michelis@hotmail.com
    • View Profile
    • ARMi software solutions
    • Email
Re: NT8.02 Packet change?
« Reply #1 on: March 25, 2014, 04:14:46 AM »
Yes you must replace your:

packet =
by
packet.Setvalue()

and packet = clip(packet) &
by
packet.Append()

Regardss
-----------
Regards
Alberto

johanco123

  • Full Member
  • ***
  • Posts: 245
    • View Profile
    • Email
Re: NT8.02 Packet change?
« Reply #2 on: March 25, 2014, 04:34:24 AM »
Many tanks for the confirmation

Johan