web services - Connect MS Dynamics CRM 2011 from java -
i trying connect ms dynamics crm 2011 java. after lots of searching came across 1 link in ms forums gives code snippet invoke ms dynamics crm 2011 ws java.
consuming crm rest service java
however, not provide details other account creation step. using code snippet able create accounts. however, want use same rest web service retrieve accounts, create new case request, add case request account, etc. based on .net examples available online trying use service.createaccountquery() method retrieve accounts. however, while .net examples uses linq setup search criteria, clueless how specify subpath string in java retrieve existing accounts name/city/country etc.
appreciate help.
instead of "account act..." line , below, use like:
// retrieve accounts user has read access to. string fetch1 = @"<fetch mapping=""logical""> <entity name=""account""> <all-attributes/> </entity> </fetch>"; // fetch results. executefetchrequest req = new executefetchrequest(); req.fetchxml = fetch1; executefetchresponse result1 = (executefetchresponse)service.execute(req);
i'm unfamiliar proxy, want call service.x x execute or retrievemultiple (based on proxy provides).
Comments
Post a Comment