Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-13 Thread Rick Westbrock
I didn’t notice that, do you think the space may need to be URL-encoded into 
%20? Personally I still think it’s the browser security but this is one other 
trick to try, you’d have to add an extra action before the run process to do 
the replacement but if that works then you would need to write (or find) a 
function to URL encode all characters that are not HTML  compliant.

-Rick

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Joel Sender
Sent: Friday, October 10, 2014 6:01 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I’m not sure if this is the issue, but since your address contains a BLANK, 
have you tried quotes around the URL?
HTH,
Joel
Joel Senderjdsen...@earthlink.netmailto:jdsen...@earthlink.net
310.829.5552

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sinclair, Keith
Sent: Friday, October 10, 2014 1:24 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Sadly, I tried that one.

Same issue – nothing happens in web browser.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sanford, Claire
Sent: Friday, October 10, 2014 3:23 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Why not just add the URL to a line of text on a button?

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of William Rentfrow
Sent: Friday, October 10, 2014 3:16 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Disclaimer: I haven't messed around with this for a while, so it might take 
some tinkering.

Stuff below taken from here:

http://stackoverflow.com/questions/4679756/show-a-pdf-files-in-users-browser-via-php-perl

If you have PHP on your web server you can directly display a PDF doing 
something like this:

?php
$file = './path/to/the.pdf';
$filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the 
end. */

header('Content-type: application/pdf');
header('Content-Disposition: inline; filename=' . $filename . '');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');

@readfile($file);
?


William Rentfrow
wrentf...@stratacominc.commailto:wrentf...@stratacominc.com
Office: 715-204-3061 or 701-232-5697x25
Cell: 715-498-5056

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of JD Hood
Sent: Friday, October 10, 2014 1:47 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
The last thing I want to do is muddy the issue, but this rings a faint bell 
about browser security.

It has been awhile and I can't recall the specifics, but maybe it will jog 
someone else's memory. It was something about trying to open a file on a local 
path that the browser (by default) viewed as malicious activity and either did 
nothing, or 404'd as a result.

It may not be applicable, but just in case.

-JDHood

On Fri, Oct 10, 2014 at 1:30 PM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…

Logs still are showing that AL fired:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL 
\\pwfil01\Public\ITfile:///\\pwfil01\Public\IT HD\DocTest\S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:25:25 PM ms 271
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM


From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 11:56 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I just used the following url in chrome

file://server/share/something.logfile:///\\server\share\something.log

if you try to specify the url in question, does it open manually?  What does 
the log show?

On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Never mind, I stand corrected. This will work in the client tool but I cannot 
get it to run in Chrome or IE10 for the life of me. IE10 does nothing. Chrome 
opens up a blank window. All browser

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-13 Thread Sinclair, Keith
I did try quotes around the URL but it threw up an error. When I put in the 
%20, etc. in the file name, I receive an Access Denied error.

Suffice to say, I am thinking this one is down to browser security.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Rick Westbrock
Sent: Monday, October 13, 2014 9:56 AM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I didn’t notice that, do you think the space may need to be URL-encoded into 
%20? Personally I still think it’s the browser security but this is one other 
trick to try, you’d have to add an extra action before the run process to do 
the replacement but if that works then you would need to write (or find) a 
function to URL encode all characters that are not HTML  compliant.

-Rick

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Joel Sender
Sent: Friday, October 10, 2014 6:01 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I’m not sure if this is the issue, but since your address contains a BLANK, 
have you tried quotes around the URL?
HTH,
Joel
Joel Senderjdsen...@earthlink.netmailto:jdsen...@earthlink.net
310.829.5552

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sinclair, Keith
Sent: Friday, October 10, 2014 1:24 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Sadly, I tried that one.

Same issue – nothing happens in web browser.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sanford, Claire
Sent: Friday, October 10, 2014 3:23 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Why not just add the URL to a line of text on a button?

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of William Rentfrow
Sent: Friday, October 10, 2014 3:16 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Disclaimer: I haven't messed around with this for a while, so it might take 
some tinkering.

Stuff below taken from here:

http://stackoverflow.com/questions/4679756/show-a-pdf-files-in-users-browser-via-php-perl

If you have PHP on your web server you can directly display a PDF doing 
something like this:

?php
$file = './path/to/the.pdf';
$filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the 
end. */

header('Content-type: application/pdf');
header('Content-Disposition: inline; filename=' . $filename . '');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');

@readfile($file);
?


William Rentfrow
wrentf...@stratacominc.commailto:wrentf...@stratacominc.com
Office: 715-204-3061 or 701-232-5697x25
Cell: 715-498-5056

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of JD Hood
Sent: Friday, October 10, 2014 1:47 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
The last thing I want to do is muddy the issue, but this rings a faint bell 
about browser security.

It has been awhile and I can't recall the specifics, but maybe it will jog 
someone else's memory. It was something about trying to open a file on a local 
path that the browser (by default) viewed as malicious activity and either did 
nothing, or 404'd as a result.

It may not be applicable, but just in case.

-JDHood

On Fri, Oct 10, 2014 at 1:30 PM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…

Logs still are showing that AL fired:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL 
\\pwfil01\Public\ITfile:///\\pwfil01\Public\IT HD\DocTest\S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:25:25 PM ms 271
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM


From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 11:56 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I just used the following

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-13 Thread Joel Sender
Just roundin’ up the usual suspects here:



Unless the message is specific about the resource to which you lack access 
(usually it doesn’t),

try testing with an OS ‘admin’ User ID  or

Check the java permissions on the client’s machine.



Joel

Joel Senderjdsen...@earthlink.net310.829.5552



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sinclair, Keith
Sent: Monday, October 13, 2014 10:29 AM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

I did try quotes around the URL but it threw up an error. When I put in the 
%20, etc. in the file name, I receive an Access Denied error.



Suffice to say, I am thinking this one is down to browser security.



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Rick Westbrock
Sent: Monday, October 13, 2014 9:56 AM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

I didn’t notice that, do you think the space may need to be URL-encoded into 
%20? Personally I still think it’s the browser security but this is one other 
trick to try, you’d have to add an extra action before the run process to do 
the replacement but if that works then you would need to write (or find) a 
function to URL encode all characters that are not HTML  compliant.



-Rick



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Joel Sender
Sent: Friday, October 10, 2014 6:01 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

I’m not sure if this is the issue, but since your address contains a BLANK, 
have you tried quotes around the URL?

HTH,

Joel

Joel Senderjdsen...@earthlink.net310.829.5552



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sinclair, Keith
Sent: Friday, October 10, 2014 1:24 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

Sadly, I tried that one.



Same issue – nothing happens in web browser.



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sanford, Claire
Sent: Friday, October 10, 2014 3:23 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

Why not just add the URL to a line of text on a button?



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of William Rentfrow
Sent: Friday, October 10, 2014 3:16 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

Disclaimer: I haven't messed around with this for a while, so it might take 
some tinkering.



Stuff below taken from here:



http://stackoverflow.com/questions/4679756/show-a-pdf-files-in-users-browser-via-php-perl



If you have PHP on your web server you can directly display a PDF doing 
something like this:



?php

$file = './path/to/the.pdf';

$filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the 
end. */



header('Content-type: application/pdf');

header('Content-Disposition: inline; filename=' . $filename . '');

header('Content-Transfer-Encoding: binary');

header('Content-Length: ' . filesize($file));

header('Accept-Ranges: bytes');



@readfile($file);

?





William Rentfrow

wrentf...@stratacominc.com

Office: 715-204-3061 or 701-232-5697x25

Cell: 715-498-5056



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of JD Hood
Sent: Friday, October 10, 2014 1:47 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

The last thing I want to do is muddy the issue, but this rings a faint bell 
about browser security.



It has been awhile and I can't recall the specifics, but maybe it will jog 
someone else's memory. It was something about trying to open a file on a local 
path that the browser (by default) viewed as malicious activity and either did 
nothing, or 404'd as a result.



It may not be applicable, but just in case.



-JDHood



On Fri, Oct 10, 2014 at 1:30 PM, Sinclair, Keith ksincl...@shoppertrak.com 
wrote:

**

Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…



Logs still are showing that AL fired:



ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271

True actions:

action 0

Run Process: PERFORM-ACTION-OPEN-URL \\pwfil01\Public\IT 
file:///\\pwfil01\Public\IT  HD\DocTest\S80039514.pdf

ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:25:25 PM ms 271

EVENT End:- Button/Menu Field

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-13 Thread Wallace, Kelvin
Keith,

Just to make sure:

You sent this originally:  Run Process: PERFORM-ACTION-OPEN-URL 
\\pwfil01\Public\ITfile:///\\pwfil01\Public\IT HD\DocTest\S80039514.pdf
The %20 needs to be between the IT and the HD with no spaces.  Alternately, can 
you change that directory (folder) to IT-HD (or some name with spaces)?

