Cluster Network 2 is missing from Failover cluster Manager

I have two node Windows 2008 R2 SP1 MS SQL cluster, there was an issue with one node NIC card which was replaced and since then "Cluster Network 2" is not visible in failover cluster manager, also Heartbeat and Public IP nic card of both nodes
are appearing in "Cluster Network 1" container. even though both network public and hearbeat are on differenet subnet, but still cluster detects it as one subnet. Need to know how to bring back "Cluster Network 2"

After replacing NIC, cluster worked fine on other node for couple of days and then cluster services started terminating on both the nodes.
when checked cluster logs found below error.
"ERR   [CORE] Node 2: exception caught AlreadyExists(183)' because of 'already exists'(AODBP2DB1 - Local Area Connection)"
Hence to correct this problem, renamed both nodes NIC cards as Public and Private and cluster was started and tested the failover also. but since then only able to see "Cluster Network 1" and all NIC are listed under this container.
Though when looked at cluster validation report, it shows Cluster Network 1 and Cluster Network 2 entries in it
Pasted network section from Cluster Validation report
Network: Cluster Network 1
DHCP Enabled: False
Network Role: Enabled
Prefix
Prefix Length
10.100.18.0
25
Item
Value
Network Interface
Node1 - Public
DHCP Enabled
False
IP Address
10.100.18.11
Prefix Length
25
Item
Value
Network Interface
Node2 - Public
DHCP Enabled
False
IP Address
10.100.18.16
Prefix Length
25
Network: Cluster Network 2
DHCP Enabled: False
Network Role: Internal
Prefix
Prefix Length
10.101.130.0
25
Item
Value
Network Interface
Node1 - Private
DHCP Enabled
False
IP Address
10.101.130.11
Prefix Length
25
Item
Value
Network Interface
Node2 - Private1
DHCP Enabled
False
IP Address
10.101.130.13
Prefix Length
25
Verifying that each cluster network interface within a cluster network is configured with the same IP subnets.
Examining network Cluster Network 1.
Network interface Node1- Public has addresses on all the subnet prefixes of network Cluster Network 1.
Network interface Node2- Public has addresses on all the subnet prefixes of network Cluster Network 1.
Examining network Cluster Network 2.
Network interface Node1- Private has addresses on all the subnet prefixes of network Cluster Network 2.
Network interface Node2- Private1 has addresses on all the subnet prefixes of network Cluster Network 2.
Verifying that, for each cluster network, all adapters are consistently configured with either DHCP or static IP addresses.
Checking DHCP consistency for network: Cluster Network 1. Network DHCP status is disabled.
DHCP status (disabled) for network interface Node1- Public matches network Cluster Network 1.
DHCP status (disabled) for network interface Node2- Public matches network Cluster Network 1.
Checking DHCP consistency for network: Cluster Network 2. Network DHCP status is disabled.
DHCP status (disabled) for network interface Node1- Private matches network Cluster Network 2.
DHCP status (disabled) for network interface Node2- Private1 matches network Cluster Network 2.

