• HeatherT
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 7
    Replies
Has anyone received this error trying to login to the spring pre release using the Enterprise WSDL?
I am working on an s-control that will intercept a contact before it is deleted and get the reason for delete.  I am using the following code to format the page using the Salesforce css:
 
<BODY class="contact">
 <DIV class=bPageTitle>  <DIV class="ptBody secondaryPalette">  <DIV class=content><IMG class=pageTitleIcon alt=contact rc="/s.gif">  <H1 class=pageType>Contact<SPAN class=titleSeparatingColon>:</SPAN></H1>  <H2 class=pageDescription>Delete Options</H2>  </DIV></DIV></DIV>
 
When the page renders I see the following for the contact icon:
 
 
Is something not referenced properly?  I am using the following style sheets:
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"  "http://www.w3.org/TR/html4/loose.dtd">  <link href="/dCSS/Theme2/default/common.css" type="text/css"  media="handheld,print,projection,screen,tty,tv" rel="stylesheet" >  <link href="/dCSS/Theme2/default/custom.css" type="text/css"  media="handheld,print,projection,screen,tty,tv" rel="stylesheet" >
Does anyone have any sample code on how to pull dependant picklist values using C#?  My code for the DescribeSObjectResult and my loop through the fields and picklist values works perfectly...I am stuck trying to determine which picklist values are valid for which values on the controlling picklist field.
 
Thanks.
Has anyone received this error trying to login to the spring pre release using the Enterprise WSDL?
    Hi ,

I am trying to call the retrive API of new Metadata spring pre relies 2008 API.My code is

  1.                 binding_MS = new MetadataService();
  2.                 binding_MS.SessionHeaderValue = new         Automation_Tool_1._1.NewMetaSforce.SessionHeader();
  3.                 binding_MS.Url = binding.Url;
  4.                 binding_MS.SessionHeaderValue.sessionId = binding.SessionHeaderValue.sessionId;
  5.                 DescribeGlobalResult aa = binding.describeGlobal();
  6.                 RetrieveRequest RR = new RetrieveRequest();
  7.                 RR.packageNames = new string[] { "testingPack" };
  8.                 RR.singlePackage = true;
  9.                 AsyncResult Aresult = binding_MS.retrieve(RR);
  10.                 DescribeMetadataResult abc = binding_MS.describeMetadata();


But at the retrive  call (bold line in code line 9 ) I get the exception
No operation available for request {http://soap.sforce.com/2006/04/metadata}retrieve

any idea anybody ,please help

Thanks,
Rajan

  • January 23, 2008
  • Like
  • 0
I am working on an s-control that will intercept a contact before it is deleted and get the reason for delete.  I am using the following code to format the page using the Salesforce css:
 
<BODY class="contact">
 <DIV class=bPageTitle>  <DIV class="ptBody secondaryPalette">  <DIV class=content><IMG class=pageTitleIcon alt=contact rc="/s.gif">  <H1 class=pageType>Contact<SPAN class=titleSeparatingColon>:</SPAN></H1>  <H2 class=pageDescription>Delete Options</H2>  </DIV></DIV></DIV>
 
When the page renders I see the following for the contact icon:
 
 
Is something not referenced properly?  I am using the following style sheets:
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"  "http://www.w3.org/TR/html4/loose.dtd">  <link href="/dCSS/Theme2/default/common.css" type="text/css"  media="handheld,print,projection,screen,tty,tv" rel="stylesheet" >  <link href="/dCSS/Theme2/default/custom.css" type="text/css"  media="handheld,print,projection,screen,tty,tv" rel="stylesheet" >
Is there api access to the new tags feature in Winter 08 ?

Message Edited by forceAMP on 10-26-2007 05:58 AM