Re: TeraScript-Talk: FedEx return label

2020-02-20 Thread John Sloatman
m dunk. > > > > Steve > > > > *From:* Robert Shubert > *Sent:* Wednesday, February 19, 2020 4:50 PM > *To:* TeraScript-Talk@terascript.com > *Subject:* RE: TeraScript-Talk: FedEx return label > > > > @CIPHER has base64 decoding. The result is binary so ju

RE: TeraScript-Talk: FedEx return label

2020-02-20 Thread Fogelson, Steve
Thanks for all your suggestions. I ended up using Robert’s as it was pretty much slam dunk. Steve From: Robert Shubert Sent: Wednesday, February 19, 2020 4:50 PM To: TeraScript-Talk@terascript.com Subject: RE: TeraScript-Talk: FedEx return label @CIPHER has base64 decoding. The result

RE: TeraScript-Talk: FedEx return label

2020-02-19 Thread Robert Shubert
@CIPHER has base64 decoding. The result is binary so just place the tag in the data body of a Write File Action. From: Fogelson, Steve [mailto:foge...@askics.net] Sent: Wednesday, February 19, 2020 12:02 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: FedEx return label I am

Re: TeraScript-Talk: FedEx return label

2020-02-19 Thread Thomas Peters
Clarification: google base64.decode() JavaScript Thomas Peters Accenture, Delivery / Development Leader On Feb 19, 2020, at 2:55 PM, Thomas Peters wrote:  You can get a JavaScript function for base64.encode() and base64.decode() which should enable you to stream the output decoded stream to

Re: TeraScript-Talk: FedEx return label

2020-02-19 Thread Peter Dobbs
m" Subject: Re: TeraScript-Talk: FedEx return label You can get a JavaScript function for base64.encode() and base64.decode() which should enable you to stream the output decoded stream to a file attachment for the user to download. Thomas Thomas Peters Accenture, Delivery / Development Lead

Re: TeraScript-Talk: FedEx return label

2020-02-19 Thread Peter Dobbs
Steve" on behalf of "Fogelson, Steve" Reply-To: "TeraScript-Talk@terascript.com" Date: Wednesday, February 19, 2020 at 2:52 PM To: "TeraScript-Talk@terascript.com" Subject: TeraScript-Talk: FedEx return label I am writing a taf to allow customers to requ

Re: TeraScript-Talk: FedEx return label

2020-02-19 Thread Thomas Peters
You can get a JavaScript function for base64.encode() and base64.decode() which should enable you to stream the output decoded stream to a file attachment for the user to download. Thomas Thomas Peters Accenture, Delivery / Development Leader On Feb 19, 2020, at 2:52 PM, Fogelson, Steve

TeraScript-Talk: FedEx return label

2020-02-19 Thread Fogelson, Steve
I am writing a taf to allow customers to request a return label from FedEx utilizing the Web Call action. I have it working but part of the returned xml is in Base64. This is actually the label for the customer to print. FedEx told me to decode it and save it to a file and then print it. I am