App Server and jQuery

Does the DPS app server have a web server, like apache, running? I am working on a jQuery search solution and it appears jQuery needs to run on a server to search HTML files even if they are in the local file tree. I am trying not to have to convert my Indesign layouts to text for a json file. I would much rather export to HTML.

DPS doesn't have servers available that you can run arbitrary HTML on. If you want to write something in HTML/javascript/jquery for your folios then you need to host it yourself.
Neil

Similar Messages

  • How can i access the information of my central app server and my AS

    Hello i'm trying of configure my sld but when i'm about to create a technical system the wizard ask me for a central app server and App server (host and instance). where in my sap system can i found that information???. Sorry if the question is kind of obvious...i'm a beginner. Thanx in advance

    Hi
    SLD is for creating /Maintaining (including software product,components,etc..) system entries.
    e.g.
    If you want to create enrty for SAP R/3, Go to sld http://<hostname>://<port>/sld  >> technical system >> select type as WebAS ABAP >> enter the ipaddress of the SAP R/3 server
    You can get the details from your basis consultant or NW admin
    Cheers
    Jawahar Govindaraj
    PS:Reward pts

  • Weblogic 8.1 App Server and IBM MQ Series 5.2 Issue

    Hi All,
              I am trying to create a bridge between Weblogic 8.1 App Server and IBM MQ Series 5.2 and i am facing issues.
              Bridge works fine if i use QualityOfService="Atmost-once" and i am getting following error when i use
              QualityOfService="Duplicate-okay".
              Error:
              <Oct 16, 2003 6:03:35 PM PDT> <Error> <MessagingBridge> <BEA-200015> <An error occurred in bridge "MQSeries WebLogic Bridge" during the transfer of messages (java.lang.Exception: weblogic.jms.adapter.JMSConnectionHandle.acknowledge(Ljavax/jms/MessageV).>
              <Oct 16, 2003 6:03:35 PM PDT> <Warning> <MessagingBridge> <BEA-200026> <Bridge "MQSeries WebLogic Bridge" encountered some problems in one of its adapters or underlying systems. It stopped transferring messages and will try to reconnect to the adapters shortly. (The exception caught was weblogic.jms.bridge.internal.MessagingBridgeException.)>
              Any suggestions or comments will be really appreciated.
              Thanks
              Suresh
              

    It is weird that nothing shows up in the log after you turned on the debug.
              Actually I knew somebody has run into the same problem once.
              The problem disappeared after he did something on the MQSeries side (like
              restart the system and something else). I did not know exactly what he did.
              I am not sure if that will help you but worth trying.
              If that does work either, I'd suggest that you contact the BEA Customer Support
              and somebody will look at it for you in depth.
              Thanks,
              Dongbo
              Suresh wrote:
              > Thanks for following up on this.
              >
              > This bridge works with 6.1 app server and we are trying to use the same stuff
              > for 8.1 app server too. No, we are not using XAConnectionFactory.
              >
              > Suresh
              >
              > Dongbo Xiao <[email protected]> wrote:
              > >Is there any chance that the JMS connection factory on the MQSeries
              > >side is a XAConnectionFactory?
              > >
              > >Suresh wrote:
              > >
              > >> I am using the debug options (-Dweblogic.Debug.DebugMessagingBridgeStartup="true"
              > >> -Dweblogic.Debug.DebugMessagingBridgeRuntime="true") in my stratip
              > >script,
              > >> but, thats the maximum stack trace I can get. I am using jms-notran-adp.rar
              > >for
              > >> both QOS. Bridge is working fine when I use Exactly-once and repeatedly
              > >getting
              > >> the same message when I use Duplicate_okay. My destination queue is
              > >not able to
              > >> ackowledge the messge to the sender.
              > >>
              > >> Here I am giving nodes from my config.xml
              > >>
              > >> <MessagingBridge AsyncEnabled="false" BatchInterval="40000"
              > >> Name="MQSeries WebLogic Bridge"
              > >> QualityOfService="Duplicate-okay"
              > >> SourceDestination="MQSeries Inbound Destination" Started="true"
              > >> TargetDestination="WebLogic Inbound Destination" Targets="myserver"/>
              > >> <JMSBridgeDestination
              > >> AdapterJNDIName="eis.jms.WLSConnectionFactoryJNDINoTX"
              > >> ConnectionFactoryJNDIName="jms.InboundMessageConnectionFactory"
              > >> ConnectionURL="t3://myserver:7001"
              > >> DestinationJNDIName="jms.InboundMessageQueue"
              > >> DestinationType="Queue"
              > >> InitialContextFactory="weblogic.jndi.WLInitialContextFactory"
              > >> Name="WebLogic Inbound Destination" UserName="username" UserPassword="pwd"/>
              > >> <JMSBridgeDestination
              > >> AdapterJNDIName="eis.jms.WLSConnectionFactoryJNDINoTX"
              > >> ConnectionFactoryJNDIName="cn=MQ_BROKER_1,ou=inboundConnectionFactories,ou=mqseries,ou=jms,ou=Systems"
              > >> ConnectionURL="ldap://ldapServer:389/o=myroot"
              > >> DestinationJNDIName="cn=queue2,ou=queue,ou=mqseries,ou=jms,ou=Systems"
              > >> InitialContextFactory="com.sun.jndi.ldap.LdapCtxFactory"
              > >> Name="MQSeries Inbound Destination"
              > >> UserName="cn=admin,o=myroot" UserPassword="pwd"/>
              > >> <Application Name="jms-notran-adp"
              > >> Path="C:\bea\weblogic81\server\lib" StagingMode="nostage" TwoPhase="true">
              > >> <ConnectorComponent Name="jms-notran-adp"
              > >> Targets="rdoddapaneni3" URI="jms-notran-adp.rar"/>
              > >> </Application>
              > >>
              > >> Thanks
              > >>
              > >> Tom Barnes <[email protected]> wrote:
              > >> >By the way, if you are looking to improve performance, transactional
              > >> >mode may actually be the fastest. See the JMS Performance
              > >> >Guide white-paper on dev2dev for details.
              > >> >
              > >> >Suresh wrote:
              > >> >
              > >> >> Hi All,
              > >> >>
              > >> >> I am trying to create a bridge between Weblogic 8.1 App Server and
              > >> >IBM MQ Series 5.2 and i am facing issues.
              > >> >>
              > >> >> Bridge works fine if i use QualityOfService="Atmost-once" and i
              > >am
              > >> >getting following error when i use
              > >> >> QualityOfService="Duplicate-okay".
              > >> >>
              > >> >> Error:
              > >> >>
              > >> >> <Oct 16, 2003 6:03:35 PM PDT> <Error> <MessagingBridge> <BEA-200015>
              > >> ><An error occurred in bridge "MQSeries WebLogic Bridge" during the
              > >transfer
              > >> >of messages (java.lang.Exception: weblogic.jms.adapter.JMSConnectionHandle.acknowledge(Ljavax/jms/MessageV).>
              > >> >
              > >> >> <Oct 16, 2003 6:03:35 PM PDT> <Warning> <MessagingBridge> <BEA-200026>
              > >> ><Bridge "MQSeries WebLogic Bridge" encountered some problems in one
              > >> >of its adapters or underlying systems. It stopped transferring messages
              > >> >and will try to reconnect to the adapters shortly. (The exception
              > >caught
              > >> >was weblogic.jms.bridge.internal.MessagingBridgeException.)>
              > >> >>
              > >> >> Any suggestions or comments will be really appreciated.
              > >> >>
              > >> >> Thanks
              > >> >> Suresh
              > >> >
              > >
              

  • Restarting App server and Process Scheduler

    Hi all,
    Can any body send me the document on how to Restart App server and Process Scheduler.
    Thanks In Advance
    Karthik

    Use the psadmin utility under $PS_HOME/appserv.
    https://peoplebooks.uta.edu/PSOL/pt846books/eng/psbooks/tsvt/chapter.htm?File=tsvt/htm/tsvt03.htm%23H3005
    Nicolas.

  • Seperate NT service for App server and Process Scheduler

    Is it possible to create a separate NT service for App server and Process Schedule for the same environment? Everytime i need to shutdown either App Domain or Prcs Domain (not both) using service, it brings down both.
    I could use psadmin but services run as a different user.
    Please advise.

    What PeopleTools release are you using?  Off the top of my head, one strategy would be to use different PS_CFG_HOMEs for the App and the Process scheduler.  The service points to the PS_CFG_HOME and reads the pswinsrv.cfg file to know what to start/stop.  I'm not sure there is a way to override psntsrv and tell it to use a different config file, so you may need a different HOME.  You could also create a script that wraps the service start/stop.  It could edit/update the config file prior to stop/start and remove Process Scheduler from the config and then reinsert it later.
    You could have a stop_app/start_app and stop_prcs/start_prcs script that would copy in specific versions of the pswinsrv.cfg file for what you want to do.

  • Network Load Balancing between SharePoint 2013 App server and WFE

    Hi,
    Can we do NLB between SharePoint 2013 App server and WFE Server ?
    Below is our Architecture,
    1. WFE Server (1) 
    2. APP Server (1)
    3. Database Server
    4. Domain Controller
    We have configured NLB but, when we stop IIS on APP server, SharePoint 2013 web app link is not working. 
    is it possible ?
    Please help us

    You can do NLB between WFE and APP server however make sure that web application service is started from central admin which host sharepoint sites.
    Why do you stop IIS on APP server, definitely it will not be able to host web app sites. rather you can just disable APP node on NLB to test it.

  • [beginner] Relationship between app server and JBI container

    Hello,
    I downloaded the Sun app server as well as the JBI SDK and I would like to understand how they relate to each other. Is the JBI SDK a plug-in in the app server? Does it run on top of it? What part of J2ee are used by JBI?(servlets, ejbs, JCA???).
    Thanks in advance,
    Julien.
    PS
    Any answer is welcome. I am a complete beginner in JBI and I am looking for some primer that will help me get started with the spec...

    JBI is a specification; its up to the implementations to decide how they interact with different application servers. e.g. Sun's RI may work in Sun's app server and, say, JBoss. ServiceMix is already integrated into Apache Geronimo but has deployers for any Servlet engine and JBoss.
    Typically a JBI container will use servlets for HTTP bindings and can use EJBs if required. JCA integration is an option too - e.g. ServiceMix can either integrate with the application servers JCA engine or can use its own embedded JCA engine - Jencks (http://jencks.org).
    James
    http://logicblaze.com/

  • Whether java component (Not ejb, not servlet) can be deployed in App Server and get the services provided by App Server

    As I mentioned in subject, I am just wondering Whether the java component (Not
    ejb, not servlet) can be deployed in App Server and get the services provided
    by App Server or not?

    Nevermind folks - I got it to work. All my configuration was correct; I had other issues with the ejb-jar file that the verifier informed me of (my previous deployments were with the verifier turned-off).

  • Why use app server and EJB?

    we have a project about Component-based Library for Business Information Systems.
    We have chosen Point-Of-Sales System as the type of our system.
    why do we need to use app server and EJB?
    Hope can have replies soon. Thanks so much!
    regards
    beginning of EJB

    Well, you don't need to. You might want to because transaction management is important for point-of-sales and app server/EJB gives you that for 'almost nothing'.

  • Finding the app. server and system number when importing RFC

    hello experts
    I would like to import RFC and I seem to forgot the app. server, and its system number. where can I find it?
    Thanks
    Kfir

    Hi
    Go to SAP Logon single click on your system and again single click at option change item..that will present at left side of your saplogon pad
    you will get all the information regarding that system on which you have clicke first.

  • Diffrence between App Server and web Server

    hi !
    can anybody tell me the difference b/w App Server and Web server with an example!!!
    Thanks in Advance
    Naveen

    lots of discussion made about this, anyway read the URLs
    http://www.javaworld.com/javaqa/2002-08/01-qa-0823-appvswebserver.html
    http://www.jguru.com/faq/view.jsp?EID=282323

  • Got errors when trying to open word document with Office Web App Server and customized WOPI host

    I am configuring the Office Web App Server with our ASP.NET MVC WOPI host based on this example. https://code.msdn.microsoft.com/office/Building-an-Office-Web-f98650d6. While both the OWA server and WOPI server has been set up and I can use Excel and PowerPoint
    app to open and edit xls and ppt file now, there are problems opening word documents no matter I enable or disable the editing function of OWA server.
    When I open a word document while enabling editing I got this error:
    If I disable editing I got this message:
    I have tried several file so I thought it is not the files' problem. Also I didn't find any exception in the log of OWA server. 

    Hi Gary Jiang,
    Thanks for posting in MSDN forum.
    This forum is for developers discussing issues about
    apps for Office.
    Based on the description, it seems that you got an issue when you deploy the code sample. If I understood clearly, I suggest that you contact the author of the code sample from the "Q and A" tab.
    Also if you have the question about WOPI, I suggest that you get more effective response from
    Office
    Protocols forum.
    Regards & Fei
    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.

  • Oracle 10.1.2 app server and toplink 9.0.4.5

    Hi All:
    I require to migrate from oracle 9041 to oracle 10.1.2. presently I am using toplink 9045 jar file in my application. Do I need to upgrade toplink and jdbc jar files also if I upgrade oracle app server?
    Please respond.
    Thanks,
    Viral

    Hello Viral,
    The version of TopLink that ships and is associated with the 10g (10.1.2) application server is TopLink 9.0.4.5, so you should not encounter any problems with the upgrade from TopLink. The drivers on the other hand seem to have changed, as (if you have metalink access) note:262550.1 implies that the server ships with the 10.1.0.2.0 version of the Oracle JDBC drivers. The 10 drivers are backward compatible, so again, you shouldn't have any problems but only testing will tell for sure.
    Best Regards,
    Chris Delahunt

  • 10.1.2 App Server and Discoverer

    Hello,
    I'm attempting to install and configure Discoverer. I have installed the 10.1.2 Infrastructure successfully. As I read the docs for Installing the MidTier, I run into confusion. in part 7 of the Oracle Application Server (10.1.2) Quick Installation Guide, titled Installing Portal and Wireless or Business Intelligence and Forms Developer Topology. It claims that I will have a Business Intelligence and Forms option on the Installation Type screen. Well, this is not true. I have the following options after I choose Mid Tier: J2EE & Web Cache and Portal and Wireless. I don't have a BI & Forms option. Now, I did put the 3 cd's of BI on the machine in assuming that I will need them.
    Do I need to install J2EE & Web Cache OR Portal and Wireless from the App Server Disk, or do I just need to install Bus. Intelligence from the 3 BI cd's? The documentation seems to have been a quick copy/paste from a previous version with pieces/steps missing. Thanks in advance,
    Kelly

    Hi Kelly,
    The Oracle Application Server Middle Tier Installation should have the BI option - I just installed the Oracle Application Server 10.1.2.0.0 & as mentioned on the Installer Page, I saw have all these products :-
        * Oracle HTTP Server
        * Oracle Application Server Containers for J2EE (OC4J)
        * Oracle Application Server Web Cache
        * Oracle Application Server Portal
        * Oracle Application Server Wireless
        * Oracle Sensor Edge Server
        * Oracle Enterprise Manager 10g Application Server Control
        * Oracle Database Server 10g (10.1.0.4.2)
        * Oracle Internet Directory
        * Oracle Application Server Single Sign-On
        * Oracle Application Server Directory Integration Provisioning
        * Oracle Application Server Delegated Administration Services
        * Oracle Application Server Certificate Authority
        * Oracle Application Server Forms Services
        * Oracle Application Server Reports Services
        * Oracle Application Server Personalization
        * Oracle Business Intelligence Discoverer
        * Oracle Security Developer Tools
        * Oracle Application Server Guard
        * OracleAS Backup and Recovery ToolDid you download the CDs from the download page ? :-
    http://www.oracle.com/technology/software/products/ias/htdocs/101202.html
    Regards,
    Sandeeep

  • Deploying to App Server and OC4J

    Hi,
    I am deploying my web service to our Oracle 9i 9.0.3 app server. During testing, I noticed that every consumer does not get it's own instance of the provider. Hence, it does not support concurrent web service calls.
    From my understanding, this is an OC4J configuration issue, and you can change the deployment options where every session has it's own instance. Does anybody know how to do this?
    Thank you in advance!!!!

    Well,
    Yes and no. I want every consumer to have it's own instance of the web service provider, BUT when the consumer is done, I want that instance garbage collected. In essence, I want to support concurrent stateless web service calls.

Maybe you are looking for

  • Curiosity about a feature to iMessage.

    I was wondering how the feature of iMessage where when your in a conversation, and your text field is at the bottom.. when you click on the text field, the screen goes up with it so you can still see the latest messages. I wanted to know how to do th

  • PIX 501 Problem

    Hello All, I have a PIX 501. I configured it with Public IP add outside and private IP inside. I am able to connect to the device fron inside via telnet but NOT from outside. I configured the telnet access on both Interfaces with telnet command. I am

  • Different revene account is used in VF01

    Hello, iam currently in a new system and i cannot explain following phenomenon. The customizing of the revenue account says account 'A' should be used. However when posting an invoice when i check via FB03 the accounting document account b is used. I

  • How to free memory,taken by 'Saved Messages' ??

    Has anyone figured this one yet ? After deleting all message threads ,under  ' Usage ' , ' Saved Messages ' still takes up a lot of memory . The only solutions I have found involved downloading some shady 3rd party app. Has anyone figured another way

  • About configuration in ubr7200 of CMTS

    Hi...... The shown configuraion is ubr7200 CMTS router. I would like to know each command statement. Would you explanation me next config ? I wanna easy explanation. :) interface Cable2/0 ip address 10.80.0.1 255.255.254.0 secondary ip address 58.145