About 1,180,000 results
Open links in new tab
  1. What is web.xml file and what are all things can I do with it?

    What is web.xml file and what all things can I do with it ? The /WEB-INF/web.xml file is the Web Application Deployment Descriptor of your application. This file is an XML document that defines …

  2. difference between context.xml and server.xml? - Stack Overflow

    Mar 29, 2016 · Tomcat web application has a bunch of configs called deployment descriptors which can be separated in two groups: server-dependent (context.xml) and server-independent (web.xml). …

  3. How to set the context path of a web application in Tomcat 7.0

    The reason "It is NOT recommended to place elements directly in the server.xml file" given in the docs follows in the next sentence: "This is because it makes modifying the Context configuration more …

  4. Updating "web.xml" when transitioning from Java Servlet 4 to Jakarta ...

    Mar 20, 2022 · 7 I am transitioning a simple Servlet from using Java Servlet 4 to Jakarta Servlet 5. I noticed my web.xml file has references to the 4 spec.

  5. Where can I find WebSphere configuration files? - Stack Overflow

    NODE-scope • namestore.xml Provides persistent JNDI namespace binding data • resources.xml Defines node scope environmental resources, including JDBC, JMS, JavaMail, URL end point …

  6. Expose SQL Server database as web service to get data from

    Jan 17, 2010 · As from SQL Server 2005 you can expose native XML web services directly from the database. SQL Server can be configured to listen natively for HTTP SOAP requests through an …

  7. java - How to provide a context configuration for a web application in ...

    Aug 22, 2011 · I have a web application that relies on some resources and parameters to be configured after it is installed, like a JDBC connection. What I have come up with is providing a META …

  8. web services - How do I POST an XML string to a webservice for testing ...

    Aug 7, 2009 · We have developed a RESTful web service which expects an XML string to arrive as "parameter". For QA to test the web service, I am looking for a simple way to POST an XML string to …

  9. Configuration file is not well-formed XML #2 - Stack Overflow

    Jul 22, 2013 · Modifying the Web.Config incorrectly (see answer to question below) ultimately caused this issue. Because I did all of this stuff, I'm having to restore from a server backup to fix everything …

  10. Do I really need web.xml for a Servlet based Java web application?

    May 15, 2015 · Whether or not you need web.xml is dependent on which servlet specification you claim in your application. If you will be building an app using spec 3.0, you can use annotations to declare …