Vbscript - detect config changes

not sure if this is the right community to post this kind of question but i am after some example of vbscripts to detect routing change for example like to know when someone add a new route entry, advertised in to our campus networks, would like to know the no of routing entries being added, now of routes in the routing table /etc including vlan changes, RPF failures within the environment and number of entries in our multicast table including new additions.
any example you can provide will be useful. thanks in advance.

Config Changes are Changes to Customizing Objects (e.g. through IMG). Config changes are usually settings that a functional user would do in comparison to technical changes that involve ABAP which would require a developer.
In general you could say that config changes are usually done by functional consultants whereas anything that involves ABAP coding is not config related.
E.g. You set up order types in IMG and transport those settings. If you would now make changes to your DEV config but didn't transport this you will have config differences between DEV and Q.
Hope that helps,
Michael

Similar Messages

  • Vbscript - detecting configuration changes

    Hi,
    not sure if this is the right community to post this kind of question but i am after some example of vbscripts to detect routing change for example like to know when someone add a new route entry, advertised in to our campus networks, would like to know the no of routing entries being added, now of routes in the routing table /etc including vlan changes, RPF failures within the environment and number of entries in our multicast table including new additions.
    any example you can provide will be useful. thanks in advance.

    Configure your web application to use file-based persistence. See
    http://docs.sun.com/source/817-6251/pwasessn.html#wp31960 and
    http://docs.sun.com/source/817-6251/pwadeply.html#wp28498
    Something like the following in your WEB-INF/sun-web.xml should do the trick
    <sun-web-app>
            <session-config>
               <session-manager persistence-type=�file�>
                  <manager-properties>
                     <property name="reapIntervalSeconds" value="1" />
                  </manager-properties>
                  <store-properties>
                    <property name="reapIntervalSeconds" value="1" />
                  </store-properties>
               </session-manager>
            </session-config>
    </sun-web-app>

  • Is there a way to find all config changes between clients and sap system

    We have our Dev system with clients
    310 - Developer make changes and create transport
    400 - Test client
    410 - a copy of our Production system (over 1 year ago0
    TST - this is our quality system with one client
    101
    Production system one client
    101
    I know if i do a database copy from Production to our TST system, both systems would be exact.
    Abaper Director wants to know all the configuration changes that are different between Devopment client 310 - Test and production.
    I told him that in development client 310 the abaper or functional users make most of the changes if they do  not get transported they would be missing.
    I cannot copy to client 310 otherwise we would loose all of our version management.
    Is there another way that I can see the config changes between all these clients.
    Thanks
    Joe

    You should be able to use tcode SCU0 
    Regards,
    Brian

  • ACS will not save the config changes to reports

    I have configured a very old ACS appliance, 4.1.  At this time this is what I we have to use.   The authentication is working fine, the reports for accounting, TACACS+ accounting is only saving the login and logout of the users and not any config changes that are being made. 
    I'm hoping that someone may have an idea of what accounting command I am using or if this older version has some changes that need to be done as the config/aaa lines I use today and work on newer version work. I was under the impression that this line "aaa accounting exec default start-stop group tacacs+"  would send every command to the tacacs server?
    aaa new-model
    aaa authentication login default group tacacs+
    aaa authorization config-commands
    aaa authorization exec default group tacacs+ none
    aaa authorization commands 0 default group tacacs+ none
    aaa authorization commands 1 default group tacacs+ none
    aaa authorization commands 2 default group tacacs+ none
    aaa authorization commands 7 default group tacacs+ none
    aaa authorization commands 15 default group tacacs+ none
    aaa accounting exec default start-stop group tacacs+
    aaa accounting commands 15 default start-stop group tacacs+
    any ideas would be3 appreciated.  thanks for reading
    Yvon

    Hi martijn,
    Are there some custom fields in this list or some duplicate columns? Please have a check.
    For more information about the possible reasons and solutions, see
    http://social.technet.microsoft.com/Forums/en-US/sharepointcustomizationprevious/thread/ae946f73-3126-41ad-833b-25e4cc2b7723#e22af3fe-8203-45c4-8d19-e18041a048e2
    http://social.technet.microsoft.com/Forums/en-US/sharepointgenerallegacy/thread/59895a6b-7f61-431f-a762-e3fd9d81fe34
    http://social.technet.microsoft.com/Forums/en/sharepointcustomizationprevious/thread/eba4cd7e-498a-465f-adea-decae44d7a8c
    Regards,
    Kelly Chen

  • Detect Note Changes in MIDI Sequencer

    Hi all,
    I&rsquo;m trying to detect when the MIDI Sequencer changes notes using some kind of a listener to detect when the note changes occur. My example program is able to detect the end of the sequence and I&rsquo;d like to be able to detect note changes and print a message in a similar way. Here is my example code.
    import javax.swing.*;
    import javax.sound.midi.*;
    public class SequencerTestApplet extends JApplet
        public void init()
            SequencerTest seqTest = new SequencerTest();
            seqTest.play();
            System.out.println("Print from init()");
    class SequencerTest
        Sequencer sequencer=null;
        Sequence seq=null;
        Track track=null;
        public SequencerTest()
            try
            {   sequencer = MidiSystem.getSequencer();
                sequencer.open();
                // detect END OF SEQUENCE
                sequencer.addMetaEventListener(
                    new MetaEventListener()
                    {   public void meta(MetaMessage m)
                        {  if (m.getType() == 47) System.out.println("SEQUENCE FINISHED");
                sequencer.setTempoInBPM(40);
                seq = new Sequence(Sequence.PPQ, 16);
                track = seq.createTrack();
            catch (Exception e) { }
        public void play()
            try
            {    // NOTE 1
                ShortMessage noteOnMsg = new ShortMessage();
                noteOnMsg.setMessage(ShortMessage.NOTE_ON, 0, 60, 93);
                track.add(new MidiEvent(noteOnMsg, 0));
                ShortMessage noteOffMsg = new ShortMessage();
                noteOffMsg.setMessage(ShortMessage.NOTE_OFF, 0, 60, 93);
                track.add(new MidiEvent(noteOffMsg, 16));
                // NOTE 2
                ShortMessage noteOnMsg2 = new ShortMessage();
                noteOnMsg2.setMessage(ShortMessage.NOTE_ON, 0, 68, 93);
                track.add(new MidiEvent(noteOnMsg2, 16));
                ShortMessage noteOffMsg2 = new ShortMessage();
                noteOffMsg2.setMessage(ShortMessage.NOTE_OFF, 0, 68, 93);
                track.add(new MidiEvent(noteOffMsg2, 32));
                sequencer.setSequence(seq);
                sequencer.start();
            catch (Exception e) { }
    }In this program the init() method starts the sequencer through the play() method and then continues on so that the &ldquo;print from init()&rdquo; statement is printed from the init() method while the sequencer is still playing. Then after the sequencer is finished, it uses the MetaEventListener to detect the end of the sequence and print the &ldquo;sequence finished&rdquo; message. I&rsquo;d like to be able to make it also detect when the sequence changes notes in a similar way... Start the sequence and move on, but then be able to detect each time a note change occurs and print a message.
    Since I am putting the notes at specific midi ticks (multiples of 16, or &ldquo;quarter notes&rdquo;) I could poll the Sequencer using getTickPosition() to see if the Sequencer&rsquo;s tick position matches a particular multiple of 16. However, the problem with this is it would lock up the program since it would be constantly polling the sequencer and the program wouldn&rsquo;t be able to do anything else while the Sequencer is playing (and I also have a loop option for the Sequencer so that would lock up the program indefinitely).
    Here&rsquo;s what I&rsquo;ve found out and tried so far...
    I read in this [this tutorial|http://java.sun.com/docs/books/tutorial/sound/MIDI-seq-adv.html] on the java sun site (under &ldquo;Specifying Special Event Listeners&rdquo;) that The Java Sound API specifies listener interfaces for control change events (for pitch-bend wheel, data slider, etc.) and meta events (for tempo change commands, end-of-track, etc.) but it says nothing about detecting note changes (note on/off). Also in the [EventListener API|http://java.sun.com/j2se/1.3/docs/api/java/util/class-use/EventListener.html] (under javax.sound.midi) it only lists the ControllerEventListener and the MetaEvenListener.
    I also read here that MIDI event listeners listen for the end of the MIDI stream, so again no info about detecting note changes.
    It seems like the sequencer should have some way of sending out messages (in some fashion) when these note changes happen, but I&rsquo;m not sure how or even if it actually does. I&rsquo;ve looked and looked and everything seems to be coming back to just these two types of listeners for MIDI so maybe it doesn&rsquo;t.
    To be sure the MetaEventListener doesn&rsquo;t detect note changes I changed the MetaMessage from:
    public void meta(MetaMessage m)
    {    if (m.getType() == 47) System.out.println("SEQUENCER FINISHED");
    }to:
    public void meta(MetaMessage m)
    {    System.out.println("" + m.getType());
    }so that it would print out all of the MetaMessages it receives. The only message that printed was &ldquo;47&rdquo; which indicates the end of the sequence. So the MetaEventListener doesn&rsquo;t appear to do what I need it to do.
    I realize this is a rather odd problem and probably not many people have had the need to do something like this, but it never hurts to ask. If anyone has any suggestions on how to solve this problem it would be greatly appreciated.
    Thanks,
    -tkr

    Tekker wrote:
    As another idea, since I can't do it with a listener like I originally wanted to, would adding a separate thread to poll the sequencer and send an interrupt when it matches a particular midi tick be a good route to try? My thinking is this essentially act kind of like a listener by running in the background and reporting back when it changes notes.Yep, that worked! :)
    import javax.swing.*;
    import javax.sound.midi.*;
    public class ThreadTestApplet extends JApplet
         public void init()
              ThreadTest threadTest = new ThreadTest();
              threadTest.play();
              MIDIThread thread = new MIDIThread(threadTest.sequencer);
              thread.start();
              System.out.println("  Print from init() 1");
              try { Thread.sleep(1000); } catch (InterruptedException ie) {}
              System.out.println("  Print from init() 2");
              try { Thread.sleep(1000); } catch (InterruptedException ie) {}
              System.out.println("  Print from init() 3");
              try { Thread.sleep(1000); } catch (InterruptedException ie) {}
              System.out.println("  Print from init() 4");
    class ThreadTest
         Sequencer sequencer=null;
         Sequence seq=null;
         Track track=null;
         public ThreadTest()
              System.out.println("Sequencer Started");
              try
              {     sequencer = MidiSystem.getSequencer();
                   sequencer.open();
                   // detect END OF SEQUENCE
                   sequencer.addMetaEventListener(
                        new MetaEventListener()
                        {  public void meta(MetaMessage m)
                             {     if (m.getType() == 47) System.out.println("SEQUENCER FINISHED");
                   sequencer.setTempoInBPM(40);
                   seq = new Sequence(Sequence.PPQ, 16);
                   track = seq.createTrack();
              catch (Exception e) { }
         public void play()
              try
              {     // NOTE 1
                   ShortMessage noteOnMsg = new ShortMessage();
                   noteOnMsg.setMessage(ShortMessage.NOTE_ON, 0, 60, 93);
                   track.add(new MidiEvent(noteOnMsg, 0));
                   ShortMessage noteOffMsg = new ShortMessage();
                   noteOffMsg.setMessage(ShortMessage.NOTE_OFF, 0, 60, 93);
                   track.add(new MidiEvent(noteOffMsg, 16));
                   // NOTE 2
                   ShortMessage noteOnMsg2 = new ShortMessage();
                   noteOnMsg2.setMessage(ShortMessage.NOTE_ON, 0, 68, 93);
                   track.add(new MidiEvent(noteOnMsg2, 16));
                   ShortMessage noteOffMsg2 = new ShortMessage();
                   noteOffMsg2.setMessage(ShortMessage.NOTE_OFF, 0, 68, 93);
                   track.add(new MidiEvent(noteOffMsg2, 32));
                   sequencer.setSequence(seq);
                   sequencer.start();
              catch (Exception e) { }
    import javax.sound.midi.*;
    public class MIDIThread extends Thread
         Sequencer sequencer=null;
         long midiTick=0;
         long midi_progressionLastChord=32;
         boolean print = true;
         public MIDIThread(Sequencer sequencer)
              this.sequencer = sequencer;
         public void run()
              System.out.println("Thread Started");
              while (midiTick<midi_progressionLastChord)
              {     midiTick = sequencer.getTickPosition();
                   if (midiTick == 0 || midiTick == 16)
                   {     if (print)
                        {     System.out.println("NOTE CHANGE");
                             print = false;
                   else
                        print = true;
    }I put in several print statements (with pauses in the init method) and the init print statements continue to be printed while the sequencer is playing, so it's not locking up the system and the "note change" statements happen when the sequencer changes notes. So this part is working perfectly! :)
    Here's what I got for my output:
    Sequencer Started
    Print from init() 1
    Thread Started
    NOTE CHANGE
    Print from init() 2
    NOTE CHANGE
    Print from init() 3
    SEQUENCER FINISHED
    Print from init() 4
    The only problem I'm having is how to "throw" this action back up to the main init method and have it do the print statement instead of the thread class. Throwing an interrupt apparently won't work as you have to poll it to see if it has been interrupted (so it'd be no different than just polling the sequencer to see if it equals the specific midi tick). Maybe throw an ActionEvent? But how to attach it to my applet? Would I need to create an instance of my applet and then pass that into the thread class so it can catch the ActionEvent? And if I do that will it stop the thread or will it keep the thread running so can detect the other notes?... Or is there a better/simpler way to do this?
    Thanks again,
    -tkr

  • %ONLINE-SP-6-REGN_TIMER: multiple line cards down after config change

    Hi,
    I was wondering if someone could help.
    I recently changed the entire configuration on two 6509 switches, and the fibre modules on slot 7 and 8 have gone down on BOTH switches. It would be easy to say that its a hardware fault but I cannot understand how module 7 and 8 can go down on both switches. Initially I thought it maybe due to IOS bug 22-33.SXI2a.bin" so I upgraded it to s72033-advipservicesk9_wan-mz.122-18.SXF12a.bin but it still down.
    These are the actions I have carrried out to try resolve the issue:
    - Reverted back to orginal configs but no luck
    - Tried to use "power enable" command but the status light on both modules seems to turn red and then go off again.
    - I have also tried to put one of the fibre modules into a different slot but no joy
    - Upgraded the IOS from 22-33.SXI2a. to 122-18.SXF12a
    I am running out of ideas.. can anyone help ? I am sure that hardware fault cannot occur on BOTH modules 7 & 8 on BOTH switches after config change.
    The error in the log shows that modules "failed to bring online because of registration timer event". I understand this means that it is unable to download the image within the allocated time.. maybe I could manually copy the image onto the line card if that is possible ?? any ideas ?
    Daughterboard         WS-SUP720          SAL135063V2  4.0    Ok
      7  Centralized Forwarding Card WS-F6700-CFC       SAL1419HKJK  4.1    PwrDown
      8  Centralized Forwarding Card WS-F6700-CFC       SAL1419HAG0  4.1    PwrDown
    Mod                                                      Hw    Fw           Sw           Status
      7  5475.d016.075c to 5475.d016.075f   3.1   Unknown      Unknown      PwrDown
      8  5475.d0bb.7404 to 5475.d0bb.7407   3.1   Unknown      Unknown      PwrDown
    System image file is "disk0:s72033-advipservicesk9_wan-mz.122-18.SXF12a.bin"
    BOOT variable = disk0:s72033-advipservicesk9_wan-mz.122-18.SXF12a.bin,12;sup-bootdisk,1;
    CONFIG_FILE variable =
    BOOTLDR variable =
    Configuration register is 0x2102
    Standby is not present.
    May 28 17:25:10.352: %C6KPWR-SP-4-DISABLED: power to module in slot 7 set off (Module  Failed SCP dnld)
    May 28 17:25:10.452: %ONLINE-SP-6-REGN_TIMER: Module 8, Proc. 0. Failed to bring online because of registration timer event
    sm(cygnus_oir_bay slot8), running yes, state wait_til_online
    Last transition recorded: (disabled)-> disabled (disabled)-> disabled2 (restart)-> wait_til_disabled (timer)-> may_be_occupied (timer)-> occupied (known)-> can_power_on (yes_power)-> powered_on (real_power_on)-> check_power_on (timer)-> check_power_on (power_on_ok)-> wait_til_online
    May 28 17:25:10.452: %C6KPWR-SP-4-DISABLED: power to module in slot 8 set off (Module  Failed SCP dnld)
    May 29 11:41:16.601: %SYS-5-CONFIG_I: Configured from console by console

    Would anyone know if the line cards are maybe failing due to Embedded Event Manager configuration ? The person who configured this lab has left the company so I am not sure what the EEM configurations actually mean.
    The reason i am suspecting the EEM configuration is because the error in the log seems to suggest the module failed due to registration timer event.
    May 30 14:47:00.366: %ONLINE-SP-6-REGN_TIMER: Module 8, Proc. 0. Failed to bring online because of registration timer event
    Just trying to check all the possibilities as I have tried everything else,
    event manager directory user policy "disk0:/fcp_eem"
    event manager directory user repository tftp://10.11.x.x/xxx/
    event manager scheduler script thread class default number 10
    no event manager policy Mandatory.go_switchbus.tcl type system
    event manager policy rp_test.tcl type user
    event manager detector rpc ssh acl 60 event manager directory user policy "disk0:/fcp_eem"
    event manager directory user repository tftp://10.11.216.145/FCPD/
    event manager scheduler script thread class default number 10
    no event manager policy Mandatory.go_switchbus.tcl type system
    event manager policy rp_test.tcl type user
    event manager detector rpc ssh acl 60

  • Prime Infrastructure 2.0 - Alert on Switch Config Change

    We are in the process of testing out Prime Infrastructure 2.0, is there a way to get an alert when a device's configuration has changed, and send out what has changed in email? I have scheduled Config Archiving for all of my devices, and i can see the config differences when a changes is made in the Prime GUI, but we currently use Kiwi CatTools to send out emails that show what devices had configuration changes and what those changes were, it would be nice if Prime would do that so we could do away with that service. I have looked through all of the reports but do not see anything.

    Hi,
    I know this feature is there is LMS ,where you can configure the AUTOMATED Action based on Syslogs to get an Alert for config change or any other changes ,however I do not see this option available in PI  2.0.
    Syslogs are not compltely supported in 2.0 but in PI 2.1 we should have the complete support for syslogs.
    Thanks-
    Afroz
    [Do rate the useful post]

  • SAP BI System Copy with only Config changes, Not Data

    Hi BASIS,
    I have a requirement from a client to build a system landscape stratagy for their SAP BI system.
    We have DEV - QA - PRD systems for SAP BI (7.0 SP 16)
    Both DEV and QA are completely out of sync with PRD. We are doing development tasks directly on PRD. Now we have decided to re-sync the DEV & QA systems with PRD.
    'System copy with Data' will be easier to implement. But our PRD DB size is nearly 3TB. The client is not ready to pay for the extra/temp. disk space for DEV and QA sync. ( We are on DB2).
    Now, we have only one option left. Capture all Config changes from PRD and transport them back to DEV & QA. This is a tedious task and cause many inconsistencies.
    Would anyone have any other ideas to bring the systems in sync with less time involved and less resources.
    I am a SAP BI person. So dont know much about BASIS tasks. Please help me with any links of best practises or SAP notes.
    Cheers

    HI Reddy,
    We came to know from our basis team that we do not have the Java Stack installed in our BI 7.x system yet.
    As it is integrated with EP which has Java, our web reports are working.
    1) But my question is still do we ned to install the Java Stack in our BI system as i do not find any Export to PDF option in EP for the reports (eventhough AS Java supports this).
    2) Or can we use the existing configuration without Java STack integrated to EP for the new tools like Report Designer and Integrated Planning?
    Regards
    Kumar

  • How to add config changes in Transport Request

    Hi Experts,
    We did some config changes in Logistics - General=>Material Master=>Configuring the Material Master=>Define structure of Data screen for screen sequence / Assign Secondary sequence / Maintain Order of Main and Additional Screens.
    But while saving this config of  Assign Secondary sequence / Maintain Order of Main and Additional Screens its not asking for Transport Request.
    Even i checked in the menu of EDIT-Tranport entries, but the menu's are in disable mode.
    Can anyone guide me how to add this two fields config changes in to TR?
    Thanks and regards,
    Anandhan

    Hi,
    This is really strage.
    However you can try the following.
    upon entering the config node, use the first menu option in which option "transport" would be there.
    Upon clicking it, the same table opens in display mode.
    Select the entries that you have created and use the option "include in transport"
    When asked for, provide teh transport number.
    Alternatively you can create a transport and them use SE10 to include entries from tables that you can select.
    ou may need teh help of an experinced ABAPer or Basis to do it if you are not confortable doing it yourself.
    However if the config effects multiple tables, then this is not a viable option as you need to know all the impacted tables.
    hope this helps.

  • LMS 4.2.2 - RME Config Change

    I am currently receiving emails from LMS 4.2.2 that alert me of a config change on my switches.  The alerts are emailed after the periodic polling job that is run daily.  My problem is the email contain only the ip address of the device.  It would be nice to open the emails and see what change(s) made on the device.  Does anyone know if this can be done?  TIA                  

    i have seen this with SNMP timeout needed to be increased.
    please try to increase those values, and not the job completion values.
    I just saw in CP LMS 4.2 that the values are assembled on a new page.
    all of them ...
    Admin > Network > Timeout and Retry Settings > Inventory/Config Timeout and Retry Settings
    also in the navigator of the same last windows your screenshot is from try the device specific timeouts:
    Admin > Collection Settings > Config > Edit the Inventory/Config Timeout and Retry Settings
    HTH

  • ISG - ASR1002 config change

    Hi Support Team,
    We have had two instants - when there was an outage on our broadband customer.
    Our 'rancid' server was able to pick up the change in config on one of the BRAS - AS1002
    Config change is attached below...this was removing and adding the configs as noticed by the Rancid Server.
    Any assistance anyone can give in identifying the root cause will be very much appreciated as so far the ASR log has no indication that the change was manually done by any of our users.
    - class-map type traffic match-any ISG_OPENGARDEN
    -  match access-group output name OPENGARDEN_ACL_OUT
    -  match access-group input name OPENGARDEN_ACL_IN
    + class-map type traffic match-any Empty-Class
      class-map type traffic match-any L4REDIRECT
      match access-group input name L4REDIRECT_ACL_PORTAL_IN
    - class-map type traffic match-any Empty-Class
    + class-map type traffic match-any ISG_OPENGARDEN   
    + match access-group input name OPENGARDEN_ACL_IN   
    + match access-group output name OPENGARDEN_ACL_OUT
      class-map type control match-all IP_UNAUTH_COND
       match timer IP_UNAUTH_TIMER
    We are looking forward to hear from anyone who can throw us some light into this 'strange issue'
    Thankyou in advance,
    RWaqa

    Hi,
    You can select particular absence/Attendance types in this table V_T554S_ESSEX ... based on selection in this table you can restrict entries in CAT2/ ESS portal.
    Try this it may help.
    Thanks

  • Detection of changes in the context prior saving a document

    Original thread title: IS_CHANGED_BY_CLIENT and RESET_CHANGED_BY_CLIENT methods / selection change
    Does anyone know, why is that the RESET method is recursive, but the IS method isn't?
    The problem is, I need to trigger a save of a document only when there is some change made by the user, but to do that i'm being forced to implement myself a recursive method which uses both IS_CHANGED_BY_CLIENT and GET_CHILD_NODES methods. While I simply call the RESET_CHANGED_BY_CLIENT method of the root node and it affects all subnodes.
    Another problem is that, the selection changes (e.g. in a dropdownbyindex) don't get accounted as changes by the IS_CHANGED_BY_CLIENT method.
    Is there any simpler way to implement this?
    Thanks

    Thanks for your comments Manish. I've already programmed the recursive method and it is working ok, seems to be the only way then.
    But how did you solve detection of selection changes? Currently i'm thinking of having an event handler for each dropdown, which will mark a flag to be evaluated additionally to the method's result. You did the same, or selection changes didn't matter in your case?
    Thank you
    Solved: The context change log seems to be a far better alternative, it also detects selection changes.
    Check DEMO_CONTEXT_CHANGES example. If you need only to detect changes, you can use just the enable_context_change_log and get_context_change_log methods.
    It may be a little bit taxing when the context is large though, I'd like if anyone which has had this experience could comment.

  • Detect value change in a wire

    Hi, this seems pretty trivial, but I cannot find a clean way to do it, and i couldn't find anything in the forums. I want to detect a change in the value in a wire coming out of a "Get timestring VI", from iteration to iteration, and I dont think event structures quite help, because they detect changes only in front panel controls. I prefer not to use shift registers because they bring in unnecessary clutter. Is there a cleaner way to do this?
    Thanks!

    A feedback node is a little less clutter because it is more localized.
    Here's the code to detect a change in a numeric, but it works with any datatype. Modify as needed.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    Changed.png ‏3 KB

  • Mx:datagrid detect itemeditor change

    I've got a datagrid with a checkbox renderer/editor like
    this. I've tried several alternatives but I cannot get
    click="myFunction()" to see myFunction even though it is
    defined in the same file. I want to detect each change and send
    that change to the server so I don't have to worry about the user
    forgetting to save changes.
    I've allso tried listening to the ArrayCollection, but my
    listener only gets called on initial startup.
    <mx:ArrayCollection id="AttendanceArray"
    collectionChange="attendanceEventHandler(event)"/>
    This can't be that hard, but I sure can figure it out.
    Anyone?

    Based on your description this code may get you
    started:

  • SIP stops when upgrading from ASA from 8.4.1 to 8.4(2)8 w/ out config change? Why?

    I have to be missiong something small in my config.
    If I upgrade my ASA 5510 which I am routing and NATing off of, from 8.4.1 to 8.4.2.8, SIP stops. All phones go dead.
    If I roll bck to 8.4.1, SIP comes up.,... Go bck to 8.4(2)8 nd SIP goes down..... 
    This is without mking any config changes.
    I have looked at it so long, I must be overlooking something simple, simple, simple...

    Have spent sIx hours in past 24 w/ Cisco TAC and they have a tin of caps as have I but can't figure out why there is a denial of SIP from inside outside and outside inside to/from sip providers three IP addresses. Have created new access lists, new access groups to allow all 3 ip's in & out, increased timeout, bypassed IPS, have both sip UDP & tcp allowed in/out, specified inspection to approve any any for all sip protocols in/out to/from Lync & mediation and nada.
    To answer another question, yes I'm certain config doesn't change... I reloaded tge same running config from a bkup just to make sure.....
    What I see in the logs coming in/out is the call does make it all the way through the SSM to the ASA..
    What happens there is the head scratcher...
    SiP even though allowed and even though I've specified it to push through inspection On ASA side is denied based on inspection rule...
    I also tried using another one of my (unused) public IPs for only SIP thinking that maulybe there was a core conflict with multiple services NATd to the same public IP but that also did nothing.
    On topology I only have a single location so I'm using my 5510 to route as well...
    Have 1 IIS web server l, SQL, (ports clised except to obe vendor and am allowing via access list by their IP and ipsec,) Exchange, Lync, Ironport, Endpoint and everything else is 80/80...
    Everything is on Server 08r2 w/ exception of web server and two boxes ( one stand-alone & one VM on hyper-v)  I am running Server8 for Microsoft TAP engineering / validation airlift. Neither of those are attached to UC/UM at all...
    I'm using dynect from dyndns for outside network web services and just piggybacking on time Warner metro e for internal (no physical DNS server)
    When I look at caps everything is identical in the tcp and UDP trace even on sip except for the denial...
    Which caps/logs would 'y'all like to see and I'll post em when I get home....
    Is there a link to bug notes Jullio? Is it sip specific? Any possibility of it being just a name/cosmetic big I can force a work around to?
    I recall when Asa first was released I had to specify port 25  allow instead of being able to simply say allow smtp .. That took 2 weeks but it allowed for a work around so whatever I can do/try I'm willing!! Someone may wanna tell TAC if it's a bug because after 6 hours yesterday they are saying there's not a bug... :)
    Thanks all!!!!

Maybe you are looking for