Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6084831
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T11:34:10+00:00 2026-05-23T11:34:10+00:00

I am trying to get SRV records from a DNS server using JNDI. Hashtable<String,

  • 0

I am trying to get SRV records from a DNS server using JNDI.

Hashtable<String, String> env = new Hashtable<String, String>();
env.put("java.naming.factory.initial", "com.sun.jndi.dns.DnsContextFactory");
env.put("java.naming.provider.url", "dns://dns.server.com");
DirContext ctx = new InitialDirContext(env);
Attributes attributes = ctx.getAttributes("_sip._udp", new String [] { "SRV" });
return attributes;

But when trying to get attributes I get the following exception

DNS error [Root exception is
java.net.PortUnreachableException:
ICMP Port Unreachable]; remaining name
‘_sip._udp’

I have verified host -t srv _sip._udp.server.com returns valid SRV record.

Any reason as why this might happen?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T11:34:10+00:00Added an answer on May 23, 2026 at 11:34 am

    One of the following: dns.server.com not a valid DNS server, does not have a SRV record for _sip._udp, the DNS service does not respond on port 53 (standard DNS port) or your Java code is wrong.

    To diagnose DNS server troubles, you could try host -t SRV _sip._udp.server.com dns.server.com or dig @dns.server.com -t SRV _sip._udp.server.com to confirm that the server works.

    If host or dig return the expected entry, try the following changes to your code:

    Change:

    env.put("java.naming.provider.url", "dns://dns.server.com");
    

    To:

    env.put("java.naming.provider.url", "dns:");
    

    (i.e., just use your OS’s standard DNS resolution)

    Change:

    ctx.getAttributes("_sip._udp", new String [] { "SRV" });
    

    To:

    ctx.getAttributes("_sip._udp.domain.com", new String [] { "SRV" });
    

    as SRV record require a domain name to search, so you’d end up with:

    Hashtable<String, String> env = new Hashtable<String, String>();
    env.put("java.naming.factory.initial", "com.sun.jndi.dns.DnsContextFactory");
    DirContext ctx = new InitialDirContext(env);
    Attributes attributes = ctx.getAttributes("_sip._udp.domain.com", new String [] { "SRV" });
    return attributes;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to get parameters from a PUT request using HttpServlet#doPut: public void doPut(HttpServletRequest request,
I'm trying get values from a GridView using the following code: foreach (GridViewRow row
I am trying get content from the link https://....com:8455 where Server's certificate is not
I'm trying get bytes from bitmap in blackberry using the next method in Bitmap:
Trying to get this example working from http://www.munna.shatkotha.com/blog/post/2008/10/26/Light-box-effect-with-WPF.aspx However, I can't seem to get
Hi am trying get GPS using network provider and GPS provider. but am getting
When I'm trying get method from remote webservice it gives me error. My code
I'm using WSGI and trying to access the get/post data, using this code: import
Ok, I just bought the new 27 inch iMac and I am trying get
Trying to get JQuery to post JSON to a server: $.ajax({ url: /path/to/url, type:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.