Kelvin

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sinclair, Keith
Sent: Monday, October 13, 2014 1:29 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I did try quotes around the URL but it threw up an error. When I put in the 
%20, etc. in the file name, I receive an Access Denied error.

Suffice to say, I am thinking this one is down to browser security.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Rick Westbrock
Sent: Monday, October 13, 2014 9:56 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I didn’t notice that, do you think the space may need to be URL-encoded into 
%20? Personally I still think it’s the browser security but this is one other 
trick to try, you’d have to add an extra action before the run process to do 
the replacement but if that works then you would need to write (or find) a 
function to URL encode all characters that are not HTML  compliant.

-Rick

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Joel Sender
Sent: Friday, October 10, 2014 6:01 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I’m not sure if this is the issue, but since your address contains a BLANK, 
have you tried quotes around the URL?
HTH,
Joel
Joel Senderjdsen...@earthlink.netmailto:jdsen...@earthlink.net
310.829.5552

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sinclair, Keith
Sent: Friday, October 10, 2014 1:24 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Sadly, I tried that one.

Same issue – nothing happens in web browser.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sanford, Claire
Sent: Friday, October 10, 2014 3:23 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Why not just add the URL to a line of text on a button?

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of William Rentfrow
Sent: Friday, October 10, 2014 3:16 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Disclaimer: I haven't messed around with this for a while, so it might take 
some tinkering.

Stuff below taken from here:

http://stackoverflow.com/questions/4679756/show-a-pdf-files-in-users-browser-via-php-perl

If you have PHP on your web server you can directly display a PDF doing 
something like this:

?php
$file = './path/to/the.pdf';
$filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the 
end. */

header('Content-type: application/pdf');
header('Content-Disposition: inline; filename=' . $filename . '');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');

@readfile($file);
?


William Rentfrow
wrentf...@stratacominc.commailto:wrentf...@stratacominc.com
Office: 715-204-3061 or 701-232-5697x25
Cell: 715-498-5056

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of JD Hood
Sent: Friday, October 10, 2014 1:47 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
The last thing I want to do is muddy the issue, but this rings a faint bell 
about browser security.

It has been awhile and I can't recall the specifics, but maybe it will jog 
someone else's memory. It was something about trying to open a file on a local 
path that the browser (by default) viewed as malicious activity and either did 
nothing, or 404'd as a result.

It may not be applicable, but just in case.

-JDHood

On Fri, Oct 10, 2014 at 1:30 PM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…

Logs still are showing that AL fired:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL 
\\pwfil01\Public\ITfile

NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Sinclair, Keith
Never mind, I stand corrected. This will work in the client tool but I cannot 
get it to run in Chrome or IE10 for the life of me. IE10 does nothing. Chrome 
opens up a blank window. All browser settings have been reset back to stock and 
pop up blockers are completely off.

From: Sinclair, Keith
Sent: Friday, October 10, 2014 10:27 AM
To: arslist@ARSLIST.ORG
Subject: SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

I agree with Fred, as well.

Looks like the “file://” did the trick. I had forgotten that was an option for 
browsers. Now my battle is for the file location folder permissions as I tried 
it on a publicly accessible network directory/file and was able to open it, but 
not my original document.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 9:00 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site

**
I agree with Fred

On Fri, Oct 10, 2014 at 7:54 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
So, I have a button that fires an AL with Run Process: PERFORM-ACTION-OPEN-URL 
\\NETWORK\Public\Sitefile:///\\NETWORK\Public\Site Management\Site 
Documents\$Site ID$.pdf.

When I click on the button, nothing happens. The AL does fire, according to the 
logs.

If I change the OPEN-URL to http://www.msn.com, it works. The button opens up 
MSN in a new browser window.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 8:45 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site

**
Keith,
We would need a bit more information, such as 'What happens' when you 
trythere should be no difference between an external and an internal 
web/document, as long as you are using the properly formatted url.

Have you run logs, what do they show.

On Fri, Oct 10, 2014 at 7:42 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Is there a way to open an internal document via the PERFORM-ACTION-OPEN-URL 
command? I have used this in the past and it worked but now I cannot get it to 
open a URL unless it’s an external website. If I try to open an internal link, 
the link appears to do nothing. Essentially, I am trying to achieve a link to a 
dynamic document repository. If there’s another way to do it, then I am all 
ears. I’ve tried multiple browsers but with the same results.

Stuff:
ARS 8.1
MT 8.1
Linux/Oracle backend.


Thanks,

Keith Sinclair
Remedy Development
ShopperTrak  Chicago USA
O:  312.676.8289tel:312.676.8289 |  M:  630.946.4744tel:630.946.4744
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com | @shoppertrak
www.shoppertrak.comhttp://www.shoppertrak.com/

_ARSlist: Where the Answers Are and have been for 20 years_

_ARSlist: Where the Answers Are and have been for 20 years_
_ARSlist: Where the Answers Are and have been for 20 years_

_ARSlist: Where the Answers Are and have been for 20 years_

___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
Where the Answers Are, and have been for 20 years


Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread LJ LongWing
I just used the following url in chrome

file://server/share/something.log

if you try to specify the url in question, does it open manually?  What
does the log show?

On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith ksincl...@shoppertrak.com
 wrote:

 **

 Never mind, I stand corrected. This will work in the client tool but I
 cannot get it to run in Chrome or IE10 for the life of me. IE10 does
 nothing. Chrome opens up a blank window. All browser settings have been
 reset back to stock and pop up blockers are completely off.



 *From:* Sinclair, Keith
 *Sent:* Friday, October 10, 2014 10:27 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



 I agree with Fred, as well.



 Looks like the “file://” did the trick. I had forgotten that was an option
 for browsers. Now my battle is for the file location folder permissions as
 I tried it on a publicly accessible network directory/file and was able to
 open it, but not my original document.



 *From:* Action Request System discussion list(ARSList) [
 mailto:arslist@ARSLIST.ORG arslist@ARSLIST.ORG] *On Behalf Of *LJ
 LongWing
 *Sent:* Friday, October 10, 2014 9:00 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: PERFORM-ACTION-OPEN-URL to open internal network site



 **

 I agree with Fred



 On Fri, Oct 10, 2014 at 7:54 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

 **

 So, I have a button that fires an AL with Run Process:
 PERFORM-ACTION-OPEN-URL \\NETWORK\Public\Site Management\Site
 Documents\$Site ID$.pdf.



 When I click on the button, nothing happens. The AL does fire, according
 to the logs.



 If I change the OPEN-URL to http://www.msn.com, it works. The button
 opens up MSN in a new browser window.



 *From:* Action Request System discussion list(ARSList) [mailto:
 arslist@ARSLIST.ORG] *On Behalf Of *LJ LongWing
 *Sent:* Friday, October 10, 2014 8:45 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: PERFORM-ACTION-OPEN-URL to open internal network site



 **

 Keith,

 We would need a bit more information, such as 'What happens' when you
 trythere should be no difference between an external and an internal
 web/document, as long as you are using the properly formatted url.



 Have you run logs, what do they show.



 On Fri, Oct 10, 2014 at 7:42 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

 **

 Is there a way to open an internal document via the
 PERFORM-ACTION-OPEN-URL command? I have used this in the past and it worked
 but now I cannot get it to open a URL unless it’s an external website. If I
 try to open an internal link, the link appears to do nothing. Essentially,
 I am trying to achieve a link to a dynamic document repository. If there’s
 another way to do it, then I am all ears. I’ve tried multiple browsers but
 with the same results.



 Stuff:

 ARS 8.1

 MT 8.1

 Linux/Oracle backend.





 Thanks,



 *Keith Sinclair*

 *Remedy Development*

 *ShopperTrak  Chicago USA*

 O:  312.676.8289 |  M:  630.946.4744

 *ksincl...@shoppertrak.com ksincl...@shoppertrak.com* | @shoppertrak

 www.shoppertrak.com



 _ARSlist: Where the Answers Are and have been for 20 years_



 _ARSlist: Where the Answers Are and have been for 20 years_

 _ARSlist: Where the Answers Are and have been for 20 years_



 _ARSlist: Where the Answers Are and have been for 20 years_
  _ARSlist: Where the Answers Are and have been for 20 years_

___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
Where the Answers Are, and have been for 20 years


Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Charlie Lotridge
Two questions: First, are the files that you want to display always PDF's?
Second, are they accessible from the server?

If yes and yes, than an alternate solution is for you to construct server
workflow (using a service) that retrieves the file as an attachment and
passes it up to the client where you then present it using a
PERFORM-ACTION-OPEN-ATTACHMENT.  Of course, this solution requires that the
Adobe reader is available on the client's machine, but that's not too much
of an ask.

Just a suggestion...

-charlie

