Eclipse editor gives error for web.xml for jsp-config

Hi All,
I am using following web.xml . Eclipse europa editor gives warning if <jsp-config> is added. Is anyone have idea about it.
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<web-app>     
     <display-name>Cart</display-name>               
     <servlet>
<servlet-name>RequestHandler</servlet-name>
<servlet-class>com.amazon.helper.LoginListener</servlet-class>
</servlet>      
     <servlet-mapping>
<servlet-name>RequestHandler</servlet-name>
<url-pattern>cart.loginUser</url-pattern>
</servlet-mapping>
<jsp-config>
     <jsp-property-group>
     <url-pattern>*.jsp</url-pattern>
               <scripting-invalid>true</scripting-invalid>
     </jsp-property-group>
</jsp-config>
</web-app>

Your web.xml file is out of date.
You have a DTD there for the Servlet 2.2 spec.
The jsp-config tag was introduced to web.xml as of the Servlet 2.4 specification - which is why it is complaining in your editor.
Seeing as you have Tomcat 6, I would recommend you change your web.xml to look like this
- removed the DTD
- change the web-app tag to include schema information
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
<display-name>Cart</display-name>
<servlet>
<servlet-name>RequestHandler</servlet-name>
<servlet-class>com.amazon.helper.LoginListener</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>RequestHandler</servlet-name>
<url-pattern>cart.loginUser</url-pattern>
</servlet-mapping>
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<scripting-invalid>true</scripting-invalid>
</jsp-property-group>
</jsp-config>
</web-app>Cheers,
evnafets

