-Apache Axis 2 "axis2-1.3-bin.zip" Où l'obtenir: https://archive.apache.org/dist/ws/axis2/1_3/ Après l'extraction, lib / et tout ce qui suit est requis ・ Force-wsc-34.0.jar Où l'obtenir: http://mvnrepository.com/artifact/com.force.api/force-wsc/34.0
・ Js-1.7R2.jar Où l'obtenir: http://mvnrepository.com/artifact/rhino
・ ST-4.0.8.jar Où l'obtenir: http://www.stringtemplate.org/download/
Placez enterprise.wsdl sous axis2-1.3 / bin / et exécutez la commande $ sh wsdl2java.sh -Eofv -g -uw -u -uri enterprise.wsdl
Les fichiers source Java sont générés sous le répertoire com
Après avoir généré un projet Java approprié dans Eclipse, placez tous les fichiers jar ci-dessus dans le chemin du fermoir et confirmez que l'authentification et SOQL peuvent être exécutés avec la source suivante
import com.sforce.soap.enterprise.LoginResult;
import com.sforce.soap.enterprise.QueryResult;
import com.sforce.soap.enterprise.SessionHeader;
import com.sforce.soap.enterprise.SforceServiceStub;
import com.sforce.soap.enterprise.sobject.Account;
import com.sforce.soap.enterprise.sobject.SObject;
import org.apache.axis2.client.Options;
import org.apache.axis2.transport.http.HTTPConstants;
public class TestLogin {
public static void main(String[] args) throws Exception {
SforceServiceStub stub = new SforceServiceStub();
Options options = stub._getServiceClient().getOptions();
options.setProperty(HTTPConstants.MC_ACCEPT_GZIP, Boolean.TRUE);
options.setProperty(HTTPConstants.MC_GZIP_REQUEST, Boolean.TRUE);
LoginResult lr = stub.login("[email protected]", "xxxx", null);
SessionHeader sh = new SessionHeader();
sh.setSessionId(lr.getSessionId());
stub = new SforceServiceStub(lr.getServerUrl());
options = stub._getServiceClient().getOptions();
options.setProperty(HTTPConstants.MC_ACCEPT_GZIP, Boolean.TRUE);
options.setProperty(HTTPConstants.MC_GZIP_REQUEST, Boolean.TRUE);
QueryResult qr = stub.query("select Name, numberOfEmployees, Id, Industry from Account", sh, null, null, null);
System.out.println("Query has " + qr.getSize() + " records total");
SObject[] sObjects = qr.getRecords();
for (int i = 0; i < sObjects.length; i++) {
Account sObject = (Account) sObjects[i];
System.out.println(i + "\t: [" + sObject.getId() + "][" +
sObject.getName() + "]");
}
}
}
Recommended Posts