Closed
How to attach a PDF from server path to Work Object?
How to attach a PDF from server path to Work Object? How to implement this? Pega v7.1.8
Please provide ur inputs. Thanks in advance.
This content is closed to future replies and is no longer being maintained or updated.
Links may no longer function. If you have a similar request, please write a new post.
How to attach a PDF from server path to Work Object? How to implement this? Pega v7.1.8
Please provide ur inputs. Thanks in advance.
Hi
Have you explored this How to article ? https://community.pega.com/how-create-activities-attach-files-work-objects
Thanks santhanu.
But that article deals with binary file path.
But my flat PDF file is placed in server location ("../test11.pdf").
I tried below java code. This helps me to down load the file from server location. But i am not able to attach that to work object.
if you have any java code to attach the document from server path it will be helpful.
/*The File Path along with the name to download need to be mentioned here */
String filePath = tools.getParamValue("FilePath");
java.io.FileInputStream fileInputStream=null;
java.io.File file = new java.io.File(filePath);
byte[] bFile = new byte[(int) file.length()];
try {
fileInputStream = new java.io.FileInputStream(file);
fileInputStream.read(bFile);
fileInputStream.close();
}
catch(Exception e){
e.printStackTrace();
}
/* Change the name of the Test.docx to the actual file name that needs to be downloaded with extension.*/
String sErrorMessage = tools.sendFile(bFile, "Test.docx", false, null, true);
if (sErrorMessage != null){
tools.getThread().getThreadPage().putString("pyXMLStream", sErrorMessage);
}
Hi Antony,
What Santanu Bhattacherjee has suggested is to use activities to attach the files, in the article as an example 'Rule-File-Binary' is mentioned; similarly you can use 'Rule-File-Text', 'Rule-File-eForm' etc.
However 'Rule-File-Binary' is more generic to use for storing files of any file type. You need to follow steps as below.
Thanks,
Habeeb Baig
are you trying to fetch the file from a relative path of your server or a direct path?
its relative path
How did you get the filepath of the server?
Question Solved
Question Solved
Question Solved
Question
Question
Question Solved
Discussion
Question
Question Solved
Question Solved
Pega Collaboration Center has detected you are using a browser which may prevent you from experiencing the site as intended. To improve your experience, please update your browser.