Similar Messages

  • Files generated by Web Service Proxy give errors for complex input types

    Hi ,
    I generated a Java Web Service Proxy using a WSDL file.
    The input params are of this fashion -
    1) Object 1 have 3 attributes
    2) Object 2 having nested Object 2 (yes , again) which has a nested attribute which needs to be passed say Param 1.
    When I generate the proxy classes ... Param 1 is referred to as private Object2.Object2 param1 which gives error for the data types.
    How can we resolve this .. what should be the correct data type representation for param 1 ?
    Thanks

    Issue was resolved . Details here - 11g PS2 - WebServiceProxy Class give errors for complex input types

  • Error in web.xml of Bookstore application...

    Hi guys,
    i'm a new user of jsf.
    i've a question for you.
    I'm trying to start the bookstore6 example included in java5ee example dir.
    I've builded the application as said into the tutorial but my application gives me an error in web.xml
    Severity     Description     Resource     In Folder     Location     Creation Time     Id
    2     cvc-complex-type.2.4.a: Invalid content was found starting with element 'var'. One of '{"http://java.sun.com/xml/ns/javaee":description, "http://java.sun.com/xml/ns/javaee":display-name, "http://java.sun.com/xml/ns/javaee":icon, "http://java.sun.com/xml/ns/javaee":base-name}' is expected.     faces-config.xml     bookstore6/WebContent/WEB-INF     line 21     7 agosto 2006 16.42.30     13210This is my web.xml,can you help me,please?
    Thanks very much
    This is the piece of web.xml corrupted...
    <?xml version='1.0' encoding='UTF-8'?>
    <!--
    Copyright 2004 Sun Microsystems, Inc. All rights reserved.
    SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
    -->
    <faces-config xmlns="http://java.sun.com/xml/ns/javaee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
        version="1.2">
      <!-- ========== Application Wide Features ================================ -->
      <application>
        <message-bundle>resources.ApplicationMessages</message-bundle>
        <resource-bundle>
             <var>customMessages</var>
         <base-name>resources.CustomMessages</base-name>
        </resource-bundle>
        <locale-config>
          <default-locale>en</default-locale>
          <supported-locale>es</supported-locale>
          <supported-locale>de</supported-locale>
          <supported-locale>fr</supported-locale>
        </locale-config>
      </application>

         <var>customMessages</var>Do you need this line?

  • Error in web.xml

    Hi
    I am getting following error in web.xml for follwing lines
    error-failed to read schema document1)could not find the document2)the document could not be read
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

    try changin from
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    to
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

  • What is the best editor to use for JSP/Servlet?

    Hello,
    What is the best editor to use for JSP/Servlet database development.
    I'm looking at Dreamweaver,Java Studio Creator.
    I want some thing fairly easy to use that has database helper wizards like dreamweaver.
    Thanks for the help.
    Frank

    Is it better to have a servlet do the database work and call it from JSP?No, it's better to have persistence objects do the database work. Servlets handle HTTP requests, and JSPs are HTML factories that should be pure view.
    But there are lots of ways to do things. You just have to understand the tradeoffs when you decide.
    I do not want to hammer out code, I want to learn the
    best way to do things from experienced developers. Sorry, sounded like you just wanted to churn stuff.
    "best way" can be subjective. In one app, "best" might be "delivered fastest". For another, "best" might be "most secure" or "most easily modified" or "best performing" or whatever. You won't get a "best" answer, only different choices. And they aren't always so easy to explain or execute.
    I'd recommend that you start by reading about layered applications (3-tier architectures) and MVC separation. Once you've Googled enough about that, look into a framework like Struts or Spring or WebWork. That'll help you figure out where to put each responsibility in your app.
    I can use dreamweaver to create web apps, but I hate
    the arrays used to define fields. It also seems not
    to take advantage of connection pooling.Don't know what you're talking about here, Frank. What do fields have to do with connection pooling?
    %

  • Console WAR deployment editor tool damage my web.xml file

    I put many servlet and servlet-mapping items in web.xml file. When I deployed my
    web app into weblogic 7.0 SP1 server, I use the console to open the deployment
    description, and change some parameters for the servlet. After I clicked the persist
    button, the web.xml file was changed, but some servlet and servlet-mapping items
    was removed unexpected.
    Why?
    When I start the server in Development mode, this error occured rather often.
    In the product mode, this error occured a few times.
    My operation steps:
    1. undeploy the original app from console
    2. copy the new war file to the applications directory, overwrite the old one
    3. use the console to open the deployment description, make the changes
    4. persist the changes
    5. re-deploy the web app
    Please give the solution as soon as possible

    The tag
    <target name="deploy" depends="clover-yes, clover-no">...is never closed.
    close that tag:
    <target name="deploy" depends="clover-yes, clover-no">
         <javac srcdir="${src.dir}" destdir="${classes.dir}" classpath="${libs}" debug="off" optimize="on" deprecation="on" compiler="${compiler}">
              <include name="org/apache/commons/fileupload/**/*.java" />
              <include name="com/portalbook/portlets/**/*.java" />
              <include name="com/portalbook/portlets/content/**/*.java" />
         </javac>
    </target>Second error is that the depends in there (clover-yes, clover-no) are not existing as targets in your xml.

  • Handling 404 error through web.xml

    In my application i made the following entry in web.xml:
      <error-page>
        <error-code>404</error-code>
        <location>/error.jspx</location>
      </error-page>
    error.jspx is a jspx file and exist in the public_html folder and has following entry:
    <f:view>
        <af:document id="d1">
          <af:form id="f1">
          <af:outputText value="Hello There error occured" id="ot_11" />
          </af:form>
        </af:document>
      </f:view>
    when a 404 occurs in the application, i am getting following application in the log:
    <[ServletContext@3806419[app:j2ee-app module:retailer path:/retailer spec-version:2.5]] error-page location: "/error.jspx" for the error-code: "404" does not exist. Serving the default error page.>
    Any suggestion what to do next?

    on more thing,
    404 errors are handled by web.xml using following:
    <error-page>
       <error-code>404</error-code>
       <location>/login/404errorPage404.html</location>
    </error-page>
    but in case of 500 errors or nullpointers i treid a no of options, but neither one  worked:
    <error-page>
    <error-code>500</error-code>
       <location>/login/500errorPage500.html</location>
    </error-page>
    <error-page>
       <exception-type>javax.el.ELException</exception-type>
       <location>/login/500errorPage500.html</location>
    </error-page>
    <error-page>
       <exception-type>java.lang.Exception</exception-type>
       <location>/login/500errorPage500.html</location>
    </error-page>
    <error-page>
       <exception-type>java.lang.Throwable</exception-type>
       <location>/login/500errorPage500.html</location>
    </error-page>
    Any advise?

  • Parse error in web.xml

    hello friends,
    When i implement my project in to tomcat server ..... It raises this exception in web.xml pls help me.........
    i have given below......
    Thanks in advance....
    Sep 6, 2008 10:16:53 AM org.apache.catalina.startup.ContextConfig applicationWebConfig
    SEVERE: Parse error in application web.xml file at jndi:/localhost/hatsunSMS/WEB-INF/web.xml
    java.net.NoRouteToHostException: No route to host
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.Socket.connect(Socket.java:519)
    at java.net.Socket.connect(Socket.java:469)
    at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:394)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:529)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:233)
    at sun.net.www.http.HttpClient.New(HttpClient.java:306)
    at sun.net.www.http.HttpClient.New(HttpClient.java:323)
    at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:788)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:729)
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:654)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:977)
    at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
    at org.apache.xerces.impl.XMLEntityManager.startEntity(Unknown Source)
    at org.apache.xerces.impl.XMLEntityManager.startDTDEntity(Unknown Source)
    at org.apache.xerces.impl.XMLDTDScannerImpl.setInputSource(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentScannerImpl$DTDDispatcher.dispatch(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
    at org.apache.tomcat.util.digester.Digester.parse(Digester.java:1562)
    at org.apache.catalina.startup.ContextConfig.applicationWebConfig(ContextConfig.java:352)
    at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:1044)
    at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:261)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4148)
    at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:760)
    at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:740)
    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:544)
    at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:920)
    at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:883)
    at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:492)
    at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
    at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1022)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:736)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
    at org.apache.catalina.core.StandardService.start(StandardService.java:448)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433)
    Sep 6, 2008 10:16:53 AM org.apache.catalina.startup.ContextConfig start

    Hi.
    Please re-read your stacktrace and then have a look at http://java.sun.com/j2se/1.4.2/docs/api/java/net/NoRouteToHostException.html.
    Then, take your time to think about it again.
    Bye.

  • Problem with web.xml in jsp

    is there any api in jsp to retreive the path of web.xml

    request.getRealPath() is deprecated.
    Instead you should be using the method in ServletContext.
    In a JSP the servletContext is exposed as the implicit variable "application"
    In a Servlet you can get hold of it like:
    ServletContext application = getServletConfig().getServletContext();
    String path = application.getRealPath("/WEB-INF/web.xml");

  • XML to Forms conversion gives error for menus

    We are trying the ORACLE <---> XML conversion Utility.
    We want to convert a MMB to XML and store it in our repository. When we want to modify it we get the XML from the repository, convert it back to a MMB and edit it. This saves space in the repository DB.
    Problem when we convert or MMB --> XML using like this frmf2xml.bat OVERWRITE=YES TRANS_MENU.mmb
    the XML file is created.
    Now when we try to convert the XML back to a MMB using this code frmxml2f OVERWRITE=YES PRINTTREE=YES USERID=userid/pwd@db TRANS_MENU_mmb.xml we get this error:
    Oracle Forms 10.1.2 XML to Forms Tool
    Copyright(c) 2001, 2005, Oracle. All rights reserved.
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 164, Column 73>: XML-24523: (Error) Invalid value ' INTERNATIONAL_OUT_GOING_CALL_D_MENU ' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 773, Column 73>: XML-24523: (Error) Invalid value 'BILLING_PROCESS_MASTER_FILE_UP_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 823, Column 69>: XML-24523: (Error) Invalid value 'BANK_PAYMENT_AUDIT_REPORTS_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 864, Column 73>: XML-24523: (Error) Invalid value 'INFO_CONNECT_ACCOUNTING_INTERF_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 887, Column 73>: XML-24523: (Error) Invalid value 'DEALER_SOLD_SUBSCRIPTION_TRANS_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 917, Column 73>: XML-24523: (Error) Invalid value 'CHANNA_LEVEL_42444444444444444_MENU' for attribute: 'Name'
    Invalid XML - file TRANS_MENU_mmb.xml does not validate against Forms XML Schema:
    Invalid value 'INTERNATIONAL_OUT_GOING_CALL_D_MENU' for attribute: 'Name'
    I found the problem. For submenus the XML adds a _MENU to the end of the name attribute and when the name of the menu is over 26 chars 26+5 = 31 becomes more than 30 characters.  So when the XML is converted to the MMB we get an error because forms objects cannot have names of lengths > 30.
    I think this could be a bug. We cannot modify the menu just for this since it is not practical.
    Is this a known bug? Any workaround?
    Edited by: Channa on Mar 5, 2010 2:11 AM
    Edited by: Channa on Mar 5, 2010 2:12 AM
    Edited by: Channa on Mar 5, 2010 2:13 AM
    Edited by: Channa on Mar 5, 2010 2:13 AM
    Edited by: Channa on Mar 18, 2010 9:22 PM
    Edited by: Channa on Mar 18, 2010 9:25 PM

    Hi Amol,
    You XML structure contains deep levels. As far as i understand about the StrictXML2PlainBean module, this is not capable of handling deep structures.
    This module is just an alternative to use FCC type functionality for other receiver adapters.
    Please take a look at these links:
    https://help.sap.com/saphelp_nwpi711/helpdata/EN/44/748d595dab6fb5e10000000a155369/content.htm
    StrictXml2PlainBean - to have an XML - EDI conversion?
    In case you want to achieve nested level content conversion, you may try this:
    /people/karthiknarayan.kesavan2/blog/2007/08/22/file-content-conversion-for-multi-hierarchical-structure
    I hope this helps.
    Regards, Gaurav.

  • How to ''give'' error for this case of an EXTERNAL TABLE?

    Our external table routine works fine:
    -- We have a csv file with 2 cols.
    -- When we create the table referring the csv it works fine.
    -- Even if the csv has more the 2 cols, the ET command only takes the 2 cols and it works fine.
    -- Now, users are saying that if the csv has more than 2 cols, the ET command should give an error
    I went through the command but cannot find any clause which will do this.
    Is there any other way or workaround?
    CREATE TABLE <table_name> (
    <column_definitions>)
    ORGANIZATION EXTERNAL
    (TYPE oracle_loader
    DEFAULT DIRECTORY <oracle_directory_object_name>
    ACCESS PARAMETERS (
    RECORDS DELIMITED BY newline
    BADFILE <file_name>
    DISCARDFILE <file_name>
    LOGFILE <file_name>
    [READSIZE <bytes>]
    [SKIP <number_of_rows>
    FIELDS TERMINATED BY '<terminator>'
    REJECT ROWS WITH ALL NULL FIELDS
    MISSING FIELD VALUES ARE NULL
    (<column_name_list>))\
    LOCATION ('<file_name>'))
    [PARALLEL]
    REJECT LIMIT <UNLIMITED | integer>;
    Is it possible to use the READSIZE?
    Edited by: Channa on Sep 23, 2010 2:28 AM

    -- Now, users are saying that if the csv has more than 2 cols, the ET command should give an error
    I went through the command but cannot find any clause which will do this.
    Is there any other way or workaround?I looked at Serverprocess' sql*loader script and did not see how that would answer your question - how to raise an error if the file has more than 2 columns. If I missed something can Serverprocess explain?
    I can't think of a direct way to do this with your external table either, but there may be indirect ways. Some brainstorming ideas of perhaps dubious usefulness follow.
    Placing a view over the external table can limit results to the first two columns but won't raise an error.
    A pipelined function can read the external table, check for data where there shouldn't be any, and raise an exception when you find data in columns where there should not be any.
    Similarly, you could ditch the external table and use utl_file to read the file, manually parsing and checking the data. LOTS more work but more control on your end. External tables are much easer to use :(
    Or, first load the external table into a work table before the "real" select. Check the work table for the offending data programatically and raise an error if data is where it should not be. You could keep the existing external table and not have to do a lot of recoding.
    Or, also load the data into an otherwise unneeded global temporary table first. Use a trigger on the load to look for the unwanted data and raise an error if offending data is there
    These ideas are boiling down to variations on validating the data before you use it.
    Good luck!

  • Adobe Premiere Elements gives error for non admin account

    Hi
    When a New Video project is created within the applciation it gives an error of Premiere Elements has encountered an error [..\..Src\Core\Preferences.cpp-338] (seems to occur during the importquicktime section). Follwed by a Runtime Error "this application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information.
    This works fine for local admin account but we work within a school were the the end users are not local admins and also have a redirected app data folder. I've ran Process Monitor and there were several access denied reg keys that have now all been allowed but the issue still remains.
    Thanks
    Jayk0

    I think you will have to contact Adobe, not other users in a user to user account
    My understanding is that ALL versions of Premiere... Elements and Pro... must use an Admin account to run properly
    Adobe contact information - http://helpx.adobe.com/contact.html
    Help for Download & Install & Setup & Activation
    http://forums.adobe.com/community/download_install_setup
    Next link has a "Chat Now" button near the bottom
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • Command 'login local' gives error for C3745-SPSERVICESK9-M

    Hi
    I am very new to here and having hard time understand some IOS commands.
    I am using
    IOS (tm) 3700 Software (C3745-SPSERVICESK9-M), Version 12.3(16), RELEASE SOFTWARE (fc4)
    my current vty config has only
    line vty 0 4
    exec-timeout 0 20
    when I try to do > login local on this vty line I am getting follwonig error.
    (config-line)#login local
                              ^
    % Invalid input detected at '^' marker.
    But when I do telnet it's asking for username/passowd and I can login using the following config
    username xxxxxx privilege 15 password 7 934805983058
    Now I don't understand that without having 'login local' in vty config why my router is asking for username/pass....
    Thanks in advance...

    Under vty lines if you are unable to configure" login local" then it means you have aaa configured on the switch.
    Can you check "show run | in aaa"?
    Thanks & Regards,
    Karthick Murugan
    CCIE#39285

  • VSS RevertToSnapshot Method gives error for Clustered Shared Disks.

    Hi,
    This is in reference to https://support.microsoft.com/en-us/kb/945361
    Its mentioned here that VSS RevertToSnaposhot is not supported on windows 2003 and 2008 for CLuster Shared Disks.I am trying the same on Windows 2012 and getting error "8004230c" which says volume is not supported for this operation.I wanted to
    confirm whether RevertToSnapshot method for supporting Clustered Shared Disks\Volumes has be added in 2012 or not ?
    Regards,
    Saurabh.

    Hi,
    This is in reference to https://support.microsoft.com/en-us/kb/945361
    Its mentioned here that VSS RevertToSnaposhot is not supported on windows 2003 and 2008 for CLuster Shared Disks.I am trying the same on Windows 2012 and getting error "8004230c" which says volume is not supported for this operation.I wanted to
    confirm whether RevertToSnapshot method for supporting Clustered Shared Disks\Volumes has be added in 2012 or not ?
    Regards,
    Saurabh.

  • ITS620  behind Apache Reverse Proxy : POST data (only) gives error for IAC

    Hi all ,
    we are proxying EP6 and ITS620 through Apache 2.0.59 . All portal and most ESS ITS Iviews display correctly . All GET method/display ITS Iviews display correctly BUT as soon as we try to change some info in an ESS Iview (e.g Change Work Address (POST method) the Proxy errors out .
    Here is the httpd.conf :
    RewriteRule ^/sap/(.*) https://<itshost>:8443/sap/$1 [P,NC,L]
    RewriteRule ^/scripts/(.*) https://<itshost>:8443/scripts/$1 [P,NC,L]
    ProxyPass           /scripts https://<itshost>:8443/scripts
    ProxyPass           /sap https://<itshost>:8443/sap
    ProxyPassReverse    /sap https://<itshost>:8443/sap
    ProxyPassReverse    /scripts https://<itshost>:8443/scripts
    When we hit POST a long URL of the form
    /scripts/wgate/zpzxx/~flNlc3Npb249VFM0OlNBUE5UVDAxOjAwMDEuMDAwMS5lMDgyMTU3NS5hM2RhJn5odHRwX2NvbnRlbnRfY2hhcnNldD1pc28tODg1OS0xJn5TdGF0ZT0yODY5Mi4wMDEuMDIuMDI=
    (with some POST data)
    is sent to ITS ...ITS receives it OK but Apache immediately errors .
    Has anyone seen this behaviour before either with POSTS or ESS IAC Iviews through Apache ?
    Regards
    Daniel

    I found the answer myself... Use ProxyPreserveHost on with internal hostnames (not IP's):
            ProxyPass / http://macserver.home/
            ProxyPassReverse / http://macserver.home/
            ProxyPreserveHost on

Maybe you are looking for