Evaluation Only- WaterMark is getting Appended even though we have a License

Dear Team,

We are using Aspose.Words jar 13.5.0.0, for that we have license too. Even though we have a License on manual insertion of Header “Evaluation Only. Created with Aspose.Words. Copyright 2003-2011 Aspose Pty Ltd.” Watermark is getting Appended(Simulating inconsistently/But no truncation of page). Can you please give us solution to resolve this issue?

And in the Same version when we try to merge different documents, table Format is not getting retained.

Also i have query, I want merge the merging documents starting from a new page instead of merging continuously. Can you give me the idea to get this requirement done.

I have attached the screen shot for your reference.

Thanks in advance.

Hi Kavin,

Thanks for your inquiry.

*kavin609:

We are using Aspose.Words jar 13.5.0.0, for that we have license too. Even though we have a License on manual insertion of Header “Evaluation Only. Created with Aspose.Words. Copyright 2003-2011 Aspose Pty Ltd.” Watermark is getting Appended(Simulating inconsistently/But no truncation of page). Can you please give us solution to resolve this issue?*

Please
check the expiration date of your license file. To check an expiration
date of your license open the license file using notepad. You will see
the following tags:

20130818

It means that you can free upgrade to version of Aspose.Words published before 08/18/2013.

Moreover, I would like to mention a few points here:

  • Make sure your call to setLicense gets executed. Step through in the debugger.
  • Make sure your code does not catch an exception thrown by Aspose.Words licensing code. For example, Aspose.Words will throw if it cannot find the license.
  • Make sure the input documents do not already have the evaluation message. Aspose.Words does not delete existing evaluation messages.
  • Make sure setLicense is executed before you instantiate any Document object.

In case the problem still remains, please
post your license file via mail to us. I will investigate the issue on
my side and provide you more information. In order to post your license
file to us, please follow the instructions provided in the following
link:
http://www.aspose.com/corporate/purchase/faqs/send-license-to-aspose-staff.aspx

*kavin609:

And in the Same version when we try to merge different documents, table Format is not getting retained.*

It would be great if you please share following detail for investigation purposes.

  • Please attach your input Word documents.
  • Please

create a standalone/runnable simple application (for example a Console
Application Project
) that demonstrates the code (Aspose.Words code) you used to generate
your output document

  • Please attach the output Word file that shows the undesired behavior.
  • Please
    attach your target Word document showing the desired behavior. You can
    use Microsoft Word to create your target Word document. I will
    investigate as to how you are expecting your final document be generated
    like.

Unfortunately,
it is difficult to say what the problem is without the Document(s) and
simplified application. We need your Document(s) and simple project to
reproduce the problem. As soon as you get these pieces of information to
us we’ll start our investigation into your issue.

*kavin609:

Also i have query, I want merge the merging documents starting from a new page instead of merging continuously. Can you give me the idea to get this requirement done.*

Please use the following code example to achieve your requirements. Hope this helps you.

Document dstDoc = new Document(MyDir + "TestFile.Destination.doc");
Document srcDoc = new Document(MyDir + "TestFile.Source.doc");
// Set the appended document to appear on a new page.
srcDoc.getFirstSection().getPageSetup().setSectionStart(SectionStart.NEW_PAGE);
dstDoc.appendDocument(srcDoc, ImportFormatMode.KEEP_SOURCE_FORMATTING);
dstDoc.save(MyDir + "Out.docx");