SoapObject EntityArray = new SoapObject(AppUtils.NAMESPACE, "shoppingCartProductEntityArray");
					
					
						 String valueId = AppUtils.ticketOptionList.get(selectedTicketOptionPos).get("value_id");
						 Log.e("valueId===>>>",valueId);
					
						 
						// SoapObject options = new SoapObject(AppUtils.NAMESPACE, "options");
						 SoapObject options1 = new SoapObject(AppUtils.NAMESPACE, "options");
						 
						 pi = new PropertyInfo();
							pi.setName("key");
							pi.setValue(8);
							pi.setType(Integer.class);
							options1.addProperty(pi);
							
							pi = new PropertyInfo();
							pi.setName("value");
							pi.setValue(valueId);
							pi.setType(Integer.class);
							options1.addProperty(pi);
							
						
					               SingleProduct.addProperty("options",options1);
						 
						
						       EntityArray.addProperty("products",SingleProduct);
					
					
				
					
					request.addProperty("products",EntityArray);
					Log.e("productsVa",EntityArray.toString());
					
					env.setOutputSoapObject(request);
					HttpTransportSE androidHttpTransport = new HttpTransportSE(AppUtils.URL);
					androidHttpTransport.call("", env);