Learn several ways to get a specific part of a SOAP Message in Java.
Also find me here:
Baeldung Author
Ana Peterlić
Ana is a freelance web developer with over six years of experience working with Java, Spring, and other related technologies. She enjoys helping and tutoring others. When she is not coding, she likes to spend her time reading books or traveling.
Here's what I've written (so far):
Baeldung on Java
- All
- Testing (6)
- Core Java (6)
- Spring (5)
- Persistence (3)
- Spring Web (2)
- REST (2)
- Java Numbers (2)
- Java Concurrency (2)
- Java (2)
- Jackson (2)
- JVM (2)
- JPA (2)
- Web Services (1)
- Spring MVC (1)
- Spring Boot (1)
- Security (1)
- Networking (1)
- Maven (1)
- Logging (1)
- Java Collections (1)
Difference Between 1L and (long) 1
Filed under Java Numbers
Learn the differences between defining a long value using literal representation and casting an int value to a long.
Differences Between * and ? in Cron Expressions
Filed under Java
Learn the differences between the asterisk and the question mark special characters in cron expressions.
Executable Comments in Java
Filed under Core Java
Learn how comments and Unicode escape sequences work together.
Drawbacks of the Singleton Design Pattern
Filed under Java
Learn the general drawbacks of the Singleton design pattern and check out some alternatives.
Double Precision Issue in Java
Filed under Java Numbers
Learn what the double precision issue is, how it affects code, and how to deal with it.
Check if Certificate Is Self-Signed or CA-Signed With Java
Filed under Security
Learn how to determine if a certificate is self-signed or signed by a trusted Certificate Authority (CA).
Unit Testing of System.in With JUnit
Filed under Testing
Learn how to test user input scenarios using System.in with JUnit 4 and JUnit 5.
Asserting Equality on Two Classes Without an equals() Method
Filed under Testing
Learn a few ways of testing for the equality of two objects without the equals() method.
Baeldung on Computer Science
- All
- Math and Logic (1)
Check if a Binary Number Is Divisible by 3
Filed under Math and Logic
A quick tutorial to determine if a binary number is divisible by 3.