Error 117 in Avrobat reader 6.0

I retrieve this error while reading a pdf document created with aspose.word + aspose.pdf:

There was a problem reading this document (117).
Non Hex char in hex string.

Here is my source code:
--------------------------------------

Dim doc As Document

curPath = MapPath(".")

doc = CreateTabella()

Dim stream1 As New System.IO.MemoryStream

doc.Save(stream1, SaveFormat.FormatAsposePdf)

stream1.Seek(0, SeekOrigin.Begin)

Dim xmldoc1 As New XmlDocument

xmldoc1.Load(stream1)

Dim pdf As New Aspose.Pdf.Pdf

pdf.IsImagesInXmlDeleteNeeded = True

pdf.BindXML(xmldoc1, Nothing)

Response.ContentType = “application/pdf”

pdf.Save(Response.OutputStream)

Response.End()

-----------------------------------------
The first time the document is loaded and correctly displayed, but after editing this document with “Select Text Button” all next pdf get this error.
I have to kill acrobat.exe with Task Manager and retry.

Thanks in advance.

Hi,

Thank you for considering Aspose.

Can you please send the Word document to me?

Hi,

I have fixed this bug. Please download hotfix here

All seems OK now.
Thanks and compliments for fix.