• cpt
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 16
    Questions
  • 12
    Replies

As per the guides it is known that for security reviews it is costed as given below:
$300 for initial review. $150 thereafter for subsequent annual reviews.
i would like to know if i submit a for review within a couple of days after the initial review,will that be costed.

 

Thanks

cpt

Hi,

     Our app has a  hierarchy as Flex-->Apex-->External Web Service and When we call the Apex Web Service we get the fillowing error:

   

     System.CalloutException: Web service callout failed: WebService returned a SOAP Fault: Exception occurred while trying t  invoke service method registerUserForm faultcode=soapenv:Server faultactor=External entry point

 

     In DE it is working fine,We installed the package in Test org and we got the above exception.

 

     can anyone give us a solution for solving this issue.

 

 

 

We have a user role common to the  organization,who can access other users details and modify user objects through our application,so if we are creating a customer portal login for that role will he be able to access our application.

How to write the Test meyhod for ordinary Insertion please can amy one help me ...

 

    YodleeCredentials__c y1=new YodleeCredentials__c();
             y1.UserId__c=userName1;
              y1.Ypassword__c=Password1;
              y1.YuserId__c=YodleeUserId.format();
              y1.conversationSession__c=ConversationCredentials;
              insert y1;   

 

can u explain how to write for this please..

 

I am writing test method for my Apex web service but cant able to get 100% some warnings and 39 % only showing correct hoe to get clear the run test exactly .

 

In some Apex classes 2 lines not tested - showing 93% covered. but In some other classes it showing 19 lines not tested 37 % covered how to do clear and test  exactly  for 100% of classes

I am a admin user, can i have access to triggers inside the package can i modify the triggers related to the objects

How to create array of long values in apex please solve me how to do .

I've seen examples demonstrating how to invoke an Apex Web Service from inside the Ajax toolkit, but these only show simple parameter types

result = sforce.apex.execute('MyClass' ,'methodX',{role:"User", firstname "Joe", lastname "Test");

But what how do you pass complex parameters to the Web Service???

For sake of example, lets say you have the following Apex Class Definitions:

global class MyClass {
    WebService static String methodX(String role, ContactX contact) {
        return (role + ': '+ contact.firstname + ' ' + contact.lastname);   
    }
}


and

global class ContactX {
    public String firstname;
    public String lastname;
}



How would you invoke methodX, passing in an instance of the ContactX class?   I tried the following approaches - but had no luck ...

    result = sforce.apex.execute('MyClass' ,'methodX',{role:"User", contact:{firstname:"Joe", lastname:"Test"} });

    // null values for firstname and lastname are returned


and

    var newcontact = new sforce.Xml("ContactX");
    newcontact.firstname = "Joe";
    newcontact.lastname = "Test":
    result = sforce.apex.execute('MyClass' ,'methodX',{role:"User", contact:newcontact });

    //  soapenv:Client ->  There is no public member called 'firstname' in the Apex class 'ContactX'

Any suggestions?

Thanks,




Hello,
 
I created a package which contained 3 custom profiles and uploaded it to the Appexchange.  I then accessed the package and added it to my Developer acct, but the 3 custom profiles did not load.
 
The package shows it has 94 items, but only 91 were installed.  I haven't seen any other posts with this problem, so maybe there is a step that I am missing?
 
Thanks for the help,
 
LTE