• harsha287
  • NEWBIE
  • 10 Points
  • Member since 2011

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

Hi To all,

How to call External(.net) webservice from Salesforce???

& how to use that webservices in APEX classes & triggers????

Thanks,

Krishna.

When I save my Controller, I get: Error: Compile Error: Invalid constructor name: getTeamContact at line 4 column 8
 
I created a custom object: TeamContact__c
In my Page editor, I have the following:
Code:
<apex:page controller="mailListController001" tabStyle="MailingList__c">
<apex:pageBlock title="Mail List Manager - For: {!$User.FirstName} {!$User.LastName}"/>
You have {!TeamContact.id}.
</apex:page>

 
In my Controller editor, I have the following:
Code:
public class mailListController001 {
 TeamContact__c TeamContact;
 public getTeamContact() {
  if (TeamContact == null) {
        TeamContact = [select id from TeamContact__c];
  }
  return TeamContact;
 }
}

 
The page is named ml001
 
I'm trying to KISS, but feeling a bit S
 
Thanks..