Failed to load jsp with jstl 1.0 when deployed to Weblogic 11g

The same war is successfully run on weblogic 10.X but failed to run on weblogic 11.x
JSTL version is 1.0
Compilation of JSP File failed:
Exception occurred while processing '/u02/tech/product/otm620/otmapp/weblogic/domains/otm/servers/gc3-scdemo/tmp/_WL_user/ShipConsole/deg7z9/war/xxx.jsp'java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/ConditionalTagSupport
     at java.lang.ClassLoader.defineClass1(Native Method)
     at java.lang.ClassLoader.defineClassCond(ClassLoader.java:632)
     at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
     at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
     at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
     at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
     at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
     at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:296)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
     at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:177)
     at weblogic.utils.classloaders.FilteringClassLoader.findClass(FilteringClassLoader.java:101)
     at weblogic.utils.classloaders.FilteringClassLoader.loadClass(FilteringClassLoader.java:86)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:296)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:296)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
     at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:177)
     at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:37)
     at weblogic.servlet.jsp.TagFileClassLoader.findClass(TagFileClassLoader.java:32)
     at weblogic.servlet.jsp.TagFileClassLoader.loadClass(TagFileClassLoader.java:24)
     at weblogic.jsp.internal.jsp.JspScriptTransform.getHandlerInfo(JspScriptTransform.java:1595)
     at weblogic.jsp.internal.jsp.JspScriptTransform.signActionAll(JspScriptTransform.java:619)
     at weblogic.jsp.internal.jsp.JspScriptTransform.addJspService(JspScriptTransform.java:218)
     at weblogic.jsp.internal.jsp.JspScriptTransform.transformPage(JspScriptTransform.java:177)
     at weblogic.jsp.internal.jsp.JspScriptTransform.<init>(JspScriptTransform.java:152)
     at weblogic.jsp.internal.jsp.JspCheckContext.check(JspCheckContext.java:82)
     at weblogic.jsp.internal.jsp.JspAnalyzer.check(JspAnalyzer.java:57)
     at weblogic.jsp.internal.ProxySourceFile._check(ProxySourceFile.java:136)
     at weblogic.jsp.internal.SourceFile.masterCheck(SourceFile.java:762)
     at weblogic.jsp.internal.SourceFile.check(SourceFile.java:314)
     at weblogic.jsp.internal.SourceFile.check(SourceFile.java:335)
     at weblogic.jsp.internal.ProxySourceFile.codeGen(ProxySourceFile.java:224)
     at weblogic.jsp.internal.SourceFile.codeGen(SourceFile.java:327)
     at weblogic.jsp.internal.client.ClientUtilsImpl$CodeGenJob.run(ClientUtilsImpl.java:599)
     at weblogic.jsp.internal.client.Job.performJob(Job.java:83)
     at weblogic.jsp.internal.client.ThreadPool$WorkerThread.run(ThreadPool.java:217)

I don't have any weblogic.xml its a plain web application.
i tried in all scenarios like using import command of jstl in web.xml like taglib tag.
Irrespective of imports always showing the same error like class not found javax/servlet/jsp/jstl/core/ConditionalTagSupport
May be the search is by some other class loader.
How to deploy the jstl & standard jar files as shared libraries in weblogic server