On Fri, Oct 10, 2014 at 9:43 AM, Sinclair, Keith ksincl...@shoppertrak.com
wrote:

 **

 Never mind, I stand corrected. This will work in the client tool but I
 cannot get it to run in Chrome or IE10 for the life of me. IE10 does
 nothing. Chrome opens up a blank window. All browser settings have been
 reset back to stock and pop up blockers are completely off.



 *From:* Sinclair, Keith
 *Sent:* Friday, October 10, 2014 10:27 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



 I agree with Fred, as well.



 Looks like the “file://” did the trick. I had forgotten that was an option
 for browsers. Now my battle is for the file location folder permissions as
 I tried it on a publicly accessible network directory/file and was able to
 open it, but not my original document.



 *From:* Action Request System discussion list(ARSList) [
 mailto:arslist@ARSLIST.ORG arslist@ARSLIST.ORG] *On Behalf Of *LJ
 LongWing
 *Sent:* Friday, October 10, 2014 9:00 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: PERFORM-ACTION-OPEN-URL to open internal network site



 **

 I agree with Fred



 On Fri, Oct 10, 2014 at 7:54 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

 **

 So, I have a button that fires an AL with Run Process:
 PERFORM-ACTION-OPEN-URL \\NETWORK\Public\Site Management\Site
 Documents\$Site ID$.pdf.



 When I click on the button, nothing happens. The AL does fire, according
 to the logs.



 If I change the OPEN-URL to http://www.msn.com, it works. The button
 opens up MSN in a new browser window.



 *From:* Action Request System discussion list(ARSList) [mailto:
 arslist@ARSLIST.ORG] *On Behalf Of *LJ LongWing
 *Sent:* Friday, October 10, 2014 8:45 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: PERFORM-ACTION-OPEN-URL to open internal network site



 **

 Keith,

 We would need a bit more information, such as 'What happens' when you
 trythere should be no difference between an external and an internal
 web/document, as long as you are using the properly formatted url.



 Have you run logs, what do they show.



 On Fri, Oct 10, 2014 at 7:42 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

 **

 Is there a way to open an internal document via the
 PERFORM-ACTION-OPEN-URL command? I have used this in the past and it worked
 but now I cannot get it to open a URL unless it’s an external website. If I
 try to open an internal link, the link appears to do nothing. Essentially,
 I am trying to achieve a link to a dynamic document repository. If there’s
 another way to do it, then I am all ears. I’ve tried multiple browsers but
 with the same results.



 Stuff:

 ARS 8.1

 MT 8.1

 Linux/Oracle backend.





 Thanks,



 *Keith Sinclair*

 *Remedy Development*

 *ShopperTrak  Chicago USA*

 O:  312.676.8289 |  M:  630.946.4744

 *ksincl...@shoppertrak.com ksincl...@shoppertrak.com* | @shoppertrak

 www.shoppertrak.com



 _ARSlist: Where the Answers Are and have been for 20 years_



 _ARSlist: Where the Answers Are and have been for 20 years_

 _ARSlist: Where the Answers Are and have been for 20 years_



 _ARSlist: Where the Answers Are and have been for 20 years_
  _ARSlist: Where the Answers Are and have been for 20 years_

___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
Where the Answers Are, and have been for 20 years


Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Sinclair, Keith
Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…

Logs still are showing that AL fired:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL \\pwfil01\Public\IT 
HD\DocTest\S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:25:25 PM ms 271
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM


From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 11:56 AM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I just used the following url in chrome

file://server/share/something.logfile:///\\server\share\something.log

if you try to specify the url in question, does it open manually?  What does 
the log show?

On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Never mind, I stand corrected. This will work in the client tool but I cannot 
get it to run in Chrome or IE10 for the life of me. IE10 does nothing. Chrome 
opens up a blank window. All browser settings have been reset back to stock and 
pop up blockers are completely off.

From: Sinclair, Keith
Sent: Friday, October 10, 2014 10:27 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

I agree with Fred, as well.

Looks like the “file://” did the trick. I had forgotten that was an option for 
browsers. Now my battle is for the file location folder permissions as I tried 
it on a publicly accessible network directory/file and was able to open it, but 
not my original document.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 9:00 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site

**
I agree with Fred

On Fri, Oct 10, 2014 at 7:54 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
So, I have a button that fires an AL with Run Process: PERFORM-ACTION-OPEN-URL 
\\NETWORK\Public\Sitefile:///\\NETWORK\Public\Site Management\Site 
Documents\$Site ID$.pdf.

When I click on the button, nothing happens. The AL does fire, according to the 
logs.

If I change the OPEN-URL to http://www.msn.com, it works. The button opens up 
MSN in a new browser window.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 8:45 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site

**
Keith,
We would need a bit more information, such as 'What happens' when you 
trythere should be no difference between an external and an internal 
web/document, as long as you are using the properly formatted url.

Have you run logs, what do they show.

On Fri, Oct 10, 2014 at 7:42 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Is there a way to open an internal document via the PERFORM-ACTION-OPEN-URL 
command? I have used this in the past and it worked but now I cannot get it to 
open a URL unless it’s an external website. If I try to open an internal link, 
the link appears to do nothing. Essentially, I am trying to achieve a link to a 
dynamic document repository. If there’s another way to do it, then I am all 
ears. I’ve tried multiple browsers but with the same results.

Stuff:
ARS 8.1
MT 8.1
Linux/Oracle backend.


Thanks,

Keith Sinclair
Remedy Development
ShopperTrak  Chicago USA
O:  312.676.8289tel:312.676.8289 |  M:  630.946.4744tel:630.946.4744
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com | @shoppertrak
www.shoppertrak.comhttp://www.shoppertrak.com/

_ARSlist: Where the Answers Are and have been for 20 years_

_ARSlist: Where the Answers Are and have been for 20 years_
_ARSlist: Where the Answers Are and have been for 20 years_

_ARSlist: Where the Answers Are and have been for 20 years_
_ARSlist: Where the Answers Are and have been for 20 years_

_ARSlist: Where the Answers Are and have been for 20 years_

___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
Where the Answers Are, and have been for 20 years


Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread LJ LongWing
yes...but your Log you just posted is showing \\server not
file://server.

On Fri, Oct 10, 2014 at 11:30 AM, Sinclair, Keith ksincl...@shoppertrak.com
 wrote:

 **

 Using the URL directly in Chrome does work, also in IE. However, trying to
 call it from an AL using the Perform…URL, etc. it doesn’t do anything.
 Driving me nuts…



 Logs still are showing that AL fired:



 ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin
 View - Fri Oct 10 2014 12:25:25 PM ms 271

 True actions:

 action 0

 Run Process: PERFORM-ACTION-OPEN-URL \\pwfil01\Public\IT
 HD\DocTest\S80039514.pdf

 ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin
 View - Fri Oct 10 2014 12:25:25 PM ms 271

 EVENT End:- Button/Menu Field |  Site Other(536870948)  |
 ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM





 *From:* Action Request System discussion list(ARSList) [mailto:
 arslist@ARSLIST.ORG] *On Behalf Of *LJ LongWing
 *Sent:* Friday, October 10, 2014 11:56 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal
 network site



 **

 I just used the following url in chrome



 file://server/share/something.log



 if you try to specify the url in question, does it open manually?  What
 does the log show?



 On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

 **

 Never mind, I stand corrected. This will work in the client tool but I
 cannot get it to run in Chrome or IE10 for the life of me. IE10 does
 nothing. Chrome opens up a blank window. All browser settings have been
 reset back to stock and pop up blockers are completely off.



 *From:* Sinclair, Keith
 *Sent:* Friday, October 10, 2014 10:27 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



 I agree with Fred, as well.



 Looks like the “file://” did the trick. I had forgotten that was an option
 for browsers. Now my battle is for the file location folder permissions as
 I tried it on a publicly accessible network directory/file and was able to
 open it, but not my original document.



 *From:* Action Request System discussion list(ARSList) [
 mailto:arslist@ARSLIST.ORG arslist@ARSLIST.ORG] *On Behalf Of *LJ
 LongWing
 *Sent:* Friday, October 10, 2014 9:00 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: PERFORM-ACTION-OPEN-URL to open internal network site



 **

 I agree with Fred



 On Fri, Oct 10, 2014 at 7:54 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

 **

 So, I have a button that fires an AL with Run Process:
 PERFORM-ACTION-OPEN-URL \\NETWORK\Public\Site Management\Site
 Documents\$Site ID$.pdf.



 When I click on the button, nothing happens. The AL does fire, according
 to the logs.



 If I change the OPEN-URL to http://www.msn.com, it works. The button
 opens up MSN in a new browser window.



 *From:* Action Request System discussion list(ARSList) [mailto:
 arslist@ARSLIST.ORG] *On Behalf Of *LJ LongWing
 *Sent:* Friday, October 10, 2014 8:45 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: PERFORM-ACTION-OPEN-URL to open internal network site



 **

 Keith,

 We would need a bit more information, such as 'What happens' when you
 trythere should be no difference between an external and an internal
 web/document, as long as you are using the properly formatted url.



 Have you run logs, what do they show.



 On Fri, Oct 10, 2014 at 7:42 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

 **

 Is there a way to open an internal document via the
 PERFORM-ACTION-OPEN-URL command? I have used this in the past and it worked
 but now I cannot get it to open a URL unless it’s an external website. If I
 try to open an internal link, the link appears to do nothing. Essentially,
 I am trying to achieve a link to a dynamic document repository. If there’s
 another way to do it, then I am all ears. I’ve tried multiple browsers but
 with the same results.



 Stuff:

 ARS 8.1

 MT 8.1

 Linux/Oracle backend.





 Thanks,



 *Keith Sinclair*

 *Remedy Development*

 *ShopperTrak  Chicago USA*

 O:  312.676.8289 |  M:  630.946.4744

 *ksincl...@shoppertrak.com ksincl...@shoppertrak.com* | @shoppertrak

 www.shoppertrak.com



 _ARSlist: Where the Answers Are and have been for 20 years_



 _ARSlist: Where the Answers Are and have been for 20 years_

 _ARSlist: Where the Answers Are and have been for 20 years_



 _ARSlist: Where the Answers Are and have been for 20 years_

 _ARSlist: Where the Answers Are and have been for 20 years_



 _ARSlist: Where the Answers Are and have been for 20 years_
  _ARSlist: Where the Answers Are and have been for 20 years_


