Share this page 

GPF on DW SetFullState (PB6.0)Tag(s): Common problems


Using Getfullstate on a server application to fill a DataStore and then passing it to a blob for the client application, it looks like the SetFullstate wasn't working properly or gives some GPF.Specially when the datastore in my client side already have data in it.

A workaround to this problem is to reassign the dataobject property of the datastore to itself before the SetFullState(). Giving something like this :

dw_product.dataobject = dw_product.dataobject
Thanks to Gildor for the tip!