![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
com.payline:payline-java-sdk
Advanced tools
Modified for TBD using last WSDL from https://docs.monext.fr/display/DT/Endpoints. The Payline API provides access to the various functions of the Payline payment solution. It is based on standard web service components, which include the SOAP protocol, the WSDL and XSD definition languages. These standards are supported by a large range of development tools on multiple platforms. This SDK covers all the functions of the Payline payment solution.
The Monext API provides access to the various functions of the Monext payment solution. It is based on standard web service components, which include the SOAP protocol, the WSDL and XSD definition languages. These standards are supported by a large range of development tools on multiple platforms.
This SDK covers all the functions of the Monext payment solution.
The set of web services Payline is covered by this library. Web services are divided into four classes:
Java 1.8 or higher
Add this dependency in your project's POM:
<dependency>
<groupId>com.payline</groupId>
<artifactId>payline-java-sdk</artifactId>
<version>4.77.1</version>
</dependency>
<dependency>
<groupId>com.payline</groupId>
<artifactId>payline-java-sdk</artifactId>
<version>4.77</version>
</dependency>
<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-rt</artifactId>
<version>2.3.2</version>
</dependency>
implementation 'com.payline:payline-java-sdk:4.77'
implementation 'com.payline:payline-java-sdk:4.77'
implementation 'javax.xml.ws:jaxws-api:2.3.1'
implementation 'com.sun.xml.ws:jaxws-rt:2.3.2'
SampleCalls.java
import java.util.logging.Level;
import java.util.logging.Logger;
import com.payline.kit.utils.ConnectParams;
import com.payline.ws.model.GetMerchantSettingsResponse;
import com.payline.ws.wrapper.DirectPayment;
public class SampleCalls {
private static final Logger logger = Logger.getLogger(SampleCalls.class.getName());
public static void main(String[] args) {
ConnectParams params = new ConnectParams(
null, /* module */
false, /* production */
false, /* clientAuthentication */
"", /* Your merchant account login: merchantId */
"", /* Your access key to the Payline service: accessKey */
null, /* proxyHost (optional) */
null, /* proxyPort (optional) */
null, /* proxyLogin (optional) */
null /* proxyPassword (optional) */
);
DirectPayment directPayment = new DirectPayment(params);
GetMerchantSettingsResponse res = directPayment.getMerchantSettings(null);
logger.log(Level.INFO, "\ngetMerchantSettings result : ");
logger.log(Level.INFO, " - code : " + res.getResult().getCode());
logger.log(Level.INFO, " - short message : " + res.getResult().getShortMessage());
logger.log(Level.INFO, " - long message : " + res.getResult().getLongMessage());
}
}
4.77
For assistance, advice or an answer to your question, contact Payline Support by email at
support@payline.com
FAQs
Modified for TBD using last WSDL from https://docs.monext.fr/display/DT/Endpoints. The Payline API provides access to the various functions of the Payline payment solution. It is based on standard web service components, which include the SOAP protocol, the WSDL and XSD definition languages. These standards are supported by a large range of development tools on multiple platforms. This SDK covers all the functions of the Payline payment solution.
We found that com.payline:payline-java-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.