Stack-trace :
java.io.IOException: Unable to locate resource handler.properties
at org.apache.xmlrpc.server.PropertyHandlerMapping.load(PropertyHandlerMapping.java:53)
at org.code2care.rpc.JavaServer.main(JavaServer.java:21)
You may get IOException in your XML-RPC based Application when you try to run the server if handler properties file is not placed in the correct location or you have missed adding the file. The file should be placed in your Project folders src folder, if you place it in your package or at the root of the Project folder you will get this error!
PropertyHandlerMapping propHandlerMapping = new PropertyHandlerMapping();
propHandlerMapping.load(Thread.currentThread().getContextClassLoader(),"handler.properties");
xmlRpcServer.setHandlerMapping(propHandlerMapping);
More Posts related to Java,
- Deep Dive into Java 8 Predicate Interface
- Read and Parse XML file using Java DOM Parser [Java Tutorial]
- Java 8 Predicate Functional Interface isEqual() Method Example
- Convert Multidimensional Array toString In Java
- How to read int value using Scanner Class Java
- Spring Boot AI + LLM + Java Code Example
- Write to a File using Java Stream API
- Implementing Bubble Sort Algorithm using Java Program
- How to Fix XmlBeanDefinitionStoreException in Java SpringBoot ApplicationConfig.xml
- YAML Parser using Java Jackson Library Example
- [Fix] java: integer number too large compilation error
- Convert JSON String to Java GSON Object Example
- Read a file using Java 8 Stream
- Java Spring Boot 3 Web Hello World with Gradle in IntelliJ
- Ways Compare Dates in Java Programming with Examples
- Pretty Print JSON String in Java Console Output
- Java JDBC with Join Queries Example
- How to Check For Updates on Windows 11 (Step-by-Step)
- [Fix] java.net.MalformedURLException: unknown protocol
- How to display date and time in GMT Timezone in Java
- Error: LinkageError occurred while loading main class UnsupportedClassVersionError [Eclipse Java]
- How to convert a String to Java 8 Stream of Char?
- RabbitMQ Queue Listener Java Spring Boot Code Example
- 5+ Fibonacci number Series Java Program Examples [ 0 1 1 2 3 ..]
- Handling NullPointerException with Java Predicate
More Posts:
- How to Update Roblox on Mac - MacOS
- Open New tab using keyboard shortcut in Mac Terminal - Mac-OS-X
- Random CSV Data File Generator - Tools
- Fix - bash: man: command not found - Linux
- How to Auto Click Mouse on Mac every X Seconds - MacOS
- How to customize SharePoint Modern list form using JSON formatting - SharePoint
- How to install ddtrace - Datadog tracing library for Python - Python
- Run only a Single Unit Test using Gradle - Gradle