• esimplest
  • NEWBIE
  • 0 Points
  • Member since 2003

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

I am trying to generate proxy from Dreamweaver MX using ColdFusion Proxy generator. And I receive the below error. It works fine with other webservices.

Unable to generate a proxy.
Emitter failure. Invalid endpoint address in port soap in service SforceServiceLocator: https://www.salesforce.com/services/Soap/c/2.5

Hi,

We need someone to build a very simple
1. Login
2. Insert
3. Update
4. Delete 

using the latest SalesForce.com API (sforce.com) in ASP.Net! Only providers with SalesForce.com API experience are requested to BID! This is an internal projects and the budget is not more than $250 for all the above features.

Hi,

I am receiving this error when trying to login?
"The underlying connection was closed: Could not establish trust relationship with remote server."

Here is my code!

Public sForce As New com.salesforce.na1.SforceService() 'create a instance of the connector proxy

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

'The returned value from the Login call will be an array of objects.
Dim loginresult

Try
loginresult = sForce.login("chandra@esimplest.com", "password")

Catch ex As System.Web.Services.Protocols.SoapHeaderException
'This is typical error handling for fault detection and reporting, the .Net Proxy client actually throws an
'error rather than return the fault SOAP Message.

Label1.Text = "The server returned the following fault information:"
Label1.Text = Label1.Text & "<br>Fault Code: " & CType(CType(ex, System.Web.Services.Protocols.SoapException).Code, System.Xml.XmlQualifiedName).Name()
Label1.Text = Label1.Text & "Fault string: " & ex.Message

Catch ex As Exception
Label1.Text = ex.Message
End Try

End Sub

Please advice or guide me with any sample URLs for the Login or accessing other functions of SalesForce!
Shekar

Hi,

I am receiving this error when trying to login?
"The underlying connection was closed: Could not establish trust relationship with remote server."

Here is my code!

Public sForce As New com.salesforce.na1.SforceService() 'create a instance of the connector proxy

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

'The returned value from the Login call will be an array of objects.
Dim loginresult

Try
loginresult = sForce.login("chandra@esimplest.com", "password")

Catch ex As System.Web.Services.Protocols.SoapHeaderException
'This is typical error handling for fault detection and reporting, the .Net Proxy client actually throws an
'error rather than return the fault SOAP Message.

Label1.Text = "The server returned the following fault information:"
Label1.Text = Label1.Text & "<br>Fault Code: " & CType(CType(ex, System.Web.Services.Protocols.SoapException).Code, System.Xml.XmlQualifiedName).Name()
Label1.Text = Label1.Text & "Fault string: " & ex.Message

Catch ex As Exception
Label1.Text = ex.Message
End Try

End Sub

I've programmed VB from VB4 during the last 6 yrs through to VB6, and am fairly conversant in the Win32 API. However, as regards sales force extentions, I am completely a newbie and am feeling lost. Where do I start? My questions are:

(1) Is it possible to use extend salesforce with VB6 and not VB.NET?

(2) Where do I find a quick tutorial on (that's less greasy with technical gibberish as found in specifications) using the SOAP toolkit with VB6?