https://github.com/igapyon/blanco-sfdc-partner-build
Simple project to build sfdc-partner.jar file from partner.wsdl.
https://github.com/igapyon/blanco-sfdc-partner-build
Last synced: over 1 year ago
JSON representation
Simple project to build sfdc-partner.jar file from partner.wsdl.
- Host: GitHub
- URL: https://github.com/igapyon/blanco-sfdc-partner-build
- Owner: igapyon
- License: apache-2.0
- Created: 2017-08-26T02:05:05.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-26T10:21:06.000Z (almost 9 years ago)
- Last Synced: 2025-01-06T17:16:12.895Z (over 1 year ago)
- Language: Java
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# blanco-sfdc-partner-build
This is a simple project to build sfdc-partner.jar file from partner.wsdl.
This is almost same as below:
```xml
com.force.api
force-partner-api
40.0.0
```
## Usage
### Command
```sh
mvn antrun:run
```
### Input
```
./meta/partner.wsdl
```
### Output
```
./target/sfdc-partner.jar
```
## Purpose
sfdc-partner.jar will be used to access SFDC from Java with general object access.
You can get partner.wsdl from SFDC.
1. Access login.salesforce.com and login.
2. Open 'API WSDL'
3. Click 'Partner WSDL'
4. Click 'Generate Partner WSDL'
5. File => Save as : partner.wsdl
6. Put partner.wsdl into meta directory.