Similar Messages

  • Manage MSMQ is missing from Failover Cluster Manager when configured using powershell

    Hi,
    I am hoping someone would be able to help me as I have looked on the internet for an answer to this. We deploy a number of servers that are configured using Powershell. I am in the process of creating a clustered WIN2K8R2 cluster with MSMQ. I am able to
    do this successfully through the Failover Mgr with no issues.  In addition, I can do this via Powershell (code listed below) with one caveat.
    However, when I create the same exact MSMQ in Powershell, I am unable to right click on the MSMQ service to manage it as the "Manage MSMQ" is missing when I right click on it. The settings are the same, including dependencies. The only difference
    I have been able to find is the icon in the Failover Manager shows the Service as a Generic Service icon when created in Powershell, but when it is created in the GUI it shows up as the MSMQ icon. I was able to verify this in the registry in HKLM\Cluster\Groups\<GUID>\:
    GroupType HEX: 68 for msmq icon. When it is the Generic Service icon it is HEX: 270f. When I change it from 270f to 68, the icon changes in Failover Manager and I am able to open, but then I get an invalid handle and I am unable to manage it.
    This is causing an issue, because I want to automate this build and hand it over, but they would be unable to manage it except by programming which the operators are not ready for.
    Here is the code which I have created in Powershell:
        Write-host "Configuring MS MSMQ Cluster Failover..."
        $CluName = "Cluster Name"
        $ClsMSMQName = $CluName.Name + "MSMQ"
        $ClsMSMQResourceName = "MSMQ-" + $ClsMSMQName
        $Response = Read-host "Enter the IP Address of the Clustered MSMQ"
        $ClsIpRes = get-clusterresource "Cluster IP Address"
        $MSMQIpAddr = New-Object Microsoft.FailoverClusters.PowerShell.ClusterParameter $ipres,Address,$Response
        Add-ClusterServerRole -Name $ClsMSMQName -Storage "Cluster Disk" -StaticAddress $MSMQIpAddr.value
        # Add the MSMSMQ Service to the new Server Role
        Get-ClusterGroup $ClsMSMQName | Add-ClusterResource -Name $ClsMSMQResourceName -ResourceType "MSMQ"
        # Create Dependencies for the MSMQ group
        Add-ClusterResourceDependency $ClsMSMQResourceName $ClsMSMQName
        Add-ClusterResourceDependency $ClsMSMQResourceName "Cluster Disk"
        # Start MSMQ group
        Start-ClusterGroup $ClsMSMQName
    You would just have to change "Cluster Disk" and "Cluster Name".
    Thank you

    Hi,
    I am hoping someone would be able to help me as I have looked on the internet for an answer to this. We deploy a number of servers that are configured using Powershell. I am in the process of creating a clustered WIN2K8R2 cluster with MSMQ. I am able to
    do this successfully through the Failover Mgr with no issues.  In addition, I can do this via Powershell (code listed below) with one caveat.
    However, when I create the same exact MSMQ in Powershell, I am unable to right click on the MSMQ service to manage it as the "Manage MSMQ" is missing when I right click on it. The settings are the same, including dependencies. The only difference
    I have been able to find is the icon in the Failover Manager shows the Service as a Generic Service icon when created in Powershell, but when it is created in the GUI it shows up as the MSMQ icon. I was able to verify this in the registry in HKLM\Cluster\Groups\<GUID>\:
    GroupType HEX: 68 for msmq icon. When it is the Generic Service icon it is HEX: 270f. When I change it from 270f to 68, the icon changes in Failover Manager and I am able to open, but then I get an invalid handle and I am unable to manage it.
    This is causing an issue, because I want to automate this build and hand it over, but they would be unable to manage it except by programming which the operators are not ready for.
    Here is the code which I have created in Powershell:
        Write-host "Configuring MS MSMQ Cluster Failover..."
        $CluName = "Cluster Name"
        $ClsMSMQName = $CluName.Name + "MSMQ"
        $ClsMSMQResourceName = "MSMQ-" + $ClsMSMQName
        $Response = Read-host "Enter the IP Address of the Clustered MSMQ"
        $ClsIpRes = get-clusterresource "Cluster IP Address"
        $MSMQIpAddr = New-Object Microsoft.FailoverClusters.PowerShell.ClusterParameter $ipres,Address,$Response
        Add-ClusterServerRole -Name $ClsMSMQName -Storage "Cluster Disk" -StaticAddress $MSMQIpAddr.value
        # Add the MSMSMQ Service to the new Server Role
        Get-ClusterGroup $ClsMSMQName | Add-ClusterResource -Name $ClsMSMQResourceName -ResourceType "MSMQ"
        # Create Dependencies for the MSMQ group
        Add-ClusterResourceDependency $ClsMSMQResourceName $ClsMSMQName
        Add-ClusterResourceDependency $ClsMSMQResourceName "Cluster Disk"
        # Start MSMQ group
        Start-ClusterGroup $ClsMSMQName
    You would just have to change "Cluster Disk" and "Cluster Name".
    Thank you

  • 2008 R2 SP1 failover cluster, after connect to VM from failover cluster manager console I've get only upper quourter of screen console

    Hello :)
    I have to ask because this issue is boring me a long time ago :(
    From time to time when I connect to virtual machine from failover cluster manager console I've get virtual machine connection screen (console) which is reduced only to upper left quorter of full screen. There is no scroll bar ... If I live migrate
    VM to another node (or restart VM on same node) and reconnect, console screen is displayed ok (ie all console screen is visible).
    It is happening regardless of OS version installed into guest VM: 2003 R2, 2008 R2, 2012, 2012 R2).
    I've check inside VM ( I can see that integration services are installed and running but when I click onto console window with mouse I've get message:
    "Virtual Machine Connection
    Mouse not captured in Remote Desktop session
    The mouse is available in a Remote Desktop session when
    integration services are installed in the guest operating
    system...."
    From SCVMM console I can see that IC version on guest VM is: 6.1.7601.17514
    I would like to know what is going on and is there any way how can I detect those situation or even better how to prevent it ?
    Thank you for any idea.
    Best regards
    Nenad

    Hi Nenad,
    As you mentioned you have tried 2003 R2, 2008 R2, 2012, 2012 R2 guest vm, but all this do not work properly, With Server 2003 platform the 2008r2 Hyper-V the 2003R2 are not
    supported, in your case you must update to Windows Server 2003 R2 with Service Pack 2.
    Server 2012 as guest vm on 2008r2 you must install the following hot fix:
    You cannot run a Windows 8-based or Windows Server 2012-based virtual machine in Windows Server 2008 R2
    https://support2.microsoft.com/kb/2744129?wa=wsignin1.0
    Server 2012 is the last version of Windows that will be supported as a guest operating system on 2008r2 Hyper-V therefore the 2012r2 guest vm is not supported.
    Please use the following command can query all guest vm’s IC version, please compare this problematic vms IC version with functioning vms.
    The following powershell command can be used to display the version of integration services installed on all VMs on the Hyper-V host:
    PS C:\Users\administrator> get-vm | ft name, IntegrationServicesVersion
    Name                                                       
    IntegrationServicesVersion
    TestVM2012                                           
    6.2.9200.16433
    SQL01                                                    
    6.2.9200.16433
    SQL02                  
                                      6.2.9200.16433
    SCVMM01                                               
    6.2.9200.16384
    SCVMM02                                               
    6.2.9200.16384
    I’m glad to be of help to you!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • "Preferred Network" option missing from Airport tab

    My computer was just joining networks, so I switched my MPB to "By Default, Join: A specific network". Now I find that I've got to tell my computer to join the wireless network at work. Since I'd like my computer to join both my home networks without interaction from me I read the help file to figure out how to do it. The help file said to choose "Preferred Networks" from the "By Default, Join:" popup menu, but the popup menu on my computer only had one choice, "A specific network".
    Anyone know what might have happened to the other options in that popup menu?
    Thanks,
    Chris

    Replying to my own post, bad form...
    I don't know why "Preferred Networks" was missing from my "By Default, Join:" menu, but I discovered that I could get the option back by creating a new location and migrating my old settings to the new location.
    Chris

  • Windows 7 Policy missing from Group Policy Management

    Hey all,
    I have 2 SBS 2008 clients that have Windows 7 Policy missing from Group Policy Management. I noticed that they have XP, Vista, and 8, but not 7.
    I came across this when I started to deploy some new support software. I deployed my package, the XP, Vista, and 8 policies as well as the "Windows SBS Client Policy" and workstation, but  Win 7 workstations do not get the software package
    and this is at both sites.
    I personally have SBS008 have tested this and same issue, XP, Vista, 8, 8.1, even my 10 get the software, but my Windows 7 does not.
    Do you have any ideas? I have attached a screenshot so you can see what I am talking about.

    Hi,
    Similar query answered :
    https://social.technet.microsoft.com/Forums/en-US/d6a6e3fa-fb15-4bcc-a5ca-449f69eeee5d/sbs-2008-missing-client-policy-for-windows-7?forum=smallbusinessserver
    https://www.microsoft.com/en-us/download/details.aspx?id=25250
    I hope that will help.
    Binu Kumar - MCP, MCITP, MCTS , MBA - IT , Director Aarbin Technology Pvt Ltd - Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Network Name Resource Availability - failover cluster error 1196 on Hyper-V 2012 R2 nodes

    Hello,
    We're getting this error in our even logs of our four node failover cluster, we tried deleting Host A record in DNS management, that did nothing.
    Failover cluster event: 1196
    "Cluster network name resource 'CAUCrgt8' failed registration of one or more associated DNS name(s) for the following reason: This operation returned because the timeout period expired.
    Ensure that the network adapters associated with dependent IP address resources are configured with at least one accessible DNS server."
    And this resource http://technet.microsoft.com/en-us/library/cc773529%28v=WS.10%29.aspx did not help in solving this.
    Do you guys have any other suggestions we could try to resolve this error?

    Hi Jonas,
    Please offer us which platform server you are using, such as if you are using server 2012 please refer the following update first.
    Recommended hotfixes and updates for Windows Server 2012-based Failover Clusters - http://support.microsoft.com/kb/2784261
    If the update not work please ppply Full Control permissions for the Cluster Name Resources in the DNS console.
    More detail information please refer the following article:
    Windows Server 2008 Troubleshooting: Event ID 1196 — Microsoft-Windows-FailoverClustering - http://social.technet.microsoft.com/wiki/contents/articles/windows-server-2008-troubleshooting-event-id-1196-microsoft-windows-failoverclustering.aspx
    DNS Registration with the Network Name Resource -
    http://blogs.msdn.com/b/clustering/archive/2009/07/17/9836756.aspx
    I’m glad to be of help to you!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Event Trace Session missing for Failover Cluster

    I have a failover cluster setup and is managed via a Windows Domain controller for the failover cluster network.  I am troubleshooting a potential issue with the failover cluster and the recommendation is to go into event viewer, app & service
    logs, Microsoft, windows and look for failover cluster diagnostics and operations logs and these do not exist. 
    It appears they are created by having an event trace session associated with windows failover clustering but apparently it was't created when the cluster was created for some reason.  I am wondering how to create the proper event trace session
    in order to get these additional failover cluster logs created? 

    Hello,
    the following forum mat be the better one for your needs:
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverClustering
    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:  

  • Heartbeat Network inside Hyper-V Failover Cluster

    Dear All,
                I need to build an SQL Server 2012 SP1 Two-node cluster inside Hyper-V Failover Cluster.  There is only one virtual switch in the Hyper-V Failover Cluster environment which is being
    used for communication to the outside world using VLAN Tagging.  Now, since SQL Server 2012 Failover Cluster would require a heartbeat network as well and although possible to assign VLAN tag to the heartbeat adapter and use that for hearbeat, but since there
    would not be any gateway on the heartbeat network, it would render the VLAN tagging useless, so is following plan good enough:
    1.  Create an Internal Virtual Switch on all nodes of the cluster with the same name
    2.  Link the heartbeat adapter of the virtual machines to the Internal Virtual Switch
    Is it good enough? or is there any other better way?
    Thanks in advance.   

    I am not an expert on this, but here is what I would do.
    Create the VLAN and use that to keep the network setup as easy to understand as possible. Our Hyper-V cluster is only using IPv6 on the heartbeat network, and that is working like a charm. I would do the same inside the hyper-v hosts if I need to builld
    a virtual cluster. 
    What is the reason for deploying a failover cluster for SQL inside Hyper-V? Wouldn't a log shipping "cluster" provide a more secure solution for your SQL?
    /Martin
    Exchange is a passion not just a collaboration software.

  • How to delete Cluster Network 1 in Hyper-V cluster?

    Hi folks!
    So I added a few 10Gbe cards to our 4 node HV 2012 R2 cluster. I connected two of them to the switches and almost immediately I saw this weird "Cluster Network 1" show up in Failover Cluster Manager.
    I have since then disconnected the network cables, but it still shows up and the event logs keep saying that "Cluster Network 1" has failed.
    Is there a way to delete this "Cluster Network 1"? 
    I have already set "Do not allow cluster network communication on this network". It is not used in the "Live Migration Settings".  Rebooted nodes. Why is it still there!!?? Pulling my hair out here! LOL.
    PS: the closest I could find on the 'net is this old thread:
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/7f8ffe60-835d-489e-a86e-20893c52fb21/cluster-network-status-failed
    -Rajeev rajdude.com

    The cluster goes out and finds all networks that are available.  This is an automatic process.  As long as there is a network there, it will show it.  If you don't want it to show, disable the interface and it will disappear.
    . : | : . : | : . tim
    Thanks a million Tim! Disabling the correct interface made it disappear!
    Actually, I had disabled the interface before I started this thread. When you posted the suggestion, I went back and looked at the network connections again and found out that I had disabled the wrong interface! My bad!
    However, here is the interesting thing:
    After I disabled the NIC and it disappeared from the FCM I physically disconnected its cable (actually I disconnected all unused / unconfigured NICs) ....then I re-enabled it. Now I see that FCM does NOT pick it up again.
    I think FCM picked up those NICs because at one time I had put that NIC in the production VLAN (from the switch side).
    One observation:
    If you have NICs in a HV machine which are not connected to a switch, they do NOT show up in FCM. Once you connect them to some network, they start showing up. I guess by connecting them to a network, they are able to see NICs in other HV nodes.
    Take a look at this screenshot. I have 6 NICs in there which are disconnected, none show up in FCM
    -Rajeev rajdude.com

  • SQL cluster name on a Windows Failover Cluster

    Hello,
    I am installing a SQL cluster (first timer) using Windows server and SQL (both 2008 R2)
    Windows failover cluster is setup and functioning. I am now installing the SQL failover cluster part.
    Question: What should be the "SQL server network name", should it be the same as my Windows cluster name or different name ?
    Thanks for your help,
    Luca

    It should be different, this is known as the virtual SQL Server name in earlier versions of SQL Server failover clusters.
    SQL Server Network Name —
    Specify a network name for the new SQL Server failover cluster. This is the name that is used to identify your failover cluster on the network.
    https://msdn.microsoft.com/en-us/library/ms179530.aspx?f=255&MSPPError=-2147217396
    This will be the name used to identify your cluster on the network. This is the name that will be available on the
    network for the clients to connect SQL instance.
    http://www.mssqltips.com/sqlservertip/1709/install-sql-server-2008-on-a-windows-server-2008-cluster-part-3/

  • Missing Apple Mobile Device USB Driver Missing From My Device Manager

    Hi Everyone, My Apple Mobile Device Usb Driver Does'nt Show up in my Device Manager. But when i go Control panel>> Admin Tools>> Services its there but when i go Start>>Run type in devmgmt.msc an the device manager comes up an under the heading Universal Control Bus Contoller the Apple mobile device usb driver is suppoed to appear but it doesnt all my other usb attached devices do how do i fix this problem?????

    For what it's worth. I had the same problem, and here is how I fixed.
    I downloaded Roxio Uninstaller and deleted everything Apple.  Itunes, Bonjour, Apple Mobile Divce Manager, and Safari, everything get rid of it all.  the good thing about roxio is that you can scan for anything that the program uninstaller missed. 
    Then I down loaded itunes again and Whalaa!  It now works.

  • Join existing network option missing from Airport Extreme

    I am resetting an Airport Extreme because of network issues (not the airport side). It used to join an existing network which is still there. but now, when i go to set it up, the only options are Create a Wireless Network, Participate in a WDS network, and Extend a Wireless Network. I can not extend because of the way our network is set up. Can anyone tell me how I can get the plain old Join and Existing Network option back? I miss it...

    emcfins, Welcome to the discussion area!
    Unlike the AirPort Express (AX), the AirPort Extreme base station (AEBS) does not have the ability to join a wireless network as a client.
    The only way the AEBS can wirelessly join a network is if it is configured to participate in a WDS network (802.11g mode) or extend a Wireless Network (802.11n mode).

  • Kuler missing from Adobe Application Manager

    I want to download Kuler but cannot find it in the Application Manager. I have an up-to-date paid subscription of Adobe Creative Cloud. What am I doing wrong?

    Hi Media Trends,
    Please download Kuler from the mentioned link: https://creative.adobe.com/products/kuler .
    Regards,
    Romit Sinha

  • Equalizer sliders missing from MAXXAUDIO 3 manager

    Hello,
    I have a DELL XPS 15-L502X and I recently updated my laptop via windows update. I'm guessing that the MAXXAUDIO driver was updated, but the only thing is that when I clicked the 'equalizer' tab on the left-hand side it was completely blank; there were no sliders there so that I could adjust the MAXXBASS or anything. 
    I have tried downloading the previous driver via the DELL website, but it's not having the desired effect.
    If someone could help me regain the equalizer sliders, it would really be appreciated!
    Thank you in advance

    Hello. You could try Windows System Restore (type system restore into the Windows search box) and select a restore point from before the update, but if that does not work the only way I know of to get the WavesMaxx back the way it was when the laptop was new is to perform a system recovery (reset to factory configuration) and after that do not allow any update of the Realtek audio driver.

  • Hyper-v Failover Cluster management via powershell

    Hi
        We are looking at having a management server act as proxy for managing couple of hyper-v clusters using CSV. We plan to do management using powershell commands.
        We create a session one of the host in the cluster  and execute commands using invoke-command. The cluster verbs seems to fail with the following warning. 
    WARNING: If you are running Windows PowerShell remotely, note that some failover clustering cmdlets do not
    work remotely. When possible, run the cmdlet locally and specify a remote computer as the target. To run the
     cmdlet remotely, try using the Credential Security Service Provider (CredSSP). All additional errors or
    warnings from this cmdlet might be caused by running it remotely.
      What is the recommended way to do setup for using FailoverCluster ? We want to have a single management server that act proxy for all servers clustered or not.
      Also, is there a document that describe various operations done via Failover Cluster Manager and corresponding powershell commands (or set of commands).
    Thanks
    /Jd

    Regarding the Stop action from Failover Cluster Manager, Eric, I understand your point. But when I do shutdown from Failover Cluster Manager, the VM shuts down as expected even when the setting is set to Save.
    I was very specifically talking about the Stop-ClusterGroup cmdlet, not any command issued in Failover Cluster Manager. But, well, yeah, if you tell a VM to shut down, it shuts down. I don't know why you'd expect anything different to happen. If you're looking
    for the equivalent to Stop-ClusterGroup inside Failover Cluster Manager, it's not called "Shut Down". You can use "Stop Role" on the "More Actions" menu for the VM. You can also find the configuration object (usually named in the format of "Virtual Machine
    Configuration XXX") and take it offline.
    I tested a number of times after your first post, and Stop-ClusterGroup does what the Cluster-Controlled Action is set to every single time for me.
    I could only make educated guesses at the underlying mechanics of FCM and PowerShell's cluster cmdlets, but the stand-out difference is that FCM has no method to operate in a double-hop situation at all, while PowerShell does. You only encounter these difficulties
    with PowerShell in that second hop. The question you're asking: "it would be great to know how Failover Cluster Manager works without this setup ?" is an apples-to-oranges comparison.
    This particular sentence of yours sort of changes the overall parameter of your question:
    "... so our automation works..."
    I was under the impression you were setting up this double-hop because you wanted admins to manually execute PowerShell cmdlets against your cluster from a single controlled location.
    If automation is your goal, do it right from the cluster. I obviously don't know your entire wishlist and it's none of my business, but this double-hop situation may not be ideal.
    Eric Siron Altaro Hyper-V Blog
    I am an independent blog contributor, not an Altaro employee. I am solely responsible for the content of my posts.
    "Every relationship you have is in worse shape than you think."

