• Paul (Bonhomie.io)
  • NEWBIE
  • 0 Points
  • Member since 2015
  • Cloud Architect
  • Bonhomie.io


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
Does anyone know anything similar to Chatter and Samepage.io for internal wiki where users can share knowledge of key business terminologies and procedures?
Hello everyone,

I need help it's urgent so please reply as soon as possible.
I am using below code to add lead from .net website to Salesforce.
Code Structure :

            var uri = this.Instant_url + "/services/data/v33.0/sobjects/Lead/";
            var acct = new sObjectLead();
            acct.FirstName = shruti;
            acct.LastName =Patel;
            acct.Company = IBM;
            acct.LeadSource = "Scout";
            acct.Email = shruti121@gmail.com;
            acct.Phone = 9256362563;
            acct.Title = "Test"

            var ser = new JavaScriptSerializer();
            var body = ser.Serialize(acct);
            var req = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(uri);

            req.Headers.Add("Authorization: OAuth " + this.access_token);
            req.ContentType = "application/json";
            req.Method = "POST";

            byte[] data = System.Text.Encoding.ASCII.GetBytes(body);
            req.ContentLength = body.Length;
            var os = req.GetRequestStream();
            os.Write(data, 0, data.Length);
            os.Close();

I am able to add lead in Development account & Enterprise account. Is it possible to add lead in nonenterprise account?If yes, then please tell me how can i add ?
 Can you please suggest me what is the issue in this code ? 

 
Anyone every get horrendously slow performance when saving classes and pages from the Eclipse IDE back to the org? 

I'm experiencing times when it takes several minutes just to save one file.  Trying to work in a rapid development cycle is almost impossible and it's also hard not to completely lose your train of thought when debugging.

I guess I'm sort of venting here.  We did enter a support case once.  But a support case will sit for a day or two before anything happens.  And by then, the SB is back to saving in 5 or 10 seconds.  Then a week or two later, for the better part of the day, save time is back to several minutes.

I'm wondering if anyone else ever has the same issue.

I did check my network speed and have a 40ms ping, 20mbs download, and 5mbs upload.  My network is fast enought to do voice-over-IP meetings with screen sharing so you think I could upload a couple K text file in maybe a second.