Subversion Repositories SmartDukaan

Rev

Rev 12446 | Rev 14636 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 12446 Rev 14606
Line 185... Line 185...
185
				}
185
				}
186
			} catch (Exception e) {
186
			} catch (Exception e) {
187
				logger.error("Unable to extract Http Response for snapdeal seller portal login", e);
187
				logger.error("Unable to extract Http Response for snapdeal seller portal login", e);
188
				throw new Exception("Unable to extract Http Response for snapdeal seller portal login");
188
				throw new Exception("Unable to extract Http Response for snapdeal seller portal login");
189
			}
189
			}
-
 
190
			
-
 
191
			get = new HttpGet("http://shipping.snapdeal.com/vendor/ONESHIP/product-shipment/pendingOrders/40?fulfillmentModelCode=ONESHIP");
-
 
192
			try {
-
 
193
				response = client.execute(get);
-
 
194
			} catch (ClientProtocolException e) {
-
 
195
				e.printStackTrace();
-
 
196
			} catch (IOException e) {
-
 
197
				e.printStackTrace();
-
 
198
			}
-
 
199
 
-
 
200
			rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
-
 
201
			
-
 
202
			while((line=rd.readLine())!=null){
-
 
203
			}
-
 
204
			
-
 
205
			
190
 
206
 
191
			JSONArray jsonDataObj = null;
207
			JSONArray jsonDataObj = null;
192
			JSONArray jsonDataShip = null;
208
			JSONArray jsonDataShip = null;
193
			String line1 = "";
209
			String line1 = "";
194
 
210