https://github.com/ecmel/ws-dgpys
EPİAŞ (PMUM) Axis2 Web Service Client
https://github.com/ecmel/ws-dgpys
Last synced: about 2 months ago
JSON representation
EPİAŞ (PMUM) Axis2 Web Service Client
- Host: GitHub
- URL: https://github.com/ecmel/ws-dgpys
- Owner: ecmel
- License: apache-2.0
- Created: 2015-12-27T13:04:26.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-21T09:16:12.000Z (over 10 years ago)
- Last Synced: 2025-12-30T02:54:56.126Z (6 months ago)
- Language: Java
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ws-dgpys
EPİAŞ (PMUM) Axis2 Web Service Client
## Example Usage
```
EVDServisStub stub = EVDServisStubFactory.newInstance();
LoginDocument ld = LoginDocument.Factory.newInstance();
ld.addNewLogin().addNewLoginMessage();
ld.getLogin().getLoginMessage().addNewUserName().setV("username");
ld.getLogin().getLoginMessage().addNewPassword().setV("password");
stub.login(ld);
Calendar cal = Calendar.getInstance();
cal.set(Calendar.HOUR_OF_DAY, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
GetGunOncesiFiyatDocument gop = GetGunOncesiFiyatDocument.Factory.newInstance();
gop.addNewGetGunOncesiFiyat().setDate(cal);
stub.getGunOncesiFiyat(gop);
stub.cleanup();
```