IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Salesforce.com Discussion :

utiliser BULK API de SalesForce avec C#


Sujet :

Salesforce.com

  1. #1
    Nouveau membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2013
    Messages : 32
    Points : 27
    Points
    27
    Par défaut utiliser BULK API de SalesForce avec C#
    bonjour,
    je cherche un exemple du code ou on utilise BULK API pour la récupération des donnée Salesforce sous forme d'un fichier .CSV
    Merci.

    mots clefs: SalesFoce, Visual studio, c#, SOAP, Bulk Api, Web Services,

  2. #2
    Modérateur
    Avatar de Overcrash
    Homme Profil pro
    Architecte Logiciel et responsable CRM (Salesforce)
    Inscrit en
    Mai 2008
    Messages
    1 254
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : Architecte Logiciel et responsable CRM (Salesforce)
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2008
    Messages : 1 254
    Points : 1 875
    Points
    1 875
    Par défaut
    Bonjour,

    Tu as ici plusieurs sample : http://www.salesforce.com/us/developer/docs/api_asynch/

    Dont un pour Retrieve les résultats.

    C'est bien ça que tu cherches ?

  3. #3
    Nouveau membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2013
    Messages : 32
    Points : 27
    Points
    27
    Par défaut
    Citation Envoyé par Overcrash Voir le message
    Bonjour,

    Tu as ici plusieurs sample : http://www.salesforce.com/us/developer/docs/api_asynch/

    Dont un pour Retrieve les résultats.

    C'est bien ça que tu cherches ?
    Merci Overcrash,

    j'ai trouvé ce code en Java
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    public boolean login() {
    	boolean success = false;
    	String userId = getUserInput("UserID: ");
    	String passwd = getUserInput("Password: ");
    	String soapAuthEndPoint = "https://" + loginHost + soapService;
    	String bulkAuthEndPoint = "https://" + loginHost + bulkService;
    	try {
    		ConnectorConfig config = new ConnectorConfig();
    		config.setUsername(userId);
    		config.setPassword(passwd);
    		config.setAuthEndpoint(soapAuthEndPoint);
    		config.setCompression(true);
    		config.setTraceFile("traceLogs.txt");
    		config.setTraceMessage(true);
    		config.setPrettyPrintXml(true);
    		System.out.println("AuthEndpoint: " +
    		config.getRestEndpoint());
    		PartnerConnection connection = new PartnerConnection(config);
    		System.out.println("SessionID: " + config.getSessionId());
    		config.setRestEndpoint(bulkAuthEndPoint);
    		bulkConnection = new BulkConnection(config);
    		success = true;
    	} catch (AsyncApiException aae) {
    		aae.printStackTrace();
    	} catch (ConnectionException ce) {
    		ce.printStackTrace();
    	} catch (FileNotFoundException fnfe) {
    		fnfe.printStackTrace();
    	}
    	return success;
    }
    public void doBulkQuery() {
    	if ( ! login() ) {
    		return;
    	}
    	try {
    		JobInfo job = new JobInfo();
    		job.setObject("Merchandise__c");
    		job.setOperation(OperationEnum.query);
    		job.setConcurrencyMode(ConcurrencyMode.Parallel);
    		job.setContentType(ContentType.CSV);
    		job = bulkConnection.createJob(job);
    		assert job.getId() != null;
    		job = bulkConnection.getJobStatus(job.getId());
    		String query =
    		"SELECT Name, Id, Description__c FROM Merchandise__c";
    		long start = System.currentTimeMillis();
    		BatchInfo info = null;
    		ByteArrayInputStream bout =
    		new ByteArrayInputStream(query.getBytes());
    		info = bulkConnection.createBatchFromStream(job, bout);
    		String[] queryResults = null;
    		for(int i=0; i<10000; i++) {
    			Thread.sleep(i==0 ? 30 * 1000 : 30 * 1000); //30 sec
    			info = bulkConnection.getBatchInfo(job.getId(),
    			info.getId());
    			if (info.getState() == BatchStateEnum.Completed) {
    				QueryResultList list =
    				bulkConnection.getQueryResultList(job.getId(),
    				info.getId());
    				queryResults = list.getResult();
    			break;
    			} else if (info.getState() == BatchStateEnum.Failed) {
    				System.out.println("-------------- failed ----------"
    				+ info);
    				break;
    			} else {
    				System.out.println("-------------- waiting ----------"
    				+ info);
    			}
    		}
    		if (queryResults != null) {
    			for (String resultId : queryResults) {
    				bulkConnection.getQueryResultStream(job.getId(),
    				info.getId(), resultId);
    			}
    		}
    	} catch (AsyncApiException aae) {
    		aae.printStackTrace();
    	} catch (InterruptedException ie) {
    		ie.printStackTrace();
    	}
    }

  4. #4
    Modérateur
    Avatar de Overcrash
    Homme Profil pro
    Architecte Logiciel et responsable CRM (Salesforce)
    Inscrit en
    Mai 2008
    Messages
    1 254
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : Architecte Logiciel et responsable CRM (Salesforce)
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2008
    Messages : 1 254
    Points : 1 875
    Points
    1 875
    Par défaut
    Impec

    Si ça fonctionne pense à passer le post en

  5. #5
    Nouveau membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2013
    Messages : 32
    Points : 27
    Points
    27
    Par défaut
    Citation Envoyé par Overcrash Voir le message
    Impec

    Si ça fonctionne pense à passer le post en
    je n'arrive pas à l’écrire en c#

  6. #6
    Modérateur
    Avatar de Overcrash
    Homme Profil pro
    Architecte Logiciel et responsable CRM (Salesforce)
    Inscrit en
    Mai 2008
    Messages
    1 254
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : Architecte Logiciel et responsable CRM (Salesforce)
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2008
    Messages : 1 254
    Points : 1 875
    Points
    1 875
    Par défaut
    Ou est le soucis ? au niveau de la connexion ?

    Tu peux générer le xml de login à Salesforce.
    Trouvé sur le net :
    Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <soap:Body>
        <login xmlns="urn:enterprise.soap.sforce.com">
          <username>username</username>
          <password>password + token</password>
        </login>
      </soap:Body>
    </soap:Envelope>

    Ensuite faire un truc du style :

    Code C# : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    XmlDocument doc = new XmlDocument();
                    doc.LoadXml(str);
                    string uri = "https://login.salesforce.com/services/Soap/c/21.0";
                    HttpWebRequest req = (HttpWebRequest)WebRequest.Create(uri);
                    req.Headers.Add("SOAPAction", "login");
                    req.ContentType = "text/xml;charset=\"utf-8\"";
                    req.Accept = "text/xml";
                    req.Method = "POST";
                    stm = req.GetRequestStream();
                    doc.Save(stm);
                    stm.Close();
                    WebResponse resp = req.GetResponse();
                    stm = resp.GetResponseStream();
                    XmlDocument doc1 = new XmlDocument();
                    doc1.Load(stm);

    Sinon pourquoi pas simplement importé le WSDL généré par Salesforce et l'utiliser ? tu peux le sortir avec ta config en particulier ou avec une config standard pour la portabilité.

  7. #7
    Nouveau membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2013
    Messages : 32
    Points : 27
    Points
    27
    Par défaut
    Bonjour,
    j'ai trouvé un truc en python et pour l'instant je cherche a le convertir en c#
    la connexion se fait avec OAuthToken.

  8. #8
    Modérateur
    Avatar de Overcrash
    Homme Profil pro
    Architecte Logiciel et responsable CRM (Salesforce)
    Inscrit en
    Mai 2008
    Messages
    1 254
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : Architecte Logiciel et responsable CRM (Salesforce)
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2008
    Messages : 1 254
    Points : 1 875
    Points
    1 875
    Par défaut
    Te prend pas la tête à trouver ton truc dans 50 langages.
    Je serais toi j'utiliserai le WSDL.

    Et commence par juste faire l'authentification, ensuite ta requête.
    Sert à rien d'aller trop vite et d'essayer de trouver un code tout fait.

    Inspire toi de l'algorithme. Le langage n'a pas d'importance.

  9. #9
    Nouveau membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2013
    Messages : 32
    Points : 27
    Points
    27
    Par défaut
    Citation Envoyé par Overcrash Voir le message
    Te prend pas la tête à trouver ton truc dans 50 langages.
    Je serais toi j'utiliserai le WSDL.

    Et commence par juste faire l'authentification, ensuite ta requête.
    Sert à rien d'aller trop vite et d'essayer de trouver un code tout fait.

    Inspire toi de l'algorithme. Le langage n'a pas d'importance.
    on a déjà un truc qui fonctionne avec le WSDL et Le SOAP API, mais maintenant on souhaite passer Bulk API, car on plus de données et sa risque d’augmenter dans l'avenir

  10. #10
    Membre habitué
    Inscrit en
    Juin 2006
    Messages
    379
    Détails du profil
    Informations forums :
    Inscription : Juin 2006
    Messages : 379
    Points : 194
    Points
    194
    Par défaut
    Bonjour, le post date un peu mais j'aimerais savoir si tu as trouvé des infos supplémentaires pour l'utilisation de l'API Bulk et si tu avais (dans ce cas) un retour d'expérience à nous faire partager. Pour ma part, je dois utiliser l'API SOAP via un projet C# et pour l'instant, je n'ai pas encore rencontré trop de désagréments, même si l'application en est encore qu'à ses débuts (J'utilise beaucoup de threads pour les listes afin d'éviter les lenteurs). Qu'est-ce qui vous fait vouloir changer d'API ? Quelles est le volume de transactions échangé avec Salesforce qui vous oblige à explorer cette piste (ou autres raisons) ?

  11. #11
    Nouveau membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2013
    Messages : 32
    Points : 27
    Points
    27
    Par défaut
    Citation Envoyé par Unusual Voir le message
    Bonjour, le post date un peu mais j'aimerais savoir si tu as trouvé des infos supplémentaires pour l'utilisation de l'API Bulk et si tu avais (dans ce cas) un retour d'expérience à nous faire partager. Pour ma part, je dois utiliser l'API SOAP via un projet C# et pour l'instant, je n'ai pas encore rencontré trop de désagréments, même si l'application en est encore qu'à ses débuts (J'utilise beaucoup de threads pour les listes afin d'éviter les lenteurs). Qu'est-ce qui vous fait vouloir changer d'API ? Quelles est le volume de transactions échangé avec Salesforce qui vous oblige à explorer cette piste (ou autres raisons) ?
    Bonjour,
    pour la déférence entre SOAP et Bulk la réponse est ici: http://help.salesforce.com/HTViewHel...language=en_US

    et voila un exemple d'utilisation de Bulk API:
    _on utilise OAuth pour récupéré la liste des noms de table puis Bulk pour récupérer les table en .CSV:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    class TokenResponse
        {
            public string id { get; set; }
            public string issued_at { get; set; }
            public string refresh_token { get; set; }
            public string instance_url { get; set; }
            public string signature { get; set; }
            public string access_token { get; set; }
        }
    	
    public static class Logging
        {
            public static void logText(string textToLog)
            {
                System.Console.WriteLine(textToLog);
                WriteLog(textToLog);
            }
    
            public static void logException(string textToLog, Exception e)
            {
                System.Console.WriteLine(textToLog + " " + e.Message);
                WriteLog(textToLog, e);
            }
    
            
    
            /************
             * 
             * Log un texte dans un fichier
             * 
             * **************/
            private static void WriteLog(string text)
            {
                try
                {
                    using (System.IO.StreamWriter file = new System.IO.StreamWriter(Settings.Default.targetDirectory +"Log.txt", true))
                    {
                        file.WriteLine(DateTime.Now.ToString("yyyy/MM/dd hh:mm:ss : ") + text);
                    }
                }
                catch { }
            }
            /*********************************
             * 
             * Log un texte et une exception dans un fichier
             * 
             * ******************************/
            private static void WriteLog(string text, Exception e)
            {
                try
                {
                    using (System.IO.StreamWriter file = new System.IO.StreamWriter(Settings.Default.targetDirectory +"Log.txt", true))
                    {
                        file.WriteLine(DateTime.Now.ToString("yyyy/MM/dd hh:mm:ss : ") + text);
                        file.WriteLine(text);
                        file.WriteLine(e.Message);
                        file.WriteLine(e.StackTrace);
                    }
                }
                catch { }
            }
    
    
        }
    
    	
    class BulkBatch
        {
            public static  string CreateJob(string sfSessionId, string sfOperation, string sfObjectName)
            {
                string str = "";
                string reqURL = "";            
                byte[] bytes;
                XmlDocument reqDoc;
                XmlDocument respDoc;
                str = ""
                    + "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" 
                    + "<jobInfo xmlns=\"http://www.force.com/2009/06/asyncapi/dataload\">"
                    + "    <operation>"+sfOperation+"</operation>" 
                    + "    <object>"+sfObjectName+"</object>"
                    + "    <concurrencyMode>Parallel</concurrencyMode>"
                    + "    <contentType>CSV</contentType>" 
                    + "</jobInfo>"
                ;
                reqURL = "https://myEntreprise.my.salesforce.com/services/async/28.0/job";            
                reqDoc = new XmlDocument();
                reqDoc.LoadXml(str);            
                bytes = System.Text.Encoding.ASCII.GetBytes(reqDoc.InnerXml);
                respDoc = Post(bytes, reqURL, sfSessionId); // create job
                string JobId = (respDoc != null) ?
                    (respDoc.GetElementsByTagName("id").Count > 0) ?
                        (respDoc.GetElementsByTagName("id")[0].InnerText) :
                        "" :
                    ""
                ;
                return JobId;
            }
    
            public static XmlDocument Post(byte[] bytes, string reqURL, string sfSessionId)
            {
                WebRequest req = WebRequest.Create(reqURL);
                req.Method = "POST";
                req.ContentLength = bytes.Length;
                req.ContentType = "text/csv; charset=UTF-8";
                req.Headers.Add("X-SFDC-Session: " + sfSessionId);            
                //proxy
                req.Proxy = new WebProxy() { Address = new Uri("http://proxyusers.intranet:8080"), UseDefaultCredentials = true };
                
                System.IO.Stream strm = req.GetRequestStream();
                strm.Write(bytes, 0, bytes.Length);
                strm.Close();
                WebResponse resp;
               try
                {
                   resp = req.GetResponse();
                    
                }
                catch (Exception e) {
                    Logging.logText("Exception levée avec req.GetResponse(): " + e.Message);
                    throw e;
                }
                
                
                System.IO.Stream respStrm = resp.GetResponseStream();
                XmlDocument respDoc = new XmlDocument();
                respDoc.Load(respStrm);
    
                return respDoc;
            }
    
            public static XmlDocument Get(string reqURL, string sfSessionId)
            {
    
                WebRequest req = WebRequest.Create(reqURL);
                req.Method = "GET";
                req.ContentType = "text/csv; charset=UTF-8";
                req.Headers.Add("X-SFDC-Session: " + sfSessionId);
                
                //proxy
                req.Proxy = new WebProxy() { Address = new Uri("http://proxyusers.intranet:8080"), UseDefaultCredentials = true };
                WebResponse resp = req.GetResponse();
                System.IO.Stream respStrm = resp.GetResponseStream();
               
                XmlDocument respDoc = new XmlDocument();
                respDoc.Load(respStrm);
                return respDoc;
            }
    
            public static string GetBatchIdForRequestOnJobId(string sfSessionId, string sfJobId, String query)
            {
                //mettre la requete dans byte[] fileBytes après l’avoir encoder en UTF8… 
                byte[] fileBytes = System.Text.Encoding.ASCII.GetBytes(query);
    
                string reqURL = "https://myEntreprise.my.salesforce.com/services/async/28.0/job/" + sfJobId + "/batch";            
                
                XmlDocument respDoc = Post( fileBytes, reqURL, sfSessionId);
                
                string batchId = (respDoc != null) ?
                    (respDoc.GetElementsByTagName("id").Count > 0) ?
                        (respDoc.GetElementsByTagName("id")[0].InnerText) :
                        "" :
                    ""
                ;
                return batchId;
            }           
    
            public static string ChekingBatchStatus(string SoapSessionId, string JobId, string BatchId)
            {           
                string reqURL = "https://myEntreprise.my.salesforce.com/services/async/28.0/job/" + JobId + "/batch/" +BatchId;
                
                XmlDocument respDoc = Get(reqURL, SoapSessionId);            
                string batchState = (respDoc != null) ?
                    (respDoc.GetElementsByTagName("state").Count > 0) ?
                        (respDoc.GetElementsByTagName("state")[0].InnerText) :
                        "" :
                    ""
                ;
                return batchState;
                
            }
            private static string GetResultIdOfbatchId(string SoapSessionId, string JobId, string BatchId)
            {
                string reqURL = "https://myEntreprise.my.salesforce.com/services/async/28.0/job/" + JobId + "/batch/" + BatchId + "/result";
                XmlDocument respDoc = Get(reqURL, SoapSessionId);
                string resultId = (respDoc != null) ?
                    (respDoc.GetElementsByTagName("result").Count > 0) ?
                        (respDoc.GetElementsByTagName("result")[0].InnerText) :
                        "" :
                    ""
                ;
                return resultId;
                
            }
    
            public static void SavingResultIdToFile(string SoapSessionId, string JobId, string BatchId, string resultId, string tableName, string targetDirectory)
            {
                string reqURL = "https://myEntreprise.my.salesforce.com/services/async/28.0/job/" + JobId + "/batch/" + BatchId + "/result/" + resultId;
                
                WebRequest req = WebRequest.Create(reqURL);
                req.Method = "GET";
                req.ContentType = "text/csv; charset=UTF-8";//"text/csv; charset=UTF-8";//application/vnd.xls     application/x-www-form-urlencoded   text/xml charset=utf8
                req.Headers.Add("X-SFDC-Session: " + SoapSessionId);
                
                //proxy
                req.Proxy = new WebProxy() { Address = new Uri("http://proxyusers.intranet:8080"), UseDefaultCredentials = true };
    
                ////xml file
                //WebResponse resp = req.GetResponse();
                //System.IO.Stream respStrm = resp.GetResponseStream();
                //XmlDocument respDoc = new XmlDocument();
                //respDoc.Load(respStrm);
                //DataSet ds = new DataSet();
                //String s = respDoc.InnerXml.ToString();
                //StringReader stringReader = new StringReader(s);
                //ds.ReadXml(stringReader);
    
                //CSV File
                using (WebResponse myResponse = req.GetResponse())
                using (StreamReader reader = new StreamReader(myResponse.GetResponseStream(), UTF8Encoding.UTF8))
                {                
                    // use whatever method you want to save the data to the file...                
                    String data = reader.ReadToEnd().Replace("\",\"", "\";\"");// "," ==> ";"
                    if (data.Equals("Records not found for this query"))
                    {
                        data = "";
                        File.AppendAllText(targetDirectory + tableName + ".csv", data);
                    }
                    else File.AppendAllText(targetDirectory + tableName + ".csv", data, Encoding.UTF8);                
                }
                            
               
            }     
    
            public static void StartBulkQuery(List<FieldsOfSObjects> listfSobjects)
            {
                //TopicStep 1: Logging In Using the SOAP API
                //connexion SOAP
                SforceService binding = new SforceService();
                string SoapSessionId = SalesForceConexion.SalesforceLogin(Program.username, Program.password, binding);
                Parallel.ForEach(listfSobjects, Sobj =>
                {                
                    try{
                                //Step 2: Creating a Job                    
                                string JobId = CreateJob(SoapSessionId, "query", Sobj.SObjectName);
                                            
                                
                                if (!Sobj.query.Equals(null))
                                {
                                    //Step 3: Adding a Batch to the Job                        
                                    String BatchId = GetBatchIdForRequestOnJobId(SoapSessionId, JobId, Sobj.query);                                
    
                                    //l'etat du batch en cours...
                                    string BatchState = ChekingBatchStatus(SoapSessionId, JobId, BatchId);
                                    //en cas d'erreur, les etats possibles: http://www.salesforce.com/us/developer/docs/api_asynch/Content/asynch_api_batches_interpret_status.htm
                                    if (BatchState.Equals("Failed"))
                                    {                                    
                                        Logging.logText(" batch Failed For: " + Sobj.SObjectName);
                                        throw new Exception();
                                    }
                                    while (!BatchState.Equals("Completed"))
                                    {
                                        BatchState = ChekingBatchStatus(SoapSessionId, JobId, BatchId);
                                        //en cas d'erreur
                                        if (BatchState.Equals("Failed"))
                                        {                                        
                                            Logging.logText("batch Failed For: " + Sobj.SObjectName);
                                            throw new Exception();
                                        }
                                    }
                                    String resultId = GetResultIdOfbatchId(SoapSessionId, JobId, BatchId);
                                    //a faire...
                                    String tableName = Sobj.SObjectName;
                                    String targetDirectory = Settings.Default.targetDirectory;
    
                                    SavingResultIdToFile(SoapSessionId, JobId, BatchId, resultId, tableName, targetDirectory);
                                }
                                else Logging.logText("query is empty for this table :" + Sobj.SObjectName);
    
                                Logging.logText("# OK for : "+Sobj.SObjectName);
                        }catch(Exception e){
                            Logging.logText("# KO for : " + Sobj.SObjectName + "<--------------------KO \n" + e.Message);
                        }
                  ////logout()
                  //  if (((int)DateTime.Now.Millisecond - timeStart) >= 60000)
                  //  {
                  //      timeStart = (int)DateTime.Now.Millisecond;
                  //      SalesForceConexion.SlesforceLogOut(binding);
                  //      binding = new SforceService();
                  //      SoapSessionId = SalesForceConexion.SalesforceLogin(Program.username, Program.password, binding);
                  //  }
                });
            }
    
               
            
        }
    	
    	
    	
    	class Program 
        {
            static string consumer_key = Settings.Default.consumer_key;
            private static String consumer_secret = Settings.Default.consumer_secret;
            public static String username = Settings.Default.username;
            public static String password = Settings.Default.password;        
            
            public static string GetToken(string client_id, string client_secret, string username, string password)
            {
                // Create the web request
                HttpWebRequest request = GetRequest("https://login.salesforce.com/services/oauth2/token", "POST");
                // Create POST data and convert it to a byte array.
                string postData = string.Format("grant_type=password&client_id={0}&client_secret={1}&username={2}&password={3}&redirect_uri=resttest:callback", client_id, client_secret, username, password);
                byte[] byteArray = Encoding.UTF8.GetBytes(postData);
                // Set the ContentType property of the WebRequest.
                request.ContentType = "application/x-www-form-urlencoded";
                // Set the ContentLength property of the WebRequest.
                request.ContentLength = byteArray.Length;
                // Get the request stream.
                Stream dataStream = request.GetRequestStream();
                // Write the data to the request stream.
                dataStream.Write(byteArray, 0, byteArray.Length);
                // Close the Stream object.
                dataStream.Close();
                // Get the response
                HttpWebResponse response = null;
                string access_token = string.Empty;
    
                try
                {
                    response = (HttpWebResponse)request.GetResponse();
    
                    // Get the stream associated with the response.
                    Stream receiveStream = response.GetResponseStream();
    
                    // Pipes the stream to a higher level stream reader with the required encoding format. 
                    StreamReader readStream = new StreamReader(receiveStream, Encoding.UTF8);
    
                    // Get the token
                    string jsonText = readStream.ReadToEnd();
    
                    readStream.Close();
    
                    JObject json = JObject.Parse(jsonText);
                    access_token = (string)json["access_token"];
                }
                catch (Exception ex)
                {
                    throw new Exception("Unable to get token!", ex);
                }
                finally
                {
                    if (response != null)
                    {
                        response.Close();
                        response = null;
                    }
    
                    request = null;
                }
    
                return access_token;
            }
    
            public static HttpWebRequest GetRequest(string url, string method, string userToken = "")
            {
                HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
                // Set credentials to use for this request.
                request.Credentials = CredentialCache.DefaultCredentials;
                request.Method = method;
                request.Accept = "application/json";
                request.KeepAlive = true;
                //Proxy
                request.Proxy = new WebProxy() { Address = new Uri("http://proxyusers.intranet:8080"), UseDefaultCredentials = true };
                if (userToken.Trim().Length > 0)
                {
                    // Create POST data and convert it to a byte array.
                    string postData = string.Format("Authorization" + userToken.Trim());
                    byte[] byteArray = Encoding.UTF8.GetBytes(postData);
                    // Set the ContentLength property of the WebRequest.
                    request.ContentLength = byteArray.Length;
                }
                return request;
            }
    
            public static string GetRequest2(string url, string userToken = "")
            {
                System.Net.WebRequest req = System.Net.WebRequest.Create(url);
                req.Method = "GET";
                if (userToken.Trim().Length > 0)
                {
                    req.Headers.Add("Authorization: OAuth " + userToken);
                }
                System.Net.WebResponse resp = req.GetResponse();
                if (resp == null) return null;
                System.IO.StreamReader sr = new System.IO.StreamReader(resp.GetResponseStream());
                return sr.ReadToEnd().Trim();
            }
    
            public static List<String> listSObjects(string oAuthToken)
            {            
                string json = GetRequest2("https://myEntreprise.my.salesforce.com/services/data/v26.0/sobjects/", oAuthToken);
                // Convert the JSON response into a token object
                JavaScriptSerializer ser = new JavaScriptSerializer();
                var myJson = (JObject)JsonConvert.DeserializeObject(json);
                List<String> MylistOfObjects = new List<String>();
                MylistOfObjects = myJson["sobjects"].Children()["name"]
                                      .Select(x => x.ToString())
                                      .ToList();
    
                return MylistOfObjects;
            }
    
            public static List<FieldsOfSObjects> GetListFields(List<string> objs, string oAuthToken)
            {
                List<FieldsOfSObjects> listOfObjectsAndFields = new List<FieldsOfSObjects>();
                Parallel.ForEach(objs, obj =>
                {
                    FieldsOfSObjects fieldsOfanObject = new FieldsOfSObjects();
                    fieldsOfanObject.SObjectName = obj;
    
                    string json =
                        GetRequest2("https://myEntreprise.my.salesforce.com/services/data/v26.0/sobjects/" + obj + "/describe",
                            oAuthToken);
                    // Convert the JSON response into a token object
                    JavaScriptSerializer ser = new JavaScriptSerializer();
                    var myJson = (JObject) JsonConvert.DeserializeObject(json);
                    List<String> MylistOfFields = new List<String>();
                    MylistOfFields = myJson["fields"].Children()["name"]
                        .Select(x => x.ToString())
                        .ToList();
                    fieldsOfanObject.listFields = MylistOfFields;
                    listOfObjectsAndFields.Add(fieldsOfanObject);
                });
                
                return listOfObjectsAndFields;
            }
    
            private static void CreateQueries(List<FieldsOfSObjects> listFieldsOfSobjects)
            {
                foreach(FieldsOfSObjects obj in listFieldsOfSobjects ){
                    String query = "Select ";
                    foreach (String s in obj.listFields) {
                        //quand c pas le dernier on ajoute une "," 
                        if (!s.Equals(obj.listFields.Last()))
                        {
                            query = query + s + ", ";
                        }
                        else query = query + s;
                    }
    
                    obj.query = query + " From " + obj.SObjectName;
    
                    //Console.WriteLine(query);
                }            
                
            }
    
            public static void Main()
            {
                List<FieldsOfSObjects> listFieldsOfSobjects = new List<FieldsOfSObjects>();
    
                Logging.logText("################## recuperation du token ################");
                String oAuthToken = GetToken(consumer_key, consumer_secret, username, password);
                Logging.logText("################## liste des noms de tables #############");
                List<String> objs = listSObjects(oAuthToken);
                Logging.logText("################## liste des champs pour chaque table ###");
                listFieldsOfSobjects = GetListFields(objs, oAuthToken);
                Logging.logText("############ creation des requetes pour chaque table ####");
                CreateQueries(listFieldsOfSobjects);
                Logging.logText("############ recupération des CSV avec BulkQuery ########");
    
                //forcer ContentVersion car le champ 'VersionData' bloque le batch !! 
                var objtest = new FieldsOfSObjects
                {
                    SObjectName = "ContentVersion",
                    //query = "Select Id, ContentDocumentId, IsLatest, ContentUrl, VersionNumber, Title, Description, ReasonForChange, PathOnClient, RatingCount, IsDeleted, ContentModifiedDate, ContentModifiedById, PositiveRatingCount, NegativeRatingCount, FeaturedContentBoost, FeaturedContentDate, OwnerId, CreatedById, CreatedDate, LastModifiedById, LastModifiedDate, SystemModstamp, TagCsv, FileType, PublishStatus, VersionData, ContentSize, FirstPublishLocationId, Origin From ContentVersion"
                    query = "Select Id, ContentDocumentId, IsLatest, ContentUrl, VersionNumber, Title, Description, ReasonForChange, PathOnClient, RatingCount, IsDeleted, ContentModifiedDate, ContentModifiedById, PositiveRatingCount, NegativeRatingCount, FeaturedContentBoost, FeaturedContentDate, OwnerId, CreatedById, CreatedDate, LastModifiedById, LastModifiedDate, SystemModstamp, TagCsv, FileType, PublishStatus, ContentSize, FirstPublishLocationId, Origin From ContentVersion"
                };
                listFieldsOfSobjects.Add(objtest);
    
                BulkBatch.StartBulkQuery( listFieldsOfSobjects);
    
                Logging.logText("-fin-");
                //Console.ReadKey();
    
            }
    
            
        }

    Bon courage.

Discussions similaires

  1. Utilisation les API de SCRIBD avec l'ASP
    Par Adnane91 dans le forum ASP.NET
    Réponses: 8
    Dernier message: 16/05/2011, 14h48
  2. Réponses: 0
    Dernier message: 09/11/2010, 16h11
  3. Utilisation API C Ghostscript avec JNA
    Par snay13 dans le forum Débuter
    Réponses: 10
    Dernier message: 15/08/2010, 08h43
  4. probleme d'utilisation d api c dans des controle forms avec wpf
    Par ZashOne dans le forum Windows Presentation Foundation
    Réponses: 4
    Dernier message: 24/07/2007, 13h04
  5. comment utiliser les API avec Perl?
    Par megapacman dans le forum Langage
    Réponses: 5
    Dernier message: 23/08/2006, 16h18

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo