Web Application need to merge SQL and PDF on Server

I have written a internal web application .aspx using Acrobat Pro 9 and LifeCycle.  I am using a California State PDF form that I cannot alter and merging data from SQL and an input form to produce the final PDF file.  The application works great on the development server where the software is installed. The issue I am having is that I want my users to access the web application from their personal PC's in the office to great it and it appears that I need to have Acrobat Pro 9 installed on their desktops.  This is not an acceptable solution for my 120 users.  Is there anyway I can create the final pdf on the server and just provide them with a directory of the final document?    This is my first application using Pro 9 and Life Cycle and really need anyone's help.  Can Pro 9 even do this on the server ?

One of this:
http://forums.adobe.com/community/livecycle/livecycle_es
You can't use LiveCycle Designer or Adobe Acrobat on a server.

Similar Messages

  • Can I use the search engine and run a web application under the same iPlanet 6.0 virtual server?

    I've got an iPlanet 6.0 SP2 virtual server with the search engine enabled, which was tested and working. I then deployed a web application to it (mapped to "/"), and the web application works fine but now the search functionality is completely broken. Browsing to /search results in a directory index being displayed. Is there some trick to getting the two working together? I tried shuffling NameTrans directives around, but can only get either the search or the web app working, not both.

    Ok, I'm going to answer my own question now...
    The issue has been resolved after some additional experimentation on my part. There were two causes for my problem:
    1. The NameTrans directives in obj.conf are in the wrong order when Java and Search are enabled from the administration interface.
    Here's the admin server generated obj.conf I started with initially, when the web application was working, but requests to the URI "/search" returning a 404 error:
    <Object name="default">
    NameTrans fn="NSServletNameTrans" name="servlet"
    NameTrans fn="pfx2dir" from="/search-ui" dir="/usr/local/iWS-6.0/plugins/search/ui" name="es-internal"
    NameTrans fn="pfx2dir" from="/mc-icons" dir="/usr/local/iWS-6.0/ns-icons" name="es-internal"
    NameTrans fn="pfx2dir" from="/manual" dir="/usr/local/iWS-6.0/manual/https" name="es-internal"
    NameTrans fn="es-search-nametrans" from="/search"
    NameTrans fn="NSServletNameTrans" name="servlet"
    NameTrans fn="document-root" root="$docroot"
    </Object>
    Here's my obj.conf now, which works perfectly:
    <Object name="default">
    NameTrans fn="pfx2dir" from="/search-ui" dir="/usr/local/iWS-6.0/plugins/search/ui" name="es-internal"
    NameTrans fn="pfx2dir" from="/mc-icons" dir="/usr/local/iWS-6.0/ns-icons" name="es-internal"
    NameTrans fn="pfx2dir" from="/manual" dir="/usr/local/iWS-6.0/manual/https" name="es-internal"
    NameTrans fn="es-search-nametrans" from="/search"
    NameTrans fn="NSServletNameTrans" name="servlet"
    NameTrans fn="document-root" root="$docroot"
    </Object>
    The "servlet" NameTrans directive needs to go below all others which map a URI to a function or directory (but before "document-root"), or they break. This is consistent with the iPlanet documentation on NameTrans, but the admin server doesn't get it right!
    2. The developer who wrote the web application uploaded a directory named "search" in the root of his application, which caused the server to display a directory index of "/search", instead of executing the search function. I believe this issue is covered in an iPlanet knowledge base article.

  • Design web application API codes to extensible and can adapt to change

    Design web application API codes to extensible and can adapt to change with little effort to cater to SOA architecture.
    How will you all design to cater for this kind of requirement?

    RonaldMacdonald wrote:
    Design web application API codes to extensible and can adapt to change with little effort to cater to SOA architecture.I don't worry about change until I can write something that can actually be used once. I worry about use before reuse.
    >
    How will you all design to cater for this kind of requirement?I use Spring. It helps.
    %

  • Integration of PL/SQL and JSP (Java Server Pages)

    I need to match a web application developed with PL/SQL with another developed in JSP (Java Server Pages) the problem is that the two apps interact with the same databese, an share de same users, I need to know how to get the user and password loged into pl/sql when the user want to use same of de .jsp pages running on another application server?

    Hi Michael Vstling,
    Did you try the java classes library (SDOAPI) that can be downloaded from OTN?
    It may provide you with a better alternative when manipulating geometries in the Java space. There is an adapter in SDOAPI which can convert a JDBC STRUCT object into Java Geometry object defined in SDOAPI, and vice versa.
    There are at least two ways in mixing PL/SQL and Java. The first one, as you mentioned, is to define your custom function in terms of PL/SQL and call it from within your Java program. With SDOAPI, you have the second option, which is to define your own functions in Java using SDOAPI and deploy them as Java stored procedures in db. You can then call them from within your PL/SQL code. In either way performance depends on a lot of things and generally it requires a "try and improve" approach.
    About JPublisher and sdo_ordinate_array it may not be a spatial related problem. Did you try search the Java-related forums first?
    LJ

  • Need information about Pricing details of deploying the web application in Amazon EC2 cloud and deploying procedure clearly

    Can anybody give in detail explanation about deploying the asp.net web application into Amazon Cloud, which is using SQL Server as a database. I want the pricing information about the Amazon Cloud.
    Before that this web application is used in Intranet environment.
    Regards,
    Hanife

    "explanation about deploying the asp.net web application into Amazon Cloud,"
    You'll need to contact Amazon tech support for that information.
    "I want the pricing information about the Amazon Cloud."
    Again, only Amazon can give you definitive pricing information. Start here:
    http://aws.amazon.com/
    Thanks for understanding.

  • Web application security. Getting username and password from database

    Hi!
    I need to write the following web application (I write it using java server faces):
    1) User enters his username/password on the login page
    2) Program goes to database where there are tens of thousands of usernames/passwords, and verifies it.
    3) If user and password exist in DB, user gets access to the other pages of the application
    Maybe I don't understand some point. I tried to use j_security_check(it's very easy to configure secured pages in web.xmp). The problem is that it works(as far as I understand) only with roles defined on server before the application runs. I can't add ALL these usernames to the roles on server. The best way, as I see it, is to go to DB, check username/password, create new role for the time of session, go to j_security_check where the j_username and j_password get the values from db and get the access to secured pages(as far as the roles have been dinamically added).
    Am I right and this should be the algorithm?
    How can I implement it?
    I've read about JAAS. How can it help to solve the problem? Do I need j_security_check if I use JAAS? How should I configure my application if I use it?
    Could you please give me some code example?
    All this must work on IIS (for now, I develope it in Netbeans and run it on Java Application Server)
    Please help.
    Edited by: nemaria on Jul 7, 2008 2:39 AM

    Hi,
    Any security constrained url pattern which calls the action j_security_check passes the parameter to the realm mentioned in the server.xml.If the realm is set as JAAS,then the authenticate method of the jaasrealm does the basic validation like non empty field value from the input form.The appname set as the realm parameter points to the one or more loginmodules which has the life cycle methods like initialize(...),login(),commit(),abort() and logout().Once the basic validation is done in the JaasRealm class of the webcontainer,the LoginContext is created and user is autheticated (against DB username/password) via the login().Then the user is authourised in the commit().Then Jaasrealm takes care of creating the LoginContext,calling login(),creating Subject with principals,credentials added and setting that in the session.
    I have a big trouble in accessing the HttpServletRequest object in the LoginModules.i.e getting the j_username and j_password in the LoginModules or in the CallBackHandlers.PolicyContext doesn't work for me.Is there any other way?
    Regards,
    Ganesh

  • Can't record web session in Web Application Transaction Monitoring using IE10 (Tried under Windows Server 2008R2 and 2012)

    Hi,
    In Operations Manager Console 2012 SP1 including RU2 I am trying to record a web session in Web Application Transaction Monitoring.
    I have check that:
    The add-on (Microsoft Web Recorder Helper) 64bit is Enabled.
    The 64bit version of IE10 is running/launched. See this link for how to modify your registry key if needed:  http://kevingreeneitblog.blogspot.co.uk/2012/01/scom-2012-recording-web-browser-session.html
    I have tried both on a Windows 2008R2 and 2012 server, but the recorder is not showing up as can been seen from Kevin's Blog (link above).
    Any Ideas?

    I managed to get this working on both Windows 8 IE10 and server 2012 IE10. Tested on SCOM 2012 SP1 UR2 and UR3. I've done this process in lab and production several times so hopefully this helps you out.
    Checklist:
    1. Ensure that the 64bit IE10 is launching when the "start web-capture" is started in SCOM.
    2. Enable IE10 internet options:
    a: Advanced - Security - Enable Enhanced Protected Mode
    b: Advanced - Browsing - Enable third-party browser extensions
    3. Close all running IE sessions and open the Registry Editor
    4. Registry Change (No reboot needed)
    - Browse to the following regkey:
    HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main
    - Add a new DWORD called TabProcGrowth and set it to 0
    5. Registry Change (No reboot needed)
    - Browse to the following regkey:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Discardable\PostSetup\Component Categories64\
    -You should see two subkeys labeled: (These are the cached BHO IE objects related to the Web Recorder)
    {00021493-0000-0000-C000-000000000046}
    {00021494-0000-0000-C000-000000000046}
    - Delete only the above two mentioned keys (This will force IE to recache them next launch)
    6. Try to start the web capture again from SCOM 2012 SP1.
    7. When IE10 Launches enable the add-on again if you are prompted.
    8. If you still don't see the Web-Recorder pane in IE you can now show it by:
     - View - Explorer bars - Web Recorder

  • Oracle BAM Web Applications not supported by Firefox and Chrome browsers

    Hi,
    1) To enable Oracle BAM in a BPM project, when a project data object is marked as a business indicator, the Process Engine stores
    its value in the BAM and DataMart databases, as explained in the documentation. So, How can we use this information to monitor the process activity? Is there any detailed documentation or a sample?
    2) Does Oracle BAM Web Applications still not supported by the browsers Firefox (3.5 and 3.6) and Google Chrome?
    Tahnks. Regards,
    Hanine

    Hanine,
    The business indicators can be used when creating your data objects in BAM Architect and BAM Active Studio.
    The BAM tools still require Internet Explorer only.
    Heidi.

  • AD FS & web application proxy: get error 511 and 364

    I set up ADFS with a service account and I get no errors in the event viewer. Then I set up web application proxy and made all settings (host, delegation, etc.) and also no errors and everything looked good. After publishing a site I wanted to open it and
    then always comes up an error page with the two error events 511 and 364. I did a lot of tipps given in the inet but nothing helped. Maybe you can give me some advices.
    here the error description (some words are in german):
    Microsoft.IdentityServer.Web.InvalidRequestException: MSIS7009: Die Anforderung ist fehlerhaft oder ungültig. Wenden Sie sich für weitere Informationen an Ihren Administrator.
       bei Microsoft.IdentityServer.Web.Protocols.MSISHttp.MSISHttpProtocolHandler.ValidateSignInContext(MSISHttpSignInRequestContext msisContext, WrappedHttpListenerRequest request)
       bei Microsoft.IdentityServer.Web.Protocols.MSISHttp.MSISHttpProtocolHandler.CreateProtocolContext(WrappedHttpListenerRequest request)
       bei Microsoft.IdentityServer.Web.PassiveProtocolListener.GetProtocolHandler(WrappedHttpListenerRequest request, ProtocolContext& protocolContext, PassiveProtocolHandler& protocolHandler)
       bei Microsoft.IdentityServer.Web.PassiveProtocolListener.OnGetContext(WrappedHttpListenerContext context)

    Hi,
    In regard to ADFS related issues, I suggest you refer to the following forum to get professional support:
    Claims based access platform (CBA), code-named Geneva Forum
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=Geneva
    Thank you for your understanding and support.
    Best Regards,
    Amy Wang

  • How a J2EE web application access CR reports stored on the CR Server XI?

    Hi,
    I'll be working on some crystal report templates that will eventually be hosted/publish on the CR Server XI.
    My questions are:
    1. How my J2EE web application access those reports?
    2. Do my web application uses some CR API for the connectivity and integration?
    3. What will happen to the database connectivity of the report template? since the report are created locally.
    4. Can the report template be edited/updated on the server?
    5. How the CR XI login functionality be involve in the integration (web application ---> CR Server XI)?
    6. Is the J2EE web application be deployed on similar web/application server where the CR Server XI resides?
    7. What is the role of RAS, Universe, Business View Manager to this whole CR integration?
    I hope you can provide some guidance on this journey to Crystal Report world
    Regards,
    Rulix Batistil
    Genesis Networks Pte Ltd
    www.gen-net.com.sg

    1) Your application connects via the Java SDK using the appropriate JAR files.
    2) It can.  You can set the database information at runtime or use the already populated information from Enterprise.
    3) Same as 2.   Typically when you save the report to Enterprise you set up the database information there so that it runs against the database you want without prompting.  You can change this via code to hit whatever equivalent database you want.
    4) Yes.  You would have to use RAS and the RCAPI to accomplish this via code.  You can also make changes in the designer and overwrite the existing report template.
    5) You will log in via code. The information on how to do so is in the SDK documentation, which I will link.
    6) It can be deployed to the same machine as CR Server, though we recommend against that.  Typically you will want to deploy it to a seperate web server and allow it to connect to the CR Server across the network.
    7) RAS can be used to run reports, as well as the page server.  The universe and business view manager are not directly used in code.  If a report runs against a universe or business view then it will use them for data, but you wouldnt do anything with them directly.
    [BOE Developer Library|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm]
    You will find the Java SDK information under the BusinessObjects Enterprise SDK section.
    Best Regards,
    Jason

  • Merge Word and PDF to Single PDF via C#

    Hi,
    This sounds like a relatively simple operation and yet I have been unable to find a good code sample that can get this done programattically. I would like to avoid using anything other than the free SDK from Adobe. Basically I just want to take a word document and a PDF document and produce 1 PDF document. Can I do this via the menus in Acrobat - YES, but I need to do it via code in a single step without user interaction. This will be a straightforward client side only app. Can anyone help me here and I apologize in advance is this is too simple.
    Thanks,
    John

    Hi SuneelKumar.
    This forum is to discuss problems of C# development. Your question is not related to the topic of this forum.
    For Asp.net issue
    You'll need to post it in the dedicated ASP.Net Forum
    http://forums.asp.net
    for more efficient responses, where you can contact ASP.NET experts.
    For WPF issue
    You'll need to post it .NET Framework  > Windows Presentation Foundation (WPF)
    Have a nice day!
    Kristin
    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.

  • TS4147 Do I need to merge Safari and my contacts with icloud?

    When settling up Icloud on my iphone 5c the question comes up:  Do you want to merge your Safari and Contacts to iCloud. 
    Can this be reversed later?  What difference does it make?

    Welcome to the Apple community.
    It can only be reversed manually, i.e. By putting everything back one by one. However it's the only way to use iCloud and keep the contacts you already have on your device.

  • Digital signed and PDF byte-serving

    Is a PDF that has been created/enabled for 'fast web view' and then been subsequently digitally signed, still able to use byte-serving optimization or does the fact that the entire PDF needs to be available for sig validation preclude that type of fast web view optimization?

    The entire PDF needs to be downloaded for signature validation to work.

  • CRM 5.0 Installation with MS-SQL and windows 2003 server

    Hi,
    I have to install CRM 5.0 with MS-SQL 2005 and ECC 6.0 with Oracle 10g and integrate with QAS(Third party tool).
    My question are:
    1.Can we install all there application on single server.
    2. what s/w units we have to chose generally and what are standard(ie. EP,TREX etc.....)
    3.Can we install the s/w units later after CRM core installation.
    I am a BASIS Consulatnt and first time installing the CRM.
    Regards
    Alok

    Hi Alok,
    1. You can install all the applications in one box, But it is not advisable as the performance of all the applications can degrade.
    2. Software units like EP, Trex are installed based on the business needs, requirements...
    3. You can proceed initially with the installation of CRM Core components and later you can install other components/ software units.
    Thanks
    Ashok. R

  • Send Port to internally hosted IIS web service needs to run on the SAME IIS SERVER from multiple orchestrations

    Hi
    We have a multi-server BizTalk environment. We have an Orchestration with multiple call orchestrations in it. Each called orchestration is calling a web service through a 2 way Send Port (which is hosted in IIS on each BizTalk server in our multi server
    environment). We have to ensure that each called orchestration is calling these web services on the same IIS server.
    I could create a dedicated host instance that the Send Port runs under to run only on one server but then this means that all our DBase traffic is happening on one server. We also thought about using the load balancer some how to achieve this through sticky
    sessions etc.
    This is all necessary because we are using Entity Framework exposed through web services and we need to manage transactions.
    Any ideas on how we may achieve this. I have inserted a picture to try and show the scenario
    Biztalk Developer

    Haha, Entity Framework strikes again!  But seriously, that is a rather odd architectural requirement, double check first. But anyway...
    Try this: Configure the Send Port URI to point to something like http://localservicehost/[yourEFService]
    Then in the local hosts file (the DNS/IP hosts file), define localservicehost to the local IP address where the service is listening.
    That way, the connection will always be made to the local machine.  Essentially the same as localhost.

Maybe you are looking for

  • Execute report in background

    hi we have one requirement for execute report in background we want to run the report ME5A for a large date range and at plant level. Due to this, transaction data selected is large and so reportis taking very long time when executed in foreground. s

  • PDF acrobat reader

    Ciao sono Italiano, sono nuovo del forum e spero di non essere di troppo disturbo. Ho realizzato un modulo con livecycle che vorrei caricare sul sito della mia azienda in formato pdf. Nel modulo ho inserito il pulsante invio tramite mail. Con acrobat

  • LG Ally and One Drop of Water

    My wife was using her new LG Ally phone (4 days old). She apparently had a drop of water on her finger and when she switched open the keyboard the phone went dead. We tried charging it and it came on but only had 4% charge. We took it to a store and

  • After Effects CS6 update to CC

    My Adobe Application Manager says my After Effects CS6 is Up to date. What do I need to do to update to the version that comes with Cinema 4D Lite?

  • DB2/400 Gateway for iSeries - Where to Download

    Does anyone know how to obtain DB2/400 Gateway for iSeries IBM?