Skip to content

Commit

Permalink
Merge pull request #10 from eBay/wsdl_v1379
Browse files Browse the repository at this point in the history
Upgrade to WSDL version 1379 and remove deprecated types
  • Loading branch information
LokeshRishi authored Nov 26, 2024
2 parents 4e7da86 + 3acc5bb commit 6281442
Show file tree
Hide file tree
Showing 662 changed files with 15,954 additions and 80,792 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Please note that upgrades to an SDK should always be done in a test environment

2. Note the location of the zip file you downloaded, but before extracting the file, create the following folder: C:\\eBayJavaSDK.

3. Within C:\\eBayJavaSDK, create an "SDKInstallDir" folder to contain the SDK files. You could name that folder according to the Trading API version of the SDK you are installing. For example, for the SDK for Trading API version 1331, you could name the folder _eBayJavaSDK1331_.
3. Within C:\\eBayJavaSDK, create an "SDKInstallDir" folder to contain the SDK files. You could name that folder according to the Trading API version of the SDK you are installing. For example, for the SDK for Trading API version 1379, you could name the folder _eBayJavaSDK1331_.

4. Go the location of the zip file you downloaded (noted in step 3), and extract the zip file into the SDKInstallDir folder you created in step 4.

Expand Down Expand Up @@ -94,19 +94,19 @@ Adding dependency:
<dependency>
<groupId>com.ebay.developer</groupId>
<artifactId>trading-api-sdkcore</artifactId>
<version>1.0.0-RELEASE</version>
<version>1.0.1-RELEASE</version>
</dependency>

<dependency>
<groupId>com.ebay.developer</groupId>
<artifactId>trading-api-ebaycalls</artifactId>
<version>1.0.0-RELEASE</version>
<version>1.0.1-RELEASE</version>
</dependency>

<dependency>
<groupId>com.ebay.developer</groupId>
<artifactId>trading-api-helper</artifactId>
<version>1.0.0-RELEASE</version>
<version>1.0.1-RELEASE</version>
</dependency>
```

Expand Down Expand Up @@ -194,9 +194,9 @@ The WSDL is located at https://developer.ebay.com/webservices/_Version_/ebaySvc.

_Version_ in the URL means _latest,_ or it means _a numerical version_ of a WSDL release (see the top of the particular WSDL file).

In the case of _Version_ meaning _latest_, the WSDL is the latest released version (https://developer.ebay.com/webservices/latest/ebaySvc.wsdl). If _Version_ in the URL means _a numerical version_ of the WSDL, _Version_ is a number (for example, https://developer.ebay.com/webservices/1331/ebaySvc.wsdl).
In the case of _Version_ meaning _latest_, the WSDL is the latest released version (https://developer.ebay.com/webservices/latest/ebaySvc.wsdl). If _Version_ in the URL means _a numerical version_ of the WSDL, _Version_ is a number (for example, https://developer.ebay.com/webservices/1379/ebaySvc.wsdl).

Hypothetically, if the latest release of the WSDL were 1331, you would find that WSDL version at both https://developer.ebay.com/webservices/latest/ebaySvc.wsdl and at https://developer.ebay.com/webservices/1331/ebaySvc.wsdl.
Hypothetically, if the latest release of the WSDL were 1379, you would find that WSDL version at both https://developer.ebay.com/webservices/latest/ebaySvc.wsdl and at https://developer.ebay.com/webservices/1331/ebaySvc.wsdl.

---

Expand Down
26 changes: 22 additions & 4 deletions build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<property name="ossrh.deploy.url" value="https://oss.sonatype.org/service/local/staging/deploy/maven2/"/>

<!-- change the version number for a new release- -->
<property name="new.version" value="1331"/>
<property name="old.version" value="1131"/>
<property name="new.version" value="1379"/>
<property name="old.version" value="1331"/>
<!-- WSDL used for this release -->
<property name="WSDLURL" value="https://developer.ebay.com/webservices/${new.version}/eBaySvc.wsdl"/>
<property name="eBayWSDL" value="${eBaySDK.home}/source/wsdl/eBaySvc.wsdl"/>
Expand Down Expand Up @@ -249,12 +249,29 @@

</target>

<property name="dependency.lib.home.sdkcore" value="${eBaySDK.home}/lib/sdkcore/"/>
<property name="dependency.lib.home.ebaycalls" value="${eBaySDK.home}/lib/ebaycalls/"/>
<property name="dependency.lib.home.helper" value="${eBaySDK.home}/lib/helper/"/>

<path id="sdkcore.classpath">
<fileset dir="${dependency.lib.home.sdkcore}">
<include name="*.jar"/>
</fileset>
<fileset dir="${dependency.lib.home.ebaycalls}">
<include name="*.jar"/>
</fileset>
<fileset dir="${dependency.lib.home.helper}">
<include name="*.jar"/>
</fileset>
</path>

<target name="buildSdkCore" depends="resourceSdkCore">

<echo message="Compile sdkCore source..."/>
<javac srcdir="${srcSdkCore}"
destdir="${destSdkCore}"
verbose="false">
verbose="false"
classpathref="sdkcore.classpath">
<classpath refid="dependency.lib.classpath"/>
</javac>

Expand Down Expand Up @@ -282,7 +299,8 @@
<javac srcdir="${srcApiCalls}"
destdir="${destApiCalls}"
verbose="false"
debug="true">
debug="true"
classpathref="sdkcore.classpath">
<classpath refid="dependency.lib.classpath"/>
<classpath refid="sdk.classpath"/>
</javac>
Expand Down
Binary file modified lib/ebaycalls.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/ebaycalls/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.ebay.developer</groupId>
<artifactId>trading-api-ebaycalls</artifactId>
<version>1.0.0-RELEASE</version>
<version>1.0.1-RELEASE</version>

<name>trading-api-ebaycalls</name>
<description>eBay Trading API Java SDK eBay Calls</description>
Expand Down
Binary file modified lib/ebaysdkcore.jar
Binary file not shown.
Binary file modified lib/helper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/helper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.ebay.developer</groupId>
<artifactId>trading-api-helper</artifactId>
<version>1.0.0-RELEASE</version>
<version>1.0.1-RELEASE</version>

<name>trading-api-helper</name>
<description>eBay Trading API Java SDK Helper</description>
Expand Down
2 changes: 1 addition & 1 deletion lib/sdkcore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.ebay.developer</groupId>
<artifactId>trading-api-sdkcore</artifactId>
<version>1.0.0-RELEASE</version>
<version>1.0.1-RELEASE</version>

<name>trading-api-sdkcore</name>
<description>eBay Trading API Java SDK Core</description>
Expand Down
Binary file modified lib/srcjar/ebaycalls-src.jar
Binary file not shown.
Binary file modified lib/srcjar/ebaysdkcore-src.jar
Binary file not shown.
Binary file modified lib/srcjar/helper-src.jar
Binary file not shown.
Binary file modified source/core/build/ant_classes/com/ebay/sdk/ApiContext.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified source/core/build/ant_classes/com/ebay/sdk/util/XmlUtil.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 6281442

Please sign in to comment.