These are one of the best tutorials I have ever watched
@SuperCoderFromScratch4 жыл бұрын
Thanks so much for the feedback! :)
@jameswilliam45704 жыл бұрын
Working on a project that involves these web socket servers, and this tutorial series is my go to resource. You are the best.
@SuperCoderFromScratch4 жыл бұрын
Thnaks so much for the comment ! I really do appreciate it! Part 6 out this week!
@tropicaljupiter3 жыл бұрын
Great video! Very helpful for beginners.
@SuperCoderFromScratch3 жыл бұрын
Thanks so much ! Glad it was helpful!
@akshitapradeep71154 жыл бұрын
Loving these videos! Thanks again
@SuperCoderFromScratch4 жыл бұрын
No problem ! :D Thanks for the feedback!!
@akashmandal525310 ай бұрын
Great work sir🙏🏼
@SuperCoderFromScratch3 ай бұрын
Thanks a lot!
@satejbhave41664 жыл бұрын
Love Your Videoes.... Keep it up bro...
@SuperCoderFromScratch4 жыл бұрын
Thanks so much for the feedback!!!! Will do!!!
@johnniegilkerson47244 жыл бұрын
@9:19 how did you get the browser output? I it through Intelij or just typing in localhost/8080?
@SuperCoderFromScratch4 жыл бұрын
Hi @Johnnie , not sure I understand the question. We connect the Browser to the Server we got running inside IntelliJ by using the URL : localhost:8080 , which is where the server is Bound to. Hope this helps!
@neaguandrei14 жыл бұрын
For me the CRLF string must be " ". With " " it fails to serve correctly. Good video though. I wish there would be more to this series.
@SuperCoderFromScratch4 жыл бұрын
Thanks so much for the comment. You are absolutely correct. That was clearly an error and should have been ( as the comment afterwards says , 13 and 10 ) . Thanks so much for point it out. On the next video of the series I'll call out this correction and a give you a shout-out!
@trayfor3 жыл бұрын
thanks
@svetlintrapkov33332 жыл бұрын
@@SuperCoderFromScratch I will be really greatful if you enlighten me which dipendency did you use for CRLF. Thanks
@federicobigatton64408 ай бұрын
Hello, I can't load the page when I run the application. I reviewed the code and it is exactly as in the tutorial. I have corrected " " to " ". My browser is Firefox 125.0.2. You can help?
@federicobigatton64408 ай бұрын
I already found my mistake, in the HTTP message... I had encoded "Content-Lenght"...
@SuperCoderFromScratch3 ай бұрын
Nice catch !
@giovanniangaroni76493 жыл бұрын
i code that program with Eclipse and when i run it immediatly it terminats it doesn't give any Error but stops istantly i would it works until i stop it by sending something on chrome
@trayfor3 жыл бұрын
It happened with me on Microsoft Edge. I opened it on a different browser and it worked. It also worked on Microsoft Edge's inPrivate mode. I believe he miss-typed the carriage return in the video. CRLF should be ' ' not ' '. This might help it run on all browsers.
@SuperCoderFromScratch3 жыл бұрын
Hey thanks so much for helping out! Yeah, that was a bug, which got correct in video 6 or 7.
@aishwarygupta19 Жыл бұрын
👍👍
@SuperCoderFromScratch3 ай бұрын
Thank you!
@sajjadaminsayem3 жыл бұрын
It just works on chrome, but I failed to get a response in Microsoft edge and Postman client.
@SuperCoderFromScratch3 жыл бұрын
It is probably due to a bug that is explained in a later part of this series. :)
@pianissimo71213 жыл бұрын
@@SuperCoderFromScratch thats actually nice. when learning with a perfect code, we don't learn what to do when stuff goes wrong.
@BłażejChmielewski5 ай бұрын
its open eyes when i always using springboot
@SuperCoderFromScratch3 ай бұрын
Its nice to look under the hood, isn't it?
@dystopic-q9m4 жыл бұрын
hectic
@SuperCoderFromScratch4 жыл бұрын
Very
@Pushpinator2 жыл бұрын
Seeing someone closing resources in the try block is my new nightmare. You should really have at least warned that it's a horrible practice and to always do it in finally, or even better, use try-with-resources
@SuperCoderFromScratch2 жыл бұрын
Hey, Thanks for the feedback! I haven't look at this code in some time so I'm trying to think why I would have done it that way. Maybe I only want to cleanup resources on an exception and not using finally , which would close it even if no exception was raised? Anyways, thnak for point this out, I'll pay closer attention in the next video and will review the old code with this in mind.