Similar Messages

  • Error message "failed to load an application resource (internal error)" when checking form in LiveCycle preview PDF

    After creating a form, when I click on Preview PDF, I am now getting an error message "Failed to load an application resource (internal error)". Not sure why this has started recently, but it makes it impossible to check my forms for clients before I send them. I can open them outside of the program in Adobe Reader, but it is faster to check the form within LiveCycle and change them if necessary. Please help!

    I fixed mine! In Reader 9 and 10.0 I had disabled the ReadOutLoud feature as it kept popping up whenever it felt like it, and I don't need ReadOutLoud. What worked for me was first to purge the system of Reader 9 - the uninstall routine leaves stuff behind. Then I went into the Reader 10 program folder, located the plug_ins sub folder, and renamed it to oldplug_ins. Then I ran the repair routine which recreated the plug_ins subfoler.. All now works, except that the <expletive deleted> ReadOutLoud is up to its old tricks again, but I can live with that for now.
    Hope this helps.

  • Load JSPs with a custom ClassLoader

    Hello all.
              Here's what we're trying to do. We want to be able to have different versions of our JSPs and be able to switch between them on the fly. So, we're going to have a ServletFilter that will look at the request to determine the JSP version that we want and take appropriate action.
              My problem is with the ClassLoader. I've written a ClassLoader that will read compiled JSPs from a location outside the web application context, then define and resolve them. I then create a Method object for the _jspservice() method from the returned instantiated JSP class. This all works fine.
              The issue is that when I try and invoke the _jspservice method, the generated code tries to call getServletConfig() from the JSP classes superclass, and since Weblogic didn't load the class and do whatever setup was required, I always get a null ServletConfig back, and as a result get an immediate NullPointerException. There's no way to set the ServletConfig, so I'm stuck.
              Have any of you done anything like this and gotten by this problem?
              I would appreciate any help.
              Thanks,
              Rex Chandler

    Hello all.
              Here's what we're trying to do. We want to be able to have different versions of our JSPs and be able to switch between them on the fly. So, we're going to have a ServletFilter that will look at the request to determine the JSP version that we want and take appropriate action.
              My problem is with the ClassLoader. I've written a ClassLoader that will read compiled JSPs from a location outside the web application context, then define and resolve them. I then create a Method object for the _jspservice() method from the returned instantiated JSP class. This all works fine.
              The issue is that when I try and invoke the _jspservice method, the generated code tries to call getServletConfig() from the JSP classes superclass, and since Weblogic didn't load the class and do whatever setup was required, I always get a null ServletConfig back, and as a result get an immediate NullPointerException. There's no way to set the ServletConfig, so I'm stuck.
              Have any of you done anything like this and gotten by this problem?
              I would appreciate any help.
              Thanks,
              Rex Chandler

  • 9.0.3 ojspc and JSPs with JSTL

    I tried using ojspc to pre-compile my jsps, as such: #ojspc myApp.war and got the following error:
    Detected archive, now processing contents of myApp.war...
    Setting up temp area...
    Expanding archive in temp area...
    Parse error in index.jsp:
    oracle.jsp.parse.JspParseException: Line # 2, <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
    Error: java.io.FileNotFoundException: /tmp/tmp10045/http:/java.sun.com/jstl/core (No such file or directory)
    Removing temp area...
    Are there any work-arounds to pre-compile jsps which utilize JSTL (almost all of ours do...)?
    Thanks,
    Voytek Jarnot

    Hi,
    Have you mentioned the tag lib mapping in ur web.xml? [Something like this]
    <taglib>
    <taglib-uri>http://.....</taglib-uri>
    <taglib-location>/WEB-INF/jstl-core.tld</taglib-location>
    </taglib>
    rgds,
    Neelesh
    OTN Team @IDC

  • Systemd fails to load modules with kernel 3.0

    When booting, systemd tells to issue this command:
    sudo systemctl status systemd-modules-load.service
    Password:
    systemd-modules-load.service - Load Kernel Modules
    Loaded: loaded (/lib/systemd/system/systemd-modules-load.service)
    Active: failed since Wed, 03 Aug 2011 00:40:15 +0200; 1min 26s ago
    Process: 237 ExecStart=/lib/systemd/systemd-modules-load (code=exited, status=1/FAILURE)
    CGroup: name=systemd:/system/systemd-modules-load.service
    I have no idea about what it's happening or how to solve it.
    Any help would be appreciated. Thanks in advance

    Yes im in audio group. And i tryed that and nothing happend...
    EDIT: one more thing related for this bug, when i installed archboot yesterday it was everything work, then i do pacman -Syu and i updated package initscript and krb5 after this updated package network and audio stoped to work so probaby problem is here in initscrit (i guessing) and i not use kernel 3.0 i use
    uname -a
    Linux myhost 2.6.39-ARCH #1 SMP PREEMPT Sat Jul 9 15:31:04 CEST 2011 i686 Intel(R) Pentium(R) Dual CPU E2200 @ 2.20GHz GenuineIntel GNU/Linux
    Last edited by Kosava (2011-08-04 12:46:48)

  • Loading JSP with a URL instead

    Hi all, how do I load a JSP using a url like "http://www.myhome.com/" instead of typing "http://localhost:8080/examples/index.htm"(This is the htm that loads the JSP).
    Thanks.

    Look inside Tomcat's webapps directory. There will be a directory call ROOT (this is the ROOT web application context. It gets used for:http://my.company.com/ addresses.
    Put your index.htm in there. Then look in the WEB-INF directory of the ROOT context, and add this:
        <welcome-file-list>
             <welcome-file>index.htm</welcome-file>
        </welcome-file-list>

  • Load Error with return code 7000 when call sqlldr in interface.

    Hi All,
    I have created a interface to load data from 'File' to 'Oracle' in ODI 11g.
    Below are the running order of this interface.
    1 - Loading - SrcSet0 - Drop work view
    2 - Loading - SrcSet0 - Drop Temp Table
    3 - Loading - SrcSet0 - Create Temp table
    4 - Loading - SrcSet0 - Create Work View
    5 - Loading - SrcSet0 - Generate CTL file
    6 - Loading - SrcSet0 - Call sqlldr
    We are getting the following error while running the step 6.
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (most recent call last):
      File "<string>", line 22, in <module>
    Load Error: See C:\home\oracle\joc\odi/AIM.log for details
      at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
      at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:322)
      at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:170)
    And it return code 7000 indicated in 'Execution Statistics'.
    If anyone has encountered a similar issue and able to solve it, please share your thoughts with me.
    Thanks in advance for your help.
    Dicksam

    This forum is dedicated to supporting the use of Maven with FMW and the new Oracle Maven Repository.  Given that ODI does not currently provide Maven support, you are unlikely to get a response in this forum.  You might want to try posting in a different forum dedicated to Data Integration, such as the Master Data Management forum.

  • RPE-02150: Failed to connect with user... when deploying location

    Hello.
    I've created cube and 3 dimentions in OWB 10.2, then derived them to make business definition for Discoverer 10.1.
    When I try to deploy this business definition, I get error "RPE-02150: Failed to connect with user xxx, password ***, connection null. Disco export file 5039.eex written to directory owb/deployed_files." The error appears at deploying location step. What feature is that?
    Thanks,
    Evgeni

    Hi,
    same situation, same behaviour. I've seen, that the location for the discoverer could only be of type 10.1 database in the lov of the location form. But the database is 10.2. Perhaps that might be the problem.
    Do you have any other suggestions?
    Ciao Stephan

  • PL/SQL  Web Service fails when deployed to WebLogic server

    I have a web service generated via JDeveloper from a PL/SQL package. It runs fine both when tested in JDeveloper and when the WAR file is manually deployed to the Integrated WebLogic Server. However, when the WAR file is deployed to our actual WebLogic server, it fails. Other existing web services that were not generated with the JDeveloper wizard work correctly. I am having trouble finding any references to this type of issue to solve it. Are there any ideas what might be causing the WSDL to fail?
    References:
    * JDeveloper 11.1.1.6.
    * No proxies are involved.
    * The PLSQL package is a basic function that returns varchar2 input fed in by one parameter:
    create or replace package body pkg_ws_test as
    function test_me (p_anything_in varchar2)
    return varchar2 is
    begin
    return p_anything_in;
    end test_me;
    end pkg_ws_test;
    * Top of error stack is as follows:
    oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://svr:8892/wsTest2-getSame-context-root/TestMePort?wsdl: HTTP connection error code is 500 at oracle.sysman.emSDK.webservices.wsdlparser.ParsedWSDLFactoryImpl.getParsedWSDL(ParsedWSDLFactoryImpl.java:157) at oracle.sysman.emSDK.webservices.wsdlparser.ParsedWSDLFactoryImpl.getParsedWSDL(ParsedWSDLFactoryImpl.java:87) at oracle.sysman.emas.model.wsmgt.WSTestModel.init(WSTestModel.java:325) at
    ...

    Hi,
    The below error trace you've provided doesn't confirm that Weblogic server has thrown the error.
    oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://svr:8892/wsTest2-getSame-context-root/TestMePort?wsdl: HTTP connection error code is 500 at oracle.sysman.emSDK.webservices.wsdlparser.ParsedWSDLFactoryImpl.getParsedWSDL(ParsedWSDLFactoryImpl.java:157) at oracle.sysman.emSDK.webservices.wsdlparser.ParsedWSDLFactoryImpl.getParsedWSDL(ParsedWSDLFactoryImpl.java:87) at oracle.sysman.emas.model.wsmgt.WSTestModel.init(WSTestModel.java:325) at
    Please paste complete stacktrace of the error to check and also include the caused by section in the error.
    Thanks,
    Vijaya

  • Build a EJB/ Application with Sun One Studio and deploy to Weblogic

    Dear all,
    My boss require me to use Sun One Studio 4 update 1 to do the development, but
    I find it's a nightmare to deploy the EJB/ application to the WebLogic 6.1.
    I've already installed the weblogic plug-in in the Sun One Studio.
    During deploying I could not find any setting that ask me for the weblogic-ejb-jar.xml.
    So I think the deployment will fail.
    Is there any others tutorial or e-book that can help me to familiar with the deployment
    process?
    Many Thanks for all of you.
    Ivan

    where do you get the weblogic plugin from ?
    i am intrested in doing the same thing
    thanx
    prem
    "Ivan" <[email protected]> wrote in message
    news:[email protected]..
    >
    Dear all,
    My boss require me to use Sun One Studio 4 update 1 to do the development,but
    I find it's a nightmare to deploy the EJB/ application to the WebLogic6.1.
    >
    I've already installed the weblogic plug-in in the Sun One Studio.
    During deploying I could not find any setting that ask me for theweblogic-ejb-jar.xml.
    So I think the deployment will fail.
    Is there any others tutorial or e-book that can help me to familiar withthe deployment
    process?
    Many Thanks for all of you.
    Ivan

  • How do I hide the VI loading window for an exe file when deployed

    Is there some set point or registry entry that I need to switch to hide the vi load window when an exe is executed?
    Tim
    Johnson Controls
    Holland Michigan

    aeastet wrote:
    Jeff Bohrer wrote:
    aeastet wrote:
    Is there some set point or registry entry that I need to switch to hide the vi load window when an exe is executed?
    several years ago Mark and I shared a cube wall.  (actually, several cube walls over the years)  He developed 1 example of a splash screen that has been available for use to hide the loading window.  I haven't looked too deep in it for several years but It worked! 
    Splash screen example code
    I actually have the splash screen vi's that you are talking about and that is what I based mine on. It is nice to have that code to see how others would do it. So thanks Mark for the push in the right direction on this.
    OK- so another method that we tossed about. was to place a simple vi AS main with a FP that "Looked" like a splash screen.  use THAT vi to dynamically load and run the real main vi for the application with a vi server ref (wait for completion F auto dispose T) and then close itself after a delay.  We debated that the method was "cheesy" and required a dynamic call to the real top level VI so it was easy to botch the build spec.  but we did try it and it hid the Loading screen effectively
    Jeff

  • JSP db connect doesnt work when deployed

    I have a VERY simple JSP selects from a table, displays the rows. Works fine when running in the local OC4J, but when i deploy it to the application server get the following. Any ideas?? I can post the JSP and web.xml and data-sources.xml if it would help..
    Thanks
    Robert
    500 Internal Server Error
    javax.servlet.jsp.JspException: SELECT buno, tec, org_code from acft: Io exception: The Network Adapter could not establish the connection     at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doEndTag(QueryTagSupport.java:252)     at untitled1.jspService(_untitled1.java:69)     [SRC:/untitled1.jsp:15]     at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:347)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)     at java.lang.Thread.run(Thread.java:534)

    Deepak,
    I changed my web.xml file in jDeveloper to look like what you suggested, and removed the following
    <resource-env-ref>
    <resource-env-ref-name>jdbc/jacksonrsDS</resource-env-ref-name>
    <resource-env-ref-type>javax.sql.DataSource</resource-env-ref-type>
    </resource-env-ref>
    I redeployed the application, and it still does not work.
    on another note, I did a search on the application server for datasources.xml and found 8 occurances of it. Is this normal, and which one is it looking at? is there a search order? I looked at them, and some had my jacksonrsDS defined in them, and others had my datasources from jDeveloper in the format of "jdev-connection-datasourcename"
    here is where i found them
    /home/oracle/product/10g/inf/j2ee/home/config
    /home/oracle/product/10g/inf/j2ee/OC4J_SECURITY/config
    /home/oracle/product/10g/mid/j2ee/home/config
    /home/oracle/product/10g/mid/j2ee/oc4j_portal/config
    /home/oracle/product/10g/mid/j2ee/MyOC4J/application_deployments/webapp1jspconnect
    /home/oracle/product/10g/mid/j2ee/MyOC4J/applications/webapp1jspconnect/META-INF
    /home/oracle/product/10g/mid/j2ee/MyOC4J/applications/webapp1jspconnect/webapp1jspconnect/WEB-INF/classes
    /home/oracle/product/10g/mid/j2ee/MyOC4J/config

  • Works fine with Integrated WLS, NPE when deployed

    I have an application that runs fine on my Integrated WLS.
    But, when I deploy it to our production environment, I get a Null Point Exception.
            DCBindingContainer bc =
                (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
            DCIteratorBinding sItr = bc.findIteratorBinding("Empmaster1Iterator");
            Row currentRow = sItr.getCurrentRow();
            String fName = (String)currentRow.getAttribute("FirstName");Curiously, the NPE occurs on the VERY first retrieval of data from the database (the same database I am using in Integrated WLS).
    The NPE occurs on the last line in the above code snippet.
    Can anyone point me in the correct direction to troubleshoot this?
    JDeveloper:
    Studio Edition Version 11.1.1.6.0
    Weblogic 10.3
    production environ:
    WebLogic Server Version: 10.3.6.0
    Thanks,
    Arie

    Arie,
    as you got a NPE at
    String fName = (String)currentRow.getAttribute("FirstName");means that at the time you run this code there is no current row defined for the 'Empmaster1Iterator'.
    The question now is why don't you have a current row?
    One reason can be that the iterator simply doesn't have a row. With the information provided we can only guess. However, you should check if you get a row before using the row. If you get null you have to decide what to do,
    Timo

  • Problem with fonts in forms when deployed on web

    Hi everybody out there! Please help me out. My problem is:
    I have used developer server to deploy forms on web, but when a
    form is shown on web, it takes some default settings for fonts
    and colors instead of retaining the original colors and fonts
    that i chose during creating forms. I want that forms retain
    their original colors and fonts when deployed on web. How would
    i do that ?? Someone told me to check the Registry.dat file but
    i do not how to change the settings in registry.dat file. So
    help me out and tell me how would i change color and font
    settings for forms being shown on web by web app. server.
    Thanking you in anticipation,
    Cheema
    null

    Hello Neeraj!
    The problem is no resolved:) In the Visual Attribute Group I changed the Font Weight to Bold in the Property Palette.
    Thanks a lot for showing interest for my problem.
    Regards
    Roar

  • Javascript error in JSP when deployed to Weblogic

    Hi, I am getting the below Javascript error whenever I try to sort within an ADF table in my page once deployed in the Weblogic Server. Running it in local/integrated server is not causing any errors:
    Message: 'AdfIEAgent.superclass.createXMLHttpRequest' is null or not an object
    URI: http://{HOST_NAME}/{Context_Root}/afr/partition/ie/default/opt/boot-11.1.2.2.0-2121.js
    A little background:
    This application was a migrated Jdeveloper 10.1.3 application. I converted the converted trinidad table to adf rich tables.
    Thanks.

    Can you reproduce this error in Firefox/Chrome?
    How you converted trinidad tables(did you manually changed source or you recreated table(by drag and drop from data control)) ?
    Probably the fastest way to identify this problem is to create simple test case in JDev 11.1.2.2 and deploy to standalane WLS.
    If you can reproduce this error then this is some bug in ADF, but if this works as expected then you can compare content in ear files(included jar files, content of web.xml file, etc..) to find difference.
    Dario