Maybe you are looking for

  • Anti-Spam measures on feedback form

    Originally posted using Google Groups but it has not appeared here yet: Hi there, I have seen many forums use a system that asks you to enter a code word that is displayed as an image to help prevent automatic submissions. I am having problems with a

  • Can't see some files, even though I know they are there

    This is a strange one. A couple of days ago, I began not being able to see most of the folders in my documents folder. I can see some, but not most. I know the files are there, because I can access recently used files from the applications like Word

  • Need help! (Simple question regarding Soundblaster Wireless Music)(I ho

    Hey everyone, this might be a bit of a dumb n00b question but I'm having a problem with my soundblaster wireless music. The problem is that it won't shuffle any tracks. I have createdplaylists, populated them all very easily, but it will only play on

  • OC4J (version 9.0.3.0.0) interface with Domino server5.0

    I have written a small application to interface with Domino server5.0 using IIOP. When I run the client application on HP UX 11.11 using HP-UX JDK 1.3.1.08 , it works fine. When I deploy the client code within a OC4J container (version 9.0.3.0.0) the

  • Screen capture software?

    My job just became more mobile so they bought me this new souped up laptop to handle my new challenges...I've always used Roboscreencapture as my screenshot utility (more versatile than the Captivate screenshot solution), however it's not only discon