Thank you for the tutorial! It's so great to finally find a video where someone takes their time and carefully explains as they go and works out their mistakes too. Much appreciated Mike, keep up the good work!
@MikesTechCorner4 жыл бұрын
Glad it was helpful! :-)
@charlottec.8168 Жыл бұрын
Thank you! A very clear and informative step-by-step tutorial that is very accessible to beginners! Many thanks.
@MikesTechCorner Жыл бұрын
Glad it was helpful! :) Thx for commenting
@jamilarichards44634 жыл бұрын
Appreciate the walkthrough of XML and XMD!! Took a while to find a video that actually made sense and wasn't overwhelming :) Thanks for helping me with an exam!
@MikesTechCorner4 жыл бұрын
Glad to hear it! :-)
@jianmintu32362 жыл бұрын
Thank you Mike. I have been searching for xml schema this weekend and wasted many hours but it was fortunately I found your video, specially clarity about elementFormDefault. Thank you and subscribed your channel!
@MikesTechCorner2 жыл бұрын
Glad it helped!
@ci0nn4414 жыл бұрын
Greetings from Poland. U helped me a lot. Thank you master
@MikesTechCorner4 жыл бұрын
You are welcome! Join our discord server to chat with other geeks! I have made a xml channel. discord.gg/FWzFMgyHar
@kbhardwaj19895 жыл бұрын
awesome tutorial. Loved the way you explained master :)
@MikesTechCorner5 жыл бұрын
Thank you very much. :-) I think that the XML format didnt get a fair treatment when Json and protobuffer became popular. All formats are good for representing data. And the older the tech is, the larger the eco-system is.
@kbhardwaj19895 жыл бұрын
@@MikesTechCorner truly said.
@BelegaerTheGreat Жыл бұрын
Shouldn't at 12:30 it be DOUBLE for price and STRING for currency? (Except that, brilliant video, really helped me!)
@MikesTechCorner Жыл бұрын
Yes. Thank you for watching
@minhajsixbyte6 ай бұрын
5:43 does that mean i need internet connection to work with the namespace? because its an web address?
@MikesTechCorner6 ай бұрын
You can place your files locally and ref. them in the xsd / xml
@daves40262 ай бұрын
Awesome! I’m looking for xml xmi for a spark ea model interchange
@MikesTechCorner2 ай бұрын
Sounds interesting. XSD's are great for having conversations with other teams / business areas.
@mustafailikkan70684 жыл бұрын
Great video Mike, thanks for the effort!
@MikesTechCorner4 жыл бұрын
Thanks for watching! :-) Join my discord. discord.gg/QPMf8ETCJa
@iammaja00793 жыл бұрын
Thank you very much. Was really helpful :)
@MikesTechCorner3 жыл бұрын
Glad it helped! :)
@bongotsav75354 жыл бұрын
Thanks a ton for the superb walkthrough! 👍🏼
@MikesTechCorner4 жыл бұрын
My pleasure! :-)
@ricojaylumiguid16953 жыл бұрын
thank you very much! I have a question about Schema-wide Attributes? what is that thing?
@MikesTechCorner3 жыл бұрын
If you define a type it can be used through the whole schema. These types can be placed in other files.
@AD-je9nq Жыл бұрын
Hello Mike , This is great video for XML/XSD . Thank you so much ! .I had a quick question - How can we use xsi in soap request for example InactiveCustomerInactiveUsername and a response like this : EEEE YOur inputs will be greatly helpful !
@MikesTechCorner Жыл бұрын
Try watching my SOAP video. In others words: I don't know from the top of my head :)
@AD-je9nq Жыл бұрын
@@MikesTechCorner Thank you for responding Mike , much appreciated ! Since this was XML/XSD related i posted here , will try the Soap videos , hope tp find an answer :) Thanks again !
@AD-je9nq Жыл бұрын
Hello Mike , Watched your Soap Videos , couldn't find any which talked about adding the xsi:type="xsd:string" to an element , would be great if you can help in this . Even just a simple tag ex will be of great help ! Thanks much
@MikesTechCorner Жыл бұрын
@@AD-je9nq I'm playing with cloud tech these days. So I can't dig into SOAP / XML right now :)
@AD-je9nq Жыл бұрын
@@MikesTechCorner No worries Mike . Hope to find a solution soon . Thank you !
@430981084 жыл бұрын
Thanks for the lesson, much appreciated!!
@MikesTechCorner4 жыл бұрын
My pleasure! :-)
@utkucansa2 жыл бұрын
Dear Mr Nielsen, thanks for this video. Is there any way, where one can extract a data model automatically out of xsd? We have a xsd file with 5000 rows and many many tables in it. Any suggestion can help. Thanks beforehand for your valuable answer.
@MikesTechCorner2 жыл бұрын
Yes this is where we get the pleasure to write a small python program that can get what you want. :-) You could also check out xml-spy... I'm not a fan tough
@bivasbisht12443 жыл бұрын
awesome explanation !
@MikesTechCorner3 жыл бұрын
Glad you liked it!
@talllpaul19654 жыл бұрын
I only have the Community Edition of Intellij, are the XML/XSD characteristics only in the Ultimate version?
@MikesTechCorner4 жыл бұрын
No you can use the communitt edition and get xml and xsd code completion
@supernova845 жыл бұрын
Great video, very clear.
@MikesTechCorner4 жыл бұрын
You are welcome
@dudulofuu4 жыл бұрын
Well done, Big Mike!
@MikesTechCorner4 жыл бұрын
lol thx
@nezcobar2 жыл бұрын
mange tak!
@MikesTechCorner2 жыл бұрын
Velbekomme :)
@denizhanmsrloglu47754 жыл бұрын
Im looking for a restriction like either "" (empty) value or digit value . Is there any way to do it.
@MikesTechCorner4 жыл бұрын
Yes! You can use regular expressions
@DMoneys363 жыл бұрын
very helpful tutorial. thank you
@MikesTechCorner3 жыл бұрын
Glad it was helpful!
@adigunademola83603 жыл бұрын
Hi i was wondering, how can i use XSD to pre-validate XML request made to an api please ive been looking around for a solution. Please help
@MikesTechCorner3 жыл бұрын
You can use IntelliJ to validate an xml against its xsd. Just add the xsd reference in the top of the file. Im showing how to do that in one of the videos. You can also do it programmatically with JAXB or Jackson. Finally there are online validators where you upload the xsd and xml and then you get the xml validated.
@MrAlipatik5 жыл бұрын
btw, do you mind me asking. What is that xsd tool you are using on this video?
@MikesTechCorner5 жыл бұрын
Im using IntelliJ.
@MrAlipatik5 жыл бұрын
@@MikesTechCorner thanks! subscribed.
@IamPinakapani4 жыл бұрын
Bro what source are you using to write and execute the program
@MikesTechCorner4 жыл бұрын
IntelliJ community edition will do
@xtienpham3 жыл бұрын
Thank you for the tutorial!
@MikesTechCorner3 жыл бұрын
My pleasure!
@tomsimonis3 жыл бұрын
Nice video. Thanks!
@MikesTechCorner3 жыл бұрын
np. thx for watching
@gustavolopez87694 жыл бұрын
Thank you!! great explanation!
@MikesTechCorner4 жыл бұрын
You're welcome! :-)
@BrianPondiGeoGeek4 жыл бұрын
Great content
@MikesTechCorner4 жыл бұрын
Thank you. Feel free to join my discord. :-) discord.gg/K3nztZC
@BrianPondiGeoGeek4 жыл бұрын
@@MikesTechCorner Done
@MrAlipatik5 жыл бұрын
thanks very informative..
@MikesTechCorner4 жыл бұрын
You are welcome
@mikolajx154 жыл бұрын
salvation for polish students
@MikesTechCorner4 жыл бұрын
Happy to hear. Join my discord: discord.gg/SS57PEh9hf
@dernako1002 жыл бұрын
I am not born or raised in an english speaking country. Im sure your target audience understands you, but for foreign people it would be great if you would mumble less and speak more clearly. Thank you, great video!
@MikesTechCorner2 жыл бұрын
I will. Sorry.
@dernako1002 жыл бұрын
Edited my original comment, after rereading it sounded too mean. Great videos still!