-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.xml
60 lines (50 loc) · 2.11 KB
/
Config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<Configuration>
<!-- soap server, for production, use: https://api.ebay.com/wsapi -->
<ServerUrl>https://api.ebay.com/wsapi</ServerUrl>
<!-- eps server, for production, use: https://api.ebay.com/ws/api.dll -->
<EpsServerUrl>https://api.ebay.com/ws/api.dll</EpsServerUrl>
<SignInUrl>https://signin.ebay.com/ws/eBayISAPI.dll?SignIn</SignInUrl>
<!--LogFilePath>SanityTest.log</LogFilePath-->
<ApiCredential>
<Developer>Place your developer ID</Developer>
<Application>Place your Application ID</Application>
<Certificate>Place your Certification ID</Certificate>
</ApiCredential>
<eBayCredential>
<!-- Token is used for both API server and EPS server -->
<Token>Place your Token ID</Token>
</eBayCredential>
<RuName></RuName>
<!-- set this if you access eBay API server behind a proxy -->
<Proxy>
<Host></Host>
<Port></Port>
<!-- set username/password if necessary -->
<Username>Place your username</Username>
<Password>Place your password</Password>
</Proxy>
<ShipmentRemark>
Dear Customer, We have shipped the product and it will be deliver in 3 working days. If you are happy with our service please leave a positive feedback for us. It's a pleasure doing business with you.
</ShipmentRemark>
<!-- set the default feedback text to your coustomer -->
<FeedbackText>
A+++ Buyer, Smooth Transaction, Valued Customer.
</FeedbackText>
<!-- DATABASE CONNECTION -->
<DB_URL>jdbc:mysql://localhost:3306/test1db</DB_URL>
<DB_USER>test111</DB_USER>
<DB_PASS>test222</DB_PASS>
<DB_PASS>PASSWORD</DB_PASS>
<DB_TABLE_NAME>SALES_ORDER</DB_TABLE_NAME>
<!-- EMAIL CONFIGRATION -->
<YOUR_EMAIL>Place your email ID</YOUR_EMAIL>
<YOUR_PASSWORD>Place your email password</YOUR_PASSWORD>
<YOUR_SMTP_HOST>Place your smtp host like mail.google.com</YOUR_SMTP_HOST>
<YOUR_SMTP_PORT>25</YOUR_SMTP_PORT>
<TO_EMAIL>Place the email of recipeient </TO_EMAIL>
<EMAIL_FOR_BUYER>PLACE YOUR EMAIL ID</EMAIL_FOR_BUYER>
<EMAIL_BODY><![CDATA[
<PLACE YOUR HTML BASED EMAIL BODY>
]]></EMAIL_BODY>
</Configuration>