Access Pulse setting cluster

Could you help me how I can access to look at the logic connection for the 'pulse setting' cluster? (plz see the attached VI)
1. Duty cycle
works fine with "INT" trigger, but not with "EXT" trigger (sets the duty cycle value w.r.t. 33MHz always..try to modify to work w.r.t. ext freq input.)
2. Delay/Phase
Suppose to track each other...but can only do that with 'phase' value change...how can I do it either ways??
thanx,
Attachments:
8133_function_block.llb ‏577 KB

Hi Tieyi,
     You can access the Distributed Cache simply by calling CacheFactory.getDitributedCache(sName). Coherence starts all the necessary services and signs up to the Coherence cluster transaprently.
     The same holds in your example of nodes A, B and C participating in a Distributed Cache and wanting node D to have access to that same cache. Just call CacheFactory.getDistributedCache(sName) on node D and you will have access to that cache. Also, transparently to you, the data held in the cache will be 'load-balanced' given the fact that a new node has entered the cluster.
     Usually our customers will start or sign up to the Distributed Cache(s) during start up of the application server. This depends on your requirements.
     Hope this helps.
     Later,
     Rob Misek
     Tangosol, Inc.
     Coherence: Cluster your Work. Work your Cluster.

Similar Messages

  • Does Administrator have to set cluster size during RAID 0+1,3 and 5 used according to Microsoft tech document?

    Hi everyone,
    I always thank you for providing helpful information in this forum.
    As I got a plan to set hard drive for RAID 0+1,3 and 5. Therefore should I set cluster size under each RAID type according to the url which is provided by Microsoft Tech net. I mean I want to set the cluster size which is size by one time hard disk head
    access.
    The url is ....
    https://support.microsoft.com/kb/140365
    Thanks

    Hi OlegSmirnovPetrov,
    Additional,
     on Win 2008 and later versions, disk partition alignment is enabled by default. On win 2k3 and earlier versions you need to enable , 
    more information please refer the following KB:
    1. Best practices for using dynamic disks on Windows Server 2003-based computers
    http://support.microsoft.com/kb/816307
    2. Disk Partition Alignment (Sector Alignment): Make the Case: Save Hundreds of Thousands of Dollars
    http://blogs.msdn.com/b/jimmymay/archive/2009/05/08/disk-partition-alignment- 
         sector-alignment-make-the-case-with-this-template.aspx
    3. General Hardware/OS/Network Guidelines for a SQL Box
    4.http://blogs.msdn.com/b/cindygross/archive/2011/03/10/general-hardware-os-network-guidelines-for-a-sql-box.aspx (please refer Storage specifications)
    5.Disk Partition Alignment Best Practices for SQL Server
    http://msdn.microsoft.com/en-us/library/dd758814.aspx
    I’m glad to be of help to you!
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Access wireless set-up program for HP 3050 printer

    I'm trying to connect an HP Deskjet 3050 J610 printer to my wireless network.  It's an older model so the CD that came with it is not compatible with OS X 10.9.1, but the printer driver is already loaded in the operating system.  So I'm able to print using the USB cable but when I try to connect with my Belkin router via WPS the printer won't connect because it has a pre-assigned SSID.  I'm unable to find any configuration program on the computer that would allow me to change the SSID on the printer manually.  So far HP has been no help so I'm hoping the Apple community might have a few more answers.

    Usually this is the case but this is a rather old printer.  It has no way to access a set-up program via the printer, only WPS capability.  That's why I'm wondering if there is a way to access it via the computer.  Mavericks has the driver built in but doesn't seem to have a way to access the printer set-up.

  • After upgrading to Mountain Lion I am not able to access "security and privacy" button under "system preferences". I like to activate "find my mac" but cannot access privacy setting after upgrade. Kindly advice.

    After upgrading to Mountain Lion I am not able to access "security and privacy" button under "system preferences". I like to activate "find my mac" but cannot access privacy setting after upgrade. Kindly advice.

  • Access point setting

    anybody who can help me to figure out what's wrong with my point, every time i try to configure my access point setting, a message will display "setting: memory full. close some appliocations and try again" pls help me

    It is possible. If you give the phone at Nokia care they will also do a hard reset if required to do so. Therefore the risk is everywhere. If you have taken the full backup without problems there is small possibility of backup not getting restored if back-up and restore procedure is done correctly.
    If my post has helped you please click the white star on the right

  • Accessing business tier cluster using DNS and failvoer1

    Hi Guys,
              I think these are jolly interesting questions :-)
              Say I have a web tier and business tier, with business tier and web tier
              each in their own clusters.
              Say I deploy my web applications to web tier, and EJB's to business tier.
              Now if I want to access an EJB from the web tier, I can't just say new
              InitialContext() etc. cos
              I guess the EJB's aren't bound in the web tier, only in the business tier.
              Q1: So do I have to access my business tier by creating a context giving the
              URL of the business tier?
              I am assuming answer to Q1 is yes. If so, the best way is to probably
              somehow map one name to
              each machine. I can do this with DNS easily. Hoever, it is not clear what
              the consequences are
              regarding failover.
              Q2: What if one machine in the business tier goes down? My DNS server will
              still map to it, and hence as DNS round robins if my web tier tries to
              contact my business tier, chances are it may get IP of broken server. What
              will happen? Will it transparently "fail over"?
              Q3: How do I add new machines? Do I have to go and modify the DNS?
              Alternatively, there may be some loadbalancer/router thingie out there that
              I can map by business tier DNS name to, and it
              will transparently route to one of the business servers. I guess they can
              do pings to check health of servers, and possibly see
              new servers coming up?
              Q4: Am I on right track with loadbalancer/router?
              And for the final course :-D, I dont' quite understand something like the
              DataSource which is supposedly clusterable.
              Q5: If I want my business tier to have exclusive access to the database,
              but I want to access a datasource from the web tier, am
              I asking too much? Cos I can't target DataSource to web tier as then I'd
              have to target connection pool, and then I'd have to have
              access to DB from web tier which is somehtin gI want to avoid. ie. is
              there a way to stream data through DS from web tier to business tier.
              If you got this far, thank you!
              Regards,
              Q
              

              Since the EJBs are deployed to a cluster, you can access them with cluster address
              (URL to retrieve context). See cluster examples in your Weblogic installation.
              Your question 5 is quite wierd for me. If you don't want your web tier to touch
              database at all, use EJBs or RMI on business tier to execute your database related
              task for web tier.
              "Quantos Quattro" <[email protected]> wrote:
              >Hi Guys,
              >
              >I think these are jolly interesting questions :-)
              >
              >Say I have a web tier and business tier, with business tier and web tier
              >each in their own clusters.
              >Say I deploy my web applications to web tier, and EJB's to business tier.
              >
              >Now if I want to access an EJB from the web tier, I can't just say new
              >InitialContext() etc. cos
              >I guess the EJB's aren't bound in the web tier, only in the business
              >tier.
              >
              >Q1: So do I have to access my business tier by creating a context giving
              >the
              >URL of the business tier?
              >
              >I am assuming answer to Q1 is yes. If so, the best way is to probably
              >somehow map one name to
              >each machine. I can do this with DNS easily. Hoever, it is not clear
              >what
              >the consequences are
              >regarding failover.
              >
              >Q2: What if one machine in the business tier goes down? My DNS server
              >will
              >still map to it, and hence as DNS round robins if my web tier tries to
              >contact my business tier, chances are it may get IP of broken server.
              > What
              >will happen? Will it transparently "fail over"?
              >
              >Q3: How do I add new machines? Do I have to go and modify the DNS?
              >
              >Alternatively, there may be some loadbalancer/router thingie out there
              >that
              >I can map by business tier DNS name to, and it
              >will transparently route to one of the business servers. I guess they
              >can
              >do pings to check health of servers, and possibly see
              >new servers coming up?
              >
              >Q4: Am I on right track with loadbalancer/router?
              >
              >And for the final course :-D, I dont' quite understand something like
              >the
              >DataSource which is supposedly clusterable.
              >
              >Q5: If I want my business tier to have exclusive access to the database,
              >but I want to access a datasource from the web tier, am
              >I asking too much? Cos I can't target DataSource to web tier as then
              >I'd
              >have to target connection pool, and then I'd have to have
              >access to DB from web tier which is somehtin gI want to avoid. ie.
              >is
              >there a way to stream data through DS from web tier to business tier.
              >
              >If you got this far, thank you!
              >
              >Regards,
              >Q
              >
              >
              

  • Routing and Remote access can cause cluster network issues?

    After enabling routing and remote access on the servers, we found lots of cluster issues on our server like<o:p></o:p>
    Cluster Service stopped
    Communication was lost and reestablished between cluster nodes
    Unable to access witness resource
    Cluster resource failed
    can RRAS enabling causes cluster network issues?
    Rahul

    Hi TwoR,
    Please offer more information about your current cluster and RRAS configuration, such as are you installed the RRAS role on any cluster node? Are your cluster in Hyper-V environment?
    Or if you want to create the RRAS cluster you can refer the following KB:
    Deploy Remote Access in a Cluster
    http://technet.microsoft.com/en-us/library/jj134175.aspx
    How to configure Network Load Balancing (NLB) based cluster of VPN Servers
    http://blogs.technet.com/b/rrasblog/archive/2009/07/02/configuring-network-load-balancing-nlb-cluster-of-vpn-servers.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.

  • Accidently changed the "ownership & permissions" access admin setting to "read only"

    In the "Get Info" window on my MacBook hard drive icon, I accidently changed the "ownership & permissions" access admin setting to "read only" & now it won't re-boot the operating system. Just displays the Apple logo & running wheel on a white screen . Any advice on how best to re-set/restore would be very much appreciated, thanks

    This might help. Otherwise, it might be necessary to reinstall.
    https://discussions.apple.com/docs/DOC-2240

  • Microsoft Network Access Proctection setting

    Hi all,
                 I been working on this project for nearly a moth now, but I still can't get it work. I am trying to use EAP/TLS, PEAP integration with Cisco 1100 Series AP using ACS Release 4.2(0) Build 124 Patch 5. And of course, I am integrate that with AD 2008. My ACS server is a member server. Have issued and signed for the ACS and the clients. I have configured EAP/TLS and PEAP in the ACS side and the suppliants. However, I am still getting EAP/TLS-PEAP fail during SSL handshake.
    One doc that I have read says that i need to enable Microsoft Network Access Proctection setting, but this feature is not the list under advance settings.
    Clients and AP are able to authenticate with another ACS server which has ACS Release 4.2(0) Build 124 Patch 10. This second ACS does not have Microsoft Network Access Proctection setting either. Beside different patches, both servers have been configured the same way.
    I am so lost now, I don't even know what to try anymore as i always changed all the settings.
    If you guys need more info in order to help get to the bottom of this, please let me know.
    Many thanks,
    Paul

    Obtaining NAC/NAP
    This initial NAC/NAP release is a limited offering from Cisco and Microsoft.
    If your organization has an immediate need to evaluate or deploy the NAC/NAP solution in your environment, contact your Cisco sales representative.
    Release Notes for NAC/NAP Interoperability Architecture 1.0
    http://www.cisco.com/en/US/docs/security/nac-nap/1.0/release/notes/NACNAPRN.html#wp1161060

  • I need to access advanced setting on my iphone whilst setting up a pop3 email account

    I need to access advanced setting on my iphone whilst setting up a pop3 email account.  I have entered all of the required details but when it comes to verifying the account it does not progress any further and remains at the verification stage.  I need to go in some how and change the security type and the port numbers.  I believe this is in advanced setting but I dont know how to get there.
    Any help appreciated

    Can you clarify whether this is a POP or IMAP account? I suspect it is POP (and that messages have never been deleted off the server for the life of the account) but I'd like to make sure that is the case.

  • Access and set title of JInternalFrame from contentPanel

    I know the answer is probably very easy but how do I dynamiically access and set the title of the JInternalFrame from a JPanel in the contentPane? The problem is the JPanel does not have a direct reference stored to the JInternalFrame

    Hi,
    Please try '''firefox -p -no-remote''' in the '''Start''' > '''Run''' box (or press windows key + '''R''' if the Run box is not present), delete all the profiles with the files in it and create a new one. Please also see [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files] and [https://support.mozilla.com/en-US/kb/Backing%20up%20your%20information?s=backup&r=1&as=s Backup.]
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://addons.mozilla.org/en-US/firefox/addon/whats-that-preference/ What's That Preference? add-on] - Quickly decode about:config entries - After installation, go inside about:config, right-click any preference, enable (tick) MozillaZine Results to Panel and again right-click a pref and choose MozillaZine Reference to begin with.
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing video in Firefox without a plugin]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]

  • Accessing Advance setting online

    How do I find my user name and the password to access my setting online?
    Arm

    What is the model no of the Router...?
    Which settings you want to access...?
    If you want to access the router setup page then,Open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1 and press Enter...Leave Username blank & in Password use admin in lower case... Now,you can check all the settings.
    If the admin password is not working then,reset the router for 15-20 seconds and try again.

  • VNC without access to set up port forwarding

    I just bought the VNC Viewer app for my iPhone 4 and got it to work over 3G and wifi with my macbook pro connected to my home network. I know very little about networking but I knew enough to be able to set up port forwarding to my ip on my router at home. The problem is that I am a student in college right now, so my computer will be hooked up to the schools network when winter break is over. I have no access to set anything up on the network at school, so how will I get this to work? I made a host name at no-ip (does that allow me to connect to my computer even when my ip changes?), and I read something about being able to set up an ssh tunnel to make it work...maybe? I now have no idea what to do and the other forums I've read about this topic are using language that I am not familiar with. I need some network education! Again, the problem is setting up my MacBook Pro to allow a VNC connection on a network I have no control over. Thanks!
    Message was edited by: drummer914

    My suggestion is using TeamViewer.com (they have both a Mac and an iPhone app) and it is free for personal use.
    Team viewer has the ability to work across routers and corporate firewalls.
    The problem with ssh is that it also needs port forwarding the same as VNC. You could have your Mac at college ssh to a Mac at home, setting up a reverse tunnel (ssh -R). You then VNC to the Mac at home, and instead of attaching to a VNC server at home, you connect to the ssh tunnel listening for connections. You would have to always have the tunnel established from your college Mac to a home Mac (or it could be a Linux box at home). And at home you would also need to port forward port 22 so your college Mac and ssh into your home Mac.
    It might be an interesting exercise, but I think you would be happier using TeamViewer.com

  • Stuck on Access Anywhere set up with the wizzard waiting for the domain host to provide the Certificate.

    In my setup wizard it is stuck on "wait while your domain certificate request is processed". I added the certificate in the certificate snap in under the computer. It seemed to take it fine. I assume that is the right place for it. Do I need to
    do anything at GoDaddy to point the domain to the server? Or does go daddy know to point to the server on Azure from the certificate link? Thank you for any thoughts on how to finalize the Access Anywhere set up.
    SLB

    Hi,
    Firstly, would you please tell me more information about your deployment?
    What is the OS version of your Azure VM? Did you create a domain on the Azure VMs? What is the certificate for?
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Set cluster's control value in subpanel

    Hi
    Is there a way to set the control value of a cluster in a subpanel?
    I enclose my vis in LV8.0
    Charly
    It's always sunny in California! Certified LabVIEW Associate Developer!
    Solved!
    Go to Solution.
    Attachments:
    Access cluster's ctr subpanel.zip ‏14 KB

    If you have a reference to the VI being put into the subpanel (which you must have or it wouldn't be in the subpanel, right?) you can use that to get a reference to the VI's front panel. This in turn will let you get an array of references to all the controls and indicators on the subpanel VI's front panel. Go through this array looking at the label:text property for each reference in the array until you find the one for the control that is the cluster.
    Now, use the To More Specific Class function to cast the cluster's generic control reference to a cluster reference. You can use it to get an array of all the controls inside the cluster. Now go through this array looking at the label:text property for each reference in the array until you find the one for the control thatyou want to set and there you are...
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

Maybe you are looking for

  • System message setting for delivery.

    Hi All, I need to set message VL 261 Free goods group not complete  as error message. I tried to do this setting at LE> shipping> system modification-->specify characteristic for system message. But when i am enter error message number 261 it is givi

  • Copy columns of an internal table

    hi, i want to copy columns of an internal table into another internal table, now i loop the original table to one workarea and then get the field i need, and then append to destination table. is there any more effective way ?

  • Font styles in Notes

    How do you change the font family in the notes? isHTML is set to true in viewer.xml and vconfig.xml has <uifont name="FONT_NOTES" value="Arial,11,false,false,false"/> but it keeps coming out in Times New Roman. This happens in both Firefox and IE. Al

  • How Do I Get "Now Playing" to Always Show?

    Hello, when my iPod Classic remains idle while playing music, it will display the date and time. How do I change this setting? I'd like to be able to just flip open my case and see what's playing without having to click anything. Thanks!

  • Changing default umask value.

    how t ochange the default umask value. umask commands changes the value only for a perticular session. Which file(s) must be modified to alter default umask during boot time. I dont want to write anything in .profice or .bashrc. I want to change the