Dots and “/” in URL causing 404 (Not Found)URLs with slash in parameter?Encode URL in JavaScript?Path.Combine for URLs?Get current URL with jQuery?How to get the URL of the current page in C#How do I modify the URL without reloading the page?Get the current URL with JavaScript?Open a URL in a new tab (and not a new window) using JavaScriptWhen I browse http://localhost:8004/elmah.axd, it generates 404 errorjQuery's jquery-1.10.2.min.map is triggering a 404 (Not Found)What do these three dots in React do?
LWC: Removing a class name on scroll
In the Schrödinger equation, can I have a Hamiltonian without a kinetic term?
Balancing Humanoid fantasy races: Elves
How and when is the best time to reveal to new hires you are trans?
How can you tell the version of Ubuntu on a system in a .sh (bash) script?
What parameters are to be considered when choosing a MOSFET?
Create two random teams from a list of players
Why are prop blades not shaped like household fan blades?
How to prevent a single-element caster from being useless against immune foes?
Prepare a user to perform an action before proceeding to the next step
How char is processed in math mode?
Academic progression in Germany, what happens after a postdoc? What is the next step?
Why is “deal 6 damage” a legit phrase?
Can living where Rare Earth magnetic ore is abundant provide any protection?
A conjectural trigonometric identity
Should students have access to past exams or an exam bank?
What force enables us to walk? Friction or normal reaction?
How to remove rebar passing through an inaccessible pipe
What is the range of a Drunken Monk's Redirect attack?
Correct word for a little toy that always stands up?
How did Biff return to 2015 from 1955 without a lightning strike?
What is the oxidation state of Mn in HMn(CO)5?
What is my clock telling me to do?
How to efficiently shred a lot of cabbage?
Dots and “/” in URL causing 404 (Not Found)
URLs with slash in parameter?Encode URL in JavaScript?Path.Combine for URLs?Get current URL with jQuery?How to get the URL of the current page in C#How do I modify the URL without reloading the page?Get the current URL with JavaScript?Open a URL in a new tab (and not a new window) using JavaScriptWhen I browse http://localhost:8004/elmah.axd, it generates 404 errorjQuery's jquery-1.10.2.min.map is triggering a 404 (Not Found)What do these three dots in React do?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Hello Stackoverflow community, I'm getting a 404 (Not Found) message when making this call from my typescript code:
http://localhost:9090/api/employees/ERNEST A/L I.G. MILLER,/1/1/1/1/1
But when I make this call it does work.
http://localhost:9090/api/employees/ERNEST MILLER,/1/1/1/1/1
I tried using the encodeURIComponent to encode my call but that doesnt encode DOTS and giving me same 404 error.
http://localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/1/1/1/1
I then tried adding trailing "/" at the end of my call but that didnt work either.
http://localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/1/1/1/1/
I even tried other solutions on stackoverflow but none of them worked for me.
Solutions I tried but not worked.
<system.webserver>
<modules runAllManagedModulesForAllRequests="true">
<system.web>
<httpRuntime relaxedUrlToFileSystemMapping="true" />
<add name="ApiURIs-ISAPI-Integrated-4.0"
path="/people/*"
verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS"
type="System.Web.Handlers.TransferRequestHandler"
preCondition="integratedMode,runtimeVersionv4.0" />
I am using ASP .Net, MVC 5.2.4.0 and Angular 6 for my project. Any help would highly be appreciated.
javascript asp.net angular model-view-controller
add a comment |
Hello Stackoverflow community, I'm getting a 404 (Not Found) message when making this call from my typescript code:
http://localhost:9090/api/employees/ERNEST A/L I.G. MILLER,/1/1/1/1/1
But when I make this call it does work.
http://localhost:9090/api/employees/ERNEST MILLER,/1/1/1/1/1
I tried using the encodeURIComponent to encode my call but that doesnt encode DOTS and giving me same 404 error.
http://localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/1/1/1/1
I then tried adding trailing "/" at the end of my call but that didnt work either.
http://localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/1/1/1/1/
I even tried other solutions on stackoverflow but none of them worked for me.
Solutions I tried but not worked.
<system.webserver>
<modules runAllManagedModulesForAllRequests="true">
<system.web>
<httpRuntime relaxedUrlToFileSystemMapping="true" />
<add name="ApiURIs-ISAPI-Integrated-4.0"
path="/people/*"
verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS"
type="System.Web.Handlers.TransferRequestHandler"
preCondition="integratedMode,runtimeVersionv4.0" />
I am using ASP .Net, MVC 5.2.4.0 and Angular 6 for my project. Any help would highly be appreciated.
javascript asp.net angular model-view-controller
Manually browse to the URL and see what that URL looks like.
– Scott Marcus
Mar 26 at 22:35
Looks like same. Doesnt change anything: localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/…
– Faisal Mehboob
Mar 26 at 22:41
Any help would highly be appreciated
– Faisal Mehboob
Mar 27 at 20:01
add a comment |
Hello Stackoverflow community, I'm getting a 404 (Not Found) message when making this call from my typescript code:
http://localhost:9090/api/employees/ERNEST A/L I.G. MILLER,/1/1/1/1/1
But when I make this call it does work.
http://localhost:9090/api/employees/ERNEST MILLER,/1/1/1/1/1
I tried using the encodeURIComponent to encode my call but that doesnt encode DOTS and giving me same 404 error.
http://localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/1/1/1/1
I then tried adding trailing "/" at the end of my call but that didnt work either.
http://localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/1/1/1/1/
I even tried other solutions on stackoverflow but none of them worked for me.
Solutions I tried but not worked.
<system.webserver>
<modules runAllManagedModulesForAllRequests="true">
<system.web>
<httpRuntime relaxedUrlToFileSystemMapping="true" />
<add name="ApiURIs-ISAPI-Integrated-4.0"
path="/people/*"
verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS"
type="System.Web.Handlers.TransferRequestHandler"
preCondition="integratedMode,runtimeVersionv4.0" />
I am using ASP .Net, MVC 5.2.4.0 and Angular 6 for my project. Any help would highly be appreciated.
javascript asp.net angular model-view-controller
Hello Stackoverflow community, I'm getting a 404 (Not Found) message when making this call from my typescript code:
http://localhost:9090/api/employees/ERNEST A/L I.G. MILLER,/1/1/1/1/1
But when I make this call it does work.
http://localhost:9090/api/employees/ERNEST MILLER,/1/1/1/1/1
I tried using the encodeURIComponent to encode my call but that doesnt encode DOTS and giving me same 404 error.
http://localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/1/1/1/1
I then tried adding trailing "/" at the end of my call but that didnt work either.
http://localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/1/1/1/1/
I even tried other solutions on stackoverflow but none of them worked for me.
Solutions I tried but not worked.
<system.webserver>
<modules runAllManagedModulesForAllRequests="true">
<system.web>
<httpRuntime relaxedUrlToFileSystemMapping="true" />
<add name="ApiURIs-ISAPI-Integrated-4.0"
path="/people/*"
verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS"
type="System.Web.Handlers.TransferRequestHandler"
preCondition="integratedMode,runtimeVersionv4.0" />
I am using ASP .Net, MVC 5.2.4.0 and Angular 6 for my project. Any help would highly be appreciated.
javascript asp.net angular model-view-controller
javascript asp.net angular model-view-controller
edited Mar 27 at 20:04
Faisal Mehboob
asked Mar 26 at 22:23
Faisal MehboobFaisal Mehboob
1581 silver badge8 bronze badges
1581 silver badge8 bronze badges
Manually browse to the URL and see what that URL looks like.
– Scott Marcus
Mar 26 at 22:35
Looks like same. Doesnt change anything: localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/…
– Faisal Mehboob
Mar 26 at 22:41
Any help would highly be appreciated
– Faisal Mehboob
Mar 27 at 20:01
add a comment |
Manually browse to the URL and see what that URL looks like.
– Scott Marcus
Mar 26 at 22:35
Looks like same. Doesnt change anything: localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/…
– Faisal Mehboob
Mar 26 at 22:41
Any help would highly be appreciated
– Faisal Mehboob
Mar 27 at 20:01
Manually browse to the URL and see what that URL looks like.
– Scott Marcus
Mar 26 at 22:35
Manually browse to the URL and see what that URL looks like.
– Scott Marcus
Mar 26 at 22:35
Looks like same. Doesnt change anything: localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/…
– Faisal Mehboob
Mar 26 at 22:41
Looks like same. Doesnt change anything: localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/…
– Faisal Mehboob
Mar 26 at 22:41
Any help would highly be appreciated
– Faisal Mehboob
Mar 27 at 20:01
Any help would highly be appreciated
– Faisal Mehboob
Mar 27 at 20:01
add a comment |
1 Answer
1
active
oldest
votes
Try to add this to your web.config
<modules runAllManagedModulesForAllRequests="true" />
tried but it didn't work
– Faisal Mehboob
Mar 27 at 20:15
Did you tried this? stackoverflow.com/questions/6328713/…
– Ladislav Oros
Mar 27 at 20:31
Yes I did but it didnt work either. Looks like an issue with "%".
– Faisal Mehboob
Mar 28 at 15:18
add a comment |
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%2f55367022%2fdots-and-in-url-causing-404-not-found%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try to add this to your web.config
<modules runAllManagedModulesForAllRequests="true" />
tried but it didn't work
– Faisal Mehboob
Mar 27 at 20:15
Did you tried this? stackoverflow.com/questions/6328713/…
– Ladislav Oros
Mar 27 at 20:31
Yes I did but it didnt work either. Looks like an issue with "%".
– Faisal Mehboob
Mar 28 at 15:18
add a comment |
Try to add this to your web.config
<modules runAllManagedModulesForAllRequests="true" />
tried but it didn't work
– Faisal Mehboob
Mar 27 at 20:15
Did you tried this? stackoverflow.com/questions/6328713/…
– Ladislav Oros
Mar 27 at 20:31
Yes I did but it didnt work either. Looks like an issue with "%".
– Faisal Mehboob
Mar 28 at 15:18
add a comment |
Try to add this to your web.config
<modules runAllManagedModulesForAllRequests="true" />
Try to add this to your web.config
<modules runAllManagedModulesForAllRequests="true" />
answered Mar 27 at 20:12
Ladislav OrosLadislav Oros
264 bronze badges
264 bronze badges
tried but it didn't work
– Faisal Mehboob
Mar 27 at 20:15
Did you tried this? stackoverflow.com/questions/6328713/…
– Ladislav Oros
Mar 27 at 20:31
Yes I did but it didnt work either. Looks like an issue with "%".
– Faisal Mehboob
Mar 28 at 15:18
add a comment |
tried but it didn't work
– Faisal Mehboob
Mar 27 at 20:15
Did you tried this? stackoverflow.com/questions/6328713/…
– Ladislav Oros
Mar 27 at 20:31
Yes I did but it didnt work either. Looks like an issue with "%".
– Faisal Mehboob
Mar 28 at 15:18
tried but it didn't work
– Faisal Mehboob
Mar 27 at 20:15
tried but it didn't work
– Faisal Mehboob
Mar 27 at 20:15
Did you tried this? stackoverflow.com/questions/6328713/…
– Ladislav Oros
Mar 27 at 20:31
Did you tried this? stackoverflow.com/questions/6328713/…
– Ladislav Oros
Mar 27 at 20:31
Yes I did but it didnt work either. Looks like an issue with "%".
– Faisal Mehboob
Mar 28 at 15:18
Yes I did but it didnt work either. Looks like an issue with "%".
– Faisal Mehboob
Mar 28 at 15:18
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
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%2f55367022%2fdots-and-in-url-causing-404-not-found%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
Manually browse to the URL and see what that URL looks like.
– Scott Marcus
Mar 26 at 22:35
Looks like same. Doesnt change anything: localhost:9090/api/employees/ERNEST%20A%2FL%20I.G.%20MILLER,/1/…
– Faisal Mehboob
Mar 26 at 22:41
Any help would highly be appreciated
– Faisal Mehboob
Mar 27 at 20:01