Can not add Exceptions to Transparent proxy

Hello all,
I am sure this is simple but I can not figure out what has changed to cause this. Currently, I can not add items to the exception list in HTTP Transparent Proxy.
I only see refresh and close buttons on the screen - no Apply changes.
I have 2 BM servers and one I have access to without issues but the other does not work.
It definitely worked at some point in time because it has 25 entries but has since stopped.
What am I missing?
Thanks,
Steve D.

sjdimare wrote:
> Here are the details:
>
> Both servers are identical in configuration (other than ip addresses):
>
> NW 6.5 SP7 and updated TCP
> BM 3.9 SP2 (tweaked per CJ website)
>
> Both servers exist in their on OU which is partitioned
>
> The server that is working currently only has 17 exceptions but I do
> not think it is a # of exceptions issue.
>
> While in iManager, if I select Proxy Services, on the main page the
> buttons on the bottom of one server shows "Apply Changes, Backup and
> Close" while the non-working server only has " Refresh and Close". This
> seems to indicate to me that their is a rights or roles issue in
> iManager that did not exist before but I can not figure out where.
>
> Thanks for your assistance.
>
> Steve D.
>
>
1. Tid 3506678. Apply Changes button is missing in the iManager server
configuration proxy screen
Be aware of the issue when you manager a bm server from non local
iManager instance. Tid 7001625:Apply changes button not submitting changes

