Forum Replies Created

  • suniti

    Member
    July 12, 2018 at 12:37 pm in reply to: When to use SOAP API in Salesforce?

    Hello Shradha

    You can use SOAP API  when you need to create, retrieve, update, or delete records. You can also use SOAP API to perform searches and much more. Use SOAP API in any language that supports web services. For example, you can use SOAP API to integrate Salesforce with your org's ERP and finance systems.

  • suniti

    Member
    July 12, 2018 at 10:55 am in reply to: What is a resource in Restful web services in Salesforce?

    Hello Sanjana

    REST architecture treats every content as a resource. These resources can be Text Files, Html Pages, Images, Videos or Dynamic Business Data. REST Server simply provides access to resources and REST client accesses and modifies the resources. Here each resource is identified by URIs/ Global IDs. REST uses various representations to represent a resource where Text, JSON, XML. The most popular representations of resources are XML and JSON.

  • suniti

    Member
    July 12, 2018 at 10:33 am in reply to: What are the different components of WSDL in Salesforce?

    Hello sanjana

    components of WSDL are:

    Types: This defines the message data types, which are in the form of XML schema, used by the web services.
    Message: This defines the data elements for each operation where messages could be the entire document or an argument that is to be mapped.
    Port Type: There are multiple services present in WSDL. Port type defines the collection of operations that can be performed for binding.
    Binding: Determines and defines the protocol and data format for each port type.
    Operations: This defines the operations performed for a message to process the message.

  • suniti

    Member
    July 12, 2018 at 10:20 am in reply to: What is the difference between SLDS and Aura Components?

    Hello Sanjana

    Aura is an open-source UI framework built by Salesforce for developing dynamic web apps for mobile and desktop devices.To build lightning components in salesforce lightning we use the Lightning component framework. The lightning component framework is not different from the Aura framework rather it is a subset of the Aura framework. The Lightning Component framework is built on the open-source Aura framework. However, the open-source Aura framework has some features that aren’t available to Lightning Component framework.

    Thank you.

  • HELLO Anurag

    The authorization process verifies whether you have permission to access the data you want from the server. When you send a request, you often have to include parameters to ensure the request has permission to access and return the data you want. Postman provides authorization types that make it easy for you to handle authentication protocols in Postman native apps.

    OAuth 2.0 is an authorization type that enables you to approve an application that contacts another application for you without exposing your password.

  • suniti

    Member
    July 10, 2018 at 10:00 am in reply to: What Is Property in Salesforce Apex?

    Hello Sanjana

    Salesforce Apex Property is similar to a variable, they can validate data before a change is made; they can prompt an action when data is changed, such as altering the value of other member variables; or they can expose data that is retrieved from some other source, such as another class.

    Thank you.

  • suniti

    Member
    July 10, 2018 at 9:57 am in reply to: What are fine grained and coarse grained components in Salesforce?

    Hello Prachi

    Coarse-grained -A few objects hold a lot of related data that's why services have broader scope in functionality. larger components than fine-grained, large sub components. Simply wraps one or more fine-grained services together into a more coarse­-grained operation.
    Fine-grained - More objects each holding less data that's why services have more narrow scope in functionality. smaller components of which the larger ones are composed, lower ­level service

    It is better to have more coarse-grained service operations, which are composed by fine-grained operations

    Thank you.

     

  • suniti

    Member
    July 10, 2018 at 9:48 am in reply to: What is callback URL in Salesforce?

    Hello Madhulika

    It depends on which OAuth flow you use, Callback URL is typically the URL that a user’s browser is redirected to after successful authentication.

     

    Thank you.

  • Hi sanjana

    We can have only one controller at a time either it may be "StandardController" or custom Controller.And we can have as many as extensions we want.

    Thank you.

  • suniti

    Member
    June 28, 2018 at 12:05 pm in reply to: Why can there only be one trigger for each Salesforce Object?

    You can have n number of triggers on single objects, but best practice is to have all trigger event operations into the singe trigger with the if conditions.