Which web tier does user connect in R12

which web tier does user connect in R12
We have multiple web tiers and using BigIP to load balance the traffic evenly to each of the web tiers.
All users are connected via a VIP and BigIP will route the user connection in one of the web tiers.
How can we find out which web tier does the user is currently connect to?

Hi;
Note 473277.1
How to Determine Which Server a Client is Connected to in Loadbalanced EnvironmentThanks for sharing solution ;)
Regard
Helios

Similar Messages

  • I would like to know which apple server dictation connects to so that my proxy server will stop blocking it. Which apple server does it connect too?

    I would like to know which apple server dictation connects to so that my proxy server will stop blocking it. Which apple server does it connect too?

    I would presume so, but it might be worth your while to experiment and play around with different combinations to see if you can block FaceTime while keeping Game Center open.  Good luck!

  • Blackberry Protect web service does NOT connect remote to my phone

    Can't find any similar problems on the net which is worrying...
    Bold 9700, regularly registered to BIS
    I installed Balckberry protect a few times hoping it would solve the problem
    Essentially It all works but when I connect via the web service, I cannot connect to my phone(I am emulating a lost phone scenario) I tried to block the phone remotely, play a sound, change the screen message...NOTHING works
    The backups are done regularly
    Can anyone help?

    I'd contact your service provider if the rebooting and resetting network settings did not work. A locked phone (locked to a specific network) will not allow you to connect to another provider's network. It is the phone itself that makes calls (which is why you can still make an emergency call from a phone with no sim card in it) and receives sms. The sim acts as an "enabler" so to speak.

  • Web Dispatcher does not connect to J2EE..

    Hi,
    The web dispatcher is not connecting to the J2EE anymore. This was working fine until i installed the SSL certificate on the J2EE engine. The dev_webdisp log file shows messages as below
    [Thr 4880] Tue Aug 28 14:56:48 2007
    [Thr 4880] *** ERROR => NiBufIConnect: non-buffered connect pending after 5000ms (hdl 8;205.178.189.131:56000) [nibuf.cpp    4603]
    [Thr 4880] *** ERROR => Connection request to host: cpcep2.pnrw.org, service: 56000 failed (NIECONN_REFUSED) [icxxpool.c   1948]
    i am able to telnet from the webdispatcher to the portal on port 56000.
    Portal is on EP7 SP12
    any idea why this might have occured ? and how to get the connection back ?
    Thanks in advance!!

    Check out the following links...it deals with setting up Web Dispathcer with SSL
    http://help.sap.com/saphelp_nw70/helpdata/en/d8/a922d7f45f11d5996e00508b5d5211/frameset.htm
    This link points to the SSL Paramters to be configured in the profile file.
    http://help.sap.com/saphelp_nw70/helpdata/en/d8/a922d7f45f11d5996e00508b5d5211/frameset.htm
    -Abhishek

  • Identify to which mid-tier you are be connected on a multi-node R12 env

    How can we identify to which mid-tier we are be connected on a multi-node R12 environment through backend
    Do someone have a handy script to get the details of the connected sessions on each middle-tier node

    hi
    user481019 wrote:
    How can we identify to which mid-tier we are be connected on a multi-node R12 environment through backendFND_NODES table contains information about node_names and services enabled on a node.
    In multinode instance if you want to know which node is running what services, You can query the fnd_nodes and get that information.
    Do someone have a handy script to get the details of the connected sessions on each middle-tier nodefnd_logins
    fnd_user
    v$process
    v$session
    REM
    REM It's configured to work with SQL Directory (SQLDIR).
    REM SQLDIR is a utility that allows easy organization and
    REM execution of SQL*Plus scripts using user-friendly menu.
    REM
    REM
    REM File:
    REM a_user_ses_R11i.10.2.sql
    REM
    REM <SQLDIR_GRP>APPS APPS_ADMIN USER MOST</SQLDIR_GRP>
    REM
    REM SQLDIR Group Descriptions:
    REM     APPS     -     APPS General
    REM     APPS_INST     -     APPS Installation
    REM     APPS_CONC_PROG     -     APPS Concurrent Programs
    REM     APPS_CONC_MAN     -     APPS Concurrent Managers
    REM     APPS_ADMIN     -     APPS Administration
    REM     DBF     - Data Files
    REM     TABSP     - Tablespace
    REM     UTIL     - Utility
    REM     INDX     - Index
    REM     LOG     - Redo Log
    REM     RBS     - Rollback
    REM     MAINT     - Maintenance
    REM     REVERSE     - Reverse Engineering
    REM     SGA     - SGA Maintenance
    REM     TAB     - Table
    REM     USER     - User Management
    REM     STATS     - Statistics
    REM     STORAGE     - Storage Management
    REM     INIT     - Database Init Parameters
    REM     LATCH     - Latches
    REM     LOCK     - Locks
    REM     SEGMENT     - Segment Management
    REM     BACKUP     - Backup Management
    REM     PQ     - Parallel Query
    REM     TRACE     - SQL Tracing Tuning
    REM     PART     - Partitioning
    REM     MOST     - Favorite Scripts
    REM
    REM
    REM
    REM
    REM Purpose:
    REM <SQLDIR_TXT>
    REM     This script reports APPS active middle-tier sessions
    REM     (works with newest 11.5.10.2 framework)
    REM </SQLDIR_TXT>
    REM
    REM Usage:
    REM a_user_ses_R11i.10.2.sql
    REM
    REM Example:
    REM a_user_ses_R11i.10.2.sql
    REM
    accept 1 prompt "Enter the type of sessions you'd like to report on web: "
    set lines 132
    set trims on
    col db_pid format a6 heading "DB-PID"
    col mt_pid format a6 heading "MT-PID"
    col sid_serial     format a16 heading "USR:SID,SERIAL"
    col apps_user format a12 heading "Apps User"
    col apps_logon_time     format a15 heading "-- Apps --|Logon Time"
    col mt_detail     format a15 heading "Middle Tier"
    col mt_start_time     format a15 heading "-- M-Tier --|Logon Time"
    col module     format a10 heading "Module"
    col action     format a35 heading "Module Detail"
    alter session set nls_date_format='MON-DD HH24:MI';
    select /*+ ORDERED */
    p.spid db_pid
    , s.process mt_pid
    , s.username||':'||SUBSTR(s.sid||','||s.serial#,1,15 ) sid_serial
    , fl.start_time apps_logon_time
    , fu.user_name apps_user
    , s.machine||'.'||s.osuser mt_detail
    --, logon_time mt_start_time
    , substr(module,1,10) module, action
    from fnd_logins fl
    , fnd_user fu
    , v$process p
    , v$session s
    where decode('&&1','web',fl.spid,1)=decode('&&1','web',s .process,1)
    and fl.pid=p.pid
    and fl.process_spid=p.spid
    and fl.serial#=p.serial#
    and s.process is not null
    and s.paddr = p.addr
    and fl.user_id=fu.user_id
    and fl.end_time is null
    please see this
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Connected+users&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    ;) AppsMAsti ;)
    Sharing is Caring

  • Why does refreshing my web browser page increment the number of users connected to my Remote Front Panel?

    Hi,
    I'm using LabVIEW 2010 and a cRIO-9118 to broadcast my RT Front Panel on the web with a Web Server.
    I successfully configured the web server to be able to control my Front Panel remotely. However, I have an issue with "Refreshing" the browser.
    When I press "Enter" to search the adress of the web server, the number of users connected seems to increment by one and then tells me that "Too many users are connected to the front panel". Once this has been done, the only way to "unlock" the web server is to reboot the cRIO.
    Is there any solution to avoid this behavior?
    My current web browser is Internet Explorer 8.
    Thank you
    Mathieu Veillette, Ing Jr.
    Solved!
    Go to Solution.

    Hi Mathieu,
    Unfortunately, there currently isn't a very good solution for the problem you are facing. It seems like this is a known issue that R&D is working on. It so happens that in addition to simply refreshing, this issue also occurs if you try to access the Remote Front Panel using a second tab in a tabbed browser. One "fix" would be to invest in a higher count Remote Front Panel license. If that's not feasible, then the current recommendation would be to avoid connecting to the Remote Front Panel from a second tab or refreshing the view in your browser. Once you exceed the number of connections to the Remote Front Panel, you will have to restart the RT controller -- there isn't a way to change this default behavior. You can track any fixes by R&D by keeping note of the CAR (corrective action request) ID for this issue, which is #202702.
    Sanjay C.
    Embedded Software Product Manager| National Instruments

  • In Java EE 7's Firstcup tutorial, why does does the web tier consume the data from the dukes-age web service?

    In the Firstcup tutorial, the responsibilities of the web tier are listed as:
    dynamically generate content for the client
    collect input from the user
    return results from business tier components
    control the flow of client screens & pages
    maintain session state
    perform basic logic
    hold data temporarily in JavaBeans components
    Which of these responsibilities would retrieving data from a web service fall under?
    The tutorial also lists the technologies used in the web tier, and JAX-RS is not included in that list. The list of technologies used by the business tier does, however, list JAX-RS. I was surprised to find the DukesBDay JavaBeans component (in the web tier) calling the dukes-age web service, instead of the DukesBirthdayBean EnterpriseBean (in the business tier), which uses hard coded value for Duke's birth date.
    Is it typical for the web tier to consume web services in this way? What about when using an application client container, wouldn't that skip the web tier altogether, and in doing so also skip the web service call? Wouldn't DukesBirthdayBean in the business tier benefit from making the call to the web service, instead of having the date hard coded into it, and wouldn't this also solve the problem of the missing web service call when using an application client container?

    Hi Shadab,
    Here is a list of Web service standards supported by SAP in NetWeaver 7.1.1: [Supported Standards|http://help.sap.com/saphelp_nwpi711/helpdata/en/44/624479f7e608fae10000000a422035/frameset.htm] (also in [7.0|http://help.sap.com/saphelp_nw70/helpdata/EN/44/624479f7e608fae10000000a422035/frameset.htm] and [7.0.1|http://help.sap.com/saphelp_nw70ehp1/helpdata/EN/44/624479f7e608fae10000000a422035/frameset.htm]). The Enterprise Services adhere to these standards, and on the provider side you have the tools to configure the authentication settings as needed. On the consumer side, one just has to use a Java release (or any other platform) that supports these standards.
    While I am not a Java developer, there should be [many ways to consume a Web service in Java|http://www.google.bg/search?q=consumewebservice+java].
    Hope this helps,
    Rossen

  • Does user pc require directx or quicktime7 if I embed a mpg/ avi video in flash and publish as swf for a web site?

    Hi,
    I am going to work on a site which requires embed video (mpg, mpeg, avi, mov) in a flash animation. Now what I find in the net that if I have to import those files in flash then both directx and quicktime must be present in my system. Right now I don't have installed in my PC but I will do . But my question is that after publishing my animation in the net, does user/ web site visitors needs directx and quicktime installed in their pc to view the my animation correctly (with video embed) ?
    Thanks in advance
    SankhaD

    I believe the only kind of video you can embed in flash is flv.  If you import another format flash will convert to flv if it can.

  • Sorry if tis is naive.  I have just bought my first iPad Retina Display.  I have WiFi at home but it has taken ages for me to connect as I needed all sorts of codes, passwords, detauils etc.   How does one connect to the web (Google) when one is out and a

    Sorry if this is a bit naive.  I have just bought my first iPad (Retina Display).  I have WiFi at home but it has taken me ages to get on-line as I needed all sorts of codes, passwords, numbers etc.
    How does one connect to the web (Google) when one is out and about?
    Thanks

    haha, You're welcome
    Maybe these links will be useful
    ipad manual/user guide
    http://manuals.info.apple.com/en_US/ipad_user_guide.pdf
    ipad support page
    http://www.apple.com/support/ipad/
    ipad assistant
    http://www.apple.com/support/ipad/assistant/

  • Passing Connection object from web tier to ejb tier

    I am having a multi threaded application where i am creating multiple threads and doing ejb lookup in each thread and there in ejb it is creating a database connection.
    But i wish to pass only a single connection so that total no of free connections will be more.
    i am creating a connection in my web tier and passing it in each thread and then to ejb tier. But i am getting a class cast exception
    java.lang.ClassCastException: com.sun.gjc.spi.ConnectionHolder
         at com.sun.corba.ee.impl.presentation.rmi.DynamicMethodMarshallerImpl$14.write(DynamicMethodMarshallerImpl.java:338)
         at com.sun.corba.ee.impl.presentation.rmi.DynamicMethodMarshallerImpl.writeArguments(DynamicMethodMarshallerImpl.java:407)
         at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.privateInvoke(StubInvocationHandlerImpl.java:157)
         at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.invoke(StubInvocationHandlerImpl.java:119)
         at com.sun.corba.ee.impl.presentation.rmi.bcel.BCELStubBase.invoke(BCELStubBase.java:197)
    Please give some insight where i am doing wrong also suggest me a better way to do it.
    TIA
    ~seshu

    Hi Krishendu,
    I think this is a bug in 9.0.2 that is fixed in 9.0.3/9.0.4.
    Can you please contact Oracle support and see whether they can provide a patch for this problem.
    regards
    Debu

  • HT4907 I am able to connect to my Mac Mini on Back to My Mac through iCloud but the keyboard/trackpad on the MBAir or MBP with which I access does not register on the Mini.  So I can see the screen but cannot interact with it. Mini works accessing MBP/Air

    I am able to connect to my Mac Mini on Back to My Mac through iCloud but the keyboard/trackpad on the MBAir or MBP with which I access does not register on the Mini.  So I can see the screen but cannot interact with it. Mini works accessing MBP/Air and I can use Mini to input data or interact with screens of those computers.

    Regarding your first question about bookmarks, I think you discovered the answer in when you pressed the address bar. The second tab there has your bookmarks.
    As for the keyboard, I'm not sure why your Firefox is reacting so slowly; mine seems to show keyboards even when I don't want them. If you have accumulated a lot of history, perhaps that's an issue?
    Did you use any third party software to move your Firefox data from internal memory to the storage card?

  • Rcv'ng message: This web site does not supply ownership information. Connection not encypted. Q: What setting can I change in Firefox to allow access?

    Website: g01cdwascl002.ahe.pok.ibm.com
    Owner: This web site does not supply ownership information.
    Verified by: Not specified
    Technical Details:
    Connection not encrypted

    You can set the pref <b>browser.urlbar.trimURLs</b> to <i>false</i> on the <b>about:config</b> page to see the http: protocol.
    You can set the pref <b>browser.urlbar.formatting.enabled</b> to <i>false</i> on the <b>about:config</b> page to disable the highlighting of the domain and see the full URL more clearly.
    *http://kb.mozillazine.org/about:config
    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • Oracle web tier install+config: opmn does not start after install

    Centos 5 box.
    After a silent install of web tier 11.1.1.2 opmn will not start. The installation was "complete" but I found some errors in the various log files.
    When I try to start a process (for example) using opmn this error occurs in the log file:
    [2011-03-31T16:31:49][opmn][TRACE:1][][OPMN]Failed to open wallet (file:/apps/oracle/orahttpserver/as_1/instances/instance2/config/OPMN/opmn/wallet) [default password] (28759)
    Command line says unexpected error, code 512 or something to that effect. The given wallet directory is empty.
    Checking back through the install & configure logs:
    java.lang.NoClassDefFoundError: oracle/security/crypto/core/PublicKey
            at oracle.as.config.utl.FileUtil.createSelfSignedOracleWallet(FileUtil.java:697)
            at oracle.as.config.utl.FileUtil.generateWallet(FileUtil.java:631)
            at oracle.as.config.utl.FileUtil.generateWallet(FileUtil.java:667)
            at oracle.as.config.utl.FileUtil.generateWallet(FileUtil.java:558)
            at oracle.as.config.impl.OpmnProvisioner.generateWallet(OpmnProvisioner.java:70)
            at oracle.as.config.impl.OpmnProvisioner.createOpmnConfiguration(OpmnProvisioner.java:366)
            at oracle.as.config.impl.OracleASInstanceImpl.createOpmnConfiguration(OracleASInstanceImpl.java:586)
            at oracle.as.config.impl.OracleASInstanceImpl.create(OracleASInstanceImpl.java:107)
            at oracle.as.install.webtiercd.webtierconfig.util.CreateASInstance.createASInstanceWrapper(CreateASInstance.java:137)
            at oracle.as.install.webtiercd.webtierconfig.util.CreateASInstance.createStandaloneASInstance(CreateASInstance.java:83)
            at oracle.as.install.webtiercd.webtierconfig.actions.WebtierConfigurationAction.configureInstanceStandalone(WebtierConfigurationAction.java:590)
            at oracle.as.install.webtiercd.webtierconfig.actions.WebtierConfigurationAction.configureStandalone(WebtierConfigurationAction.java:441)
            at oracle.as.install.webtiercd.webtierconfig.actions.WebtierConfigurationAction.doExecute(WebtierConfigurationAction.java:174)
            at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
            at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
            at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
            at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
            at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
            at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
            at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
            at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
            at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.ClassNotFoundException: oracle.security.crypto.core.PublicKey
            at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionClassLoader.loadClass(StandardConfigActionClassLoader.java:75)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
            ... 22 more
    The configuration of  completed successfully.
    Checking a screen shot of someone else's configure output theirs continues beyond
    "Bootstrapping OPMN configuration files..."
    and correctly generates the instance etc.
    I have tried a reinstall, and also tried a generate a new instance using the silent config tool. Same errors each time.
    Log also states;
    Oracle Instance Home
                            Instance Home Size: 0 MB (or 40mb)
                            Available: 0 MB
    . This varies between installs and configs but available is always 0. There is Gb's of space available in the directory and the user has write permissions.
    Can anyone tell me why it is failing to correctly generate the wallet?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Solved. Oracle_home and Instance home must be subdirectories of MIDDLEWARE_HOME. MIDDLEWARE HOME and command to not install updates must be added to response file. Helpful to install and configure separately.

  • R12.1.1 upgrade driver failed due to OKC user connectivity (RHEL 5.9)

    Hi Team,
    I was in the middle of the R12.1.1 upgrade and the driver failed due to OKC user connectivity .
    I have checked all the possibilities.
    Please let me know how to proceed from here. Though I restarted the patch it is failing due to OKC user login denied.
    Assigned: file as_accesses_n17.xdf on worker 1 for product as username APPS.
    Assigned: file cnpln.odf on worker 2 for product cn username CN.
    Assigned: file invtxhi.odf on worker 3 for product inv username INV.
    Assigned: file mscplan.odf on worker 4 for product msc username MSC.
    Assigned: file MSC_SYSTEM_ITEMS.xdf on worker 5 for product msc username APPS.
    Assigned: file OKCDAUT.odf on worker 6 for product okc username OKC.
    Assigned: file OKCDSUP.odf on worker 7 for product okc username OKC.
    Assigned: file OKCOTH1.odf on worker 8 for product okc username OKC.
    Assigned: file OKCPTY1.odf on worker 9 for product okc username OKC.
    Assigned: file OKCREP1.odf on worker 10 for product okc username OKC.
    Assigned: file OKCSHD1.odf on worker 11 for product okc username OKC.
    Assigned: file OKCVARL.odf on worker 12 for product okc username OKC.
    Assigned: file OKCXRPT.odf on worker 13 for product okc username OKC.
    Connecting to OKC......Unable to connect.
    AutoPatch error:
    The following ORACLE error:
    ORA-01017: invalid username/password; logon denied
    occurred while executing the SQL statement:
    CONNECT OKC/*****
    AutoPatch error:
    Error while evaluating "Check Object"
    Telling workers to quit...
    2 workers have quit. Waiting for 14 more.
    12 workers have quit. Waiting for 4 more.
    13 workers have quit. Waiting for 3 more.
    15 workers have quit. Waiting for 1 more.
    All workers have quit.
    AutoPatch error:
    Error running SQL and EXEC commands in parallel

    user11962637 wrote:
    Hi Srini,
    Thank you for the update.
    The password is working fine no issues with the connectivity from my end, but upgrade driver is failing with the same error.
    sqlplus apps/apps
    SQL*Plus: Release 10.1.0.5.0 - Production on Fri May 17 18:18:03 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> conn okc/okc
    Connected.
    SQL> conn system/crp2system
    Connected.
    SQL> exitThis will happen if you change the password using the ALTER USER command rather than using the FNDCPASS executable
    Srini

  • Responsibility does not show up in External Web Tier

    Hi All,
    We have configured 12.1.3 instance with 1 DB Node, 2 Apps Nodes and an external web tier. Everything loooks good as per configuration but none of the responsibilities show up in the external web tier even after setting the profile option(RESPONSIBILITY TRUST LEVEL) to "External" for those particular responsibilities. Please advise.
    Thank you.

    Please see if these docs help.
    Supplier Unable To See External Responsibility [ID 741751.1]
    How to Restrict Access to Responsibilities Based on User's Web Server in Release 12 [ID 443423.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Dunning Report not printing

    Hi, I am trying to print the dunning report using F150 in Prod Server . I had even scheduled the run and I am getting in the status and printing complete, but when i go to SP01 for the spool I do not see the same. Advice me what might be the reason.

  • Delayed audio playback in canvas - ProRes 5D clip

    I have some 5D clips (30fps) which I transcoded into ProRes 422 in Compressor, at 48kHz. I dropped them into a ProRes 422 30fps 48kHz timeline in FCP. Upon playback, each clip has no sound for the first few seconds. The bars in the timeline are gray,

  • Validate XML Schema

    Hi, I need to load some XML schema definitions to afterwards validate some DOM documents against this schemas. My problem is, when loading those XML schema definitions I have to validate them. How to do this? How to provide an javax.xml.validation.Sc

  • How to run an applet with JDBC connectivity on a web browser

    I've created an Applet in Java with SQL connectivity...i.e. it retrieves certain data from a table in SQL and puts in the TextField..... Now, the problem is that this Applet works in NETBEANS....but fails to work when I use a web-browser..or the "app

  • Batch creating PDF/A

    Hello! I'm running Acrobat XI on Mac OS 10.8.3, and I'm trying to batch convert Word docs to PDF/A. Is there a way to change the settings so that I'm creating PDF/A rather than PDF when using the "batch create multiple files" option? Or is there a be