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)
-
Accepted Solution

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.

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

I am not familiar with 'webwb' rule.
Are you referring to web service...

Hi Henry,
Kindly go through the attached document for implementation of your requirement.
Regards
Mahesh

Is there a way to view or see files in file location.
Or a away to view or see PEGA Temp Folder/directory.

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

How can I send attachments with Connect-Rest Post

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

Would you happen to know how to update WSDL for Connect-SAP.

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

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.

@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

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.
