Search found 592 matches

by jan_suhr
Sun Nov 15, 2020 1:52 pm
Forum: LEGACY scripting
Topic: Select a file from the beginning of a flow
Replies: 20
Views: 21040

Re: Select a file from the beginning of a flow

Sorry I didn't see that.

But that is your problem. For the Pickup tools to work with the setting "Metadaten neben Asset" both files have to have the same name.

So you have to find a way to rename the payload file.
by jan_suhr
Sun Nov 15, 2020 11:05 am
Forum: LEGACY scripting
Topic: Select a file from the beginning of a flow
Replies: 20
Views: 21040

Re: Select a file from the beginning of a flow

Do both files have the same name?
by jan_suhr
Sat Nov 14, 2020 9:38 am
Forum: LEGACY scripting
Topic: Select a file from the beginning of a flow
Replies: 20
Views: 21040

Re: Select a file from the beginning of a flow

One way is to embed the text file or the PDF as an Opaque dataset in the other file and in the script access that dataset. It will then be saved as a temp file that you can read from the script.
by jan_suhr
Tue Nov 10, 2020 10:31 pm
Forum: Flows
Topic: Webhook
Replies: 3
Views: 3290

Re: Webhook

In the setup of your Webhook you have in the property one item called "Path". It is in a way an unclear name since it really is the unique identifier of your Webhook and that identifier must be part of the URL as a "path" So if you set the path value to "path/mywebhook"...
by jan_suhr
Tue Nov 10, 2020 10:08 am
Forum: Flows
Topic: Calculate amount
Replies: 5
Views: 5510

Re: Calculate amount

Have you tried to use different Dataset names from the submit point and then use Make XML to combine them in to one XML that you later pickup to the assembled job. It should work for you
by jan_suhr
Wed Oct 14, 2020 10:30 pm
Forum: Switch
Topic: Submit Point - Messages
Replies: 2
Views: 3865

Re: Submit Point - Messages

You can do it in other ways.

Best way is to use a webform that send the job to a Switch Webhook. That way your group can't see anything else.
by jan_suhr
Tue Oct 13, 2020 6:14 pm
Forum: Flows
Topic: Execute Command SSH
Replies: 8
Views: 6915

Re: Execute Command SSH

And to create a shell script on the fly with variables you can use the app Execute Command Friend.
by jan_suhr
Fri Oct 09, 2020 9:14 pm
Forum: Flows
Topic: Placing a Folder within a Job Folder.
Replies: 1
Views: 2403

Re: Placing a Folder within a Job Folder.

Have you tried Set Hierarchy and Archive Hierarchy. It should solve it for you.
by jan_suhr
Thu Oct 08, 2020 2:31 pm
Forum: Applications
Topic: Communication Switch - Photoshop interrupted
Replies: 3
Views: 5103

Re: Communication Switch - Photoshop interrupted

Do you have the latest version of the Configurator?
by jan_suhr
Tue Oct 06, 2020 7:12 am
Forum: Flows
Topic: Definitions
Replies: 3
Views: 3644

Re: Definitions

Private data is a very useful thing in Switch. With it you can attach a value (mostly from a variable) to a job. This Private data value can then later in the flow be used to route the job, send and email or do a lot of other things. You pickup that value from a variable [Job.PrivateData] Submit Hie...
by jan_suhr
Tue Sep 29, 2020 12:05 pm
Forum: LEGACY scripting
Topic: File stuck in Folder before script
Replies: 4
Views: 5059

Re: File stuck in Folder before script

If you just want it to trigger you use the job.sendToNull that you have there.
But check with a s.log() that you really end up in that step.
by jan_suhr
Tue Sep 29, 2020 11:32 am
Forum: LEGACY scripting
Topic: File stuck in Folder before script
Replies: 4
Views: 5059

Re: File stuck in Folder before script

You need a job.sendToSingle for it to go out of the script.
by jan_suhr
Mon Sep 28, 2020 4:38 pm
Forum: LEGACY scripting
Topic: Switch Webhooks
Replies: 13
Views: 18848

Re: Switch Webhooks

The thing with the property paths in the Webhook is a bit confusing.

See the path as the address to one webhook receiver. It must be unique on your Switch server.
by jan_suhr
Mon Sep 28, 2020 1:57 pm
Forum: LEGACY scripting
Topic: Switch Webhooks
Replies: 13
Views: 18848

Re: Switch Webhooks

Your URL needs to include the data like what is suggested before. https://yoururl?jobnumber=123456&filename=GES.pdf&numberOfCopies=150 That will then be picked up on the webserver and from there you can send it to Switch. So you QR-code should include the URL with variables. There is a lot o...
by jan_suhr
Mon Sep 28, 2020 12:28 pm
Forum: LEGACY scripting
Topic: Switch Webhooks
Replies: 13
Views: 18848

Re: Switch Webhooks

Where is the QR-code? Is it on printed paper.

How are they scanning it? Phone or scanner attached to computer? In any case the scanning software is the one who sends the POST, right?