Providing DNS Service

Hello,
I am come across some RFPs for Internet service where one of the requirements is for the ISP to provide  DNS service to the customer.  Is this something as simple as giving them the IP address of a DNS server to use or could it be something more?
Thanks in advance.  All replies rated.

Hello,I
am come across some RFPs for Internet service where one of the
requirements is for the ISP to provide  DNS service to the customer.
Is this something as simple as giving them the IP address of a DNS
server to use or could it be something more?Thanks in advance.  All replies rated.
Hi,
If you see the concepts of DNS in internet is when ever you want to host your web server in internet and you dont have authorative dns server with you then we ask some of the ISP's to become a authorative DNS server for your web server which is exposed to internet.so when ever a request comes for your web site the authorative DNS server's ISP will resolve and provide the ip address of your web server to users.
and if you have DNS server at you own datacenter then we ask the root DNS server in internet to redirect the traffic for your web site to your own DNS server so that it can resolve the page and provide the ip address.
Hope to Help !!
Ganesh.H

Similar Messages

  • How to get Airport Extreme to Provide DNS for Static DHCP

    I set up some static DHCP entries on my Airport Extreme 802.11n.  How do I make it provide DNS resolution for these devices?
    For example, I defined a device which I named "tvpc".  With my old router, once I added a static DHCP reservation and provided it with a name, I could "ping tvpc" from any device on my network, and my old router would provide the DNS resolution, because it provided DNS service for all DHCP entries.
    I suspect that the answer is, "Apple routers don't do this."  If that is the case, how do other people get name resolution for the non-Apple devices you set up with static DHCP?  Do you use /etc/hosts files? 

    I set up some static DHCP entries on my Airport Extreme 802.11n.  How do I make it provide DNS resolution for these devices?
    "Apple routers don't do this."
    how do other people get name resolution for the non-Apple devices you set up with static DHCP?
    They don't.
    Suggest that you use another router with the capabilities that you need.

  • How to resolve a host name from IP using JNDI/DNS service provider

    Hi
    I got two questions on JNDI/DNS service provider:
    1) How to resolve a host name when i got an IP
    I understand How I do it inverse.
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.dns.DnsContextFactory");
    env.put(Context.PROVIDER_URL, "dns://"+server+"/"+domain);
    DirContext ictx = new InitialDirContext(env);
    Attributes attrs1 = ictx.getAttributes(host, new String[] {"A"});
    2) This example above works when I specify the domain in the provider url.
    If I am not specifing a domain but only the dns server I got an NameNotFoundException.
    What should I do if I don't got the domain?
    get the availible domains and loop on them?

    Hi,
    if your DNS server supports that, you can do a reverse DNS lookup. This works as follows:
    String server = "your.dns.server";
    String domain = "in-addr.arpa";
    String ip = "4.3.2.1";
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.dns.DnsContextFactory");
    env.put(Context.PROVIDER_URL, "dns://" + server + "/" + domain);
    DirContext ictx = new InitialDirContext(env);
    Attributes attrs1 = ictx.getAttributes(ip, new String[] {"PTR"});1: Use the pseudo-domain in-addr.arpa
    2: Use the reverse IP address for lookup, i.e. if your host has 1.2.3.4, use 4.3.2.1!!
    3: Request the PTR attribute
    see also [http://en.wikipedia.org/wiki/Reverse_DNS_lookup|http://en.wikipedia.org/wiki/Reverse_DNS_lookup]
    Martin

  • Java Web Start and DNS Service Provider

    I have an implementation of a DNS Service Provider that works fine as an Application. But when deployed as an applet or application through Java Web Start, it is not picking up the DNS provider override
    It is like this. I have a Simple Test Program
    dabba#cat Test.java
    import java.net.*;
    import sun.net.spi.nameservice.NameService;
    import sun.net.spi.nameservice.dns.DNSNameService;
    public class Test {
    public static void main(String args[]) throws Exception{
    try {
    System.setProperty("sun.net.spi.nameservice.provider.1", "dns,mine");
    InetAddress ia = InetAddress.getByName(args[0]);
    System.out.println(ia);
    catch(Exception e) {
    System.out.println("in exception handler" + e);
    dabba# cat MyNameService.java
    import sun.net.spi.nameservice.NameService;
    import sun.net.spi.nameservice.dns.DNSNameService;
    import java.net.UnknownHostException;
    public class MyNameService implements NameService {
    static {
    //System.setProperty("sun.net.spi.nameservice.nameservers", "localhost"); // ETL
    NameService ns;
    public MyNameService() throws Exception {
    ns = new DNSNameService();
    public byte[][] lookupAllHostAddr(String host) throws UnknownHostException {
    System.out.println("*** lookup host = " + host);
    byte[][] a = new byte[1][4];
    a[0][0]=(byte)127;
    a[0][1]=0;
    a[0][2]=0;
    a[0][3]=(byte)1;
    System.out.println("return a.length = " + a.length);
    return a;
    public String getHostByAddr(byte[] addr) throws UnknownHostException {
    throw new Error("not implemented");
    dabba#cat MyNameServiceDescriptor.java
    import sun.net.spi.nameservice.*;
    public final class MyNameServiceDescriptor implements NameServiceDescriptor {
    public NameService createNameService() throws Exception {
    return new MyNameService();
    public String getProviderName() {
    return "mine";
    public String getType() {
    return "dns";
    dabba#cat META-INF/services/sun.net.spi.nameservice.NameServiceDescriptor
    # dns service provider descriptor
    MyNameServiceDescriptor
    dabba# java -cp . Test www.sun.com
    *** lookup host = www.sun.com
    return a.length = 1
    www.sun.com/127.0.0.1
    So the above program works as intended as an application. Whatever hostname I specify, it returns localhost. Now, I'm not able to get this to work when I embed this in an Applet or Application launced through Java Web Start. Am I missing something
    thanks,
    Balaji

    We are trying to do the same thing for a different purpose. You need to set the override sooner than WebStart lets you... It has to be on the command line.
    We are trying to overide the default nameservice because it uses reverse dns which is slow at some of our sites. We need to set the parameter
    sun.net.spi.nameservice.provider.1=dns,sun before the VM starts using webstart. The only way we can do this is by setting the environment variable
    JAVAWS_VM_ARGS=-Dsun.net.spi.nameservice.provider.1=dns,sun on the client. This is not real easy from the server side.
    Is there any way we can make the client default to this nameservice provider? There must be some file somewhere on the client I can put this property in...

  • Is a Dynamic DNS Service included in my FiOS Bundle?

    I have the FiOS TV, Phone & Internet Bundle (internet upgraded for $5 extra for faster speeds) and switched from Cable.
    I know that Cable provided all of their Boost internet premium speed customers with a bundle of goodies, including a Dynamic DNS service.
    Does Verizon offer Dynamic DNS service included as well?
    If not, which is easiest to use (I have a Mac running OS X 10.5.7)
    I noticed that my FiOS Router Firmware has Dynamic DNS section, but it's very unclear as to if it is meant for a Verizon specific service or a third party service.
    Please advise; thanks! 
    --> Screenshot of Verizon Router Firmware screen - click here. 
    Message Edited by FireFish on 06-02-2009 01:22 AM
    Message Edited by FireFish on 06-02-2009 01:22 AM

    That screen you captured is where you would enter your dyndns.org account info and thereby get dynamic dns running on your setup.
    It's not really accurate to say the service is 'included' in the bundle, it's just that the router is capable of talking with this 3rd party service - most routers can do so nowadays.

  • I have DHCPand DNS services in a router and I want to install domain controller

    Hello
    I have a sonic wall router managing the DHCP and DNS services for a my network and wanna keep it doing this.
    I have a computer running windows server 2012 standard and installed active directory along with DNS. I also went to the DNS manager of these server and forwarded the DNS addresses of my router.  For some reason I'm not able to join a client computer
    into the DC.
    I got this error:
    An Active directory domain controller (AD DC) for the domain "mydomain.ca"  could not be contacted.
    Is it possible to configure active directory using the DNS and DHCP services of my router? or Am I doing something wrong?
    Can somebody helping me with this matter?
    Thanks.

    Hello,
    if the DNS server on your router is able to provide all required zones, SRV records and options that the DCs require there is no problem using 3rd party DNS servers.
    But I would recommend that you u se the DC as DNS server also and just run the installation during the promotion process.
    All clients MUST use the domain internal DNS servers on the NIC NONE else otherwise you will run into trouble. Internet access will be done via the FORWARDERS on the DNS server properties in the DNS management console on the Windows Server.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • DNS Services

    Can the Time Capsule be configured for DNS duties.. for devices on LAN?
    Currently I have Time Capsule in bridge mode; connected to another router (a BT HomeHub which provides rather nifty DNS server) but I would like to ditch the HomeHub and use just a basic ADSL modem instead.
    Can anyone recommend a good ADSL modem for use with Time Capsule for connection to BT in UK?
    Many thanks

    your DHCP device can be defined to pass along additional DNS server location to your Mac's or PC's. In bridge mode, your getting DHCP from your up stream device. Setting up your network to require your Mac's and PC's to query the TC for DNS can be done, but all that does it add a hop in which the TC has to relay that request upstream. The TC does not have a DNS service in which it stores DNS entries and builds DNS tables on the fly.
    if your ISP connection is ethernet cat5 or cat6, and your ISP provides DNS, why not just dump your hub and use the TC as your internet gateway? to do this, you would need to have your ISP register the mac address of your TC and change the config to share a single IP address instead of bridge mode.
    do a config save before you make any changes in case you need to reload your old config. some times mac address changes by your ISP takes hours and you may not want to wait.

  • Windows Server 2008 R2 DNS service issue with BitLocker

    I recently installed BitLocker on a Windows Server 2008 Platform. I did not encrypt the boot partition because the server hardware BIOS did not have the necessary requirements to encrypt the system drive.
    The Server roles are ADSM, DC and File Server. For DC operation I am also running the DNS service.
    When I installed the DNS role I was prompted to install the Log files on a different volume than the OS. I did this, but unfortunately, it was the same volume that was encrypted.
    Since I could not encrypt the system disk, the encrypted volume must be unlocked via password in order to mount. Here in lise my problem.
    When I do a full reboot of the server, I get to the point in the boot process where my mouse is visible and operational (this would be just before the Windows OS logo displays, I believe), then the server reboots. On the next boot up I am given the diagonstics
    and recovery dialog because the OS failed to boot.
    I believe the failure is the DNS service trying to launch, but because the log files are on the encrypted drive and it has not been unlocked, the system sees this as a security problem and reboots
    Does this make sense? If it does, is there a way to boot 2008 R2 with the DNS service disabled, say with the original install disk in recovery mode?
    Any help would be greatly appreciated as this system cannot be booted in its current state.
    Peter C. Hesse Network/Systems Administrator

    Hi,
    I believe you mean the Active Directory Logs not the DNS logs, because these are necessary to startup a domain controller, because the AD database depends on these logs.
    So if you have AD logs on a different partition and that is encrypted with Bitlocker you could probably automatically unlock it.
    So you did not encrypt OS partition because the server does not have a TPM fully compliant chip ?
    manage-bde /?
    manage-bde -autounlock -enable Driveletter:
    But you have to be able to boot server normal mode I am not sure if the command can be used in DSRM mode.
    Below are some links that might help:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/c52ffc7d-f822-4b61-b633-46f8e04eac80/bitlocker-for-domain-controller
    Hope this helps.
    Regards,
    Calin

  • I want to use Back to my mac. When I try to turn it on, it says "Back to My Mac may be slow because more than one device on your network is providing network services.   Turn off NAT and DHCP on one of the devices and try again." How do I fix this?

    Not sure if I am doing this right. This is my first time in the support community.
    I imagine what I put in my heading was supposed to go in here.
    I want to use Back to my mac. When I try to turn it on, it says "Back to my mac may be slow because more than one device on your network is providing network services. Turn off NAT and DHCP on one of the devices and try again. See the documentation that came with your device for information about turning off network services"
    Does anyone know how I do this? I contacted my ISP (Telus in Canada) and they did not know anything (not that they usually do).

    Why do ISPs insist upon making things so difficult for their customers?
    If you cannot get them to understand that you would prefer to use your own router over their piece of cheap junk, perhaps the information in the following will be useful:
    http://keithbalomben.wordpress.com/2012/03/29/telus-actiontec-v1000h-hacks-and-i nformation/
    Scroll down to DHCP Settings
    You will need to log in with proper "technician" credentials. They are provided in the above link as
    Username: tech
    Password: t3lu5tv
    ... but these may or may not work. Try it, and if you cannot get anywhere at least now you know what to ask Telus to do in return for your business.

  • How can the FFC possibly force Verizon to provide the service I've paid for?

    So it seems that Verizon is quite fond of giving their customers alot of ******** and runaround in order to avoid providing the service they claim to be selling. After spending a TORTUROUS full hour of my time speaking with a customer service rep AND paying an ADDITIONAL $30 to continue having phone service I STILL don't have what I paid for, and customer service will not accept a third call from me today. SO, I have gone ahead and filed a complaint with the FCC. I didn't feel the need to make this a community discussion, but evidently this is the only way to inform this god awful swindling sleaze-ball company of my discontent.
    Here are the details of the complaint I have presently filed: "I purchased an upgraded smart phone and added a $70 card for unlimited talk, text and 4 gigs of data usage. I was NOT moved on to the $70 plan printed on the card I purchased and was additionally billed for every call, text and data transfer until my previous $20 overage balance was reduced to nothing. When I spoke with their customer service, I was told that they would fix the error if I paid an additional $20. I purchased ANOTHER $30 card(the location I was at only had $15 and $30 increments) and added it to the phone. I called BACK customer service to make sure I would no longer be charged for the unlimited service I paid for. As it sits at this moment, my account says I have unlimited talk and text, BUT my data is next to empty AND the overage balance is UNDER $1. In summary: that's $70 for the plan I wasn't given, $20 for the charges I wasn't supposed to incur, and $30 for the extra money they insisted I pay to continue service."
    Does anybody SEE this?!?! I PAID $70 for unlimited talk, text and 4 gigs of data, period. That should be the end of it, I should HAVE that right now and not be fighting to GET it... What I have RECEIVED is billing through $20 that should not have been touched. I then had to ADD $30 MORE and I STILL don't have data reflected on myverizon AND the dollar balance on my account is under $1. So instead of paying $70 for unlimited talk, text and 4 gigs, I have paid $120 for unlimited talk, text and ZERO data AND an almost empty overage balance.

    Again: I don't start out this way. I don't TALK this way, but when I've been patient and polite on the phone for a FULL hour, and they STILL don't fix my problem, and I call back and get a robot voice telling me to go online... I'm going to vent. You see?
    When I say it costs next to nothing, what I mean is that price fixing is occurring at the highest levels by financiers who have a monopoly on literally everything for sale. There's no REAL WORLD value behind the costs. That wasn't the focus of this complaint because I've fully accepted that the vast majority of society is far too fluoridated and indoctrinated to have critical thought processes. I'm sorry for mentioning it because the problem is bigger than the imaginations of anyone who will read this.
    What I want to focus on is the end of the line robbery occurring in my immediate, direct experience in this moment where my account should rightfully have 4 gigs of information and $50 credit waiting for me because I paid for it. I live in the sticks. I LIKE it out here away from the metropolitan taxpayer zoo. I HAD a (removed) phone from (removed) when I moved out here and frequently wouldn't GET incoming calls. When they actually DELIVER the service I normally pay for, I'm not dissatisfied. I achieve communication. It's pretty cool... but since I've gone ahead and upgraded to a smart phone they've withheld the service I've paid for and charged me $50 for NOTHING at all. That's THEFT. Flat out.
    How I handle it??? You mean by being polite on the phone while they explained to me that I would have to pay an additional $20 AFTER the $20 they falsely charged me in order to have the plan I already paid for? You mean when I went ahead and withheld every thought in my head to call them out on how messed up that is, and actually went into that store, and bought that card, and added it to my phone, and waited politely AGAIN? You mean when I discovered that not only was the issue STILL not resolved, but the balance on my account shows less than a dollar, and I tried to call back yet again only to be told to go online where NOTHING on this site puts you in contact with anyone who will actually DO anything to resolve ANY sort of issue?
    I believe I have every right to be as rude as I like at this point. This is NOT how a legitimate business operates. I shouldn't even be replying to you. I shouldn't be ****** off and missing money/data as I'm here holding the receipts. I shouldn't be forced to make this whole day about hunting down a legitimate person within the company in order to collect what I paid for. There's a product on the shelf with an advertised service. I paid the money... I should have the service... and I shouldn't be charged extra money in order to fund their inability to deliver it.
    Comments edited as required by the Terms of Service.
    Message was edited by: Admin Moderator

  • Airport Extreme off a Router which provides DNS - Guest Networks

    I am sure that I am not alone here.
    I have a BTBroadband wireless ADSLModem/Router which provides DNS for the network.
    Off tyhe router is a Netgear switch which has connected to it an Airport Extreme. Also off this switch I have many other peripherals - such as Time Capsule, iMac etc.
    So the arrangement is simple in logical terms:
    BT Modem------->Wireless Router (which allocates DNS)---------->Switch----------->Airport Extreme  etc.
    IP Settings as follows
    192.168.0.1 for Wireless Router - which allocates DNS in range 192.168.0.2 to 0.150.
    I have allocated a fixed IP on the Airport Extreme of 192.168.0.151
    The devices thart run off this are all having DNS allocated by the router - not the Airport Extreme.
    So - how do I set up (or can I set up) the Guest Wireless Network?
    Let's assume Router Wireless Network is call MainWireless with a Password MainWord, The Airport Extreme is acting in Bridge Mode and has the exact same 'Create a wireless network' called MainWIreless and Password MainWord (as per best practices in using these to provide the best 'network hopping' capabilities for devices (I actually have 2 other wireless devices from TimeCapsules that operate the wireless in the same way).
    All of this works fine.
    However when I set up the Guest Network on the Airport Extreme - simply by enabling it - I provide a new Guest Network name of GuestWireless with a password GuetsPassword. In theory it should all work fine, however the devices connecting to the Guest Network cannot get to the internet (effectively I don't think that the 'iPhone for example' is being allocated a correct IP Address - in fact I know that it isn't as its a 169 range and a different subnet).
    So - the only way I can think of doing this is to go into the Network Settings on the Airport Extreme, Change Bridge Mode Wireless to DHCP and NAT and then go into Network Options. Here I am a bit lost and need help.
    To summarise - Main Router Address 192.168.0.1 allocates range 192.168.0.2 to 150, Airport Extreme Address (static) address 192.168.0.151.
    Airport Extreme DHCP and NAT Network Options has:
    IPv4 DHCP Range - I have set to 192.168.0.152 to 255
    Guest IPv4 DHCP Range 10.0.0 152 to 255
    NAT Port Mapping Protocol is switched Off
    - This won't even save.
    Should be simple I would have thought. Think again...
    Please help - mwhat should I / can I do to enable a guest wireless network?

    Thanks for all that - I suspected as much (and I did mean DHCP not DNS).
    So - if I disable DHCP on the HomeHub3 IP 192.168.0.1, and set the Airport Extreme IP Address at 192.168.0.2, what do I do with DHCP and NAT settings to have a Main and Guest Wireless Network?
    I can easily change the order of things if necessary to be :
    BT Modem (192.168.0.1 with DHCP disabled)--->Airport Extreme (192.168.0.2 (set to get DNS from 192.168.0.1) )--->Switch---->Various wired and wireless devices.

  • Non-ISP DDNS with Apple DHCP and DNS Services

    I have two questions about Dynamic DNS (DDNS) as it applies to Apple's DNS and DHCP services within my home network. I am not talking about DDNS in the context of making my external-facing router available by a domain name on the Internet using the dynamically-assigned IP from my ISP.
    Starting with Snow Leopard Server, I attempted to use Apple's DNS and DHCP services (I have the firmware-based DHCP service in my router turned off.) The difficulty I immediately faced was that Apple's DHCP implementation didn't update the DNS service as IPs were handed out to DHCP clients. Because of this, it wasn't possible to access hosts by their hostname, since getting a DHCP-assigned dynamic IP at boot-up didn't do anything to automagically register the hostname-to-IP mapping in DNS. Manually registering the hostname in DNS was pointless, becuase over time the client IP address can and did change. I could create static IP assignments based on the MAC address, but doing that for all of the devices on my home network sort of defeated the purpose of using dynamic IPs.
    The only solution I eventually found was to go out and get an open source DHCP server, compile it for my Mac, install it, and configure it. After doing this, everything worked great; every time a new host or other device was booted it got a dynamic IP through DHCP, and then the DHCP server automatically updated Apple's DNS serive with the hostname and assigned IP. I could immediately access every device on my network by hostname. As IP addresses changed over time, the hostname-to-IP mapping in DNS was automatically updated.
    Except, Apple's point upgrades kept breaking my non-Apple DHCP install. Every time I applied software updates to my server I had to go back and re-finagle DHCP to get it to automatically start and run. By the time Lion Server came out, I drank the Kool-Aid and went back to Apple's DHCP implementation. I was disappointed that it still didn't seem able to update DNS with hostnames as it assigned IPs, but I was so tired of mucking about at the command prompt to fix DHCP every time Software Updates broke it, I just lived with the inconvenience of not being able to access devices on my network by hostname.
    I'm sorry to say this, but Windows Server has had this capability since at least server 2003. In fact, until I dumped my Windows Server and switched to Snow Leopard Server, I was running Microsoft's DNS and DHCP services on Server 2003 and they did exactly what I'm describing brilliantly.
    Can anyone offer any advice here? Does Mountain Lion's implementation of DHCP allow for DDNS updates to the DNS service? If not, how are other people handling this? Should I go back to running Windows Server for my DNS and DHCP services? My Netgear WNDR3700 router appears to have the standard, substandard DHCP server in firmware as most home routers, and no facility for DNS at all--much less the ability to update an on-site DNS sever with IP addresess it hands out. In fact, the only appliance I know of that does this is the InfoBlox my employer uses, but that's too expensive for a home solution.
    As a Post Script, I'll add that I've been VERY unhappy that I lost the ability to bind Windows clients to Open Directory under Lion Server. Since I'm starting to see articles that say this capability hasn't been added back to Mountain Lion Server, I'm seriously considering implementing a Windows Server AD master and establishing a "magic triangle" or "golden triangle". If I end up having to do that, I wonder if I might as well just go back to using Microsoft's DNS and DHCP services.

    Hi,
    Whether to move your DHCP to another server depends on the workload of your server. If there are too many clients on the network, you should move your DHCP to another server.
    Did the record which owned by the machine generate before you configure the DnsUpdateProxy group? You can try to regenerate the record and check the result.
    For more detailed information, you can view the link below.
    DNS best practices
    http://technet.microsoft.com/en-us/library/cc778439(v=ws.10).aspx
    Using DNS servers with DHCP
    http://technet.microsoft.com/en-us/library/cc787034(v=ws.10).aspx
    DNS registration changes for Windows Server 2003 based DHCP Servers
    http://technet.microsoft.com/en-us/library/ee441167(v=ws.10).aspx
    Hope this helps.
    Steven Lee
    TechNet Community Support

  • I need a data transfer from intact hard drive of older macbook that won't boot. Can Apple provide this service even though my one to one membership has expired?

    I need a data transfer from a 2005 Macbook to my new one (2010). I damaged the old laptop and although it wouldn't turn on, when I brought it to the Apple Store they ascertained that the hard drive was still intact. They said I needed to purchase a one to one membership to get a data transfer, which I did, but somehow forgot about it and now it's expired. Is there any way I can still get the data from the old hard drive transferred to my new macbook? Can Apple provide this service even though my one to one membership has expired?

    Go to OWC where you can purchase a suitable enclosure for the drive. You will need an enclosure for a SATA notebook drive. This is assuming the old computer is a MacBook and not an iBook. I make this observation because the first MacBook was released in 2006, not in 2005. If yours is a 2005 model then it's an iBook and uses an ATA interface.
    Install the old drive in the enclosure, connect to your new computer. You can then transfer your data.

  • Start order between WTC server and EJBs provides exported services

    Using WLS 10.3.0 and Tuxedo 11.1.1.2.0 (32-bit) with WTC as the communication bus between the 2 platforms....
    Running load balancing/failover inside Tuxedo using the cluster setup as described by:
    http://docs.oracle.com/cd/E13222_01/wls/docs81/wtc_admin/Cluster.html#1110847
    and got WLS rigged in a cluster with 2 nodes (managed servers) on separate machines. When I take down and up one of the nodes soft (with start/stop scripts) everything works fine during shutdown but not upon starting. What I think happens is that the WTC server starts first before the EJBs that provide exported services. In the Tuxedo log a connection is first established then a ton of TPENOENT until the EJBs get going. Any way to reorder these resources during start up? So that the EJBs are ready first prior to the WTC server?
    mvh / Matthew Young

    Q8. What versions of Tuxedo are supported?
    A8. WTC 1.0 will support Tuxedo 6.5 and Tuxedo 8.0. WTC 1.1 (which adds
    CORBA support) will support Tuxedo 6.5 and Tuxedo 8.0. Soon after the
    release of both of these products we will certify WTC with Tuxedo 7.1.
    However, the version of Tuxedo 7.1 you will need to have will be Tuxedo 7.1
    after a certain patch level, which I don't know the number of yet. I will
    attempt to keep the public informed about which patch level will be required
    in Tuxedo 7.1
    Q9. What WLS Releases will be supported?
    A9. WTC 1.0 will be certified on WLS 6.0 SP2, WTC 1.1 will be bundled with
    WLS SilverSword release (6.1?)
    Q10. How will WTC be packaged?
    A10. WTC 1.0 will be a separately downloaded binary (one for unix, one for
    NT) that the user will have to install and configure in his/her WLS
    environment. (Configuration will consist of putting the jatmi.jar file into
    the classpath (as well as the normal BDMCONFIG configuration, of course)).
    WTC 1.1 will be bundled right in there with the WLS SilverSword release.
    Q11. When will WTC go live (no more beta)?
    A11. This is a question for Jeff Cutler, but my impression is that WTC 1.0
    will be shipped in the same time-frame as the Tuxedo 8.0 release and
    obviously (see A10) WTC 1.1 will be shipped with WLS SilverSword.
    John Wells (Aziz)
    [email protected]

  • What is DNS Services and why does it use so much data?

    I have 300MB to use a month on my iPhone 4S (most recent iOS) and I'm normally pretty good with it because I'm connected to WiFi a lot. All of a sudden, my data usage spikes and my DNS services usage has gone up to 40MB. What is this and how do I keep it from spiking like this? It's incredibly annoying.
    Also, any other tips on saving data while connected with the 3G? As mentioned before, I only have 300MB so I like to stretch it for the month.

    DNS (Domain Name Service) is the Internet "address book" of web sites. Whenever you go to a site such as http://apple.com your browser must make calls to the DNS server specified in your Network Settings to translate "apple.com" into Apple's IP (Internet Protocol) address of 17.178.96.59. Any time you access any Internet resource (such as sending or receiving email, playing multi-player games, using a browser, Using any app that accesses data on the Internet such as news, weather, stocks, etc) one or more DNS lookups must be made. Many web sites have content from several different sites. Each site referenced on the page must also be looked up. Each query is small (~100 bytes), but they can add up.

Maybe you are looking for

  • MacPro with Snow Leopard will not boot

    This morning, something odd is happening. Last night, when I sent to bed, my computer was fine, but this morning, when I tried to power it on, it tried to power up and then shut off. Does it every time. When booting from the normal start up disk, the

  • DataMart Interface - Date and time of the transferred data

    Hello, We have a requirement to build a datamart (cube to cube) between two BW systems, using deltas; this is OK and should not present any issue. However a further requirement has arisen, requiring to provide date and time of the created files to ou

  • Problem with BBW Plug-in

    Can you help me with this error? 

  • .dmg in Mac OS 9.1

    Help! How can I mount a .dmg disc image under Mac OS 9.1? I've tried Disk Copy 6.3.3, 6.4, and 6.5b11 all to no avail. Any suggestions? -- Sherman

  • LE-TRA: Cost shipment transfer to FI-CO

    Hi, I´m trying to transfer the shipment cost document on VI01 and, after checking the "Transfer" flag on settlement tab and saving appears the following message: "General error during acceptance posting". The automatic account determination works pro