Application has access to hyperlink to .wav file, system doesn't The 2019 Stack Overflow Developer Survey Results Are InGet installed applications in a systemHow can I make a .NET Windows Forms application that only runs in the System Tray?Visual Studio build fails: unable to copy exe-file from objdebug to bindebugMemory Mapped File Access Deniedvisual studio: how to catch non-matching number of dummy/formal argument in a big old code without interfacesReadwrite to a file: heavily used application.NET applications sometimes crash right at application startup (can't access .exe)Multi-threaded .NET application blocks during file I/O when protected by Themida.NET application referencing ActiveX components cause Access Violation Exception in Windows 10Unable to get ChannelRead0 fired
Which Sci-Fi work first showed weapon of galactic-scale mass destruction?
Falsification in Math vs Science
How to make payment on the internet without leaving a money trail?
How can I fix this gap between bookcases I made?
How to create dashed lines/arrows in Illustrator
Why isn't airport relocation done gradually?
What function has this graph?
Landlord wants to switch my lease to a "Land contract" to "get back at the city"
Why do UK politicians seemingly ignore opinion polls on Brexit?
Is bread bad for ducks?
"To split hairs" vs "To be pedantic"
Is "plugging out" electronic devices an American expression?
"What time...?" or "At what time...?" - what is more grammatically correct?
Does it makes sense to buy a new cycle to learn riding?
Why could you hear an Amstrad CPC working?
Evaluating number of iteration with a certain map with While
Can't find the latex code for the ⍎ (down tack jot) symbol
Extreme, unacceptable situation and I can't attend work tomorrow morning
Is flight data recorder erased after every flight?
The difference between dialogue marks
Monty Hall variation
What is a mixture ratio of propellant?
Carnot-Caratheodory metric
Manuscript was "unsubmitted" because the manuscript was deposited in Arxiv Preprints
Application has access to hyperlink to .wav file, system doesn't
The 2019 Stack Overflow Developer Survey Results Are InGet installed applications in a systemHow can I make a .NET Windows Forms application that only runs in the System Tray?Visual Studio build fails: unable to copy exe-file from objdebug to bindebugMemory Mapped File Access Deniedvisual studio: how to catch non-matching number of dummy/formal argument in a big old code without interfacesReadwrite to a file: heavily used application.NET applications sometimes crash right at application startup (can't access .exe)Multi-threaded .NET application blocks during file I/O when protected by Themida.NET application referencing ActiveX components cause Access Violation Exception in Windows 10Unable to get ChannelRead0 fired
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
So I have an application where I can read and hear .wav files of customers feedback. Problem is, if I go to database where the hyperlinks to the .wav file are stored, and press the link, it says 404 not found error, but in the application I can access these and hear them, without having received explicit access? I don't really know what I should look for in the code that gives me this access to the .wav files, even though my system doesn't have it my application does.
Some of the code:
protected override void OnHyperlinkClicked(HyperlinkClickedEventArgs e)
CustomerSatisfactionResponse clickedResponse = ((CustomerSatisfactionResponse)e.Model);
if (clickedResponse.Type == CustomerSatisfactionType.Phone)
System.Diagnostics.Process.Start(clickedResponse.RecordingUrl);
else
CustomerSatisfactionCommentForm frm = new CustomerSatisfactionCommentForm(clickedResponse.Comment.Replace("<br/>", System.Environment.NewLine));
frm.ShowDialog();
e.Handled = true;
base.OnHyperlinkClicked(e);
Problem solved, was due to old wav files that were no longer available
c# .net visual-studio-2010
add a comment |
So I have an application where I can read and hear .wav files of customers feedback. Problem is, if I go to database where the hyperlinks to the .wav file are stored, and press the link, it says 404 not found error, but in the application I can access these and hear them, without having received explicit access? I don't really know what I should look for in the code that gives me this access to the .wav files, even though my system doesn't have it my application does.
Some of the code:
protected override void OnHyperlinkClicked(HyperlinkClickedEventArgs e)
CustomerSatisfactionResponse clickedResponse = ((CustomerSatisfactionResponse)e.Model);
if (clickedResponse.Type == CustomerSatisfactionType.Phone)
System.Diagnostics.Process.Start(clickedResponse.RecordingUrl);
else
CustomerSatisfactionCommentForm frm = new CustomerSatisfactionCommentForm(clickedResponse.Comment.Replace("<br/>", System.Environment.NewLine));
frm.ShowDialog();
e.Handled = true;
base.OnHyperlinkClicked(e);
Problem solved, was due to old wav files that were no longer available
c# .net visual-studio-2010
1
Are you running the application on the same machine from where you are trying to browse the URL of the file?
– Chetan Ranpariya
Mar 8 at 9:03
add a comment |
So I have an application where I can read and hear .wav files of customers feedback. Problem is, if I go to database where the hyperlinks to the .wav file are stored, and press the link, it says 404 not found error, but in the application I can access these and hear them, without having received explicit access? I don't really know what I should look for in the code that gives me this access to the .wav files, even though my system doesn't have it my application does.
Some of the code:
protected override void OnHyperlinkClicked(HyperlinkClickedEventArgs e)
CustomerSatisfactionResponse clickedResponse = ((CustomerSatisfactionResponse)e.Model);
if (clickedResponse.Type == CustomerSatisfactionType.Phone)
System.Diagnostics.Process.Start(clickedResponse.RecordingUrl);
else
CustomerSatisfactionCommentForm frm = new CustomerSatisfactionCommentForm(clickedResponse.Comment.Replace("<br/>", System.Environment.NewLine));
frm.ShowDialog();
e.Handled = true;
base.OnHyperlinkClicked(e);
Problem solved, was due to old wav files that were no longer available
c# .net visual-studio-2010
So I have an application where I can read and hear .wav files of customers feedback. Problem is, if I go to database where the hyperlinks to the .wav file are stored, and press the link, it says 404 not found error, but in the application I can access these and hear them, without having received explicit access? I don't really know what I should look for in the code that gives me this access to the .wav files, even though my system doesn't have it my application does.
Some of the code:
protected override void OnHyperlinkClicked(HyperlinkClickedEventArgs e)
CustomerSatisfactionResponse clickedResponse = ((CustomerSatisfactionResponse)e.Model);
if (clickedResponse.Type == CustomerSatisfactionType.Phone)
System.Diagnostics.Process.Start(clickedResponse.RecordingUrl);
else
CustomerSatisfactionCommentForm frm = new CustomerSatisfactionCommentForm(clickedResponse.Comment.Replace("<br/>", System.Environment.NewLine));
frm.ShowDialog();
e.Handled = true;
base.OnHyperlinkClicked(e);
Problem solved, was due to old wav files that were no longer available
c# .net visual-studio-2010
c# .net visual-studio-2010
edited Mar 8 at 9:19
Joseph Awwal
asked Mar 8 at 8:28
Joseph AwwalJoseph Awwal
55
55
1
Are you running the application on the same machine from where you are trying to browse the URL of the file?
– Chetan Ranpariya
Mar 8 at 9:03
add a comment |
1
Are you running the application on the same machine from where you are trying to browse the URL of the file?
– Chetan Ranpariya
Mar 8 at 9:03
1
1
Are you running the application on the same machine from where you are trying to browse the URL of the file?
– Chetan Ranpariya
Mar 8 at 9:03
Are you running the application on the same machine from where you are trying to browse the URL of the file?
– Chetan Ranpariya
Mar 8 at 9:03
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55059310%2fapplication-has-access-to-hyperlink-to-wav-file-system-doesnt%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55059310%2fapplication-has-access-to-hyperlink-to-wav-file-system-doesnt%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Are you running the application on the same machine from where you are trying to browse the URL of the file?
– Chetan Ranpariya
Mar 8 at 9:03