Apps and OS X MDM Server

Hi, I'm pushing out apps to my ipads with MDM server, so I download the free apps with itunes on the server with my server apple id and password.
I then push the apps out to the ipads. when the student tries to open the app he is prompted for apple id and password and nothing happens, but I can open the app on the same ipad with the id that was used to download it from itunes. I don't want to tell
Is this the expected behaviour.?
Thanks

I read about this procedure, but I haven't tried it.
Prehaps the setting on the ipad is causing the password prompt. "something about adding applications."
Setup two or more profiles on your server. One for student. Second for administration with no restritions.
Send out the administration profile to remove restrictions on device.  Do your updates.  Send out student profile to enforce restrictions.
Robert

Similar Messages

  • Is it possible to install a consumer app for mass usage that would alter the ios device proxy settings? Over the air not supervised. Can an app company use an MDM server to do this if the customer consents?

    Is it possible to install a consumer app for mass usage that would alter the ios device proxy settings? Over the air not supervised. Can an app company use an MDM server to do this if the customer consents?

    HI Chris,
    Thanks for taking the time to reply.
    Could you expand on your answer, which bit is very doubtful?
    Also in your knowledge would Apple work with a company and license it if the software they were developing was desired by consumer demand?
    Thanks
    Gary

  • Delete emails on Mail.app and remain on gmail server

    Hello,
    I have 128 GB HDD and many emails syncing by Gmail IMAP. Thousands of emails are stored on my HDD and most of them I will never use in the future. Despite this I'd like to keep them in gmail server, just for case...
    I was trying to reduce size of my Mail.app for very long time and nothing works correctly.
    Ideal situation would be something like this:
    E-mails older than 2 months will automatically delete from Mail.app but not from server. Or it doesn't have to be automatic, but I have to keep them on gmail.com. I'm not sure if it is possible with IMAP.
    Please, do you have some experience with this problem?
    Thanks,
    Jan

    Hi jvaclavik,
    Mail that is kept in an IMAP account will show in your mail account on the Mac but it stays on the server. See this article -
    iCloud: IMAP
    http://support.apple.com/kb/PH2585
    You may want to use the Mac OS X Mail Archive feature, described here -
    Mail (Mavericks): Archive messages
    http://support.apple.com/kb/PH14894
    Gmail has its own Archive feature, described here -
    iOS: Understanding Gmail Archive
    http://support.apple.com/kb/HT4207
    Though the article is in support of iOS devices, the archive feature applies to Macs as well.
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • 3party calendar apps and invitations with iCal Server - Mac/PC enviro

    We are a mixed OS company with macs and PCs. The macs are currently using iCal client software which is working great. However, our PC users are using Thunderbird-Lightning extension. In iCal or the web GUI, users get an invitation notification to accept or deny. Currently, with our thunderbird-lightning clients when they receive the meetings, it is automatically populated in their calendars without the option to accept or deny. Is there a way to fix this? Also when thunderbird-lightning clients try to email members to a meeting it will try to send to the UID and not the users email address, even it is defined in osx workgroup mng. Lastly we would like to add email notifications for all meetings, if possible.
    What other windows calendar clients seem to work best with iCal Server? Any help is greatly appreciated. Thank you!
    10.6.1 SL server, ical server.
    10.5 and 10.6 mac users
    Win XP with Thunderbird 2.0.0.23 + Lightning 0.9 users

    Hi!
    Have you had a look at eMClient? works with IMAP and CalDAV on Widows, even Windows 7, and is free.
    /Hasse

  • How to start with ORACLE APPS and ORACLE APPLICATION SERVER?

    Hi !!
    I am a little known with oracle database. But recently i have been asked to update my skills with oracle apps and oracl e application server. I do not have any prior experience with these products of oracle and I really have 0 knowledge of it.
    Can anybody help me find a start with oracle apps and oracle as?
    Thanks.

    Welcome
    http://www.oracle.com/technology/documentation/applications.html
    You can download from here.
    Regards
    Asif Kabir
    -- If helpful mark the post as correct/helpful, also close the thread as answered.

  • SSO of custom web app and ALBPM

    Hi
    Recently we have to integrate a custom app and ALBPM on weblogic server,
    we want to implement Single Sign On between the custom app and ALBPM workspace,
    hopefully on application level
    (our custom application is using acegi security backed by LDAP right now)
    but seems the authentication of ALBPM is quite proprietary and tends to be container-managed.
    could anyone can kindly tell me how should we get start on this?
    Thanks

    Hello guys,
    someone knows how to implements "fuego.workspace.security.SSOWorkspaceLoginInterface" or find some API documentation, javadoc about this interface?
    for now, Im try to find some help or documentation about SSO in workspace, So when I did decompilation to find more answers.
    package fuego.workspace.security;
    import fuego.sso.SSOLoginException;
    import fuego.web.SSOUserLoginInterface;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public interface SSOWorkspaceLoginInterface extends SSOUserLoginInterface {
         public abstract void setupAuthenticatedSession(
                   HttpServletRequest httpservletrequest,
                   HttpServletResponse httpservletresponse) throws SSOLoginException;
         public abstract void processRequest(HttpServletRequest httpservletrequest,
                   HttpServletResponse httpservletresponse) throws SSOLoginException;
    package fuego.web;
    public interface SSOUserLoginInterface extends fuego.sso.SSOUserLoginInterface {
    package fuego.sso;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    // Referenced classes of package fuego.sso:
    //            SSOLoginException
    public interface SSOUserLoginInterface {
         public abstract String getUser(HttpServletRequest httpservletrequest,
                   HttpServletResponse httpservletresponse) throws SSOLoginException;
         public abstract String getPassword(HttpServletRequest httpservletrequest,
                   HttpServletResponse httpservletresponse) throws SSOLoginException;
         public abstract boolean skipFDIAuthentication();
         public abstract String getLogoutURL();
         public abstract String getLogoutRelativePath();
    }And I decompile fuego.workspace.security.SSOWorkspaceLogin to see the logic inside this classe
    package fuego.workspace.security;
    import fuego.sso.SSOLoginException;
    import fuego.web.SSOUserLogin;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    // Referenced classes of package fuego.workspace.security:
    //            SSOWorkspaceLoginInterface
    public class SSOWorkspaceLogin extends SSOUserLogin implements
              SSOWorkspaceLoginInterface {
         public SSOWorkspaceLogin() {
         public void setupAuthenticatedSession(
                   HttpServletRequest httpservletrequest,
                   HttpServletResponse httpservletresponse) throws SSOLoginException {
         public void processRequest(HttpServletRequest httpservletrequest,
                   HttpServletResponse httpservletresponse) throws SSOLoginException {
    package fuego.web;
    // Referenced classes of package fuego.web:
    //            SSOUserLoginInterface
    public class SSOUserLogin extends fuego.sso.SSOUserLogin implements
              SSOUserLoginInterface {
         public SSOUserLogin() {
    }And here i think he uses some obfuscator, cause i cant decompile implementation method :(
    package fuego.sso;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    // Referenced classes of package fuego.sso:
    //            SSOUserLoginInterface, SSOLoginException
    public class SSOUserLogin implements SSOUserLoginInterface {
         public SSOUserLogin() {
         public String getUser(HttpServletRequest request,
                   HttpServletResponse response) throws SSOLoginException {
              /*  25*/return request.getRemoteUser();
         public String getPassword(HttpServletRequest request,
                   HttpServletResponse response) throws SSOLoginException {
              /*  31*/return null;
         public boolean skipFDIAuthentication() {
              /*  36*/return true;
         public String getLogoutURL() {
              /*  41*/return null;
         public String getLogoutRelativePath() {
              /*  46*/return null;
    }Thanks for any help or indication of source..
    regards.

  • MDM console GUI on Windows is not mounting the MDM server on Solaris

    Hello MDM experts,
    This is kind of administrative problem. I am basis person, installing SAP MDM 5.5 SP04 for the first time.
    I have configured the MDM server (mds) on solaris 10 system. I have also configured MDM import server(mdis) and Syndication serever (mdss) on the same machine. I have installed the database software and configured the empty repository on the same host machine.
    So, Database and all the 3 MDM services (mds,mdis,mdss) are running on Solaris machine.
    After that, I installed "MDM console fat client GUI" component on my desktop and trying to "mount the server" by specifying the "hostname" of the solaris machine where MDM services are running.
    But I am not able to mount it...it says invalid server and does not mount.
    Any idea what might be the problem ????
    I referred following link :
    http://help.sap.com/saphelp_mdmgds55/helpdata/EN/8e/9f9c427055c66ae10000000a155106/frameset.htm
    which says, you should have administrative right on Solaris machine where MDM server is running....but how do I have that being a Windows user ???
    Please advise.

    Hello Mark,
    1. When I right click on the "SAP MDM servers" node in "Console Hierarchy" pane on the left hand side of the Console GUI, and select "Mount MDM Server..." option in context menu, I get a dialog box for entering my MDM server name.
    I typed in the fully qualified host name of my solaris server where "mds-r" is running.
    When I click "OK" button, it adds an entry in "Console Hierarchy" on left hand side, but the entry comes with "Yellow exclamation Mark" sign. Also it says Status "Invalid" when I see the "MDM servers" section on right hand side top.
    When I right click on my newly created entry of MDM server, all the options on context menu like "Mount Repository, Create Repository, Connect to MDM server" look greyed out. Only the option of "Unmount MDM server" seems to be enabled
    2. I tried to do the same thing on 2 different Windows machines and got the same output.
    Regards,
    Bharat

  • MDM Server outage - error diagonised

    Hi Forum,
    We are observing intermittent outages of MDM Server. Upon investigation of server logs we have found  the message - 'INTERNAL ERROR in: CatMgrTable::GetSortIndex(4294967295,0) fieldPos &gt;= # fields. m_fields.size=2</Error>' .
    This hints something about Sort index - but not clear about the meaning of entire message.
    Please help me in understnding this.
    Regards,
    Vinay M.S

    Hi Vinay,
    I guess you have lots of fields in your repository with Sort Index = Normal and this number is exceeding the limit of the databse field which stores the number of sortable fields.
    It is always recommended not to have Sort Index = Normal for all the fields. Try removing this property for some of the fields and check the MDM Server outgage.
    Regards,
    Jitesh Talreja

  • Remote App and Desktop RDP client never succeed to logon the RDS gateway server running Windows 2012R2

    Remote App and Desktop RDP client never succeed to logon the RDS gateway server running Windows 2012R2
    1. Client Os : Windows 7 Pro
    2. Server OS : Windows Server 2012R2 with RDS broker and RDS Gateway server with 3.part Certificate  with friendly name sky.mti-itservice.no activated.
    The  main problem is following: The RDP logon session never ends
    Any ideas ?
    Regards
    Kenneth Knudsen
    Email : [email protected]
    mvh Kenneth Knudsen MCSE 2003 HP ASE

    Hi Kenneth,
    Here for your case suggest you to configure RDP session time limit so that your user can disconnect\log off once the specific time limit reached.
    You can setup the session time limit in different method.
    1. Open the Server Manager, select Remote Desktop Services.
    2. In Remote desktop Services, in right side you can drop down to collections.
    3. Select the collection which you want to edit the settings.
    4. Under collections Properties, select Task and then Edit Properties.
    5. In Properties dialog box, select Session.
    6. You can find all thetimeout settings under session collection properties; edit according to your requirements and then OK. 
    And apart also by group policy setting as below.
    Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Session Time Limits 
    User Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Session Time Limits 
    -  Set time limit for disconnected sessions
    -  Set time limit for active but idle Remote Desktop Services sessions
    -  Set time limit for active Remote Desktop Services sessions
    -  End session when time limits are reached
    Please check which setting suitable for your environment and you can apply for your case.
    [Forum FAQ] Restrict number of Active Sessions in RDS 2012 and 2012 R2
    https://social.technet.microsoft.com/Forums/en-US/00c2252b-8ec0-489f-8da2-07a434a9b5a2/forum-faq-restrict-number-of-active-sessions-in-rds-2012-and-2012-r2?forum=winserverTS
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • TS1702 My iPhone 4s didn't do it until the latest update so imnpretty sure it's on the apple server some sort of bug maybe? Not sure. But whatever it is I really would like to download apps. It won't let me download any apps and my phone is brand new

    My iPhone 4s didn't do it until the latest update so imnpretty sure it's on the apple server some sort of bug maybe? Not sure. But whatever it is I really would like to download apps. It won't let me download any apps and my phone is brand new.

    Sorry guysy iPhone says unable to download application at this time and I try all day and it still won't let me download no matter how hard I try.

  • I recently upgraded to 10.9.1 and now my OS server no longer works. It says I need to upgrade to a later version. I am unable to see a free upgrade in the app store.

    I recently upgraded to 10.9.1 and now my OS server no longer works.It says I need to upgrade to a later version. I am unable to see a free upgrade in the app store.

    You might be better posting this under Server OSX
    https://discussions.apple.com/community/servers_enterprise_software/os_x_server

  • No permission to access the server app and Timemachine Backup failed

    Problem:
    Mac Mini Server late 2009 running OSX Server 10.6xx for years without any problem,
    upgrading to Mavericks Server in Dec. 2013, running perfectly for 6 month.
    No Hardware issues.
    Last week i inadvertently deleted some (or most?) accounts (user and others), using the gui of the server app (and too much wine for myself).
    After that i couldn’t login the app anymore, because it needs administrator rights (which were deleted).
    This all caused problems by accessing some of the running services (e.g. Calendar, Adressbook, Wiki, Mail)
    No matter - TimeMachine always did a fine backup job, i thought.
    I restarted the machine using „command - r“, selected Recovery from TM-Backup and so on.
    But after recovering and restarting the OS always hangs on reboot.
    Ok - now i can do a clean install etc.
    But has anyone any idea how to get back all the data of the services and the user accounts etc., using the corresponding parts of the Time Machine backup only? (Only local accounts, no network accounts/no open directory)

    After reading one similar post, I've solve the problem.
    It seems that I have to enable 'read and write' permission on
    my site root folder.

  • Mail.app and Exchange Server Problems?

    I am an Apple Mail user and my university just switched to an Exchange Server 2003 for student e-mail. The university is only supporting Entourage, but I have configured Mail to work with Exchange without any major problem. This week, I have noticed that I have a problem where Mail.app will say that I have four new e-mails in my Exchange in-box. When I click on my Exchange in-box, no new e-mail appears. After experiencing this problem for about a week, I finally logged onto our Exchange web access site for the university. I discovered that I did indeed have four new e-mails in my in-box, but these e-mails were not showing up in Mail.app. Interestingly, all of the e-mails were undeliverable e-mails that had popped back because I had the wrong address. I am wondering why these e-mails would show up in on web access, but not show up in Mail.app.
    I have spoken with our university tech. support numerous times and they have been unable to figure out the problem. It seems this may be a Mail.app isse as opposed to an Exchange problem.
    Thanks,
    Joe Biedlingmaier

    I use Exchange at work and have 5 Macs working with it w/o problems. The trick is to correctly specify SMPT and Outlook Web Access Server.
    Do the following:
    When you create a new mail account, choose IMAP or Exchange (if it shows on the list)
    for Email Address specify your exchange email address
    continue
    for Incoming Mail Server: use name of the server without any prefixes such as mail. (The example shown under the box is wrong. It took me forever to figure it out)
    for username and password use the same one you use when log in into exchange webmail
    continue
    for outgoing email server use the name of the server, again without smtp.
    you may need to use authentification in order to send mail. In that case use the same user and password as when you log into your exchange
    I was doing it as I was writing this to make sure it workes. It does.

  • After lollipop update, native email app and third party email apps cannot connect to email server over wifi, only on 4g

    Updated to lollipop yesterday.  Now I cannot access email server (POP3) on wifi, only over 4G.  This is happening on native email app and third party apps such as K9.  Any help appreciated.

    We're terribly sorry to hear about the email issues. Let's get this resolved immediately. Since the update, have you tried to delete and re add the email account?
    SheritaH_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • I installed the new google maps app and I am unable to make it work because it says, cannot reach server. I have a iphone 4 with 6.0.1 up to date. Please advise where I can locate to chech if my location is turned on.

    I installed the new google maps app and I am unable to make it work because it says, cannot reach server. I have a iphone 4 with 6.0.1 up to date. Please advise where I can locate to check if my location is turned on.

    i found a solution for this issue when google maps shows you an empty map error message cannot reach server. Click on  the icon next to search and you are supposed to be presented with your profile, if not u will have an empty space. click on that space, then the "gear " Icon and logout.
    restart your iphone then strat google maps again and log back in.
    apparently this is happening when you change your google acount password or enble or disable 2 step verification.

Maybe you are looking for

  • Question regarding Applet and JVM

    Hi all! I'm working on an applet now and it's been working quite fine, just that when I run the same applet on different tab in a single browser window, it'll get some error. But if I run the applets in different windows, it'll be fine. So I'd like t

  • Vendor open items aging list - Reg.

    Hi, My client is requesting a transaction in SAP which can be used to produce a Vendor open items aging list and the output should be exactly the same as it is for the Customer open items aging List (transaction S_ALR_87012178). Moreover, It is essen

  • IFS Transaction Isolation Level

    We have implemented a batch process that loads content into IFS in a very large operation. We are using a transaction to handle rolling back the content if anything fails in the process so that we do not have to write a complex (and potentially unrel

  • Hi I have a iPhone 4 I tried to use iTunes and is coming up as an error and it doesn't open what can I do

    Can some wan help my please

  • Screen Captures Used in FCP

    I am capturing some streaming movies from the internet, legally, with full knowledge of the copyright owners, and saving them as .mov files, at their original size. I have been able to import them to the FCE Timeline, render, and they play just fine.