• idan
  • NEWBIE
  • 25 Points
  • Member since 2011

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

Hi all, 

 

After create apex class using wsdl2apex and call the WS I getting the next FATAL_ERROR  : 

FATAL_ERROR System.UnexpectedException: Got an unexpected error in callout : Unable to parse header namesapce MultiTenant=http://www.tibco.com/schemas/bwBttrPlc/XmlSchema/General/MultiTenancy?version=1.0.2000. Contact support with error ID: 1346355929-9628 (-892158162)

When I remove the "?version=1.0.2000" from the namespace there isn't any error (but the WS is not working )

 

the question is :

is the namespace  "MultiTenant=http://www.tibco.com/schemas/bwBttrPlc/XmlSchema/General/MultiTenancy?version=1.0.2000" not valid in salesforce .

 

in addition :

  • using SoapUI the call with this namespace is working
  • grab the call from SF using  requestb.in add the "?version=1.0.2000and use SoapUI make the call work fine 

Any help will be appreciate.

  • July 12, 2012
  • Like
  • 0

hi all 

can some1 help me : 

 

i want to put Lead's history, content and related content relatedList in a tab .. but i can't 

i use this code :

 

<apex:page standardController="Lead" showHeader="true" tabStyle="Lead" >
<apex:tabPanel switchType="client" selectedTab="name2" id="theTabPanel"> 
<apex:tab label="LeadHistory" name="LeadHistory" id="tabLeadHistory">
    <apex:relatedList subject="{!Lead}" list="Histories" />
</apex:tab> 

 

<apex:tab label="Leadcontent" name="Leadcontent" id="tabLeadcontent">
    <apex:relatedList subject="{!Lead}" list="content" />
</apex:tab> 

 

   </apex:tabPanel>
</apex:page>

what is the relatedList relashionship currect use  ? 

TNX.

  • September 21, 2011
  • Like
  • 0

We have two custom objects, both of which have the exact same custom fields in them; however, admins will be able to make additional custom fields within these objects, so we won't know the names of the fields themselves in advance.  So, we describe the origination object, grab all the fields, and do a query to find the records we want to create and add them to a List.

 

That works just fine.  Now, however, we want to insert these found records into the destination object.  For now, we can make the assumption that through business rules, the admin knows that both the origination object and the destination object must have the same field names with the same field types...essentially, identical fields.

 

How can I take the results in my origination object query and insert them into the destination object?

Hi all, 

 

After create apex class using wsdl2apex and call the WS I getting the next FATAL_ERROR  : 

FATAL_ERROR System.UnexpectedException: Got an unexpected error in callout : Unable to parse header namesapce MultiTenant=http://www.tibco.com/schemas/bwBttrPlc/XmlSchema/General/MultiTenancy?version=1.0.2000. Contact support with error ID: 1346355929-9628 (-892158162)

When I remove the "?version=1.0.2000" from the namespace there isn't any error (but the WS is not working )

 

the question is :

is the namespace  "MultiTenant=http://www.tibco.com/schemas/bwBttrPlc/XmlSchema/General/MultiTenancy?version=1.0.2000" not valid in salesforce .

 

in addition :

  • using SoapUI the call with this namespace is working
  • grab the call from SF using  requestb.in add the "?version=1.0.2000and use SoapUI make the call work fine 

Any help will be appreciate.

  • July 12, 2012
  • Like
  • 0