Similar Messages

  • In Firefox 4.0 with a Server with a self signed certificate using IPv6 I can not add a "Security Exception" for this certificate.

    In Firefox 4.0 I have a server ... it contains a self signed certificate. Using IPv6 I can not add a "Security Exception" for this certificate.
    1. I log onto the server (using IPv6). I get the "Untrusted connection page" saying "This connection is Untrusted"
    2. I click on "Add Exception.." under the "I understand the Risks" section.
    3. The "Add Security Exception" dialog comes up. soon after the dialog comes up I get an additional "Alert" dialog saying
    An exception occured during connection to xxxxxxxxx.
    Peer's certificate issuer has been marked as not trusted by the User.
    (Error code sec_error_untrusted_issuer).
    Please note that this works in Firefox 3.6.16 (in IPv4 and IPv6). It also works in Firefox 4.0 in IPv4 only IPv6 has an issue. What's wrong?

    Exactly the same problem, except I'm using FF v6 for Windows, not FF v4 as for the lead post. This is for a self-cert which IS trusted, although the error message says it isn't.

  • Problem  in 2007 :----MasterData Type UserTable can not add row

    hi  all
    i have create a "masterline" UDT.
    In 2005 i have written a code to insert data in that table.
    eg..
    SAPbobsCOM.UserTable UDT;
    UDT=Company.UserTables.Item("TableName");                    
    UDT.Code ="ABC";
    UDT.Name ="1";
    UDT.UserFields.Fields.Item("U_USNM").Value ="XYZ";
    int nErr=UDT.Add();
    In "2005" it working fine but in "2007" it gives exception "MasterData Type UserTable can not add row"
    Regards,
    Rajesh Saini
    Edited by: Rajesh Saini on Feb 5, 2008 2:21 PM

    Hi Rajesh,
    What kind of User Data Table is your table? MasterData, Document or NoObject?
    I have tested and the error shows only when you are trying to fill a table of type MasterData or Document. For tables of type "NoObject" it works fine.
    The only UDTs that you should fill by using UserTable object are the ones of type "NoObject". AddOns that want to be certified cannot update UDO tables (only via UI API for the moment).
    But you are right in version 2005 SP01 it worked fine. I'll ask development whether it has been changed deliberately in B1 2007 or it is a problem.
    Thanks for sharing this information with us, it is very important in order to improve the quality of the final version.
    Regards
    Trinidad.

  • Can not add or Edit in Address book

    please help.
    i can not add or Edit any thing on address book
    Erro i am getting as below.
    Uncaught Exception :
    Application
    net_rim_bb_addressbook_app (232) is not responding;
    process terminated
    Pls let me know what to do now.
    Thanks
    VInod

    Hello Vinod and welcome to the Community!
    Please remove Yahoo! Messenger or Windows Live Messenger for the meantime until a new update has been released because one of these apps' newly updated version is causing the issue to most OS5 phones...
    Ron
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up Blackberry Battery Saving Tips | Follow me on Twitter

  • Can not add any accounts to Mail, Calendar, etc.

    This is not an additional account issue.
    I can not add even 1 account.
    This is Windows 8 Enterprise.
    I opened Mail App.
    I logged in with MS account.
    I went to settings, Accounts.
    I clicked on "Add an account"
    The I get, "You've added all the accounts available for this app" , but I have not added any accounts at all.
    Any advice?
    I am trying to add ActiveSync to Exchange in the Mail app, since full Outlook 2013 is almost unusable on a 10" tablet.

    Did you use any proxy during the internal network? Please try to use other network to add the account in Windows Mail App.
    Niki Han
    TechNet Community Support

  • I can not add the smart lists to ipod

    I can not add the smart lists to ipod, itunes If (when clicking the lists are empty) but notas add to the ipod touch are not added automatically.

    Experiencing exactly the same error. The error only occurs on the clustered gateway. Non-clustered gateways work fine. I followed Kristian's whitepaper exactly except that I didn't use a service template to create the gateway cluster. All NICs are connected
    to the proper switches. There are no relevant events/errors on the hosts or the gateway cluster nodes.
    Troubleshooting steps taken so far...
    1. reboot everything
    2. deleted the network service from VMM and re-added
    3. Verified that HNV is working on the host cluster by disabling "host dedicated to gateway" and moving an NVGRE VM to the cluster.
    4. Verified all other networks are working properly on the host cluster.
    5. Deleted and re-added all NICs in the gateway cluster.
    6. Verified that the gateway can be configured using Powershell on the host and remote.
    Now I'm going to create another clustered gateway and another non-clustered gateway to reproduce the problem.
    Any other suggestions would be greatly appreciated.

  • Can not add a picture to the JFrame from an ActionListener class

    As topic says, I can not add a picture to the JFrame from an ActionListener class which is a class inside the JFrame class.
    I have a Map.java class where I load an image with ImageIcon chosen with JFileChooser.
    I my window class (main class), I have following:
    class OpenImage_Listener implements ActionListener
         public void actionPerformed(ActionEvent e)
              int ans = open.showOpenDialog(MainProgram.this);     // "open" is the JFileChooser reference
              if(ans == open.APPROVE_OPTION)
                   File file = open.getSelectedFile();                    
                   MainProgram.this.add(new Map(file.getName()), BorderLayout.CENTER);     // this line does not work - it does not add the choosen picture on the window,
                            //but if I add the picture outside this listener class and inside the MainProgram constructor, the picture apperas, but then I cannot use the JFileChooser.
                            showMessageDialog(MainProgram.this, fil.getName() ,"It works", INFORMATION_MESSAGE);  // this popup works, and thereby the ActionListener also works.
    }So why can�t I add a picture to the window from the above listener class?

    The SSCCE:
    Ok, I think I solved it with the picture, but now I cannot add new components after adding the picture.
    Look at the comment in the actionlistener class:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class Test extends JFrame{
         JButton b = new JButton("Open");
         JFileChooser jfc = new JFileChooser(System.getProperty("user.dir"));
         Picture pane;
         Test(){
              super("Main Program");
              setLayout(new BorderLayout());
              JPanel north = new JPanel();
              add(north, BorderLayout.NORTH);
              north.add(b);
              b.addActionListener(new Listener());
              setVisible(true);
              setSize(500,500);
              pane = new Picture("");
              add(pane, BorderLayout.CENTER);
         class Listener implements ActionListener {
              public void actionPerformed(ActionEvent e){
                   int ans = jfc.showOpenDialog(Test.this);
                   if(ans == jfc.APPROVE_OPTION)
                        File file = jfc.getSelectedFile();
                        Test.this.add(new Picture(file.getName()), BorderLayout.CENTER);
                        pane.add(new JButton("NEW BUTTON")); // Why does this button not appear on the window???
                        pane.repaint();
                        pane.revalidate();
         public static void main(String[] args)
              Test t = new Test();
    class Picture extends JPanel
         Image pic;
         String filename;
         Picture(String filename)
              setLayout(null);
              this.filename = filename;
              pic = Toolkit.getDefaultToolkit().getImage(filename);
            protected void paintComponent(Graphics g)
                super.paintComponent(g);
                g.drawImage(pic,0,0,getWidth(),getHeight(),this);
                revalidate();
    }

  • Can not add games to iPod touch 4g...

    Can not add games to iPod touch 4g from ITunes (PC) it worked befour new update but why not now..

    I can now transfer apps including games to my ipod from windows pc in Itunes. I click on ipod tab on the left hand side then click on the apps tab then tick the box at the top to sync and now i can drag and drop apps. No apps or music was lost, still all on my ipod touch, but it did mix my apps up so i had to sort them out. I don't know why it did not work, no setting where change, but the update might of change it.

  • Can not add function to pages-document created with Applescript

    If I create new document using the GUI (New document) I can place the cursor within any table-cell, type "=" (equal sign) and f.e. "2+2" which will result in a cell showing a "4".
    If I create a document with Applescript, I can not add new functions (neither by typing = nor by using Insert >> Function (may be different, I have German version here). Already existing functions (which already were in the template) can still be used and work as expected but can not be altered.
    Any idea?
    I use Pages '08, Version 3.03
    Code I used to create the document:
    tell application "Pages"
    launch
    make new document at front with properties {template name:templateName}
    # Angebotsnummer ins Dokument schreiben
    tell body text of front document
    make new paragraph at after paragraph 1 with data angebotsNr
    set paragraph style of paragraph 2 to "Überschrift"
    end tell
    # Datei abspeichern
    set dateiName to missing value
    repeat until dateiName is not equal to missing value
    set dateiName to text returned of (display dialog "Datei Name:" default answer angebotsNr & "_" & kundenName) as text
    end repeat
    save front document in angebotsOrdner & dateiName
    end tell

    I apologize but the given script can't run.
    The variable templateName is undefined.
    The variable angebotsNr is undefined too.
    About the described behavior, it's a bug which I never discover before.
    It's always striking in Pages '09.
    Here is the report which I filed :
    Bug ID# 8704270
    Summary:
    +Odd behavior of tables in Pages documents created by a script+
    +Steps to Reproduce:+
    +Run this huge script+
    +tell application "Pages"+
    +make new document at front with properties {template name:"Blank"} (* "Vierge" on French systems *)+
    +end tell+
    +Insert a table+
    +try to insert a formula+
    +Expected Results:+
    +I assumed that I will get the formula editor which I get when the document is created by hand+
    +Actual Results:+
    +There is no way to get the editor, no way to insert the equal character.+
    +This odd behavior strike in all versions of Pages '09 and Pages '08+
    Regression:
    +None to my knowledge+
    Yvan KOENIG (VALLAURIS, France) dimanche 28 novembre 2010 11:30:29

  • Can not add pictures to my website

    When I edit my website on (bluedomino.com) I can not add pictures I receive an error message - an error has interrupted communication between your browser and the website server. Bluedomino looked at the problem and could not resolve said it was firefox issue. I switched over to Int.Explore and I have no problem it also seems to run faster. I have no problem viewing my web sites all the pictures display I can't add new ones. I'm able to upload the pictures to bluedomino but can not insert them on the edit page or post them.

    Hello solidroq,
    This can be worked around by creating a version of the video that is compatible with your iPod.
    Select a video and choose File > Create New Version > Create iPad or Apple TV Version.
    iTunes: Videos may be unable to sync to iPhone, iPad, or iPod
    http://support.apple.com/kb/TS1497
    Cheers,
    Allen

  • Can not add entries to iCloud synced calendar on iphone

    I can not add new entried to my iPhone Calandar that is suposed to sync up to iCloud. (Adding via iCal on MacBook Pro is OK)
    I am also stil not able to just completely delete my iCould account from my iPhone.
    Realy frustrating. Any help appreciated. (Suggestions for a reset  are NOT, as I have been reset my phone at least 50 times over the last few days already)
    Is there a way to completely reset/clear an iCloud account?
    Why does the iPhone insist on trying to contact iCould if I want to remove the account from my phone?
    G.

    the bug seems to be in the handshake between the phone and icloud - i cloud needs to know the phone is off the cloud, but you can't connect to icloud from the phone to tell it, because there is a bug. it appears some people have been able to get decent tech support from apple - I have not.

  • Can not add movie to itune

    Hi,
      I just set up new itunes for ipod touch but i just can not add movie file (mp4) to library in itunes. Please help! Thanks so much!

    Make sure you're looking for it in the Movies or TV Shows libraries, or do a search for it by name.
    Did you check if the format is compatible with iTunes (QuickTime plays more formats if you have add-ons)?
    "but when I open that file with itunes"
    This statement confuses me as your point 1/ says you can't find it in iTunes.

  • Can not add photos to my photo stream.

    This morning I started my computer and got the following error.
    I get the error on my PC
    My Photo Stream can't be updated
    iCloud Photos can't update because you don't have permission to add files to download folder.  Open iCloud to pick another folder.
    then I get the error:
    The upload folder for iCloud Photos is missing
    The upload folder for iCloud Photos had been moved or deleted.  Open iCloud to pick a new folder.
    As far as I know, nothing has changed on my computer.  I can not add anything to the iCloud Photos folder.

    harryhal wrote:
    unable to add individual photos to individual albums.
    Best I can tell it's either because that wouldn't work on the iPad, or they haven't enabled it.
    Select a Photo (or Photos) in the Photo Stream and click the + button on the toolbar. You can then choose which Albums to Add it to.

  • Can not add videos to my ipad 2

    I have a the app called Telestrator, I'm trying to add sports videos to teach with, I can not add them to my ipad via iPhoto or iTunes, I have tried several videos conversions but keep getting the "the video is not playable on this iPad"

    Hello solidroq,
    This can be worked around by creating a version of the video that is compatible with your iPod.
    Select a video and choose File > Create New Version > Create iPad or Apple TV Version.
    iTunes: Videos may be unable to sync to iPhone, iPad, or iPod
    http://support.apple.com/kb/TS1497
    Cheers,
    Allen

  • Can not add item to the shopping Cart with FireFox 8.0

    I can not add items to the shopping cart with Firefox 8.0. Switch to IE everything works then.

    Such details are stored in a cookie, so make sure that you do not block cookies on that site.
    *Tools > Page Info > Permissions
    You can inspect and manage the permissions for all domains on the <b>about:permissions</b> page via the location bar.
    *http://kb.mozillazine.org/Cookies
    *http://kb.mozillazine.org/Websites_report_cookies_are_disabled

Maybe you are looking for