Maybe you are looking for

  • ****Iphone 5 blurry photos with ios7 Update**** Please Help

    Looking for some answers as to why my iphone 5 photos are now blurry after the ios7.2 update. -Cleaned the lens -No protective film on the iphone camera lens The camera worked fine before the update. Picture below [iphone 5 on left Blurry] 

  • NWCE components mentioned in the excercise

    Hi, I am referening an excercise from TechEd 08 contents. Is there any place from where I can get the solution contents for working the excercises? For example the excercise "BPM360_Solution_Modeling a Business Process Using SAP NetWeaver BPM and SAP

  • How do I get a network connection with an Arch rescue CD? [solved]

    trying to get my system back up as this has also happened to me after a -Syu https://bbs.archlinux.org/viewtopic.php?id=93107 In my case I get mounting ' ' failed No such device Failed to mount the real root device. Bailing out, piss off. or similar,

  • Problem with mysql count with where clauese

    i think my query is wrong. can please someone guide me. I am trying to get the countedvalue of myinbox table but i am running into big trouble. i tried searching the google but could not find the relevant data. please guide me cheers SELECT COUNT(sen

  • Insert-request

    Is it only possible to insert data through a posted form or - alternatively - calling an ActiveX in Javascript to make a post from a get? I cannot believe it! Is this platform independent? Thanks for any help Herb