• Developer One.ax1879
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 3
    Replies

I have been getting some  500 Internal Server Errors when I try to connect wityh the folling URL's:

 

https://login.salesforce.com/services/Soap/c/29.0/

https://login.salesforce.com/services/Soap/c/29.0/xxxxxxTokenxxxxx

 

I am using Visual Studio, and need some help debugging. 

I have been getting some  500 Internal Server Errors when I try to connect wityh the folling URL's:

 

https://login.salesforce.com/services/Soap/c/29.0/

https://login.salesforce.com/services/Soap/c/29.0/xxxxxxTokenxxxxx

 

I am using Visual Studio, and need some help debugging. 

Hi,

 

just wanted to tell that we've just published a Salesforce integration project for .NET on Google Code.

It is considered ver 0.1 and you're free to download and test in your projects.

 

It's quite simple to use:

 

protected void btnSearchAccount_Click(object sender, EventArgs e) { Account account = new AccountController().GetByName(txtAccountSearch.Text); lblAccountResult.Text = account != null ? account.Name : "No result"; }

 

This is just a beginning of something that can grow. If you want to join the development, please let me know.

 

http://code.google.com/p/salesforce-dotnet/

 

Best regards

Stian