开发者

Integrating java and apex (salesforce)

开发者 https://www.devze.com 2023-01-10 13:19 出处:网络
I\'m a salesforce newbie and I need to integrate java business logic with apex pages. Is it possibile to do it without using vwmforce? Note that开发者_开发百科 I have to include my own and third part

I'm a salesforce newbie and I need to integrate java business logic with apex pages. Is it possibile to do it without using vwmforce? Note that开发者_开发百科 I have to include my own and third party libraries as well. Is there any tutorial/resource about that?

Thanks in advance


You could perform callouts from Salesforce to your separate Java code (as long as it's exposed as webservice or at least can accept HTTP message).

  1. Read about Integration on the Force.com platform, there are many possibilities and examples.
  2. In the API documentation most of the time there are Java code snippets listed, for example for creation of new records (scroll down to the middle of the page, "#" anchors seem to be brokes so I cannot give a direct link).

Generally you can both "push" (send from Salesforce notifications when something happens, synchronously or not) and "pull" data (periodically ask from your Java application for changes or send INSERTS etc. whenever something happens on your side).

But if you want to run your Java on Salesforce server and not on your own machine - tough, vmforce might be the only option. I haven't tried this one yet.

In the end under the Apex, Visualforce etc. there are Oracle databases and Java (with JSP), but I doubt they'll grant access to it ;)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号