___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
Where the Answers Are, and have been for 20 years


Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Sinclair, Keith
/facepalm Yes, you are correct. I copied the wrong part of the log. This was 
the correct one:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:14:46 PM ms 493
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL new file://pwfil01/Public/IT 
HD/DocTest/S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:14:46 PM ms 493
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:14:46 PM

I was showing a colleague how it all works fine and dandy in the user tool but 
not in a web browser and was swapping between two ALs being enabled/disabled.

As an alternative, I tried to run a cmd.exe start //filepath/…/… session, which 
again worked in the Client Tool, but gave me an error in web browsers.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 12:37 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
yes...but your Log you just posted is showing \\serverfile:///\\server not 
file://serverfile:///\\server.

On Fri, Oct 10, 2014 at 11:30 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…

Logs still are showing that AL fired:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL 
\\pwfil01\Public\ITfile:///\\pwfil01\Public\IT HD\DocTest\S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:25:25 PM ms 271
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM


From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 11:56 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I just used the following url in chrome

file://server/share/something.logfile:///\\server\share\something.log

if you try to specify the url in question, does it open manually?  What does 
the log show?

On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Never mind, I stand corrected. This will work in the client tool but I cannot 
get it to run in Chrome or IE10 for the life of me. IE10 does nothing. Chrome 
opens up a blank window. All browser settings have been reset back to stock and 
pop up blockers are completely off.

From: Sinclair, Keith
Sent: Friday, October 10, 2014 10:27 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

I agree with Fred, as well.

Looks like the “file://” did the trick. I had forgotten that was an option for 
browsers. Now my battle is for the file location folder permissions as I tried 
it on a publicly accessible network directory/file and was able to open it, but 
not my original document.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 9:00 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site

**
I agree with Fred

On Fri, Oct 10, 2014 at 7:54 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
So, I have a button that fires an AL with Run Process: PERFORM-ACTION-OPEN-URL 
\\NETWORK\Public\Sitefile:///\\NETWORK\Public\Site Management\Site 
Documents\$Site ID$.pdf.

When I click on the button, nothing happens. The AL does fire, according to the 
logs.

If I change the OPEN-URL to http://www.msn.com, it works. The button opens up 
MSN in a new browser window.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 8:45 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site

**
Keith,
We would need a bit more information, such as 'What happens' when you 
trythere should be no difference between an external and an internal 
web/document, as long as you are using the properly formatted url.

Have you run logs, what do they show.

On Fri, Oct 10, 2014 at 7:42 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Is there a way to open an internal document via the PERFORM-ACTION-OPEN-URL 
command? I have

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Rick Westbrock
When trying to call cmd.exe you might be running into a security problem in the 
browser. Modern browsers really don’t like to allow execution of outside 
programs directly from a link because that’s an easy way to run malware etc. 
This could be true for calling the file:// prefix as well since that would 
require opening Windows Explorer. Just a theory and I don’t know that there is 
actually a way around that particular problem. The WUT does not have this 
restriction that I am aware of.

-Rick

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sinclair, Keith
Sent: Friday, October 10, 2014 10:48 AM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
/facepalm Yes, you are correct. I copied the wrong part of the log. This was 
the correct one:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:14:46 PM ms 493
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL new 
file://pwfil01/Public/ITfile:///\\pwfil01\Public\IT HD/DocTest/S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:14:46 PM ms 493
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:14:46 PM

I was showing a colleague how it all works fine and dandy in the user tool but 
not in a web browser and was swapping between two ALs being enabled/disabled.

As an alternative, I tried to run a cmd.exe start //filepath/…/… session, which 
again worked in the Client Tool, but gave me an error in web browsers.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 12:37 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
yes...but your Log you just posted is showing \\serverfile:///\\server not 
file://serverfile:///\\server.

On Fri, Oct 10, 2014 at 11:30 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…

Logs still are showing that AL fired:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL 
\\pwfil01\Public\ITfile:///\\pwfil01\Public\IT HD\DocTest\S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:25:25 PM ms 271
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM


From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 11:56 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I just used the following url in chrome

file://server/share/something.logfile:///\\server\share\something.log

if you try to specify the url in question, does it open manually?  What does 
the log show?

On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Never mind, I stand corrected. This will work in the client tool but I cannot 
get it to run in Chrome or IE10 for the life of me. IE10 does nothing. Chrome 
opens up a blank window. All browser settings have been reset back to stock and 
pop up blockers are completely off.

From: Sinclair, Keith
Sent: Friday, October 10, 2014 10:27 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

I agree with Fred, as well.

Looks like the “file://” did the trick. I had forgotten that was an option for 
browsers. Now my battle is for the file location folder permissions as I tried 
it on a publicly accessible network directory/file and was able to open it, but 
not my original document.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 9:00 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site

**
I agree with Fred

On Fri, Oct 10, 2014 at 7:54 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
So, I have a button that fires an AL with Run Process: PERFORM-ACTION-OPEN-URL 
\\NETWORK\Public\Sitefile:///\\NETWORK\Public\Site Management\Site 
Documents\$Site ID$.pdf.

When I click on the button, nothing happens. The AL does fire, according to the 
logs.

If I change the OPEN-URL to http://www.msn.com, it works

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Sinclair, Keith
That’s what I am beginning to think. Because that’s the only explanation of why 
all this is fine in the WUT and why I used to be able to do it in earlier 
browser versions but now can only seem to call things with http:// prefix. 
Problem is that the WUT is being phased out.

Going to have to get creative in thinking up a solution for this one.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Rick Westbrock
Sent: Friday, October 10, 2014 12:59 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
When trying to call cmd.exe you might be running into a security problem in the 
browser. Modern browsers really don’t like to allow execution of outside 
programs directly from a link because that’s an easy way to run malware etc. 
This could be true for calling the file:// prefix as well since that would 
require opening Windows Explorer. Just a theory and I don’t know that there is 
actually a way around that particular problem. The WUT does not have this 
restriction that I am aware of.

-Rick

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sinclair, Keith
Sent: Friday, October 10, 2014 10:48 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
/facepalm Yes, you are correct. I copied the wrong part of the log. This was 
the correct one:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:14:46 PM ms 493
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL new 
file://pwfil01/Public/ITfile:///\\pwfil01\Public\IT HD/DocTest/S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:14:46 PM ms 493
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:14:46 PM

I was showing a colleague how it all works fine and dandy in the user tool but 
not in a web browser and was swapping between two ALs being enabled/disabled.

As an alternative, I tried to run a cmd.exe start //filepath/…/… session, which 
again worked in the Client Tool, but gave me an error in web browsers.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 12:37 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
yes...but your Log you just posted is showing \\serverfile:///\\server not 
file://serverfile:///\\server.

On Fri, Oct 10, 2014 at 11:30 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…

Logs still are showing that AL fired:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL 
\\pwfil01\Public\ITfile:///\\pwfil01\Public\IT HD\DocTest\S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:25:25 PM ms 271
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM


From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 11:56 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I just used the following url in chrome

file://server/share/something.logfile:///\\server\share\something.log

if you try to specify the url in question, does it open manually?  What does 
the log show?

On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Never mind, I stand corrected. This will work in the client tool but I cannot 
get it to run in Chrome or IE10 for the life of me. IE10 does nothing. Chrome 
opens up a blank window. All browser settings have been reset back to stock and 
pop up blockers are completely off.

From: Sinclair, Keith
Sent: Friday, October 10, 2014 10:27 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

I agree with Fred, as well.

Looks like the “file://” did the trick. I had forgotten that was an option for 
browsers. Now my battle is for the file location folder permissions as I tried 
it on a publicly accessible network directory/file and was able to open it, but 
not my original document.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Jason Miller
To expand on that a bit...  I have found when it comes to working with apps
and files in the browser it is better to try and use more native web
functionality than PC/OS functionality.

Are these static documents?
Can you put them on a web server?

