What is a fast alternative to starting a business of DPS app if Apple Store rejects the App? We are in a long time and can't wait for Apple. We host the application elsewhere. How we host our DPS application on the website of our customers?

What is a fast alternative to starting a business of DPS app if Apple Store rejects the App? We are in a long time and can't wait for Apple to approve. We host the application elsewhere. How we host our DPS application on the website of our customers? Thank you.

Unless I misunderstood the question, you can do what you want to do. Apple does not allow to circumvent their public applications store and host on a Web site. The exception is an enterprise application, which requires a company to both Apple and Adobe account. This type of business application can be distributed only within the company. If that's what you want to do, you can learn more here:

Digital Publishing Suite help | Creating the observer for private distribution applications

Distribution of iOS Viewer with Digital Publishing Suite business applications | Adobe Developer Connection

Another option is to add the development application to multiple devices and use them for your demo.

Tags: Digital Publishing Suite

Similar Questions

  • Have not used my email in a long time and I forgot the user name and password

    Hello. I don't use my thunderbird email in a long time and can't remember my user name or password if I remember my email address. How can I connect?

    Your user name is all or part of your e-mail address.
    The user name and the password is given with your email provider. You need to communicate with them.
    Most providers have a password reset link on their page for help by e-mail.

  • "the db file sequential read" waiting for event slow down an application.

    "the db file sequential read" waiting for event slow down an application.

    It is a rather strange problem. There is an update statement that hangs on the wait event 'db file sequential read' and until you restart the database, the query works fine. It happens once a week, usually Monday or after several days of large amount of work.

    I checked the processor and is fine, memory is very good, although the SGA and PGA have taken maximum memory. Flow of the disc seems to be ok since each another session on the basis of data looks very good.

    I guess that there is a missing configuration to avoid having to restart the database each week.

    Any help is greatly appreciated.

    Hello

    If you want same order of the tables as plain exp after reboot just go with ordered hint

    UPDATE item_work_step
    SET user_name = :b1,
    terminal = SYS_CONTEXT ('USERENV', 'TERMINAL'),
    status_cd = 'IN PROCESS'
    WHERE item_work_step_route_id =
    (SELECT item_work_step_route_id
    FROM (SELECT /*+ORDERED */ iws.item_work_step_route_id
    FROM user_role ur,
    work_step_role wsr,
    work_step ws,
    app_step aps,
    item_work_step iws,
    item_work iw,
    item i
    WHERE wsr.role_cd = ur.role_cd
    AND ws.work_step_id = wsr.work_step_id
    AND aps.step_cd = ws.step_cd
    AND iws.work_step_id = ws.work_step_id
    AND iws.work_id = ws.work_id
    AND iws.step_cd = ws.step_cd
    AND iws.status_cd = 'READY'
    AND iw.item_work_id = iws.item_work_id
    AND iw.item_id = iws.item_id
    AND iw.work_id = iws.work_id
    AND i.item_id = iws.item_id
    AND i.item_id = iw.item_id
    AND i.deleted = 'N'
    AND i.item_type_master_cd = :b3
    AND ur.user_name = :b1
    AND aps.app_name = :b2
    AND ( iws.assignment_user_or_role IS NULL
    OR ( iws.assignment_user_or_role IN (
    SELECT ur.role_cd
    FROM user_role ur
    WHERE ur.user_name = :b1
    UNION ALL
    SELECT :b1
    FROM dual)
    AND iws.assignment_expiration_time > SYSDATE
    )
    OR ( iws.assignment_user_or_role IS NOT NULL
    AND iws.assignment_expiration_time <= SYSDATE
    )
    )
    AND (iws.pend_date IS NULL OR iws.pend_date <= SYSDATE
    )
    ORDER BY aps.priority,
    LEAST (NVL (iw.priority, 9999),
    NVL ((SELECT NVL (priority, 9999)
    FROM item_work
    WHERE item_id = i.parent_id
    AND work_id = 42),
    9999
    )
    ),
    DECODE (i.a3, NULL, 0, 1),
    NVL (iw.sla_deadline,
    (SELECT sla_deadline
    FROM item_work
    WHERE item_id = i.parent_id
    AND work_id = 42)
    ),
    i.parent_id,
    i.item_id) unclaimed_item_work_step
    WHERE ROWNUM <= 1)
    

    If you want to get rid of the nested loops use USE_HASH

    UPDATE item_work_step
    SET user_name = :b1,
    terminal = SYS_CONTEXT ('USERENV', 'TERMINAL'),
    status_cd = 'IN PROCESS'
    WHERE item_work_step_route_id =
    (SELECT item_work_step_route_id
    FROM (SELECT /*+ORDERED USE_HASH(ur wsr ws aps iws iw i) */ iws.item_work_step_route_id
    FROM user_role ur,
    work_step_role wsr,
    work_step ws,
    app_step aps,
    item_work_step iws,
    item_work iw,
    item i
    WHERE wsr.role_cd = ur.role_cd
    AND ws.work_step_id = wsr.work_step_id
    AND aps.step_cd = ws.step_cd
    AND iws.work_step_id = ws.work_step_id
    AND iws.work_id = ws.work_id
    AND iws.step_cd = ws.step_cd
    AND iws.status_cd = 'READY'
    AND iw.item_work_id = iws.item_work_id
    AND iw.item_id = iws.item_id
    AND iw.work_id = iws.work_id
    AND i.item_id = iws.item_id
    AND i.item_id = iw.item_id
    AND i.deleted = 'N'
    AND i.item_type_master_cd = :b3
    AND ur.user_name = :b1
    AND aps.app_name = :b2
    AND ( iws.assignment_user_or_role IS NULL
    OR ( iws.assignment_user_or_role IN (
    SELECT ur.role_cd
    FROM user_role ur
    WHERE ur.user_name = :b1
    UNION ALL
    SELECT :b1
    FROM dual)
    AND iws.assignment_expiration_time > SYSDATE
    )
    OR ( iws.assignment_user_or_role IS NOT NULL
    AND iws.assignment_expiration_time <= SYSDATE
    )
    )
    AND (iws.pend_date IS NULL OR iws.pend_date <= SYSDATE
    )
    ORDER BY aps.priority,
    LEAST (NVL (iw.priority, 9999),
    NVL ((SELECT NVL (priority, 9999)
    FROM item_work
    WHERE item_id = i.parent_id
    AND work_id = 42),
    9999
    )
    ),
    DECODE (i.a3, NULL, 0, 1),
    NVL (iw.sla_deadline,
    (SELECT sla_deadline
    FROM item_work
    WHERE item_id = i.parent_id
    AND work_id = 42)
    ),
    i.parent_id,
    i.item_id) unclaimed_item_work_step
    WHERE ROWNUM <= 1)
    

    and for small tables, you can try adding for example FULL (your) FULL (wsr)

    It can be rewritten in a different way, but it's the fastest way to try how query will be if you rewrite it. Check the explain plan command if certain partially ordered tables are not joined because you can get the Cartesian join, it seems that it will be ok.

    View query result in the em console.

    Concerning

  • Smartphones blackBerry how to remove an email 'saved' from your torch? (I'm constantly four new messages on the phone all the time and can't get rid of them!)

    Hi all

    I am somewhat a dufus and a few minutes ago has managed to highlight four emails (that I had intended to remove a small group), but managed to click on the "SAVE MESSAGE" by mistake. (Touch screens, bloody!)

    It has a small window saying "BACKUP MESSAGES", and since then, even if later I deleted the four emails, have a permanent icon red STAR on two of my email accounts, which indicates that there is a session of NEW MESSAGES waiting to be read - but are not everything.

    Also - at the top of the screen on the home page of the torch, in the same vein where the SOUNDS and the GLASS GROSSISSANT icon, I constantly for the symbol for 4 EMAILS sitting there, which usually only appears when there are actually four new e-mails waiting to be read. When I actually select the email icon, it only shows nothing - it's because there is NO NEW MESSAGES!

    Jeezzz... It was like him for 20 minutes, but he's really starting to annoy me! I did a power of battery pull reset hoping that it would open up when it re-initialized - but he didn't. The * beep * things me are still there watching. It seems that I have now deleted these four emails I've "saved", that I now can't access it to "possibly" the.

    Oh, and I do not use Exchange or something like that. I just got a bog standard torch, which simply reads a number of my POP email accounts Therefore, they are not saved on a Server Anywhere, as they were (at least 2 days) old emails that were downloaded on my computer for a long time and are no longer sitting on a server anyway - so God only knows where they have in fact been saved to.

    Help!

    HM.  Good, I don't save my messages, but let's try it.

    Open a folder of messages, press the BB menu button and select view folders.  There must be a folder for saved messages available.

  • I tried to download the creative cloud and it didn't download correctly (after a long time) and now I can't uninstall it. It takes place on my computer but I cannot uninstall the Adobe application. Help please!

    I tried to download the creative cloud and it didn't download correctly (after a long time) and now I can't uninstall it. It takes place on my computer but I cannot uninstall the Adobe application. Help please!

    Hi Julie,.

    Please see the below help document to uninstall the application:

    Using creative cloud | Download, install, update or uninstall applications

    Otherwise, you can use the CC cleaning tool as well.

    Use the CC cleaning tool to resolve installation problems. CC, CS3 - CS6

    Kind regards

    Sheena

  • I am a user of PS (CS6) for a long time and come to THE (CC). I placed a vector image purchased from Amnesty International and the need to get rid of the white background... make transparent but have no idea how to do that.  I tried to do in PS and then s

    I am a user of PS (CS6) for a long time and come to THE (CC). I placed a vector image purchased from Amnesty International and the need to get rid of the white background... make transparent but have no idea how to do that.  I tried to do in PS and then save and carry firearms but cannot save to the PS as a vector file (or AI) and the quality is greatly reduced.  How can I do this in artificial intelligence?

    Are you sure that it is a vector file?

    If Yes: embed him then comes white and select Remove.

    If not: Photoshop lets you remove white.

  • The class I'm teaching starts Monday and I can't wait for the return of my serial number snail mail. M

    The class I'm teaching starts Monday and I can't wait for the return of my serial number snail mail. My product code is < removed by mod, kglad >. What help can you give me?

    Contact adobe support, http://helpx.adobe.com/contact.html?product=flash&topic=using-my-product-or-service

  • Still for a long time, I can't install the update of security KB2416447 on my Windows XP.

    Still for a long time, I can't install the update of security KB2416447. But because Microsoft NET Framework 1.1 SP1 is missing on my PC, so I try to install Windows XPSP1a express but then I see the error message on the language is different. So I still have a security on my PC. How can he solved?

    Please answer all the questions of diagnostic following by number in your very next answer (no need to quote this post):

    1. what application or antivirus security suite is installed and your current subscription?  What anti-spyware (other than Defender) applications?  What third-party firewall (if applicable)?

    2 to give application Norton or McAfee application ever been installed on this computer?

    3. do you have a free trial Norton or a McAfee free trial come preinstalled on the computer when you bought it? (No matter if you have never used or activated).

    ===============================================

    Visit the Microsoft Solution Center and antivirus security for resources and tools to keep your PC safe and healthy. If you have problems with the installation of the update itself, visit the Microsoft Update Support for resources and tools to keep your PC updated with the latest updates.

  • I had things on my Mac for a long time and have never been able to find out exactly what I co

    I got Elements 3.0 on my Mac for a long time and have never been able to know exactly what I could do with it. It doesn't seem to be a manual in my file and I can't find anything on line.

    I have now had time to work on improving and using various features on the pictures, so want to use items.

    Can you tell me how to get a manual for this or any version.

    I have a number "about Photo Shop Elements' 1057020118662274822.

    Thank you. Jeff Sowers

    better late than never: http://home.comcast.net/~themark/PhotoshopElements/Getting%20Started%20Guide.pdf

  • Several times after that I opened Google it does not connect to the internet. Has worked for a long time, and now it will not. Sometimes it opens if you "Refresh" sometimes not. Please help.

    Several times after that I opened Google it does not connect to the internet. Has worked for a long time, and now it will not. Sometimes it opens if you "Refresh" sometimes not.  Help, please. It has been stable over the years and now it will not work. I get no help when I diagnoise of problems, but I never. It has been checked and rechecked. PitStop does not even recognize a problem. I could change the homepage, but I prefer to use Google if it works. Frustrating.

    You may need to update your toolbar, google has made some changes just about everything and possibly that the page is not where it used to be.

  • Can I organize pictures by year, then month, then the location. In the photo on my iPhone app, they are organized in this way and I would do the same in Lightroom. Is this possible?

    Can I organize pictures by year, then month, then the location. In the photo on my iPhone app, they are organized in this way and I would do the same in Lightroom. Is this possible?

    Find pictures of calendar is integrated into Lightroom. The filter bar allows you to find photos taken during the year, or any month/year or month/day/year. No work necessary to implement. Just use the filter bar.

    Location is also a means of organizing in Lightroom and is especially easy if your phone adds GPS coordinates to the pictures it takes. Even if the phone does not add the GPS location, you can do it manually in Lightroom.

  • Just after the cancellation of my subscription, you asked my credit card for a monthly payment! I tried to cancel this subscription done for a long time, and now that it's done you keep me!  Please immediately refund my money!

    Just after the cancellation of my subscription, you asked my credit card for a monthly payment!

    I tried to cancel this subscription done for a long time, and now that it's done you keep me!

    Please immediately refund my money!

    In this case, you must contact and check with Adobe support:

    Click always need Help (help), and then select the Chat option:

    Contact the customer service

  • They sent me a serial number for a windows version of PS Elements when I ordered a mac version.  The serial number does not work, it is not surprising, but they don' t seem to care.  I tried the online chat and have been waiting for almost a day unanswere

    They sent me a serial number for a windows version of PS Elements when I ordered a mac version.  The serial number does not work, it is not surprising, but they don' t seem to care.  I tried the online chat and have been waiting for almost a day unanswered.  What should I do?

    Look here

    Product order | Platform, language Exchange

  • How can I completely disable tabs because tabs are is no longer being on the bottom of the surface of the screen. tabs are used not long ago and will not be used.

    Because you removed the possibility of lowering the tabs at the bottom of the upper part where they used to be that the tabs are no longer useful and takes place how to remove completely because they now take just a space of the screen. It takes just as much time to click Open Windows in the taskbar, as it does to use the tabs at the top of the screen so now I'll settle for all open in a new window and remove the wedges. I won't use an add on for this.

    Of course, I have read your message and displayed an additional option if the modules were not suitable for you.

    If you don't want to install an add-on, put the style in the userChrome.css file and restart Firefox. You can use the stylish add-on instead, if you have installed.

    @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
    /* The above line should appear only once in the file */
    
    #TabsToolbar { -moz-box-ordinal-group: 99 !important }
  • Start long time and window explore is not responsible for problem

    I've upgraded to windows vista 7(32bit) but failed to see the magic in windows 7. I use a laptop HP 60 G with 1 GB of RAM and 160 GB HD startup is slow, applications frequently hang, Windows Explorer not responding not time in Vista when I open several or even an application. now, when a program crashes, I usually type my pad like 5 to 6 times a Windows Explorer view does not display if poster, then choose from the options that appear, but this look was surprisingly out of pure frustration led to something but I don't like the gel. When I check my RAM used in the process window is 70 to 88% in standby mode when I run programs sometimes use of approaches 99%. The CPU usage is less than 10%, surprisingly, the shot is more severe when the RAM is at 45%. What is happening with my laptop or windows 7?

    Hello

    for the slow start follow my guide here to follow up on startup:
    http://www.MSFN.org/Board/index.php?showtopic=140247

    and compress the boot_BASE + CSWITCH + DRIVERS + POWER_1.etl 7z and RAR and transfer it to your Skydrive and post the link here. I take a look at the trace, maybe I see what's wrong with your Windows.

    You should also try a clean install, not an upgrade of Vista.

    André "a programmer is just a tool that converts the caffeine in code" Deputy CLIP - http://www.winvistaside.de/

Maybe you are looking for