How to open pdf file with aspose.pdf for android to edit - aspose

I have a mobile application that use with "aspose.pdf for android" to open PDF file for edit.
In the PDF file i have two fields for signing and i want to sign on the fields.
There a way to do that?
Thanks,
Tal

#tal, The feature to digitally sign PDF file is not supported and it has been logged in bug tracking system as PDFANDROID-484. Once the feature is supported, we will update you.
My name is Nayyer and I am developer evangelist at Aspose.

Related

How to get wso2 api manager 3.2.0 reference guide in pdf file?

How can I get wso2 api manager 3.2.0 reference guide in pdf file?
WSO2 APIM documentation is a large knowledge base and I don't think we have it in a single pdf file. Here you can find the document repo (https://github.com/wso2/docs-apim/tree/3.2.0) and there are some tools available to convert md files to pdf. I haven't tried any. However even if you find a good tool, you might have to do some extra work to resolve the paths and images.
The official wso2am-3.2.0 documentation cannot be taken/downloaded in pdf format.
https://lms.wso2.com/courses/wso2-api-manager-developer-fundamentals-v3-2 - This has the fundamentals of the concepts and you can download them in pdf format after the enrolment process.

Uploading browser extension to Microsoft Partner Centre

I currently have continuous integration that updates an extension on Chrome Web Store and Mozilla Add On Market, however I am now trying to make a script that uploads to the Microsoft Partner Centre. Does anyone know how to upload via API to this Microsoft Partner Centre? (Specifically for Browser Extensions).
Microsoft just released the Microsoft Edge Add-Ons API which finally gives the ability to programmatically upload browser extensions to the web store via an API.
If you're using Node, can use the Edge Webstore Upload package to work with this API.
Do you want to upload Edge extension to Partner Center using some API? Partner Centre does not have such an API to provide to upload extensions. Correct me if I misunderstand what you want.
If you want to upload Edge extension, please refer to Publish your extension. If you want to update Edge extension, please refer to Update An Extension Listing.
So I found it particularly hard to write a script that would do this, so hard that I had to use Selenium due to all the JS loaded on the Microsoft Partner Centre sites. Never the less, I have written a script that will login, upload a new version and publish it (note that it won't work unless you've created and uploaded the first version of your extension yourself).
https://gist.github.com/8W9aG/d135f2780e2dc27baa682bae3a2a1cc7

Read data from different system in different format, like xml, csv, database, etc in IBM BPM

I am very new to IBM BPM. I want to know how can i read/write data from/to different system to IBM BPM ? What are the different formats supported ? like xml, csv, database, WSDL etc. ??
Let us suppose I have a system from where i can get some data, may be in the form of xml, csv or database, etc (without WSDL contract. Now I want to create an interface in my IBM BPM, which can be used to read/extract data from above mentioned system. Is this possible without a WSDL contract ?
IBM BPM provides out of the box connectors for both the standard (BPMN) and advanced (BPEL) products. For BPM Standard the System Data Toolkit has built in ready to go integration points for databases, SOAP, XML parsing, HTTP requests, and more. There are a few examples of connectors in the L2-SampleApps project. There are more here on the BPM Tutorials page and here. and a full PDF of simple how to samples.
For the advanced side, there are some example here which have code you can review for connecting to various outside systems.
When you say "import from a remote location" which of the following do you mean
A user looking at a coach and uploading to the server from their computer
A user lookking at a coach and uploading to the server from a network location
A user looking at a coach and selecting from a location on the BPM server
The server accessing a file on its file system
The server accessing a file on another file system
If it is one of the coach options, you could use the file upload widget for coaches and then parse the file that is uploaded from the file repository using one of the open source java packages that allow reading of excel spreadsheets.
You can get this information here:
https://www.ibm.com/developerworks/community/forums/html/topic?id=77777777-0000-0000-0000-000014873642

How to save song/mp3 to Media Library in Windows Phone 8?

I'm solving simple task - in Windows Phone 8 it should be possible to save mp3 file downloaded from Internet into phone Media Library, not just into Isolated storage. Hint for the API is here:
What's new in Windows Phone SDK 8.0
The only thread about this problem I have found:
MediaLibrary SaveSong method
Is anywhere simple guide how to save mp3 song into phone Media Library or at least MSDN article describing the MediaLibraryExtensions.SaveSong? Thanks!
Here you go # API to add playlists in Zune
Please leave a comment if you've got any additional questions.

Push OO or xslt doc to google drive from django

I use pod to generate reports from django. A very smart solution, I enjoy it.
But pod solution required an Open Office (or LibreOffice) installation on client desktop (or server side).
To avoid Open Office software I will hope to send report to google drive as a new (or existing) doc from a django app (or python ...).
Someone would to share expertise with this kind of issue? Else, What would be the steps to publish a google doc from django app?
If your Python app can produce a csv file, you can upload it to Google Docs using the Documents List API and convert it into a Spreadsheet:
https://developers.google.com/google-apps/documents-list/#creating_or_uploading_spreadsheets
Many other file formats can be imported, please check the docs for more details.