1200AP Distribute Configuration Not Working

We input MAC addresses one or multiple at one time, then distribute to 10 APs and works fine. Then we try to remove one MAC and distribute to all APs and it does not distribute to all, only removes from that one AP.
Ernie/CA.

You can add MAC adresses by distributing configs but you can't remove MAC addresses.

Similar Messages

  • Alert configuration Not working in RWB

    Hi,
       In RWB alertconfiguration is not working, showing the error
    <b>404 Not Found</b>". I gone through this thread
    Alert configuration or Alert Inbox-----404 Not Found  
    And my host name is full host name.
    In exchange profiles my port is 50100 (J2EE PORT)  (Not Changed)
    1. In SMICM when I changed to port to 50100 (J2EE) then alert configuration
    working, But My scenarios not working throwing error : System Error.
    <b>Error Category XI_J2EE_MESSAGING_SYSTEM
    Error Code HTTP_TRANSMISSION_ERROR</b>
    2. In SMICM when I changed to port to 8001 (ABAP Port) then Alert configuration not working (Error : 404 Not Found), but my scenarios were working fine.
    what would be the reason?
    thx in advance,
    Ansar.

    HI,
    If Error: 404 Not Found
    Description: The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
    Possible Tips:- for HTTP_RESP_STATUS_CODE_NOT_OK 404
    • 404 is an HTTP response code that indicates that the resource in question couldn't be found. Usually this is due to an incorrect URL, so it is better to cross check all URLs.
    Check pipeline URL in the SLD in the business system of the Integration Server For this go to SLD->Business System-><yourIntegrtaion Server>->Pipeline URL: It should be like this http://<host>:<port>/sap/xi/engine?type=entry Where host is the host name of the Integration Server and port is the HTTP(8xxx) port. To verify this in Integration Server you can do like this. Go to SXMB_ADM->Integration Engine Configuration->Choose Edit from Menu -> Change Global Configuration Data to switch to change mode. Then select System Landscape - Load Configuration. (This is not required always)
    • Check that the port really is the ICM HTTP Port and not the J2EE port i.e SMICM then menu GOTO --> SERVICES and check the port number for HTTP. It should be HTTP port
    • If the error is Page cannot be displayed, cannot find server in https configurations Check and correct the SSL configuration for the ABAP and the J2EE side of the system
    • If the error is because of integration server when using Proxy communications then check these. i.e SXMB_ADM->Integration Engine Configuration->Corresponding Integration Server enrty should be dest://<Http Integration server-Destination> Where < Http Integration server -Destination > is the RFC destination (SM59) of type HTTP connection (type H) to the Integration Server. In this case, host name, port, and path prefix are saved in the RFC destination
    Also see the below links
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/81023cfa699508e10000000a11402f/content.htm
    Regards
    Chilla

  • Dynamic configuration not working in Java mapping

    Hi All,
    I have a scenario where i  am using java mapping. In this i am doing following
    1)Read file name from input message header
    2)set file name in output message Header
    3) set Directory name in output message Header
    i  have used following code .. but iit is not working... when i test end  to end...  in reciver communication channel it is failing stating " message failed as "Directory is not set in Header. Also i checked in SXMB_MONI  "dynamic configuration".It is not showing Directory.
    this is code.
    public void transform(TransformationInput transformationInput,TransformationOutput transformationOutput)
                   throws StreamTransformationException {
                   private Map para;
                   String Directory ;
                   String  inputFileName;
                   String var1 = "ABC";
                   para = transformationInput.getInputHeader().getAll();
                   DynamicConfiguration conf = (DynamicConfiguration) para
                             .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
                   DynamicConfigurationKey keyFileName1 = DynamicConfigurationKey
                   .create("http://sap.com/xi/XI/System/File", "FileName");
                         inputFileName = conf.get(keyFileName1);
                   DynamicConfigurationKey keyFilename = DynamicConfigurationKey
                             .create("http://sap.com/xi/XI/System/File", "FileName");
                   DynamicConfigurationKey keyDirecory = DynamicConfigurationKey
                             .create("http://sap.com/xi/XI/System/File", "Directory");
                   Directory = "tmp/"+var1;
                   conf.put(keyFilename,inputFileName);
                   conf.put(keyDirecory, Directory);
    I am in PI 7.1 ,   and in eclipse its showing warning that Para is not used.
    Can anyone show some lights.
    Also is there any way to debug this?? like is there any function by which i can write the trace for each step to see those in MONI.

    Method name:   public void createDirectory(Resultlist result, Container container)throws StreamTransformationException
    //Use Simple UDF and do the following lines
    String Directory ;
    String  inputFileName;
    String var1 = "ABC";
    DynamicConfiguration conf = container
        .getTransformationParameters()
        .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
      DynamicConfigurationKey keyFileName1 = DynamicConfigurationKey
                   .create("http://sap.com/xi/XI/System/File", "FileName");
      inputFileName = conf.get(keyFileName1);
    DynamicConfigurationKey keyFilename = DynamicConfigurationKey
                   .create("http://sap.com/xi/XI/System/File", "FileName");
    DynamicConfigurationKey keyDirecory = DynamicConfigurationKey
                   .create("http://sap.com/xi/XI/System/File", "Directory");
    Directory = "tmp/"+var1;
    conf.put(keyFilename,inputFileName);
    conf.put(keyDirecory, Directory);
    and remove these 3 lines
    //private Map para;
    //para = transformationInput.getInputHeader().getAll();
    //DynamicConfiguration conf = (DynamicConfiguration) para.get(StreamTransformationConstants.DYNAMIC_CONFIGURATION
    >>I am in PI 7.1 , and in eclipse its showing warning that Para is not used.Can anyone show some lights.
    You can simply remove declaring Map Para line... The eclipse gives warning because you dont assign values for it and you are trying to use...
    For using the same input file name in output side, you dont need coding ... you need only for the directory...
    Enable ASMA attributes in the channel.
    Edited by: Baskar Gopal on Feb 24, 2011 10:58 AM

  • Dynamic Configuration not working with Integrated Configuration

    Hi All,
    Dynamic Configuration works fine in PI 7.3 when Classical Configuration is used. However the same does not work using Integrated Configuration.
    Scenario :
    SOAP -->SOAP Synchronous scenario in PI 7.3 (Dual Stack).
    Trying to save a value from Request mapping using dynamic configuration and use the same in response mapping.
    UDF Code :
    Request Mapping :
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey Variable = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP", "Variable1");
    conf.put(Variable, a);
    Response Mapping :
    DynamicConfigurationKey Variable = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP", "Variable1" );
    string1 = conf.get(Variant);
    Note : Using Integrated Config(AAE Processing) - Response header does not have DynamicConfiguration header node , but Classical Configuration has that.
    Regards,
    Parimala
    Edited by: ParimalaE on Mar 1, 2012 1:33 PM

    For us this is what we had:
    This didn't work (getInputParameters is the newer stuff that doesn't work):
    DynamicConfiguration dc = (DynamicConfiguration)container.getInputParameters().getValue(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey dck = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP","TServerLocation");
    dc.put(dck,"https://xyz.api-salesforce.com/services/Soap/c/26.0/0DFa00000008jis");
    return "";
    This works for us(we had to remove getInputParameters):
    DynamicConfiguration dc =  (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey dck = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP","TServerLocation");
    dc.put(dck,"https://xyz.api-salesforce.com/services/Soap/c/26.0/00D3000000001X0");
    return "";

  • Local client copy profile SAP_CUSV: Configuration not working

    Dear Experts,
    My configuration client is 350 and my new client is 100 in same DEV system. Client 100 is copied from client 000 with profile SAP_ALL. Then I created a local copy from 350 using profile SAP_CUSV into same client 100. After that I am facing issues under HCM module. All the HCM configuration that works well in 350 does not work in client 100 even the standard header configuration of PA30 does not work. All the customizing entries are however present in HCM configuration tables but system seems not to read anything from HCM configuration. Apart from screen headers, the configuration done by consultant also has conflicts and system shows an error to maintain entries in tables which are already maintained and visible in configuration tables in 100. An example of error in which system gives error of maintaining Payscale Type and Payscale Area in table T510 is attached where as the entries are maintained in given table.
    Best Regards,

    Hi,
    Please check the following notes.
    1946003 - Client copy completed with Dictionary error
    1171306 - Error with pooled tables when copying a client
    686357 - Table pool has incorrect length following Unicode conversion
    Please close the thread if this address your issues.
    Thanks 
    Adil

  • Shared services db configuration not working in fusion

    Hi,
    I am trying to install v11. The problem is that the configuration of the db for HSS is not working correctly. The application server is deployed, the openldap service is up and EAS is fine but HSS isn't. Obviously nothing is registering with HSS. When I choose only to figure the db for hss there is no screen to enter the details. It goes straight to configure and then says its done. However, it is still listed as an outstanding task not as a failure. I tried deleting the db I had for hss and recreating it but this made no difference. I have read some docs but the screen I need is not coming up. I believe it did once though when I first went to install fusion.
    Any ideas?
    Thanks,

    Actually when I installed version 9, I never got around to configuring shared services and so never had a shared services database in SQL Server to begin with.
    One question about the registry entry you told me to delete: The (HKEY_LOCAL_MACHINE\SOFTWARE\Hyperion Solutions) which currently exists would be the entry for version 11 which I have installed right? It's the only entry for Hyperion Solutions in the registry.
    After uninstalling versino 9, C:/hyperion still existed on my machine (though it didnt have all the subfolders which it did prior to uninstalling), so I manually deleted it before installing verison 11.
    I wouldn't mind installing it on a compatible version of windows, but the thing is that at this point this is all that is available to me.
    and I don't have any other oracle products.
    thanks....

  • Component and Application Configuration not working

    Dear Friends,
      I want to disable the reject button in HCM Processes and Forms Webdynpro component HRASR00_PROCESS_EXECUTE and in application asr_process_execute only for some specific roles in Portal. So I tried to use the component configuration followed by the application configuration and passed this configuration id as a application parameter in the Portal, but its not working.Please find below the config steps which I did, let me know if I am missing anything.
    1. Created a new Component configuration ZTEST for the Webdynpro component HRASR00_PROCESS_EXECUTE  and changed the property of the Reject button to "Invisible".
    2. Created a new Application configuration ZTEST1 for the Webdynpro application ASR_PROCESS_EXECUTE and included the component configuration in the application configuration.
    3. Created an Application Parameter WDCONFIGURATIONID for the Webdynpro application ASR_PROCESS_EXECUTE and hard coded its value as ZTEST1(Application configuration ID) for testing purpose.
    4. Tried to test the application from Portal, but didn't work. I don't think the UWL customization is required at this point as we have hardcoded the WDCONFIGURATIONID in the Webdynpro Application.
    Regards,
    Sapient

    Hi,
    We had a same issue....the work around we got was that we had to create an enhancement...we removed the standard button...and created our custom button in place of the standard button....of course...the action method for our custom button was the same as the standard button....now since it is a custom button we were able to control the visibility of it....
    you can try to do it the same way....there is no coding involve in this...only removing the standard button and placing in your own button....SAP does not allow changing the properties of the standard ui elements.....just want to mention that by removing the standard button...you are not actually removing the button....it stays on the layout....but it will not show up when you run the application....but your own custom button will show up....
    If you do not know the procedure of removing the standard ui...it is fairly easy...right click on the ui element under the ROOTUIELEMENTCONTAINER...and select remove element....as i said before do not worry you are not removing it completely...it stays on the layout...and if you want to put it back...just right click on it again and select "undo deletion"....that is all
    once you have your custom button there...you can control it the way you want...depending on the role....
    Thanks..
    AS...

  • SPA122, "Restore Configuration" not working.

    Hi,
    I can't restore .cfg files on the Config Management menu. The "browse" button
    is not active and i can't load a file. The firmware version is 1.3.1. Tested with Firefox, Opera, Google Chrome
    Internet Explorer (old V6), same results. I haven't got problems with firmware upgrade or backup configuration menu.
    Using Windows XP...
    Thanks. (sorry for my poor english)

    Well, i saved my configuration with the config manager, do one RESET with the phone (73738#). Logon on the PC with 192.168.15.1 (Yellow LAN port). And the restore configuration is active!  But when i restore my .cfg file the SPA122 don't work well. The VoIP line is working but the PC connected to the yellow LAN does not work, can't get IP address (0.0.0.0).
    (I reboot PC, SPA and router,same thing).
    To reproduce the bug simply put the SPA in Bridge mode in Network service.
    My SPA is in bridge mode and got one PC on the yellow LAN port. The SPA122 and the PC got static IP address from the ADSL router in DHCP. SPA -> 192.168.1.70 and the PC -> 192.168.1.64.

  • Acrobat Distributed Form not working

    I set up a distributed pdf form on acrobat.com and the submit
    button does not work as expected. When I received the test
    distribution email, I clicked on the link and was asked if I wanted
    to preview or download, I selected download. After filling in the
    form, I clicked submit, I was then asked for my email and where I
    wanted to save the file. The test submission results did not show
    up on the results when I log into acrobat.com.
    What am I doing wrong? I watched 45 minutes of tutorials on
    adobetv.com and still missed something?
    This is disappointing because I had hoped to use this
    solution for several clients.
    Thanks for any help!

    Hello CJ Parsons,
    I'm not sure you're doing much wrong, just maybe need to
    include a few extra steps.
    We don’t display the data in Acrobat.com, only collect
    it.
    To view it, launch Acrobat and goto Comment-> Track
    Reviews-> Forms, and select the form and click on "View
    Responses" in the panel on right side.
    Acrobat creates a xxx_responses.pdf in the same directory as
    form, and you can directly open the this pdf to view responses.
    Let us know if you have any more questions!
    Hope this helps.
    Thanks!
    Pete

  • Multicast configurator not working

    I need help with multicast on Adobe Media Server 5.  When I try to open configurator.html, all i get is the dark gray background. 
    Im running it from a mapped drive on a Win7 machine. If I do the same thing on another Flash Media Server 4.5, it's fine.
    Any Ideas?
    Thanks

    - I’m on window7 with A: mapped to \\ams-server\c:\Program Files\Adobe
    - Per your instructions I added A: as a Trusted location inthe Flash Player Global settings.
    - Now I get a grey flash looking progress bar and another grey bar with “Error #2032”
    Another important fact is the my computer is not connected to the internet.  That appears to matter.  Do the configurators require an internet connection?
    I am able to recreate the Error #2302 issue on other computers that are not internet connected.  Then, when I connect to the internet, the configurator seems to work.
    Here is the test I ran
    1. Installed AMS 5 on a laptop while not on the internet.  It plays the flash stream demo fine.
    2. I attempted to open f4mconfig.html and it did not work.  Grey screen, so I added c: to my trusted locations and then I get the Grey bar with Error #2302.
    3.  I connected the laptop to the internet.
    4.  I reloaded f4mconfig.html and it worked fine.
    5. I disconnected from the internet.
    6. I then tried to open the multicast configurator.html and I get the Grey bar with Error #2302
    7.  I confirmed taht f4mconfig.html still works while disconnected from the internet.
    Packet captures show that a working f4mconfig.html is doing HTTP GET of these files
    /images/shared/download_buttons/get_flash_player.gif
    /pub/swz/flex/4.6.0.23201/framework_4.6.0.23201.swz
    /pub/swz/flex/crosdomain.xml
    /crossdomain.xml
    /pub/swz/tlf/s0.0.232/textlayout_2.0.0.232.swz
    etc

  • Why does this NAT configuration not work ?

    interface FastEthernet0/0
    description To Cable Modem
    ip address dhcp
    ip nat outside
    interface FastEthernet0/1
    description To LAN
    ip address 192.168.1.254 255.255.255.0
    ip nat inside
    ip nat pool ovrld 72.186.194.72 72.186.194.72 netmask 255.255.192.0
    ip nat inside source list NATOUT pool ovrld overload
    ip access-list standard NATOUT
    permit 192.168.1.0 0.0.0.255 log
    Show ip nat translations shows no translations.
    The Stats
    Dynamic mappings:
    -- Inside Source
    [Id: 3] access-list NATOUT pool ovrld refcount 0
    pool ovrld: netmask 255.255.192.0
            start 72.186.194.72 end 72.186.194.72
            type generic, total addresses 1, allocated 0 (0%), misses 0
    Queued Packets: 0
    I can get one device to translate with a static but the dynamic does not work.

    Hey Rolf. I used the commands like you said but it will not translate anything unless the entry is static.
    ip nat inside source static 192.168.1.2 72.186.*.72      is what im using to get my main node translated while i figure out this problem. The configuration worked fine until I upgraded IOS from 12.3 to 12.4.  Thats when it quit translating. My config follows. Keep in ming that when i tried your commands I removed the static entry for 192.168.1.2
    Building configuration...
    [OK]
    HEADEND(config)#do sh run
    Building configuration...
    Current configuration : 3267 bytes
    version 12.4
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    hostname HEADEND
    boot-start-marker
    boot-end-marker
    enable secret 5 $1$vk5M$eGiHBbhKZrvPdNz0aXhve1
    no aaa new-model
    memory-size iomem 15
    no network-clock-participate slot 1
    no network-clock-participate wic 0
    ip cef
    no ip dhcp use vrf connected
    ip dhcp excluded-address 192.168.1.1 192.168.1.100
    ip dhcp excluded-address 192.168.1.254
    ip dhcp excluded-address 192.168.1.250 192.168.1.254
    ip dhcp pool DEESPOOL
       network 192.168.1.0 255.255.255.0
       dns-server 65.32.5.111 65.32.5.112
       domain-name dbtech.netpros.com
       default-router 192.168.1.254
    crypto pki trustpoint TP-self-signed-3843280569
    enrollment selfsigned
    subject-name cn=IOS-Self-Signed-Certificate-3843280569
    revocation-check none
    rsakeypair TP-self-signed-3843280569
    crypto pki certificate chain TP-self-signed-3843280569
    certificate self-signed 01
      3082024F 308201B8 A0030201 02020101 300D0609 2A864886 F70D0101 04050030
      31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274
      69666963 6174652D 33383433 32383035 3639301E 170D3032 30333031 30333331
      30305A17 0D323030 31303130 30303030 305A3031 312F302D 06035504 03132649
      4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D33 38343332
      38303536 3930819F 300D0609 2A864886 F70D0101 01050003 818D0030 81890281
      8100BD0F 1F06509B 67D1C1F4 C9AEFA31 89A8C059 4B17CDE8 95F23275 CFB9AC41
      D784F703 C25B630D A0461FB1 114B3608 B3387518 8F552DD7 41796488 F0C79FC0
      103A2C3F FFE388FE 7970D921 C5F754D1 68A15518 F30F91CC 26884284 5C8C3275
      B06A584D 96D2D5CB 92068B40 C05C8A4E 80E9CCE0 2DE5883F 9EF405BB 89252921
      B03D0203 010001A3 77307530 0F060355 1D130101 FF040530 030101FF 30220603
      551D1104 1B301982 17484541 44454E44 2E74616D 70616261 792E7272 2E636F6D
      301F0603 551D2304 18301680 14E92E8B 5F671437 6F383CCD 42AD6AE8 4CC47730
      F9301D06 03551D0E 04160414 E92E8B5F 6714376F 383CCD42 AD6AE84C C47730F9
      300D0609 2A864886 F70D0101 04050003 81810055 7BE1410C C73F83F3 26B30B9A
      569ED607 9FDCB6CD 46125795 0A8137EF 930C195B 19E79813 B6DF9B2D 6809F4A2
      A5F0BDB0 03DF87D2 81643EC7 5D619E65 132B1C12 61FB212B DAEB02A2 56E63559
      D931DF1F A3817AAF F21D8EE0 D0741B96 DBF52051 78964876 5AB7E319 5A051455
      4EA9186D 1E9ABC81 00573284 564D6BE7 486681
      quit
    username derek privilege 15 secret 5 $1$rBZD$NqY/hkTEpcZV4rYqwtKAD.
    interface FastEthernet0/0
    description To Cable Modem
    ip address dhcp
    ip nat outside
    duplex auto
    speed auto
    interface FastEthernet0/1
    description To LAN
    ip address 192.168.1.254 255.255.255.0
    ip nat inside
    duplex auto
    speed auto
    ip forward-protocol nd
    ip route 0.0.0.0 0.0.0.0 FastEthernet0/0 dhcp
    ip http server
    ip http authentication local
    ip http secure-server
    ip http timeout-policy idle 600 life 86400 requests 10000
    ip nat inside source list NATOUT interface FastEthernet0/0 overload
    ip access-list standard NATOUT
    permit 192.168.1.0 0.0.0.255 log
    control-plane
    line con 0
    line aux 0
    This is very odd it is like dynamic NAT is just broken.

  • Cisco 871 NAT configuration not working

    The problem is that NAT is not working for the "internal" network.
    If i own the ip 10.0.0.15 for example and i try to reach x.x.x.x:65009 i will not work.
    what's the problem?
    here is the configuration:
    interface FastEthernet0
    interface FastEthernet1
    interface FastEthernet2
    interface FastEthernet3
    interface FastEthernet4
    description $FW_OUTSIDE$$ES_WAN$$ETH-WAN$
    ip address x.x.x.x 255.255.255.192
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    ip nat outside
    ip virtual-reassembly
    ip route-cache flow
    duplex auto
    speed auto
    interface Vlan1
    ip address 10.0.0.1 255.255.255.192
    ip access-group 2 in
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    ip nat inside
    ip virtual-reassembly
    ip route-cache flow
    ip tcp adjust-mss 1452
    ip nat inside source list 1 interface FastEthernet4 overload
    ip nat inside source static tcp 10.0.0.12 60022 x.x.x.x 65000 extendable
    ip nat inside source static tcp 10.0.0.12 80 x.x.x.x 65001 extendable
    ip nat inside source static tcp 10.0.0.12 21 x.x.x.x 65002 extendable
    ip nat inside source static tcp 10.0.0.12 389 x.x.x.x 65003 extendable
    ip nat inside source static tcp 10.0.0.12 3306 x.x.x.x 65004 extendable
    ip nat inside source static tcp 10.0.0.12 10000 x.x.x.x 65005 extendable
    ip nat inside source static tcp 10.0.0.12 443 x.x.x.x 65007 extendable
    ip nat inside source static tcp 10.0.0.21 80 x.x.x.x 65009 extendable
    ip nat inside source static tcp 10.0.0.21 22 x.x.x.x 65010 extendable
    ip nat inside source static tcp 10.0.0.12 8080 x.x.x.x 65011 extendable
    ip nat inside source static tcp 10.0.0.21 21 x.x.x.x 65012 extendable
    ip nat inside source static tcp 10.0.0.21 3306 x.x.x.x 65013 extendable
    logging trap debugging
    access-list 1 remark SDM_ACL Category=2
    access-list 1 permit 10.0.0.0 0.0.0.63
    access-list 2 deny 10.0.0.8
    access-list 2 deny 10.0.0.2
    access-list 2 deny 10.0.0.3
    access-list 2 deny 10.0.0.6
    access-list 2 deny 10.0.0.7
    access-list 2 deny 10.0.0.4
    access-list 2 deny 10.0.0.5
    access-list 2 permit 0.0.0.0 10.0.0.63
    Posted by WebUser ??????? ???

    No, the ranges are not the same. That is, they share the same B-class stats, but no C-class.
    Incidentally, the extendable parameter is present in this ios version. When I change the parameter interface dialer0 to the ip address associated with the interface, extendable is addedd automatically. No joy however.
    Today I'm going to try and downgrade the ios, another router with 12.4(4)T1 does have functional port mappings....

  • Distribute forms not working with security

    Hi,
    Before i use securtity i can distribute my forms to any recipients i want.
    Now i wish my clients cannot see my javascript or edit anything in my PDF so i set the security for that. And allow them only to fill in the forms.
    So i enabled the securtiy inside acrobat.
    Now i try to distribute the form and i get all freaking problems.
    Even what settings i try @ changed allow or encrypted settings i cant distrubute anymore. Or sent mail to recipients.
    You know what steve jobs said about flash.
    Proove me wrong adobe.
    Why is there nothing for me to do anymore then complain here?
    Any help would be appreciated.
    Greetigns,
    Michiel

    Digital Signature - is reader extended feature, so it will not work on reader alone without applying proper reader extentions. It is available thru Acrobat or LiveCycle Reader Extensions module.
    For full details and differnces, please check this thread: http://forums.adobe.com/thread/767880 (picture in this thread explains in detail)

  • Distribute function not working - always freezes

    Hi,
    I have created numerous interactive PDF forms successfully, but since this year I have been unable to get the distribute function to work. When creating a form or even editing an existing form once I go to distribute I get through the first couple of prompts before the program freezes and shuts down. I have tried uninstalling and reinstalling the program - when I do this it works one time but then never again.
    Has anyone had this problem and is able to help?
    Thanks!

    Well I've uninstalled FF22, thanks for the suggestion.
    Chrome works perfectly with ZA and C&P.

  • ADSI security adapter configuration not working

    Hi All
    I am working on implementing the ADSI Security Adapter with a LDAP server in Siebel 80 instance. I have followed all the steps given the Security Guide & configured the parameters but when I am trying bring up eService application, I am getting the below error.
    The server you are trying to access is either busy or experiencing difficulties. Please close the Web browser, open a new browser window, and try logging in again.[22:12:56]
    After going through the eService object manager logs, here is what I have observed. I've tried all my methods to troubleshoot but unfortunately did not succeed. Any help is greatly appreciated.
    WAITING: Initialized.
    ScfEventLog     SubEvtFacInfo     3     000000164bc71ef0:0     2010-04-15 21:50:58     Task user set event triggered for task 13631501
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD SecurityLogin(GUESTCST, *).
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD Sceurity Login. User='GUESTCST'.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Application User Info, parameter map=38de40c.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Application User Info, appuser is 'CN=APPUSER,CN=ADSUsers,CN=Roles,CN=Dev1,DC=EVille,DC=COM'.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Domain Search Interface, parameter map=38de40c.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Application User Info, parameter map=38de40c.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Application User Info, appuser is 'CN=APPUSER,CN=ADSUsers,CN=Roles,CN=Dev1,DC=EVille,DC=COM'.
    SecAdptLog     3rdpartyTrace     3     000000164bc71ef0:0     2010-04-15 21:50:58     ADsOpenObject('LDAP://Dev1/CN=Dev1,DC=EVille,DC=COM', 'CN=APPUSER,CN=ADSUsers,CN=Roles,CN=Dev1,DC=EVille,DC=COM', '*', 0) returns 8007052e and object interface 0.
    ObjMgrLog     Error     1     000000164bc71ef0:0     2010-04-15 21:50:58     SBL-DAT-00705: Unable to bind to the ADSI object 'LDAP://Dev1/CN=Dev1,DC=EVille,DC=COM'.
    SecAdptLog     3rdpartyTrace     3     000000164bc71ef0:0     2010-04-15 21:50:58     FormatMessage() returns 33 and message text 'Logon failure: unknown user name or bad password.
    SecAdptLog     3rdpartyTrace     3     000000164bc71ef0:0     2010-04-15 21:50:58     ADsGetLastError() returns 0, error description'', and provider name 'LDAP Provider'.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Domain Search Interface exits with 3, domain path='', Domain Iface=38de4b4.
    GenericLog     GenericError     1     000000164bc71ef0:0     2010-04-15 21:50:58     (secmgr.cpp (2486) err=4597538 sys=0) SBL-SEC-10018: Unable to bind to the ADSI object 'LDAP://Dev1/CN=Dev1,DC=EVille,DC=COM'.(SBL-DAT-00705)Logon failure: unknown user name or bad password.
    GenericLog     GenericError     1     000000164bc71ef0:0     2010-04-15 21:50:58     (secmgr.cpp (2558) err=4597521 sys=0) SBL-SEC-10001: An internal error has occurred within the authentication subsystem for the Siebel application. Please contact your system administrator for assistance.
    ObjMgrSessionLog     Error     1     000000164bc71ef0:0     2010-04-15 21:50:58     (physmod.cpp (9244)) SBL-DAT-00565: An internal error has occurred within the authentication subsystem for the Siebel application. Please contact your system administrator for assistance.
    ObjMgrSessionLog     Error     1     000000164bc71ef0:0     2010-04-15 21:50:58     (model.cpp (5886)) SBL-DAT-00565: An internal error has occurred within the authentication subsystem for the Siebel application. Please contact your system administrator for assistance.
    ObjMgrSessionLog     ObjMgrLogin     3     000000164bc71ef0:0     2010-04-15 21:50:58     Login failed for Login name : GUESTCST
    Thanks in advance
    N
    Edited by: N.P. on Apr 15, 2010 10:20 PM

    Hi All
    I am working on implementing the ADSI Security Adapter with a LDAP server in Siebel 80 instance. I have followed all the steps given the Security Guide & configured the parameters but when I am trying bring up eService application, I am getting the below error.
    The server you are trying to access is either busy or experiencing difficulties. Please close the Web browser, open a new browser window, and try logging in again.[22:12:56]
    After going through the eService object manager logs, here is what I have observed. I've tried all my methods to troubleshoot but unfortunately did not succeed. Any help is greatly appreciated.
    WAITING: Initialized.
    ScfEventLog     SubEvtFacInfo     3     000000164bc71ef0:0     2010-04-15 21:50:58     Task user set event triggered for task 13631501
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD SecurityLogin(GUESTCST, *).
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD Sceurity Login. User='GUESTCST'.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Application User Info, parameter map=38de40c.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Application User Info, appuser is 'CN=APPUSER,CN=ADSUsers,CN=Roles,CN=Dev1,DC=EVille,DC=COM'.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Domain Search Interface, parameter map=38de40c.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Application User Info, parameter map=38de40c.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Application User Info, appuser is 'CN=APPUSER,CN=ADSUsers,CN=Roles,CN=Dev1,DC=EVille,DC=COM'.
    SecAdptLog     3rdpartyTrace     3     000000164bc71ef0:0     2010-04-15 21:50:58     ADsOpenObject('LDAP://Dev1/CN=Dev1,DC=EVille,DC=COM', 'CN=APPUSER,CN=ADSUsers,CN=Roles,CN=Dev1,DC=EVille,DC=COM', '*', 0) returns 8007052e and object interface 0.
    ObjMgrLog     Error     1     000000164bc71ef0:0     2010-04-15 21:50:58     SBL-DAT-00705: Unable to bind to the ADSI object 'LDAP://Dev1/CN=Dev1,DC=EVille,DC=COM'.
    SecAdptLog     3rdpartyTrace     3     000000164bc71ef0:0     2010-04-15 21:50:58     FormatMessage() returns 33 and message text 'Logon failure: unknown user name or bad password.
    SecAdptLog     3rdpartyTrace     3     000000164bc71ef0:0     2010-04-15 21:50:58     ADsGetLastError() returns 0, error description'', and provider name 'LDAP Provider'.
    SecAdptLog     API Trace     4     000000164bc71ef0:0     2010-04-15 21:50:58     AD secuity uitlity: Get Domain Search Interface exits with 3, domain path='', Domain Iface=38de4b4.
    GenericLog     GenericError     1     000000164bc71ef0:0     2010-04-15 21:50:58     (secmgr.cpp (2486) err=4597538 sys=0) SBL-SEC-10018: Unable to bind to the ADSI object 'LDAP://Dev1/CN=Dev1,DC=EVille,DC=COM'.(SBL-DAT-00705)Logon failure: unknown user name or bad password.
    GenericLog     GenericError     1     000000164bc71ef0:0     2010-04-15 21:50:58     (secmgr.cpp (2558) err=4597521 sys=0) SBL-SEC-10001: An internal error has occurred within the authentication subsystem for the Siebel application. Please contact your system administrator for assistance.
    ObjMgrSessionLog     Error     1     000000164bc71ef0:0     2010-04-15 21:50:58     (physmod.cpp (9244)) SBL-DAT-00565: An internal error has occurred within the authentication subsystem for the Siebel application. Please contact your system administrator for assistance.
    ObjMgrSessionLog     Error     1     000000164bc71ef0:0     2010-04-15 21:50:58     (model.cpp (5886)) SBL-DAT-00565: An internal error has occurred within the authentication subsystem for the Siebel application. Please contact your system administrator for assistance.
    ObjMgrSessionLog     ObjMgrLogin     3     000000164bc71ef0:0     2010-04-15 21:50:58     Login failed for Login name : GUESTCST
    Thanks in advance
    N
    Edited by: N.P. on Apr 15, 2010 10:20 PM

Maybe you are looking for

  • Check which table has no column with specific name over number of tables

    Hello, Withing my schema I have 66 tables, all of them have column last_update_date. Though not all have the column program_update_date. The problem is I want to go through all the tables and know which tables does not have the program_update_date co

  • Notification objects entry problem

    Dear all, my client needs to enter multiple functional locations and equipment to the pm notification. is it possible and in which tab? i know similar tab in order but can not find in notification... thanks

  • How i save Buzzword document in my computer?

    dear friedns have create buzzword document,now i wana save that doc in my computer. how to save that? help required? i dont know where it save when i save that doc.

  • Acrobat & MS Outlook & signatures

    When I generate a new e-mail message from Acrobat with the PDF file as an attachment it creates the Outllok message without incident, but it does not include my default Outlook signature. Does anyone know how to set up Acrobat or Outlook so it uses m

  • IOS 5 ipad not backing up to icloud

    I have given a friend a number of my older Apple devices that he likes to use with older IOS. Before the start of October, all of his devices were backing up to icloud with no problem. Suddenly, the 3 devices(iphone, ipad 1, and ipad 2) stopped backi