Search found 276 matches

by sander
Fri Dec 08, 2017 9:33 am
Forum: Flows
Topic: Saxon XSLT v2.0 and multiple node XML data
Replies: 6
Views: 7721

Re: Saxon XSLT v2.0 and multiple node XML data

True, this is where you link to the stylesheet :)

Code: Select all

D:\Scripts\Saxon\[Job.JobState].xsl
;)
by sander
Fri Nov 24, 2017 3:32 pm
Forum: Flows
Topic: Download from a FTP-SSL
Replies: 4
Views: 6581

Re: Download from a FTP-SSL

I do this with WinSCP. Example batch, but can be done with PowerShell too; @echo off "d:\Scripts\WinSCP\WinSCP.com" ^ /log="D:\Flows\Incoming\ftps.log" /ini=nul ^ /command ^ "open ftps://username:password@ftps.lorem.com" ^ "get -delete /TESTNAVOUT/* D:\Flows\Incomi...
by sander
Fri Nov 10, 2017 7:35 pm
Forum: Flows
Topic: Extracting data from xml
Replies: 6
Views: 9740

Re: Extracting data from xml

If you want a new XML file then an xsl transform is probably the easiest option. If you might need this, Lars, it’s already done here: https://forum.enfocus.com/viewtopic.php?f=12&t=1201&p=4080&hilit=Xslt+split#p4080 I’m using the Saxon configurator now to do the same. If you want I’ll ...
by sander
Wed Oct 25, 2017 6:45 pm
Forum: Applications
Topic: Switch 13u1 mail settings in Preferences
Replies: 7
Views: 11706

Re: Switch 13u1 mail settings in Preferences

Haha, can't say with the screenshots. Let me login in your Exchange server and I'll figure it out :lol: :mrgreen: :lol:
by sander
Wed Oct 25, 2017 2:14 pm
Forum: Applications
Topic: Switch 13u1 mail settings in Preferences
Replies: 7
Views: 11706

Re: Switch 13u1 mail settings in Preferences

Haha lol, good to hear man!

So your developer server needs authentication and your production server not.

At least that's strange ;)
by sander
Wed Oct 25, 2017 2:13 pm
Forum: Applications
Topic: Switch 13u1 mail settings in Preferences
Replies: 7
Views: 11706

Re: Switch 13u1 mail settings in Preferences

Is this Mac joined to a Active Directory?

You might have screwed up this computer in your AD by reverting back. In that case, leave and rejoin your domain.
by sander
Mon Oct 23, 2017 7:37 pm
Forum: PDF Creation
Topic: Filename PDF same as record CSV
Replies: 4
Views: 12750

Re: Filename PDF same as record CSV

If your output contains name_RecordNumber.pdf or something I would lookup the RecordNumber in the csv and rename accordingly.
by sander
Mon Oct 23, 2017 5:57 pm
Forum: Flows
Topic: Connecting to a New IP Addressee with hot folders
Replies: 3
Views: 4125

Re: Connecting to a New IP Addressee with hot folders

Again, this might work but I did not do it before so test with one test flow first.

You can 'batch' find/replace from within a folder with notepad++ so you don't have to open each individually.

Image
by sander
Mon Oct 23, 2017 4:45 pm
Forum: Flows
Topic: Connecting to a New IP Addressee with hot folders
Replies: 3
Views: 4125

Re: Connecting to a New IP Addressee with hot folders

How about replacing the name in your switch backing folder\flows\Flow.xml, that might work :)
by sander
Mon Oct 23, 2017 1:03 pm
Forum: Applications
Topic: HP SmartStream Designer Imposition (version 120)
Replies: 16
Views: 23656

Re: HP SmartStream Designer Imposition (version 120)

Oops, I missed a part of the email, see below. This is like a year ago (august 2016 :)) so I have to dig in my mind. Do you have bleed specified in your Adobe PDF presets from within SmartStream Designer? With the older configurator the Adobe PDF presets option is not honored and with the new config...
by sander
Mon Oct 23, 2017 11:26 am
Forum: Applications
Topic: HP SmartStream Designer Imposition (version 120)
Replies: 16
Views: 23656

Re: HP SmartStream Designer Imposition (version 120)

The configurator is changed with SmartStream 11.4. My conversation with HP, one year ago :) ===================================== I notice the Crop To Bleed Box function is not available anymore, unfortunately this is the only Crop To setting I use in my flows. What are the thoughts of this decision...
by sander
Thu Oct 19, 2017 8:50 pm
Forum: Flows
Topic: Process force quit
Replies: 2
Views: 4440

Re: Process force quit

Windows: Kill SwitchScriptExecutor.exe's :)
by sander
Thu Oct 12, 2017 1:16 pm
Forum: Applications
Topic: Switch 17 and SmartStream
Replies: 4
Views: 7918

Re: Switch 17 and SmartStream

What OS are you running on?

I had issues with SmartStream not saving it's license code correctly @ Windows Server 2012 R2 :(
by sander
Wed Oct 11, 2017 4:37 pm
Forum: Applications
Topic: Switch 17 and SmartStream
Replies: 4
Views: 7918

Re: Switch 17 and SmartStream

Yep
by sander
Tue Oct 10, 2017 12:29 pm
Forum: LEGACY scripting
Topic: Switch.Calculcation
Replies: 3
Views: 7071

Re: Switch.Calculcation

Math.ceil will do;

Code: Select all

quantity = Math.ceil((origQuantity+extra)/nUp);