Skip to main content
Participant
April 3, 2007
Question

WDDX packet parse error

  • April 3, 2007
  • 1 reply
  • 1081 views
I have recently set up a local pc environment with Cold Fusion web server, SQL database, and HTML, CFM files and have a functional local web site. However, only about half of the site works, the other half when I click on a link I get this error:

WDDX packet parse error at line -1, column -1. Premature end of file..

The line of code that errors out is: <cfwddx action="wddx2cfml" input="#getobject.data2#" output="object">
I am fairly new to this, please provide me with any helpful info regarding why I am getting this error.
Thanks a Bunch!
Carl

This topic has been closed for replies.

1 reply

BKBK
Community Expert
Community Expert
April 4, 2007
I suspect getobject.data2. You are deserializing, so the input attribute should contain the name that was once the output attribute of the serializer, for example, <cfwddx action = "cfml2wddx" output = "name_one_expects_in_place_of_getobject.data2">. The name usually doesn't contain a dot.