Sign In  Sign Up Live-Chat

Enquiry about Aspose.pdf for .Net

Last post 06-19-2008, 5:57 AM by codewarior. 32 replies.
Page 1 of 3 (33 items)   1 2 3 Next >
Sort Posts: Previous Next
  •  06-03-2008, 4:51 AM 129769

    Enquiry about Aspose.pdf for .Net

    Hi,

           I have the following requirement:

    There are preformatted pdf files on the server, i need to create a web service using c#, which can open this pdf and manipulate it ( edit it ) with the recieved parameters, and generate a new pdf at the client. Can Aspose.pdf  fulfill my requirement.

     

    Thanks & Regards

    Aryan


    This message was posted using Page2Forum from Aspose.Form - Aspose.Pdf for .NET and Java
     
  •  06-03-2008, 5:40 AM 129777 in reply to 129769

    Re: Enquiry about Aspose.pdf for .Net

    Hello Aryan,

    Thanks for considering Aspose.

    We have a product named Aspose.Pdf.Kit which can be used to edit already created Pdf files. But before I can assure you that either our product full fills your need, can you please add few lines to your requirement, i.e. what sort of modifications you need to make in the file?


    Nayyer Shahbaz
    Support Developer
    Aspose Changsha Team
    About Us
    Contact Us
     
  •  06-09-2008, 3:02 AM 130492 in reply to 129777

    Re: Enquiry about Aspose.pdf for .Net

    Hi Nayyer,

                      Thanks for the reply. I went through the Aspose.Pdf.Kit, and saw the demos, but still I am not able to solve my problem, as i am new to this , can you help me in getting a better documentation or manual for usgae of the various methods. My exact requirement is to build a web service in C#, which opena a pdf form and fill the fields with the arguments passed while calling the webservice and as a result the filled pdf should be displayed on the browser of the client.

     

    Thanks

    Aryan

     
  •  06-09-2008, 5:08 AM 130512 in reply to 130492

    Re: Enquiry about Aspose.pdf for .Net

    Hello Aryan,

    Thanks for considering Aspose.

    We are currently looking into the details of your requirements, please spare us a little time so that we can communicate you that either we are in a position to fulfill your requirements right now or we need to suggest some other solution.

    Thanks for your patience.


    Nayyer Shahbaz
    Support Developer
    Aspose Changsha Team
    About Us
    Contact Us
     
  •  06-09-2008, 5:19 AM 130515 in reply to 130512

    Re: Enquiry about Aspose.pdf for .Net

    Hi Nayyer,

                       Thanks for the mail. I have gone through the demos, and my requirement is similar to the demo of  formsdemo, but in the code of that there are only methods defined. i cant see where and how the methods are called. Can you please tell me from where those methods are called.

    Thanks

    Aryan

     

     
  •  06-09-2008, 7:21 AM 130532 in reply to 130515

    Re: Enquiry about Aspose.pdf for .Net

    Dear Aryan,

    Please refer to Default.aspx.cs or Default.aspx.vb.


    Tommy Wang
    Lead Developer
    Aspose Changsha Team
    About Us
    Contact Us
     
  •  06-10-2008, 2:24 AM 130688 in reply to 130532

    Re: Enquiry about Aspose.pdf for .Net

    Dear Tommy,

                         Thanks for the help, now i am able to generate PDF but it is saved in the server, can i send the generated PDF to client browser without saving on server? If yes can you guide me in doing so.

    Thanks

    Aryan

     

     
  •  06-10-2008, 2:41 AM 130690 in reply to 130688

    Re: Enquiry about Aspose.pdf for .Net

    Hi Aryan,

    If you run the "Fill Fields" demo you can see it sends the PDF to client browser. Doesn't it work for you?


    Tommy Wang
    Lead Developer
    Aspose Changsha Team
    About Us
    Contact Us
     
  •  06-10-2008, 3:59 AM 130710 in reply to 130690

    Re: Enquiry about Aspose.pdf for .Net

    Dear Tommy,

                      I resolved the problem. Thanks for the support. I want to know that can i use the forms designed in adobe livecycle designer 8.0 as the template pdf, because i designed some forms and in the pdf generated i cant see the fields filled while using the sample student.pdf form it is working.

    Thanks

    Aryan

     
  •  06-10-2008, 4:42 AM 130723 in reply to 130710

    Re: Enquiry about Aspose.pdf for .Net

    Dear Aryan,

    I think there are some feaures in adobe livecycle designer 8.0 which are not supported by Aspose.Pdf.Kit. We will investigate this issue and reply to you.


    Tommy Wang
    Lead Developer
    Aspose Changsha Team
    About Us
    Contact Us
     
  •  06-10-2008, 7:44 PM 130861 in reply to 130723

    Re: Enquiry about Aspose.pdf for .Net

    Hi Aryan,

    Please refer to http://www.aspose.com/community/forums/thread/129666/works-with-adobe-designer-7.0.aspx. It is about Adobe Designer 7.0 but 8.0 is the same.


    Tommy Wang
    Lead Developer
    Aspose Changsha Team
    About Us
    Contact Us
     
  •  06-11-2008, 2:57 AM 130884 in reply to 130861

    Re: Enquiry about Aspose.pdf for .Net

    Hi Tommy,

                    I tried form.FlattenAllFields()  before form.save(), but still the final generated pdf form fields are empty.

     

    Regards

    Aryan

     
  •  06-11-2008, 3:12 AM 130886 in reply to 130884

    Re: Enquiry about Aspose.pdf for .Net

    Dear Aryan,

    Please provide your PDF template and code. We will test it and reply to you soon.


    Tommy Wang
    Lead Developer
    Aspose Changsha Team
    About Us
    Contact Us
     
  •  06-11-2008, 5:39 AM 130912 in reply to 130886

    Re: Enquiry about Aspose.pdf for .Net

    Attachment: Present (inaccessible)

    Hi Tommy,

                   Please find attached the PDF Template i generated in adobe lifecycle designer 8.0 and here is the code

                Random RandomClass = new Random();
                int num = RandomClass.Next(1, 100);
                string templatePdf;
                string output = "mynew" + num;
                string Mydir = "C://Manish/";
                templatePdf = Mydir + doc_type + ".pdf";
               
                           
                Form form = new Form(templatePdf, Mydir + output + ".pdf");
                //Fill the field "Name" with "Mike".
                form.FillField("Name", name);
                //Choose the field "Gender" with "Male".
                form.FillField("Gender", "Male");
                //Fill the field "Telephone".
                form.FillField("Telephone", tel);
                //Fill the field "Address".
                form.FillField("Address", address);
                //Choose the item "GradeTwo" of the Combo field "Grade".
                form.FillField("Grade", "GradeTwo");
               
                //use case for checking the checkbox "Lodging".
                //form.FillField("Lodging","Yes");
                //use case for unchecking the checkbox "Lodging".
                //form.FillField("Lodging", "Off");
                //Fill the image button field.
                //form.FillImageField("Photo", path + @".\Resources\lovely.jpg");

                form.FlattenAllFields();
                form.Save();
                HttpResponse Response = Context.Response;
                Response.ContentType = "application/pdf";
                Response.WriteFile(Mydir + output + ".pdf");
               
                Response.End();
               

     
  •  06-11-2008, 5:40 AM 130913 in reply to 130912

    Re: Enquiry about Aspose.pdf for .Net

    i am using visual studio 2008
     
Page 1 of 3 (33 items)   1 2 3 Next >
View as RSS news feed in XML