IPCU for windows- proxy authentication profile not applied on ipad

Dear All,
We are using iPCU 2.2 on a windows for configuring ipad.
We have configured a payload for a Wi-Fi network with these proxy settings :
- manual
- hostname
- port
- authentication : login & password.
The problem is that the proxy settings are applied on the iPad except the authentication settings.
Looking at the installed profile on the iPad, the authentication is on "OFF" whereas it should be on "ON" with the login and password from the profile.
It is bug for IPCU, Please update IPCU to remove bug as soon as possible
Thanks
Amit

Amit, we can feel your pain.  This issue has been described in several  other forum threads since the newest version (3.4) of IPCU for Windows was released.  My understanding is that it has been reported to Apple Engineering.  A posted thread on this forum will not typically come to Apple's attention.  You might try going to this location
http://www.apple.com/feedback/
If you are a developer, you can go to this site:
http://developer.apple.com/bugreporter/

Similar Messages

  • Inking for Windows Phone 8.1 (Not Silverlight)

    Is there any way to use Inking for Windows phone 8.1 application. I am able to use it in Silverlight application for freehand drawing.
    But is there anything available to use for this purpose in WinRT?

    Hi Morichi,
    As far as I known in Windows Phone 8.1 Runtime there is no such a Inking api or control as in Windows Phone 8.1 Silverlight app. If you want to implement the inking function in Windows phone 8.1 Runtime application, please try to refer to
    the @Rob Caplan - MSFT's reply in this thread:
    http://stackoverflow.com/questions/28862500/inking-for-windows-phone-8-1-not-silverlight .
    Best Regards,
    Amy Peng
    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.
    Click
    HERE to participate the survey.

  • I am running Office 2013.  Trying to sync my reminders with my iphone using icloud for windows, but it is not working.  Can anyone please help?

    I am running Office 2013.  Trying to sync my reminders with my iPhone 5c version 7.1.2 using icloud for windows, but it is not working.  Can anyone please help?

  • Is Itunres not made for Windows 8, at least not yet?

    Is itunes not made for Windows 8, at least not yet? It wil download but there is no menu to do anything in itunes.

    http://support.apple.com/kb/HT5610

  • IPad2 won't sync with iMac...only my iphone4 shows in the device window on my iMac.  For some reason it will not detect my iPad via my wireless network!

    iPad2 won't sync with iMac and only my iphone4 shows in the devices window on my iMac.  For some reason it will not detect my iPad via my wireless network!   The iPad will sync when plugged into the Mac however looses connection and disappears from the device window when unplugged.

    Jayplus wrote:
    I have a D-Link WBR-2310 and already bought an external antenna which cost me additional. Besides moving my iMac, what options do I have?
    You already have a wireless router or have just bought one, or do you have an ad hoc connection from iMac to AppleTV?
    If things worked in the other location this all point to poor network performance/connectivity. It may be the connection is intermittently lost - small files transfer ok, but interruptions during longer transfers scupper the process.
    Interference from cordless phone bases or microwaves (and neighbours devices) might also cause connectivity issues.
    Signal strength bars are often not that useful, but will indicate connection to the main wireless device they connect to - so AppleTv may have a good connection to the router but a poor iMac connection to router is not displayed by AppleTV which only shows the connection to the first device in the chain.
    You could consider some home mains newtorking plugs such as those made by Devolo but they usually have to be on the same mains ring.

  • Windows WiFi Import Policy not applying

    Quoting from the following TechNet article:
    https://technet.microsoft.com/en-us/library/dn818903.aspx?f=255&MSPPError=-2147217396
    Additionally, for devices that run Windows 8.1 and later, you can import a Wi-Fi configuration profile that was previously exported
    to a file.
    It is not quite clear to me what "devices that run Windows 8.1" are supposed to include. I took it to include Windows 8.1 (Enterprise)
    clients with the Intune Agent installed. However when I create an Windows WiFi Import policy and apply this to a group which contains a windows 8.1 notebook the policy is not applied. 
    It does not seem to be that the policy
    failed, it does not seem to be applied at all. When checking the policy log it states that 4 policies have been found an applied, which are the default set: Hardware inventory, Software inventory, Intune Center Policy and Intune Agent policy.
    So is this supposed to work?
    On a related note: The article linked above states you can export the Wlan policy to include in a Windows WiFi import policy with the following command:
    netsh wlan export profile MyConnection
    Is this not supposed to have an added key=clear argument? I understood that the password encryption used in the export (without key=clear) is only decryptable by the machine on which the export was made. But I may misremember..

    Hello Andre,
    >>
    It is not quite clear to me what "devices that run Windows 8.1" are supposed to include. I took
    it to include Windows 8.1 (Enterprise) clients with the Intune Agent installed. However when I create an Windows WiFi Import policy and apply this to a group which contains a windows 8.1 notebook the policy is not applied. 
    It does not seem to be that the policy failed, it does not seem to be applied at all. When checking the policy log it
    states that 4 policies have been found an applied, which are the default set: Hardware inventory,
    Software inventory, Intune Center Policy and Intune Agent policy.<<
    This works when you manage devices with Win 8.1 via OMA-DM agent. This policy won't work for Win 8.1 devices with Intune
    ("fat") client.
    Примечание:Сообщения предоставляются "КАК ЕСТЬ" без каких-либо гарантий,выраженных или подразумеваемых | Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied

  • Is Proxy Authenticated or not in Applet

    <p>
    Hi Everyone,
    </p>
    <p>
    I need to show proxy details to the user in an applet and I got the proxy host and port by using the JDK API and I need to check is the proxy is authenticated or not and I used the below code in the applet
    </p>
    <p>
    public boolean checkHttpAuthentication() {
    </p>
    <p>
    logger.info("Start of detecting proxy authentication settings");
    HttpURLConnection urlConnection = null;
    </p>
    <p>
    try {
    </p>
    <p>
    String host = SiteSurveyAppletConstants.HTTP_PROXY_DETECT_URL;
    </p>
    <p>
    URL url = new URL(host);
    </p>
    <p>
    urlConnection = (HttpURLConnection) url.openConnection();
    </p>
    <p>
    urlConnection.setDoInput(true);
    </p>
    <p>
    urlConnection.setDoOutput(true);
    </p>
    <p>
    urlConnection.setUseCaches(false);
    </p>
    <p>
    int statusCode = urlConnection.getResponseCode();
    </p>
    <p>
    logger.info("statusCode : " + statusCode);
    </p>
    <p>
    if(statusCode == HTTPStatusCodes.SC_PROXY_AUTHENTICATION_REQUIRED) {
    </p>
    <p>
    isProxyAuthenticated = true;
    </p>
    <p>
    </p>
    <p>
    } catch (Exception e) {
    </p>
    <p>
    System.out.print("Error occured while sending data to the server\n" + e);
    </p>
    <p>
    </p>
    <p>
    logger.info("End of detecting proxy authentication settings");
    </p>
    <p>
    return isProxyAuthenticated;
    </p>
    <p>
    </p>
    <p>
    When I access the applet a dialog box (Firefox browser dialog box) is prompting to enter the user credential and applet is loaded into the browser after entering the user credentials, but if you see the code in above snippet, it's not returning me the 407 status code, it's returning me the 200.
    </p>
    <p>
    In my application applet will first fetch the proxy settings and will do some processing (connecting to the server) and will load into the browser. So for connecting to the server I need to know whether the proxy is authenticated or not. If it is authenticated then I need to open a dialog box asking the user to enter the credentials and will use those credentials for connecting back to the server
    </p>
    <p>
    Can anyone help me what is causing the problem
    </p>
    <p>
    Thanks
    </p>

    Hi,
    MINUS does two full table scans & removes matches after whereas NOT IN does a full table scan of table 1 then for each row it searches through table two...assuming you have two proper tables e.g.:
    TABLE1: 20,000 rows in 1000 blocks
    TABLE2: 10,000 rows in 500 blocks
    Reads required for minus:
    Full scan of TABLE1 = 1000 blocks
    +
    Full scan of Table2 = 500 blocks
    = 1500 reads
    Reads required for NOT IN:
    Full scan of TABLE1 = 1000 blocks
    20,000 lookups in TABLE2 = 20,000 x (depth of index on TABLE2)
    = 21,000 at least
    So a lot more work is done with NOT IN. Taken from here. Note the gets:
    SQL> select count(*) from
      2  ( select object_id from t1
      3    minus
      4    select object_id from t2
      5  )
      6  /
      COUNT(*)
           171
    Statistics
              0  recursive calls
             24  db block gets
            136  consistent gets
             64  physical reads
              0  redo size
            380  bytes sent via SQL*Net to client
            518  bytes received via SQL*Net from client
              4  SQL*Net roundtrips to/from client
              3  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL> select count(*) from
      2  ( select object_id from t1
      3    where object_id not in
      4    ( select object_id from t2
      5    )
      6  )
      7  /
      COUNT(*)
           171
    Statistics
              0  recursive calls
             12  db block gets
          84406  consistent gets
              0  physical reads
              0  redo size
            405  bytes sent via SQL*Net to client
            541  bytes received via SQL*Net from client
              4  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
              1  rows processedMike

  • Jabber for Windows 10.5.1 not working without elevated permissions

    Customer starts Jabber for Windows 10.5.1 and gets a pop-up about CiscoJabber.exe, wbxcOIEx.exe, and wbxcOIEx64 and to contact WebEx support.  It appears these components are talking to Outlook.  Show connection status under Outlook we see a mapi connection error with a code 0x80080005 that goes back to permissions error.
    Users are not local administrators running Windows 7.  Jabber was packaged using LanDesk and deployed to PC and installed with admin rights.
    Workaround was to grant elevated permissions to Jabber folder that had CiscoJabber.exe, wbxcOIEx.exe, and wbxcOIEx64.
    see attached screenshot.
    TAC Case 632162203 sent issue to BU for escalation, meanwhile customer elevated that folder permissions

    @ richard Beck   good answer your answer is right 

  • HP P1006 driver for windows 7 (32-bit) not working

    Hello. I have a problem with my printer P1006. It works fine before with  windows vista but when I upgrade it windows 7 professional last month. The printer doesn't work. I tried to download the driver for windows 7 using IE and Firefox. The driver is not working and the ftp server is not serving this file
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=bi-54963-5&lc=en&dlc=en&cc=us&...
    I chat with HP customer service several times and they give me the same link and its not working and i didn't get any help at all. They told me to try it the next day and so on.... I've been trying to download since driver was released until today but its still lot working. I don't think there's a problem with my computer (HP dv5-1000us) because i'm using the same laptop on vista and it works before. I also tried to download the file on my desktop still didn't work. I hope somebody could help me fix this issue. Thank you.
    Edit by Katie_H (3/30/11): Fixing broken link
    This question was solved.
    View Solution.

    Try this link, it replaces the ftp:// with http://.  Some systems have settings that preclude using ftp links.
    While calling HP costs $$'s when out of warranty, there are other support methods that are free.  For some products support is available by email or chat.  And of course there is always this forum, where other users may have an answer.
    Edit by Katie_H (3/30/11): Fixing broken link
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • In WAS 7.0 for windows custom connector VBscript  not working

    Hi ,
    I am using custom connector for windows 2003 server. It has java and vbscript .Java retrieve the dynamic values of servername,userid,password from the server it will pass to the VB .VB will connect to the windows 2003 server and it will create user,update user,delete user etc.I deliverd the connector which is working in the Jboss and Bea weblogic application servers.The customer asking for Websphere application server When i use the Websphere application Server 7.0 The "Vb script is not working for provisioning(Create user function) please help on this .example vbscript code as follows
    Set objNS = GetObject("WinNT:")
    Set objRemote = objNS.OpenDSObject("WinNT://" & strComputer, strAdminUser, strAdminPassword, ADS_SECURE_AUTHENTICATION Or ADS_USE_ENCRYPTION)
    Wscript.echo "Connection established successfully with system: " & strComputer
    Set objUser = objRemote.Create("user", strUserName) ' error is (null): A specified logon session does not exist.
    'It may already have been terminated.
    objUser.FullName = strFullName
    objUser.SetPassword strPassword
    objUser.SetInfo
    above mentioned line i am getting the error . I tried by the hard coding the values for that also same problem.But when remove the script from connector and run it outside its working .Please help on this

    There is usually a button bar with buttons to format text like Bold and Italic just above the text area where you compose and edit the message text.<br />
    That toolbar may also have a button to turn a text link into a clickable hyperlink (look for a chain like button).<br />
    You can select the link text and click that button to turn the link into a clickable hyperlink.<br />
    If you can't find the button then hover them all to check the tooltip of each (e.g. Insert hyperlink).

  • Remote Server Administration Tools for Windows 10 Technical Preview Not installing

    When i try and install the remote server administration tools for windows 10 on my windows 10 technical preview install i get this error
    Any ideas why this is happening? when i'm installing the correct version for windows 10
    http://www.microsoft.com/en-us/download/details.aspx?id=44280

    On Thu, 12 Feb 2015 07:33:29 +0000, samfty wrote:
    Any ideas why this is happening? when i'm installing the correct version for windows 10
    If you're running 9926 then you're not installing the correct version. If
    you expand the Details section you'll see that version was published last
    October. You'll need this one, which was published in at the end of
    January:
    http://www.microsoft.com/en-us/download/details.aspx?id=45520
    Paul Adare - FIM CM MVP
    Q. How do you solve bus problems?
    A. Shoot the driver.

  • Plugin for Windows Media Player is not working with Firefox 4 on Windows 7

    I updated my Firefox to the latest version 4 yesterday, but since this time seems plugin for Windows Media Player not working anymore. When I visit some website with embedded video - like [http://www.ta3.com/sk/live this] - the window with WMP is not displayed and no video is playing. The website reports: You don´t have any plugin for playing of this video.
    I reinstalled the plugin for WMP several times - with no success. This problem is on all webpages with embedded video for WMP. The installation of WMP plugin is successfully finished, but no video is playing. I checked the “plugins“ folder in the installation directory of Firefox and everything seems to be OK. Where is also the problem? Please, help me with solving of this problem...
    My operating system: Windows 7 (64-bit)

    I just saw this posted to the mozilla.support.firefox newsgroup in the topic,<br>
    [http://groups.google.com/group/mozilla.support.firefox/browse_thread/thread/f381fb349c4d109d/69bef0011240e600?hl=en&ie=UTF-8&oe=utf-8 Windows Media Player will not install in Firefox 4] <br>
    ''Just for the record, the extension that conflicted with Windows Media Player is named: Real Player Browser Record Plug-In 14.0.2''
    <br>..... so try [[Troubleshooting extensions and themes]] to see if a Firefox extension is conflicting with the WMP Firefox plugin.

  • Proper Fix for Windows 7 Desktop Gadgets not Displaying Correctly

    This is not a question, this is an answer to a common problem with an easy solution.
    DO NOT delete the registry subkey "Zones" the proper method to restore your gadgets is much simpler.
    Here is the proper fix:
    Right-Click Taskbar > Task Manager
    Right-Click sidebar.exe > End Process
    Start > Run (Windows Key + R)
    %LOCALAPPDATA%\Microsoft\Windows Sidebar\
    Delete the Settings.ini file in this folder.
    (If you do not have extensions showing it will just read "Settings" in the [Name] column with "Configuration settings" in the [Type] column)
    Right-Click Desktop > Gadgets
    Place your gadgets on your desktop.

    Hi,
    Thanks for your sharing.
    You may refer to the following KB to check the issue:
    Windows 7 gadgets may not work or be displayed correctly
    http://support.microsoft.com/kb/2515657
    Thanks again.
    There is some great information, however it doesn't include the fix I mentioned. That's the whole reason I mentioned it. Referring to the KB does nothing, instead of providing autonomous replies try reading the title and content.

  • Adobe Acrobat Plugin in Firefox 29.0 for Windows 8.0 does not print documents. Why?

    I opened a document in Adobe Acrobat plugin version 11.0.6.70 in Firefox 29.0 for Windows 8.0 and attempted to print the document, but all I got was a blank sheet of paper. So I saved the Adobe document to my hard drive. I then opened that Adobe document in Adobe outside of Firefox. Adobe printed that document just fine. Firefox was just updated to version 29.0 a day or two ago. Prior to that I did not have any problems printing Adobe documents from within Firefox. Why did the Adobe 11.0.6.70 plugin not print the document from within Firefox 29.0?

    hello, you might not actoally print with the acrobat plugin but with the built-in firefox pdf viewer which unfortunately currently has this blank page printing bug - this is investigated by our developers. in the meantime you could use a third-party pdf plugin that you can enable in the firefox ''options > applications'' - scroll down and define the default action for the '''portable document format (pdf)'''.
    [[How to disable the built-in PDF viewer and use another viewer]]

  • After downloading service pack 1 for Windows 7 Firefox did not respond anymore (I got the startscreen, but could not do anything, it "hang"), after a roll back Firefox did work again: are Firefox and SP1 incompatible?

    After implementing SP1 for Windows 7 Firefox "hang"(I got the startscreen, but could not do anything: no response). After a roll back removing SP1 Firefox works again.
    I installed SP1 also some months ago and had the same problems, also then this was solved also by a roll back removing SP1.
    Does Firefox have problems in combination with SP1? How to solve this? Thanks.

    Followed the given advice: installed SP1 again, ran Firefox in safemode, disabled other running programs as mutorrent, still Firefox didnt work. I had internetconnection (after restarting mutorrent this did work, the app telling me what the weather outside is worked) but no Firefox: as previous time I got the start screen, but could not browse the internet.
    I also tried to start the Internet Explorer and it also looked as if that application had problems (but that can also be because I did not use it for a while - old version or whatever - and it is not my standard browser).
    Have again performed a roll back in order to remove SP1, now Firefox works again.
    If somebody has advice it would be very welcome!

Maybe you are looking for

  • Support Message from satelite system: Reported By field blank only from BI

    Hi, I have configured the Incident Management for solman 7.1 with SP12. I am using the transaction type ZMIN that is a copy of SMIN. In our landscape are two satelite systems: BI and ECC When I create a message from managed/satellite system via HELP>

  • JavaFX 2.0 : How to make a stage fit into browser view area?

    Invoking a JavaFX 2.0 applet from browser results in white spaces on the right and bottom area of the browser. This happens when the JavaFX stage resolutions is lesser than that of browsing desktop resolution. In a client/server model, usually server

  • List all file names in a directory

    Hello everybody, I need to write a script in PL/SQL (oracle 10g) that lists all filenames in a specific directory on a client machine and import the files into the database (xml files). After the file is imported they have to be removed. I was search

  • HT2311 installing I tunes for windows 7

    I get a runtime error when attempting to run the lastest version of iTunes for windows 7 runtime  error! Program: C;/Program files/iTunes/itunes Helper.exe R6034 an application has made an attempt to load the C runtime library incorrectly. Please con

  • Report for workflow log....

    Hi Experts, I have to create a ABAP report for workflow log. which will take workflow number and object key and date range as inputs and gives all the dialog steps , Actual agent , execution date etc..... Please help me in doing it...... Regards, Dev