Persistent SOAP connection means you connect once and reuse the connection to fetch all subsequent batches. See Java sample code below for details -
import java.net.URL;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.Marshaller;
import javax.xml.namespace.QName;
import org.apache.commons.codec.binary.Hex;
import com.marketo.mktows.ArrayOfString;
import com.marketo.mktows.AuthenticationHeader;
import com.marketo.mktows.MktMktowsApiService;
import com.marketo.mktows.MktowsPort;
import com.marketo.mktows.ObjectFactory;
import com.marketo.mktows.ParamsGetMultipleLeads;
import com.marketo.mktows.StaticListSelector;
import com.marketo.mktows.StreamPosition;
import com.marketo.mktows.SuccessGetLead;
import com.marketo.mktows.SuccessGetMultipleLeads;
public class GetMultipleLeads {
public static void main(String[] args) {
System.out.println("Executing GetMultipleLeads");
try {
URL marketoSoapEndPoint = new URL(
"https://100-AEK-913.mktoapi.com/soap/mktows/2_2" + "?WSDL");
String marketoUserId = "demo17_1_809934544BFABAE58E5D27";
String marketoSecretKey = "27272727aa";
QName serviceName = new QName("http://www.marketo.com/mktows/",
"MktMktowsApiService");
MktMktowsApiService service = new MktMktowsApiService(
marketoSoapEndPoint, serviceName);
MktowsPort port = service.getMktowsApiSoapPort();
// Create Signature
DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
String text = df.format(new Date());
String requestTimestamp = text.substring(0, 22) + ":"
+ text.substring(22);
String encryptString = requestTimestamp + marketoUserId;
SecretKeySpec secretKey = new SecretKeySpec(
marketoSecretKey.getBytes(), "HmacSHA1");
Mac mac = Mac.getInstance("HmacSHA1");
mac.init(secretKey);
byte[] rawHmac = mac.doFinal(encryptString.getBytes());
char[] hexChars = Hex.encodeHex(rawHmac);
String signature = new String(hexChars);
// Set Authentication Header
AuthenticationHeader header = new AuthenticationHeader();
header.setMktowsUserId(marketoUserId);
header.setRequestTimestamp(requestTimestamp);
header.setRequestSignature(signature);
// Create Request
ParamsGetMultipleLeads request = new ParamsGetMultipleLeads();
// Request Using LeadKey Selector
// //////////////////////////////////////////////////////
// LeadKeySelector keySelector = new LeadKeySelector();
// keySelector.setKeyType(LeadKeyRef.EMAIL);
//
// ArrayOfString aos = new ArrayOfString();
// aos.getStringItems().add("formtest1@marketo.com");
// aos.getStringItems().add("joe@marketo.com");
// keySelector.setKeyValues(aos);
// request.setLeadSelector(keySelector);
/*
* // Request Using LastUpdateAtSelector
* ////////////////////////////////////////////////////////
* LastUpdateAtSelector leadSelector = new LastUpdateAtSelector();
*
* GregorianCalendar gc = new GregorianCalendar();
* gc.setTimeInMillis(new Date().getTime()); gc.add(
* GregorianCalendar.DAY_OF_YEAR, -2);
*
* DatatypeFactory factory = DatatypeFactory.newInstance();
*
* ObjectFactory objectFactory = new ObjectFactory();
* JAXBElement<XMLGregorianCalendar> until
* =objectFactory.createLastUpdateAtSelectorLatestUpdatedAt
* (factory.newXMLGregorianCalendar(gc));
*
* GregorianCalendar since = new GregorianCalendar();
* since.setTimeInMillis(new Date().getTime()); since.add(
* GregorianCalendar.DAY_OF_YEAR, -5);
*
* leadSelector.setOldestUpdatedAt(factory.newXMLGregorianCalendar(since
* )); leadSelector.setLatestUpdatedAt(until);
*
* request.setLeadSelector(leadSelector);
*/
// Request Using StaticList Selector
// //////////////////////////////////////////////////////
StaticListSelector staticListSelector = new StaticListSelector();
// staticListSelector.setStaticListId(value)
ObjectFactory objectFactory = new ObjectFactory();
JAXBElement<String> listName = objectFactory
.createStaticListSelectorStaticListName("CustomFormula.listOfLeads");
staticListSelector.setStaticListName(listName);
// JAXBElement<Integer> listId =
// objectFactory.createStaticListSelectorStaticListId(6926);
// staticListSelector.setStaticListId(listId);
request.setLeadSelector(staticListSelector);
ArrayOfString attributes = new ArrayOfString();
attributes.getStringItems().add("FirstName");
attributes.getStringItems().add("AnonymousIP");
attributes.getStringItems().add("Company");
request.setIncludeAttributes(attributes);
JAXBElement<Integer> batchSize = new ObjectFactory()
.createParamsGetMultipleLeadsBatchSize(150);
request.setBatchSize(batchSize);
SuccessGetMultipleLeads result = null;
int count = 0;
do {
if (count > 0) {
String pos = result.getResult().getNewStreamPosition();
JAXBElement<String> streamPos = new ObjectFactory()
.createParamsGetMultipleLeadsStreamPosition(pos);
request.setStreamPosition(streamPos);
}
result = port.getMultipleLeads(request, header);
JAXBContext context = JAXBContext
.newInstance(SuccessGetLead.class);
Marshaller m = context.createMarshaller();
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
m.marshal(request, System.out);
m.marshal(result, System.out);
count += result.getResult().getReturnCount();
} while (result.getResult().getRemainingCount() > 0);
System.out.println("Returned a total of :" + count + " items");
} catch (Exception e) {
e.printStackTrace();
}
}
}