function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
molamolamolamola 

login

Hi There,
 
I am developing SSIS package and connecting to salesforce. I will be using VB Script. I have enterprise dll file as reference in VS. My problem is that I cannot reference login function.
 
here it is

Imports System

Imports System.Data

Imports System.Math

Imports Microsoft.SqlServer.Dts.Runtime

Imports SalesForceService

Public Sub Main()

Dim binding As New SalesForceService. ( here I cannot find SalesForceService.logIn)

There are others such as loginFault,loginResult except Login.

I looked at tutorials but in vain. Please advise me.

Your help is appreciated.

 

molamolamolamola
This is resolved.
trevor_milestrevor_miles
how did you resolve this?  i am a newbie and struggling to get the login to work, so would appreciate your help.
molamolamolamola
You need to follow this link.
 
 
 
To add a Web reference:
  1. On the Project menu, choose Add Web Reference.
  2. In the URL box of the Add Web Reference dialog box, type the URL to obtain the service description of the XML Web service you want to access, such as:

    file:///c:\WSDLFiles\enterprise.wsdl

  3. Click Go to retrieve information about the XML Web service.
  4. In the Web reference name box, rename the Web reference to sforce, which is the namespace you will use for this Web reference.
  5. Click Add Reference to add a Web reference for the target XML Web service. For more information, see the topic “Adding and Removing Web References” in the Visual Studio documentation.
  6. Visual Studio retrieves the service description and generates a proxy class to interface between your application and the XML Web service.