Thanks you so much for sharing such a wonderful knowledge in simple terms...it's really helpful....thanks once again.
@MaricruzSoileau-o9f3 ай бұрын
Franz Mission
@aspa-n-fyt77853 ай бұрын
too late to ask since the video was posted 9 y ago... 5:57 you show that CompoundName is used within one naming system 11:57 the table shows opposite Is it mistake?
@ValrieFantin-m5t3 ай бұрын
Elmer Mountain
@DoddAndy-j8f3 ай бұрын
Vince Lodge
@JahanJahan-f7l3 ай бұрын
Abraham Bypass
@DillonHuckstadt-y7g3 ай бұрын
Cronin Views
@BenjaminSusan-w5l3 ай бұрын
Rippin Pines
@arazmammadov92764 ай бұрын
I watched all videos and still didnt understand where do we need to use JNDI
@arazmammadov92764 ай бұрын
2024
@jatinbansal40716 ай бұрын
English was very difficult to understand.
@ruixue69556 ай бұрын
3:30 code demo 4:06 (naming) *service provider* configuration 5:28 in this example case, 5:38 specify: use file system as service provider
@saurabhwani91462 жыл бұрын
Thanks this entire series is very helpful 👍👍👍👍
@rallokkcaz3 жыл бұрын
Oof if you're here now.
@PlacidoYT3 жыл бұрын
I visited this to understand how it works with the current log4j vulnerability. Thanks man!
@roshanrajkumar78273 жыл бұрын
Same here, did u understand log4j?
@svalyavasvalyava98673 жыл бұрын
Thank you!!!
@svalyavasvalyava98673 жыл бұрын
Thank you very much!!!
@j.r.fernandez24533 жыл бұрын
Nice video! Thx!
@TheKraetos4 жыл бұрын
@10:07 For fucks sake what language are you speaking
@ashishburnwal90105 жыл бұрын
Thank you for clear explanation, I have one question, let say I have a web-app called myApp, and it contains a context.xml. And during deployment the name of the context.xml is automatically changed to myApp.xml. Then how does the context lookup happens, given we are doing it with Context envContext = (Context)initContext.lookup("java:comp/env"); How java:comp/env does all the magic?
@PriyankaShinde-mp6lt5 жыл бұрын
I have created a topic in jms module in weblogic but while searching with it's jndi name I'm not able to lookup the topic. How to lookup that topic? Thank you..
@ruixue69555 жыл бұрын
4:30 naming service 9:50 directory service 12:29 jndi 13:00 how and who - service provider 14:00 JDK provider 14:59 dependencies needed
@Amd1075 жыл бұрын
It would have been better if subtitles were provided, your accent is sometimes difficult to understand.
@test3samcom1315 жыл бұрын
Can You Please Give Coding Understanding Of jNDI. How Can We Configure it. Why We havae to use JNDI
@noureddinelahia20366 жыл бұрын
good work thanks
@annakushnir84286 жыл бұрын
Hello! great videos! Very helpful :) unfortunately the LDIF file is not reachable, could you please provide it? Than you in advance :)
@IqbalHamid6 жыл бұрын
I hope no-one called Steven is watching this, lol.
@IqbalHamid6 жыл бұрын
@05:09 Why are we now providing MonkeyFactory.class.getName as a parameter to our constructor call of the Reference() class? Can anyone please explain?
@alena.s.ryzhkova6 жыл бұрын
The best series video about JNDI on youtube
@reyazahmed93206 жыл бұрын
Please add subtitles. Difficult to get what you are saying. Thanks for the video
@SouravSahay6 жыл бұрын
Very good! One of the nice things about this video is that the presenter has deliberately taken us through the concepts step-by-step.
@aaroldaaroldson7086 жыл бұрын
4:08 We may access the Naming Service with anus service provider??? What are you saying??? Fix your audio or add subs PLEASE!
@aaroldaaroldson7086 жыл бұрын
I can't understand what you are saying. Could you please add subs?
@flaviustopan14887 жыл бұрын
the LDIF file doesn't exist anymore...
@cdubose03117 жыл бұрын
The LDAP File link says it is unavailable.
@muhammadfaisalhyder40127 жыл бұрын
good video, but please don't try to be English, it sounds pathetic.
@cherrishtyn99827 жыл бұрын
he sounds just fine to me
@anitmohanty73996 жыл бұрын
Everybody is all praises for this video but you just had to criticize isn't it ?
@Amd1075 жыл бұрын
you want him to speak in Italian so that 90% of the general population does not understand? Dumbass.
@ahmedjaad49402 ай бұрын
No Muhammad you're pathetic
@nowpadamuralikumar44067 жыл бұрын
Very Nice Explanation.
@comstockbillo51978 жыл бұрын
Great tutorial
@shyam123ful8 жыл бұрын
Really good tutorial.... Thanks a lot for taking your time to make this...
@raviranger529 жыл бұрын
Great Great tutorial
@galmalachi48599 жыл бұрын
great video! thanks
@galmalachi48599 жыл бұрын
thank you very much! very helpful and well explained!
@NNSNNS149 жыл бұрын
The best explanation of JNDI!
@mateen1ns9 жыл бұрын
Good one , Thanks... :)
@bluebone299 жыл бұрын
Thumbs up.
@takuntorfred22129 жыл бұрын
Sir I am using your tutorial to learn jndi. I have set up my code exactly as your own. But when I run it gives a null pointer exception. I am pasting the code below for your review. Please help; Thanks. import javax.naming.Context; import javax.naming.InitialContext; import javax.naming.NamingException; import java.util.*; public class Ctxclass{ public static void main(String[] args) throws NamingException { Hashtable <String,String> env= new Hashtable<String, String>(); env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.fscontext.RefFSContextFactory"); env.put(Context.PROVIDER_URL,"file:/C:/"); Context ctx = new InitialContext(env); Driver xyz = new Driver("princeton", "rav4"); ctx.bind("best driver", xyz);}} import javax.naming.NamingException; import javax.naming.Reference; import javax.naming.Referenceable; import javax.naming.StringRefAddr; public class Driver implements Referenceable { String name; String model; Driver(String name, String model) throws NamingException{ this.name = name; this.model = this.model;} @Override public Reference getReference() throws NamingException { Reference bill = new Reference(Driver.class.getName()); bill.add(new StringRefAddr(name, this.name)); bill.add(new StringRefAddr(model, this.model)); return bill;}} Exception in thread "main" java.lang.NullPointerException at java.util.Hashtable.put(Unknown Source) at com.sun.jndi.fscontext.RefFSContext.addObjectToBindings(RefFSContext.java:517) at com.sun.jndi.fscontext.RefFSContext.bindObject(RefFSContext.java:337) at com.sun.jndi.fscontext.RefFSContext.bind(RefFSContext.java:169) at com.sun.jndi.fscontext.FSContext.bind(FSContext.java:167) at javax.naming.InitialContext.bind(Unknown Source) at Ctxclass.main(Ctxclass.java:22)
@jedu13529 жыл бұрын
Takuntor Fred I'd try working with D:\ partition. Windows can be very tricky and restrictive about creating files at root of C partition.
@takuntorfred22129 жыл бұрын
jEdu Thank you so very much sir. Thank you for responding. I tried your suggestion and it worked perfectly.Thanks. I'm really grateful.
@bellalzohir48959 жыл бұрын
Nicely explained! Thankxx if you have time please can you send me the document (slide ) i need it because i have project in my universty about JNDI . thank you for all
@takuntorfred22129 жыл бұрын
Thank you Sir. Good simple practical explanation. Even a novice like me can understand. Thank you.
@antonrybakov859 жыл бұрын
Which your diagonal monitor in inch and resolution? Thx!