A browser is going to tend to be more accommodating for http(s):// than
file://.   You will likely find a more consistent experience between
different browsers when presenting a file as web content vs. a file from
the OS.

Another consideration is if when a file is opened from the OS side of
things (file://) the first use that opens it will lock it and other users
will get a message that another user has it open.  We even noticed this
with a PDF report that use to be placed on a UNC file share.  People with
PDF writer software as their default PDF viewer would lock the file when
the opened it and the Crystal Distributor couldn't update the report the
next time the job ran.  We move it to a web server (http://) and now it is
alway read only for end users.

Jason

On Fri, Oct 10, 2014 at 10:58 AM, Rick Westbrock rwestbr...@24hourfit.com
wrote:

 **

 When trying to call cmd.exe you might be running into a security problem
 in the browser. Modern browsers really don’t like to allow execution of
 outside programs directly from a link because that’s an easy way to run
 malware etc. This could be true for calling the file:// prefix as well
 since that would require opening Windows Explorer. Just a theory and I
 don’t know that there is actually a way around that particular problem. The
 WUT does not have this restriction that I am aware of.



 -Rick



 *From:* Action Request System discussion list(ARSList) [mailto:
 arslist@ARSLIST.ORG] *On Behalf Of *Sinclair, Keith
 *Sent:* Friday, October 10, 2014 10:48 AM

 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal
 network site



 **

 /facepalm Yes, you are correct. I copied the wrong part of the log. This
 was the correct one:



 ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin
 View - Fri Oct 10 2014 12:14:46 PM ms 493

 True actions:

 action 0

 Run Process: PERFORM-ACTION-OPEN-URL new file://pwfil01/Public/IT
 HD/DocTest/S80039514.pdf

 ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin
 View - Fri Oct 10 2014 12:14:46 PM ms 493

 EVENT End:- Button/Menu Field |  Site Other(536870948)  |
 ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:14:46 PM



 I was showing a colleague how it all works fine and dandy in the user tool
 but not in a web browser and was swapping between two ALs being
 enabled/disabled.



 As an alternative, I tried to run a cmd.exe start //filepath/…/… session,
 which again worked in the Client Tool, but gave me an error in web browsers.



 *From:* Action Request System discussion list(ARSList) [
 mailto:arslist@ARSLIST.ORG arslist@ARSLIST.ORG] *On Behalf Of *LJ
 LongWing
 *Sent:* Friday, October 10, 2014 12:37 PM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal
 network site



 **

 yes...but your Log you just posted is showing \\server not file://server
 .



 On Fri, Oct 10, 2014 at 11:30 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

 **

 Using the URL directly in Chrome does work, also in IE. However, trying to
 call it from an AL using the Perform…URL, etc. it doesn’t do anything.
 Driving me nuts…



 Logs still are showing that AL fired:



 ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin
 View - Fri Oct 10 2014 12:25:25 PM ms 271

 True actions:

 action 0

 Run Process: PERFORM-ACTION-OPEN-URL \\pwfil01\Public\IT
 HD\DocTest\S80039514.pdf

 ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin
 View - Fri Oct 10 2014 12:25:25 PM ms 271

 EVENT End:- Button/Menu Field |  Site Other(536870948)  |
 ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM





 *From:* Action Request System discussion list(ARSList) [mailto:
 arslist@ARSLIST.ORG] *On Behalf Of *LJ LongWing
 *Sent:* Friday, October 10, 2014 11:56 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal
 network site



 **

 I just used the following url in chrome



 file://server/share/something.log



 if you try to specify the url in question, does it open manually?  What
 does the log show?



 On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

  **

 Never mind, I stand corrected. This will work in the client tool but I
 cannot get it to run in Chrome or IE10 for the life of me. IE10 does
 nothing. Chrome opens up a blank window. All browser settings have been
 reset back to stock and pop up blockers are completely off.



 *From:* Sinclair, Keith
 *Sent:* Friday, October 10, 2014 10:27 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



 I agree with Fred, as well

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread JD Hood
The last thing I want to do is muddy the issue, but this rings a faint bell
about browser security.

It has been awhile and I can't recall the specifics, but maybe it will jog
someone else's memory. It was something about trying to open a file on a
local path that the browser (by default) viewed as malicious activity and
either did nothing, or 404'd as a result.

It may not be applicable, but just in case.

-JDHood

On Fri, Oct 10, 2014 at 1:30 PM, Sinclair, Keith ksincl...@shoppertrak.com
wrote:

 **

 Using the URL directly in Chrome does work, also in IE. However, trying to
 call it from an AL using the Perform…URL, etc. it doesn’t do anything.
 Driving me nuts…



 Logs still are showing that AL fired:



 ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin
 View - Fri Oct 10 2014 12:25:25 PM ms 271

 True actions:

 action 0

 Run Process: PERFORM-ACTION-OPEN-URL \\pwfil01\Public\IT
 HD\DocTest\S80039514.pdf

 ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin
 View - Fri Oct 10 2014 12:25:25 PM ms 271

 EVENT End:- Button/Menu Field |  Site Other(536870948)  |
 ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM





 *From:* Action Request System discussion list(ARSList) [mailto:
 arslist@ARSLIST.ORG] *On Behalf Of *LJ LongWing
 *Sent:* Friday, October 10, 2014 11:56 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal
 network site



 **

 I just used the following url in chrome



 file://server/share/something.log



 if you try to specify the url in question, does it open manually?  What
 does the log show?



 On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

 **

 Never mind, I stand corrected. This will work in the client tool but I
 cannot get it to run in Chrome or IE10 for the life of me. IE10 does
 nothing. Chrome opens up a blank window. All browser settings have been
 reset back to stock and pop up blockers are completely off.



 *From:* Sinclair, Keith
 *Sent:* Friday, October 10, 2014 10:27 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



 I agree with Fred, as well.



 Looks like the “file://” did the trick. I had forgotten that was an option
 for browsers. Now my battle is for the file location folder permissions as
 I tried it on a publicly accessible network directory/file and was able to
 open it, but not my original document.



 *From:* Action Request System discussion list(ARSList) [
 mailto:arslist@ARSLIST.ORG arslist@ARSLIST.ORG] *On Behalf Of *LJ
 LongWing
 *Sent:* Friday, October 10, 2014 9:00 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: PERFORM-ACTION-OPEN-URL to open internal network site



 **

 I agree with Fred



 On Fri, Oct 10, 2014 at 7:54 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

 **

 So, I have a button that fires an AL with Run Process:
 PERFORM-ACTION-OPEN-URL \\NETWORK\Public\Site Management\Site
 Documents\$Site ID$.pdf.



 When I click on the button, nothing happens. The AL does fire, according
 to the logs.



 If I change the OPEN-URL to http://www.msn.com, it works. The button
 opens up MSN in a new browser window.



 *From:* Action Request System discussion list(ARSList) [mailto:
 arslist@ARSLIST.ORG] *On Behalf Of *LJ LongWing
 *Sent:* Friday, October 10, 2014 8:45 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Re: PERFORM-ACTION-OPEN-URL to open internal network site



 **

 Keith,

 We would need a bit more information, such as 'What happens' when you
 trythere should be no difference between an external and an internal
 web/document, as long as you are using the properly formatted url.



 Have you run logs, what do they show.



 On Fri, Oct 10, 2014 at 7:42 AM, Sinclair, Keith 
 ksincl...@shoppertrak.com wrote:

 **

 Is there a way to open an internal document via the
 PERFORM-ACTION-OPEN-URL command? I have used this in the past and it worked
 but now I cannot get it to open a URL unless it’s an external website. If I
 try to open an internal link, the link appears to do nothing. Essentially,
 I am trying to achieve a link to a dynamic document repository. If there’s
 another way to do it, then I am all ears. I’ve tried multiple browsers but
 with the same results.



 Stuff:

 ARS 8.1

 MT 8.1

 Linux/Oracle backend.





 Thanks,



 *Keith Sinclair*

 *Remedy Development*

 *ShopperTrak  Chicago USA*

 O:  312.676.8289 |  M:  630.946.4744

 *ksincl...@shoppertrak.com ksincl...@shoppertrak.com* | @shoppertrak

 www.shoppertrak.com



 _ARSlist: Where the Answers Are and have been for 20 years_



 _ARSlist: Where the Answers Are and have been for 20 years_

 _ARSlist: Where the Answers Are and have been for 20 years_



 _ARSlist: Where the Answers Are and have been for 20 years_

 _ARSlist: Where the Answers Are and have been for 20 years_



 _ARSlist: Where the Answers Are and have been for 20 years_
  _ARSlist: Where

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Arner, Todd

Great Lakes respects the privacy of its customers and business partners and 
thus has implemented solutions to protect sensitive information.  This is a 
secure message from Great Lakes that may contain sensitive information.  To 
view your secure message, open the attachment to this message.  The first time 
you receive a secure message from Great Lakes you will be required to create an 
account and password.  Subsequent secure message deliveries from Great Lakes 
will require you to authenticate prior to opening the message.  If you are 
viewing this from a mobile device, click to read your message on your mobile 
device.  The mobile link expires on  2014-11-09 14:09 CST
 
https://securemail.mygreatlakes.org/formpostdir/securereader?id=77fd57b25fabd429f89eabb0e5a876a2
 


___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
Where the Answers Are, and have been for 20 years
Title: Proofpoint Encryption
**






	

	
	
	











 
		
		
			

	
		
			


 
			

			
			

  More Info
 Disclaimer:The information contained in this communication may be confidential, is intended only for the use of the recipient(s) named above, and may be legally privileged.  If the reader of this message is not the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication, or any of its contents, is strictly prohibited.  If you have received this communication in error, please notify the sender immediately and destroy or delete the original message and any copy of it from your computer system.  If you have any questions concerning this message, please contact the sender.

Secured by Proofpoint Encryption, Copyright  2009-2012 Proofpoint, Inc.  All rights reserved.

		
	

			
		

	


_ARSlist: "Where the Answers Are" and have been for 20 years_


Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Arner, Todd
Sorry looks like our system wants to send my reply securely………..

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Arner, Todd
Sent: Friday, October 10, 2014 3:10 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
[cid:image001.gif@01CFE49C.95A31DC0]

[cid:image002.gif@01CFE49C.95A31DC0]



Great Lakes respects the privacy of its customers and business partners and 
thus has implemented solutions to protect sensitive information. This is a 
secure message from Great Lakes that may contain sensitive information. To view 
your secure message, open the attachment to this message. The first time you 
receive a secure message from Great Lakes you will be required to create an 
account and password. Subsequent secure message deliveries from Great Lakes 
will require you to authenticate prior to opening the message.

If you are viewing this from a mobile device, click

herehttps://securemail.mygreatlakes.org/formpostdir/securereader?id=77fd57b25fabd429f89eabb0e5a876a2
 to read your message on your mobile device. The mobile link expires on 
2014-11-09 14:09 CST

More Infohttps://securemail.mygreatlakes.org/securereader/help.jsf?lang=enus

Disclaimer: The information contained in this communication may be 
confidential, is intended only for the use of the recipient(s) named above, and 
may be legally privileged. If the reader of this message is not the intended 
recipient, you are hereby notified that any dissemination, distribution, or 
copying of this communication, or any of its contents, is strictly prohibited. 
If you have received this communication in error, please notify the sender 
immediately and destroy or delete the original message and any copy of it from 
your computer system.

For questions about your student loans, contact us at (800) 236-4300. For 
technical questions about this secure email, call (866) 227-8928.



Secured by Proofpoint Encryption, Copyright © 2009-2012 Proofpoint, Inc. All 
rights reserved.




_ARSlist: Where the Answers Are and have been for 20 years_

--
The information contained in this communication may be confidential, is 
intended only for the use of the recipient(s) named above, and may be protected 
under state or federal law. If the reader of this message is not the intended 
recipient, you are hereby notified that any dissemination, distribution, or 
copying of this communication, or any of its contents, is strictly prohibited. 
If you have received this communication in error, please forward the 
communication to no...@glhec.org immediately and destroy or delete the original 
message and any copy of it from your computer system. If you have any questions 
concerning this message, please contact the sender.


___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
Where the Answers Are, and have been for 20 years


Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Arner, Todd
--_000_B97DB6A54B0A7A4DBB08CE6A2181A8BC465C3EE7GLSXDBMAD1Pgldn_
Content-Transfer-Encoding: base64
Content-Type: text/plain; charset=utf-8

V2UgY29uZmlndXJlZCBvdXJzIGFzIGJlbG93IGFuZCBpdCB3b3JrcyBmaW5lLiAgVGhvdWdodCBJ
4oCZZCBwYXNzIGl0IG9uIGluIGNhc2UgeW91IHdhbnQgdG8gZ2l2ZSBpdCBhIHRyeS4NCg0KVG9k
ZCBBcm5lcg0KDQpQRVJGT1JNLUFDVElPTi1PUEVOLVVSTCBmaWxlOi8vXFxTZXJ2ZXJcUmVtZWR5
QWRtaW5cSGVscERvY3VtZW50c1xQRVRTXFBFVFM8ZmlsZTovLy9cXFNlcnZlclxSZW1lZHlBZG1p
blxIZWxwRG9jdW1lbnRzXFBFVFNcUEVUUz4gVXNlciBHdWlkZS5kb2N4DQoNCgotLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tClRoZSBpbmZvcm1hdGlvbiBjb250YWluZWQgaW4gdGhpcyBjb21tdW5pY2F0aW9uIG1heSBi
ZSBjb25maWRlbnRpYWwsIGlzIGludGVuZGVkIG9ubHkgZm9yIHRoZSB1c2Ugb2YgdGhlIHJlY2lw
aWVudChzKSBuYW1lZCBhYm92ZSwgYW5kIG1heSBiZSBwcm90ZWN0ZWQgdW5kZXIgc3RhdGUgb3Ig
ZmVkZXJhbCBsYXcuIElmIHRoZSByZWFkZXIgb2YgdGhpcyBtZXNzYWdlIGlzIG5vdCB0aGUgaW50
ZW5kZWQgcmVjaXBpZW50LCB5b3UgYXJlIGhlcmVieSBub3RpZmllZCB0aGF0IGFueSBkaXNzZW1p
bmF0aW9uLCBkaXN0cmlidXRpb24sIG9yIGNvcHlpbmcgb2YgdGhpcyBjb21tdW5pY2F0aW9uLCBv
ciBhbnkgb2YgaXRzIGNvbnRlbnRzLCBpcyBzdHJpY3RseSBwcm9oaWJpdGVkLiBJZiB5b3UgaGF2
ZSByZWNlaXZlZCB0aGlzIGNvbW11bmljYXRpb24gaW4gZXJyb3IsIHBsZWFzZSBmb3J3YXJkIHRo
ZSBjb21tdW5pY2F0aW9uIHRvIG5vdG1lQGdsaGVjLm9yZyBpbW1lZGlhdGVseSBhbmQgZGVzdHJv
eSBvciBkZWxldGUgdGhlIG9yaWdpbmFsIG1lc3NhZ2UgYW5kIGFueSBjb3B5IG9mIGl0IGZyb20g
eW91ciBjb21wdXRlciBzeXN0ZW0uIElmIHlvdSBoYXZlIGFueSBxdWVzdGlvbnMgY29uY2Vybmlu
ZyB0aGlzIG1lc3NhZ2UsIHBsZWFzZSBjb250YWN0IHRoZSBzZW5kZXIuCg0KDQpfX19fX19fX19f
X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f
X19fX19fX19fX19fDQpVTlNVQlNDUklCRSBvciBhY2Nlc3MgQVJTbGlzdCBBcmNoaXZlcyBhdCB3
d3cuYXJzbGlzdC5vcmcNCiJXaGVyZSB0aGUgQW5zd2VycyBBcmUsIGFuZCBoYXZlIGJlZW4gZm9y
IDIwIHllYXJzIg0K
--_000_B97DB6A54B0A7A4DBB08CE6A2181A8BC465C3EE7GLSXDBMAD1Pgldn_
Content-Transfer-Encoding: base64
Content-Type: text/html; charset=utf-8

KioNCjxodG1sIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29mdC1jb206dm1sIiB4bWxuczpv
PSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZpY2UiIHhtbG5zOnc9InVybjpz
Y2hlbWFzLW1pY3Jvc29mdC1jb206b2ZmaWNlOndvcmQiIHhtbG5zOm09Imh0dHA6Ly9zY2hlbWFz
Lm1pY3Jvc29mdC5jb20vb2ZmaWNlLzIwMDQvMTIvb21tbCIgeG1sbnM9Imh0dHA6Ly93d3cudzMu
b3JnL1RSL1JFQy1odG1sNDAiPg0KPGhlYWQ+DQo8bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5
cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQo8bWV0YSBuYW1lPSJHZW5l
cmF0b3IiIGNvbnRlbnQ9Ik1pY3Jvc29mdCBXb3JkIDE0IChmaWx0ZXJlZCBtZWRpdW0pIj4NCjxz
dHlsZT48IS0tDQovKiBGb250IERlZmluaXRpb25zICovDQpAZm9udC1mYWNlDQoJe2ZvbnQtZmFt
aWx5OkNhbGlicmk7DQoJcGFub3NlLTE6MiAxNSA1IDIgMiAyIDQgMyAyIDQ7fQ0KQGZvbnQtZmFj
ZQ0KCXtmb250LWZhbWlseTpUYWhvbWE7DQoJcGFub3NlLTE6MiAxMSA2IDQgMyA1IDQgNCAyIDQ7
fQ0KQGZvbnQtZmFjZQ0KCXtmb250LWZhbWlseToiU2Vnb2UgVUkiOw0KCXBhbm9zZS0xOjIgMTEg
NSAyIDQgMiA0IDIgMiAzO30NCi8qIFN0eWxlIERlZmluaXRpb25zICovDQpwLk1zb05vcm1hbCwg
bGkuTXNvTm9ybWFsLCBkaXYuTXNvTm9ybWFsDQoJe21hcmdpbjowaW47DQoJbWFyZ2luLWJvdHRv
bTouMDAwMXB0Ow0KCWZvbnQtc2l6ZToxMi4wcHQ7DQoJZm9udC1mYW1pbHk6IlRpbWVzIE5ldyBS
b21hbiIsInNlcmlmIjt9DQphOmxpbmssIHNwYW4uTXNvSHlwZXJsaW5rDQoJe21zby1zdHlsZS1w
cmlvcml0eTo5OTsNCgljb2xvcjpibHVlOw0KCXRleHQtZGVjb3JhdGlvbjp1bmRlcmxpbmU7fQ0K
YTp2aXNpdGVkLCBzcGFuLk1zb0h5cGVybGlua0ZvbGxvd2VkDQoJe21zby1zdHlsZS1wcmlvcml0
eTo5OTsNCgljb2xvcjpwdXJwbGU7DQoJdGV4dC1kZWNvcmF0aW9uOnVuZGVybGluZTt9DQpwLk1z
b0FjZXRhdGUsIGxpLk1zb0FjZXRhdGUsIGRpdi5Nc29BY2V0YXRlDQoJe21zby1zdHlsZS1wcmlv
cml0eTo5OTsNCgltc28tc3R5bGUtbGluazoiQmFsbG9vbiBUZXh0IENoYXIiOw0KCW1hcmdpbjow
aW47DQoJbWFyZ2luLWJvdHRvbTouMDAwMXB0Ow0KCWZvbnQtc2l6ZTo4LjBwdDsNCglmb250LWZh
bWlseToiVGFob21hIiwic2Fucy1zZXJpZiI7fQ0Kc3Bhbi5CYWxsb29uVGV4dENoYXINCgl7bXNv
LXN0eWxlLW5hbWU6IkJhbGxvb24gVGV4dCBDaGFyIjsNCgltc28tc3R5bGUtcHJpb3JpdHk6OTk7
DQoJbXNvLXN0eWxlLWxpbms6IkJhbGxvb24gVGV4dCI7DQoJZm9udC1mYW1pbHk6IlRhaG9tYSIs
InNhbnMtc2VyaWYiO30NCnNwYW4uRW1haWxTdHlsZTE5DQoJe21zby1zdHlsZS10eXBlOnBlcnNv
bmFsOw0KCWZvbnQtZmFtaWx5OiJDYWxpYnJpIiwic2Fucy1zZXJpZiI7DQoJY29sb3I6IzFGNDk3
RDt9DQpzcGFuLkVtYWlsU3R5bGUyMA0KCXttc28tc3R5bGUtdHlwZTpwZXJzb25hbDsNCglmb250
LWZhbWlseToiQ2FsaWJyaSIsInNhbnMtc2VyaWYiOw0KCWNvbG9yOiMxRjQ5N0Q7fQ0Kc3Bhbi5F
bWFpbFN0eWxlMjENCgl7bXNvLXN0eWxlLXR5cGU6cGVyc29uYWwtcmVwbHk7DQoJZm9udC1mYW1p
bHk6IkNhbGlicmkiLCJzYW5zLXNlcmlmIjsNCgljb2xvcjojMUY0OTdEO30NCi5Nc29DaHBEZWZh
dWx0DQoJe21zby1zdHlsZS10eXBlOmV4cG9ydC1vbmx5Ow0KCWZvbnQtc2l6ZToxMC4wcHQ7fQ0K
QHBhZ2UgV29yZFNlY3Rpb24xDQoJe3NpemU6OC41aW4gMTEuMGluOw0KCW1hcmdpbjoxLjBpbiAx
LjBpbiAxLjBpbiAxLjBpbjt9DQpkaXYuV29yZFNlY3Rpb24xDQoJe3BhZ2U6V29yZFNlY3Rpb24x
O30NCi0tPjwvc3R5bGU+PCEtLVtpZiBndGUgbXNvIDldPjx4bWw+DQo8bzpzaGFwZWRlZmF1bHRz
IHY6ZXh0PSJlZGl0IiBzcGlkbWF4PSIxMDI2IiAvPg0KPC94bWw+PCFbZW5kaWZdLS0+PCEtLVtp
ZiBndGUgbXNvIDldPjx4bWw+DQo8bzpzaGFwZWxheW91dCB2OmV4dD0iZWRpdCI+DQo8bzppZG1h
cCB2OmV4dD0iZWRpdCIgZGF0YT0iMSIgLz4NCjwvbzpzaGFwZWxheW91dD48L3htbD48IVtlbmRp
Zl0tLT4NCjwvaGVhZD4NCjxib2R5IGxhbmc9IkVOLVVTIiBsaW5rPSJibHVlIiB2bGluaz0icHVy
cGxlIj4NCjxkaXYgY2xhc3M9IldvcmRTZWN0aW9uMSI+DQo8cCBjbGFzcz0iTXNvTm9ybWFsIj48
c3BhbiBzdHlsZT0iZm9udC1zaXplOjExLjBwdDtmb250LWZhbWlseTomcXVvdDtDYWxpYnJpJnF1

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread William Rentfrow
Disclaimer: I haven't messed around with this for a while, so it might take 
some tinkering.

Stuff below taken from here:

http://stackoverflow.com/questions/4679756/show-a-pdf-files-in-users-browser-via-php-perl

If you have PHP on your web server you can directly display a PDF doing 
something like this:

?php
$file = './path/to/the.pdf';
$filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the 
end. */

header('Content-type: application/pdf');
header('Content-Disposition: inline; filename=' . $filename . '');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');

@readfile($file);
?


William Rentfrow
wrentf...@stratacominc.com
Office: 715-204-3061 or 701-232-5697x25
Cell: 715-498-5056

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of JD Hood
Sent: Friday, October 10, 2014 1:47 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
The last thing I want to do is muddy the issue, but this rings a faint bell 
about browser security.

It has been awhile and I can't recall the specifics, but maybe it will jog 
someone else's memory. It was something about trying to open a file on a local 
path that the browser (by default) viewed as malicious activity and either did 
nothing, or 404'd as a result.

It may not be applicable, but just in case.

-JDHood

On Fri, Oct 10, 2014 at 1:30 PM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…

Logs still are showing that AL fired:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL 
\\pwfil01\Public\ITfile:///\\pwfil01\Public\IT HD\DocTest\S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:25:25 PM ms 271
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM


From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 11:56 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I just used the following url in chrome

file://server/share/something.logfile:///\\server\share\something.log

if you try to specify the url in question, does it open manually?  What does 
the log show?

On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Never mind, I stand corrected. This will work in the client tool but I cannot 
get it to run in Chrome or IE10 for the life of me. IE10 does nothing. Chrome 
opens up a blank window. All browser settings have been reset back to stock and 
pop up blockers are completely off.

From: Sinclair, Keith
Sent: Friday, October 10, 2014 10:27 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

I agree with Fred, as well.

Looks like the “file://” did the trick. I had forgotten that was an option for 
browsers. Now my battle is for the file location folder permissions as I tried 
it on a publicly accessible network directory/file and was able to open it, but 
not my original document.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 9:00 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site

**
I agree with Fred

On Fri, Oct 10, 2014 at 7:54 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
So, I have a button that fires an AL with Run Process: PERFORM-ACTION-OPEN-URL 
\\NETWORK\Public\Sitefile:///\\NETWORK\Public\Site Management\Site 
Documents\$Site ID$.pdf.

When I click on the button, nothing happens. The AL does fire, according to the 
logs.

If I change the OPEN-URL to http://www.msn.com, it works. The button opens up 
MSN in a new browser window.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 8:45 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site

**
Keith,
We would need a bit more information, such as 'What happens' when you 
trythere should be no difference between an external and an internal 
web/document, as long as you are using the properly formatted url.

Have you run logs, what do they show

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Sanford, Claire
Why not just add the URL to a line of text on a button?

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of William Rentfrow
Sent: Friday, October 10, 2014 3:16 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Disclaimer: I haven't messed around with this for a while, so it might take 
some tinkering.

Stuff below taken from here:

http://stackoverflow.com/questions/4679756/show-a-pdf-files-in-users-browser-via-php-perl

If you have PHP on your web server you can directly display a PDF doing 
something like this:

?php
$file = './path/to/the.pdf';
$filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the 
end. */

header('Content-type: application/pdf');
header('Content-Disposition: inline; filename=' . $filename . '');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');

@readfile($file);
?


William Rentfrow
wrentf...@stratacominc.commailto:wrentf...@stratacominc.com
Office: 715-204-3061 or 701-232-5697x25
Cell: 715-498-5056

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of JD Hood
Sent: Friday, October 10, 2014 1:47 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
The last thing I want to do is muddy the issue, but this rings a faint bell 
about browser security.

It has been awhile and I can't recall the specifics, but maybe it will jog 
someone else's memory. It was something about trying to open a file on a local 
path that the browser (by default) viewed as malicious activity and either did 
nothing, or 404'd as a result.

It may not be applicable, but just in case.

-JDHood

On Fri, Oct 10, 2014 at 1:30 PM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…

Logs still are showing that AL fired:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL 
\\pwfil01\Public\ITfile:///\\pwfil01\Public\IT HD\DocTest\S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:25:25 PM ms 271
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM


From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 11:56 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I just used the following url in chrome

file://server/share/something.logfile:///\\server\share\something.log

if you try to specify the url in question, does it open manually?  What does 
the log show?

On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Never mind, I stand corrected. This will work in the client tool but I cannot 
get it to run in Chrome or IE10 for the life of me. IE10 does nothing. Chrome 
opens up a blank window. All browser settings have been reset back to stock and 
pop up blockers are completely off.

From: Sinclair, Keith
Sent: Friday, October 10, 2014 10:27 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

I agree with Fred, as well.

Looks like the “file://” did the trick. I had forgotten that was an option for 
browsers. Now my battle is for the file location folder permissions as I tried 
it on a publicly accessible network directory/file and was able to open it, but 
not my original document.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 9:00 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site

**
I agree with Fred

On Fri, Oct 10, 2014 at 7:54 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
So, I have a button that fires an AL with Run Process: PERFORM-ACTION-OPEN-URL 
\\NETWORK\Public\Sitefile:///\\NETWORK\Public\Site Management\Site 
Documents\$Site ID$.pdf.

When I click on the button, nothing happens. The AL does fire, according to the 
logs.

If I change the OPEN-URL to http://www.msn.com, it works. The button opens up 
MSN in a new browser window.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 8:45 AM

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Sinclair, Keith
Sadly, I tried that one.

Same issue – nothing happens in web browser.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sanford, Claire
Sent: Friday, October 10, 2014 3:23 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Why not just add the URL to a line of text on a button?

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of William Rentfrow
Sent: Friday, October 10, 2014 3:16 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
Disclaimer: I haven't messed around with this for a while, so it might take 
some tinkering.

Stuff below taken from here:

http://stackoverflow.com/questions/4679756/show-a-pdf-files-in-users-browser-via-php-perl

If you have PHP on your web server you can directly display a PDF doing 
something like this:

?php
$file = './path/to/the.pdf';
$filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the 
end. */

header('Content-type: application/pdf');
header('Content-Disposition: inline; filename=' . $filename . '');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');

@readfile($file);
?


William Rentfrow
wrentf...@stratacominc.commailto:wrentf...@stratacominc.com
Office: 715-204-3061 or 701-232-5697x25
Cell: 715-498-5056

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of JD Hood
Sent: Friday, October 10, 2014 1:47 PM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
The last thing I want to do is muddy the issue, but this rings a faint bell 
about browser security.

It has been awhile and I can't recall the specifics, but maybe it will jog 
someone else's memory. It was something about trying to open a file on a local 
path that the browser (by default) viewed as malicious activity and either did 
nothing, or 404'd as a result.

It may not be applicable, but just in case.

-JDHood

On Fri, Oct 10, 2014 at 1:30 PM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…

Logs still are showing that AL fired:

ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271
True actions:
action 0
Run Process: PERFORM-ACTION-OPEN-URL 
\\pwfil01\Public\ITfile:///\\pwfil01\Public\IT HD\DocTest\S80039514.pdf
ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:25:25 PM ms 271
EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM


From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG] On Behalf Of LJ 
LongWing
Sent: Friday, October 10, 2014 11:56 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

**
I just used the following url in chrome

file://server/share/something.logfile:///\\server\share\something.log

if you try to specify the url in question, does it open manually?  What does 
the log show?

On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
Never mind, I stand corrected. This will work in the client tool but I cannot 
get it to run in Chrome or IE10 for the life of me. IE10 does nothing. Chrome 
opens up a blank window. All browser settings have been reset back to stock and 
pop up blockers are completely off.

From: Sinclair, Keith
Sent: Friday, October 10, 2014 10:27 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

I agree with Fred, as well.

Looks like the “file://” did the trick. I had forgotten that was an option for 
browsers. Now my battle is for the file location folder permissions as I tried 
it on a publicly accessible network directory/file and was able to open it, but 
not my original document.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 9:00 AM
To: arslist@ARSLIST.ORGmailto:arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site

**
I agree with Fred

On Fri, Oct 10, 2014 at 7:54 AM, Sinclair, Keith 
ksincl...@shoppertrak.commailto:ksincl...@shoppertrak.com wrote:
**
So, I have a button that fires an AL with Run Process: PERFORM-ACTION-OPEN-URL 
\\NETWORK\Public\Sitefile:///\\NETWORK\Public\Site Management\Site 
Documents\$Site ID$.pdf.

When I click

Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site

2014-10-10 Thread Joel Sender
I’m not sure if this is the issue, but since your address contains a BLANK, 
have you tried quotes around the URL?

HTH,

Joel

Joel Senderjdsen...@earthlink.net310.829.5552



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sinclair, Keith
Sent: Friday, October 10, 2014 1:24 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

Sadly, I tried that one.



Same issue – nothing happens in web browser.



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Sanford, Claire
Sent: Friday, October 10, 2014 3:23 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

Why not just add the URL to a line of text on a button?



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of William Rentfrow
Sent: Friday, October 10, 2014 3:16 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

Disclaimer: I haven't messed around with this for a while, so it might take 
some tinkering.



Stuff below taken from here:



http://stackoverflow.com/questions/4679756/show-a-pdf-files-in-users-browser-via-php-perl



If you have PHP on your web server you can directly display a PDF doing 
something like this:



?php

$file = './path/to/the.pdf';

$filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the 
end. */



header('Content-type: application/pdf');

header('Content-Disposition: inline; filename=' . $filename . '');

header('Content-Transfer-Encoding: binary');

header('Content-Length: ' . filesize($file));

header('Accept-Ranges: bytes');



@readfile($file);

?





William Rentfrow

wrentf...@stratacominc.com

Office: 715-204-3061 or 701-232-5697x25

Cell: 715-498-5056



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of JD Hood
Sent: Friday, October 10, 2014 1:47 PM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

The last thing I want to do is muddy the issue, but this rings a faint bell 
about browser security.



It has been awhile and I can't recall the specifics, but maybe it will jog 
someone else's memory. It was something about trying to open a file on a local 
path that the browser (by default) viewed as malicious activity and either did 
nothing, or 404'd as a result.



It may not be applicable, but just in case.



-JDHood



On Fri, Oct 10, 2014 at 1:30 PM, Sinclair, Keith ksincl...@shoppertrak.com 
wrote:

**

Using the URL directly in Chrome does work, also in IE. However, trying to call 
it from an AL using the Perform…URL, etc. it doesn’t do anything. Driving me 
nuts…



Logs still are showing that AL fired:



ActiveLink Start:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View 
- Fri Oct 10 2014 12:25:25 PM ms 271

True actions:

action 0

Run Process: PERFORM-ACTION-OPEN-URL \\pwfil01\Public\IT 
file:///\\pwfil01\Public\IT  HD\DocTest\S80039514.pdf

ActiveLink End:- ST:SI-OpenSiteOther | ST:SiteInformation/Default Admin View - 
Fri Oct 10 2014 12:25:25 PM ms 271

EVENT End:- Button/Menu Field |  Site Other(536870948)  | 
ST:SiteInformation/Default Admin View   Fri Oct 10 2014 12:25:25 PM





From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 11:56 AM
To: arslist@ARSLIST.ORG
Subject: Re: NOT SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



**

I just used the following url in chrome



file://server/share/something.log file:///\\server\share\something.log



if you try to specify the url in question, does it open manually?  What does 
the log show?



On Fri, Oct 10, 2014 at 10:43 AM, Sinclair, Keith ksincl...@shoppertrak.com 
wrote:

**

Never mind, I stand corrected. This will work in the client tool but I cannot 
get it to run in Chrome or IE10 for the life of me. IE10 does nothing. Chrome 
opens up a blank window. All browser settings have been reset back to stock and 
pop up blockers are completely off.



From: Sinclair, Keith
Sent: Friday, October 10, 2014 10:27 AM
To: arslist@ARSLIST.ORG
Subject: SOLVED: PERFORM-ACTION-OPEN-URL to open internal network site



I agree with Fred, as well.



Looks like the “file://” did the trick. I had forgotten that was an option for 
browsers. Now my battle is for the file location folder permissions as I tried 
it on a publicly accessible network directory/file and was able to open it, but 
not my original document.



From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Friday, October 10, 2014 9:00 AM
To: arslist@ARSLIST.ORG
Subject: Re: PERFORM-ACTION-OPEN-URL to open internal network site



**

I agree with Fred



On Fri, Oct 10, 2014 at 7:54