Question
Veteran Careers First
US
Last activity: 16 Oct 2018 12:03 EDT
File Server Location
If PDF files are stored in file server location, how do I get them into the work object.
**Moderation Team has archived post**
This post has been archived for educational purposes. Contents and links will no longer be updated. If you have the same/similar question, please write a new post.
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Accepted Solution
Pegasystems Inc.
US
Yes, Henry the Update button has been removed in order to encourage the usage of new SOAP integration wizard. You can upload the updated WSDL file in SOAP integration wizard in order to create the new/updated rules into the application in same base ruleset version or in higher ruleset version depends on your requirement. So you can follow the resolution suggestion in your shared link to apply your updated WSDL changes into application.
Pegasystems Inc.
US
HI Henry,
I think you need to import your PDF file into Pega using webwb rule with pdf extension then use it in the Attach Content smart shape in your flow.
Hope it helps you.
Regards
Mahesh
Veteran Careers First
US
I am not familiar with 'webwb' rule.
Are you referring to web service...
Pegasystems Inc.
US
Hi Henry,
Kindly go through the attached document for implementation of your requirement.
Regards
Mahesh
Veteran Careers First
US
Thank you, I will review.
Veteran Careers First
US
Is there a way to view or see files in file location.
Or a away to view or see PEGA Temp Folder/directory.
Pegasystems Inc.
AU
Hi Henry,
You can use java code like below in activity to print the files present in StaticContent/global/ServiceExport/ of Pega Temp folder. You can change it accordingly per your requirement.
PRFile folder = new PRFile("file://web:/StaticContent/global/ServiceExport/");
PRFile[] listOfFiles = folder.listFiles();
for (int i = 0; i < listOfFiles.length; i++) {
oLog.infoForced(listOfFiles[i].toString());
}
Thanks,
Karthik
-
Mohan Kumar
Veteran Careers First
US
How can I send attachments with Connect-Rest Post
Pegasystems Inc.
US
Hi Henry,
You can have a look into the below links for your requirement:
Hope this information is sufficient for you to send attachments with connect-rest post request.
Regards
Mahesh
Veteran Careers First
US
Very helpful,
Thank You
Pegasystems Inc.
US
You are welcome Henry.
Veteran Careers First
US
Would you happen to know how to update WSDL for Connect-SAP.
Updated: 11 Oct 2017 2:45 EDT
Pegasystems Inc.
US
If your requirement is to apply the changes of your wsdl file into the connector rules and its specific classes, then you can look into this discussion.
Veteran Careers First
US
I am having the same issue as mentioned in the 'link' you provided.
The issue is there is no 'update' button on the XML Parse or XML Stream rule.
I am using version 7.1.6.
I found this article... https://community.pega.com/support/support-articles/connect-soap-wizard-issues-and-not-able-update-wsdl
Let me know your thoughts.
Accepted Solution
Pegasystems Inc.
US
Yes, Henry the Update button has been removed in order to encourage the usage of new SOAP integration wizard. You can upload the updated WSDL file in SOAP integration wizard in order to create the new/updated rules into the application in same base ruleset version or in higher ruleset version depends on your requirement. So you can follow the resolution suggestion in your shared link to apply your updated WSDL changes into application.
Veteran Careers First
US
Question for you.
How do I deploy/migrate code from one environment to the next higher environment.... (Dev to QA)
Pegasystems Inc.
US
@Henry, if you want to automate the process of deployment using Jenkins you can go through my blog as follows:
If you want to do it manually then you can create the Rule-Admin-Product rule using Designer Studio > Application > Distribution > package wizard to create the RAP file and import it into the another environment.
By the way as this is the different requirement i would suggest you to create a new post from next time onwards.
Regards
Mahesh
Veteran Careers First
US
I will do it manually first then perhaps a bit later I will follow your blog for using Jenkins.
I will also create a new posts for different requirements.
Pegasystems Inc.
US
Veteran Careers First
US
OK I will create a new post.