You need to sign in to do that
Don't have an account?
Jim F.ax281
SOAP callouts on behalf of Community users?
Hi,
We have an external SOAP web service. We have several APEX classes that call that service, and have had this in place for a couple of years. We use the standard WebServiceCallout structure to make those calls, and it works for all standard users; these classes and associated VF pages are part of our managed package. Essentially, the SF admin drops our VF page on an Opportunity page layout, and the VF page makes the callout to the web service. We have a new client that uses Communities, and wants to put our VF page on the Opportunity page layout for their Community Partners. However, when they do this, the callout is never made. There are no logs in the debug log, and we have checked all of the permissions we can think of. The callout works for the standard users, but not partners; I've checked, and they're set to call out to the same URL. Does anybody have any suggestions, either as to how we could troubleshoot this, or what the problem might be?
Thanks, Jim
We have an external SOAP web service. We have several APEX classes that call that service, and have had this in place for a couple of years. We use the standard WebServiceCallout structure to make those calls, and it works for all standard users; these classes and associated VF pages are part of our managed package. Essentially, the SF admin drops our VF page on an Opportunity page layout, and the VF page makes the callout to the web service. We have a new client that uses Communities, and wants to put our VF page on the Opportunity page layout for their Community Partners. However, when they do this, the callout is never made. There are no logs in the debug log, and we have checked all of the permissions we can think of. The callout works for the standard users, but not partners; I've checked, and they're set to call out to the same URL. Does anybody have any suggestions, either as to how we could troubleshoot this, or what the problem might be?
Thanks, Jim
Many thanks, Jim
My VF page's controller is declared: public with sharing class PluginPopControllerExtension
There is a single relevant method in the class, called getRelatedContent(). It calls my second Apex class, presearchRV.
My second class is declared: public class presearchRV {
It wraps another class that calls out to my SOAP service, which looks like your standard SOAP wrapper that you see in all of the examples.