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;








1















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.










share|improve this question


























  • 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

















1















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.










share|improve this question


























  • 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













1












1








1








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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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

















  • 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












1 Answer
1






active

oldest

votes


















0














Try to add this to your web.config



<modules runAllManagedModulesForAllRequests="true" />





share|improve this answer

























  • 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










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
);



);













draft saved

draft discarded


















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









0














Try to add this to your web.config



<modules runAllManagedModulesForAllRequests="true" />





share|improve this answer

























  • 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















0














Try to add this to your web.config



<modules runAllManagedModulesForAllRequests="true" />





share|improve this answer

























  • 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













0












0








0







Try to add this to your web.config



<modules runAllManagedModulesForAllRequests="true" />





share|improve this answer













Try to add this to your web.config



<modules runAllManagedModulesForAllRequests="true" />






share|improve this answer












share|improve this answer



share|improve this answer










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

















  • 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








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.



















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현