Questions tagged [java]
Java is a computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.
403 questions
0
votes
0
answers
69
views
Does Salesforce Pub/Sub API have a Java 8-compatible version?
I am working on a Salesforce integration project that requires subscribing to Platform Events using the Pub/Sub API. Due to constraints, my Java application must run on Java 8 (1.8), using Eclipse ...
0
votes
0
answers
42
views
Pagination for big object 'ActivityFieldHistory' in salesforce fails
We tried a variety of options for this big object 'ActivityFieldHistory'. Many failed attempts.
We use this library https://github.com/jesperfj/force-rest-api to execute the following query.
SELECT Id,...
0
votes
0
answers
48
views
Set custom serverURL when consuming Salesforce enterprise wsdl from Java
We have a SOAP integration from a Java-based application towards Salesforce. The Java app uses a jar file generated from the enterprise WSDL to connect to Salesforce. Before, the application used to ...
0
votes
0
answers
662
views
DataLoader not working
I have installed the DataLoader v63.0.0 from this link and also installed the current latest JDK/JRE:
When running the dataloader.bat inside the installation folder, it did not work:
At the %...
1
vote
0
answers
147
views
JWT flow give {"error":"invalid_grant","error_description":"user hasn't approved this consumer"} for scratch org
I have a test connected app setup in my scratch org with api, refresh_token and required scope enabled. I also added admin approved profiles and permission set to the connected app.
I have three users ...
1
vote
1
answer
328
views
In APEX, is it possible to add content inside a BLOB?
I have a piece of JAVA code as follows:
public static byte[] PackFile(String file) throws IOException {
File f = new File(file);
if (f.exists()) {
String fileName = f....
2
votes
0
answers
66
views
Heroku Quick Start is not creating an App from Salesforce
I am having a weird issue when I try to create a Heroku App from my Canvas App Previewer in Salesforce. I have already registered on Heroku and added my Billing details. Now I navigate to Canvas App ...
0
votes
1
answer
184
views
Updating ProfileRecordTypeVisibility using updateMetadata API
I am trying to selectively update the record type visibility of a particular record type for a particular profile.
Would the updateMetadata api be able to do this?
https://developer.salesforce.com/...
0
votes
1
answer
88
views
Getting profile permissions using readMetadata() API call
I would like to retrieve the recordTypeVisibilities for all the record types for a particular profile. Is there a way to achieve this using the readMetadata() API call instead of doing a file based ...
1
vote
1
answer
322
views
Error while building on Android (class file has wrong version 61.0, should be 55.0). (React Native)
I need to release an updated version of my app. Everything was working fine until two weeks ago when I could build it without any issues. However, yesterday when I tried to build it again, I ...
1
vote
1
answer
188
views
Java force-tooling-api pom dependency is not available anymore
Trying to add the "Force Tooling API" dependency to my java project from the https://mvnrepository.com/artifact/com.force.api/force-tooling-api/32.0.0 repo:
<!-- https://mvnrepository.com/...
0
votes
1
answer
157
views
How can I test Sandbox related functionality without using Production itself as my test environment?
I am trying to build tooling around sandbox management but pretty much got stumped by how I would even test this without using Production.
My client app is intended to be build on Java and using the ...
0
votes
1
answer
588
views
Unable to customise Android notification
I have implemented the React Native SDK and I am successfully receiving push notifications on both platforms.
The problem I am having is that, on Android only, the notification builder seems to be ...
0
votes
0
answers
87
views
How to use AggregateResult in java code using Partner wsdl of salesforce
Query: Select count(id) from Account
When i execute the above query using java code I am unable to fetch the records it gives null value whenrun through java code. From the following link https://...
0
votes
2
answers
599
views
Future method executing (success), but not working
I bulk-updating phone numbers on objects, following method working on single or multiple numbers, but when I delete conditions in query for low amount of records, its exception CPU time exceeded. So I ...
0
votes
3
answers
11k
views
Java runtime error for JDK 17 on VS Code
I keep getting the below message but I have checked and set up the path in Java: Home to the path mentioned in the below message ("salesforcedx-vscode-apex.java.home": "C:\Program Files\...
1
vote
2
answers
795
views
Class level object initialization throws NullPointer Exception
I have two public classes class A and class B in two different packages.
So when I try to initialize class B inside class A, it throws a null pointer exception. Something like :
public class A {
...
0
votes
1
answer
784
views
Performing a record retrieval via WSProxy in SSJS
In my data extension, I have two fields / columns:
JobID
DE_NAME
In this use case i want to receive the value for JobID and DE_NAME (1st row only)
var queryAllAccounts = true;
var cols = [&...
0
votes
1
answer
649
views
How to target a retrieved data extension in a FOR LOOP while using WSProxy
Currently, I am using the following approach to define my Data Extension
Platform.Load("core","1");
// instantiate the WSProxy object to make API calls
var api = ...
0
votes
1
answer
119
views
How to know AccountTeam in Salesforce is enabled or disabled through any API with Java?
Java Code: I have coded the following using REST API to connect to Salesforce. Following code is from the URL to get Schema or fields of AccountTeamMember (standard) object after establishing ...
1
vote
3
answers
1k
views
Get values from nested JSON dictionaries in Apex
I'm trying to make use of the Jira Rest API from within Salesforce. I am somewhat useless with Java, so hopefully someone can point me in the right direction.
I can use the following Apex to get an ...
-3
votes
1
answer
6k
views
How to add many values at once in Apex? [closed]
I have a list like that:
List l = new List();
l.add('a');
l.add('b');
l.add('1');
l.add('2');
l.add('3');
How can I add all those values at once without using so many add methods?
In Java we can do ...
-1
votes
1
answer
118
views
Not able to create partner jar
Please note I have checked previously posted questions related to this topic, but my issue is not resolved. All the related and required jar files are in one folder (C:\SOAP) and I run below command, ...
1
vote
0
answers
150
views
Fails to update ContentVersion with Java SOAP API
I am querying some records of type ContentVersion, changing Title then updating that records through
ContentVersion contentVersionToUpdate = new ContentVersion();
contentVersionToUpdate.setTitle(...
2
votes
2
answers
337
views
Lombok for Salesforce Apex
I'm looking for some solution, which helps me to write less code in Apex.
Is there any tool like Lombok for Java.
0
votes
0
answers
716
views
WS security to SOAP request header from java client
I am trying to connect to Salesforce from java client using SOAP api. All the examples in the documentation point to a using ConnectorConfig class to connect from java. However I need to set wsse:...
1
vote
1
answer
1k
views
Convert code snipet from Java to Apex
I am trying to do an api call and am getting a 403 error. I am putting the apex code below that is getting the 403 error. We opened a ticket with the company that we are sending the callout to and ...
0
votes
1
answer
234
views
Upgrading dataloder salesforce on macos for the log4j
I am trying to upgrade the dataloader to mitigate the log4j vulnerability.
I have tried to follow the steps on the github repo but i am getting this error trying to build with "./dlbuilder.sh -n&...
-2
votes
1
answer
162
views
Need Help on Encryption and decryption logic [closed]
I wanted to write exact below java code in apex. I am aware of EncodingUtil.base64Decode() and Crypto class method in SF. But this byte array and Cipher, etc , am not aware of it.
class Encyrpt{
...
1
vote
0
answers
2k
views
Using Mutual Authentication and I receive 403 Forbidden error from Salesforce API
I have set up Mutual Authentication on my Salesforce org so that my project can use two ways SSL with Salesforce. Here are my steps:
1- I use a CA sign certificate (GoDaddy) and upload it to the Set ...
1
vote
1
answer
2k
views
What's wrong at setting Java Home in Visual Studio Code for enabling Apex Tests?
I wanna enable Apex Tests in my workspace in VS Code, but I am unable to find out what is wrong.
Here are my possibilities:
Here is the setting that I am putting...
{"salesforcedx-vscode-apex....
0
votes
1
answer
135
views
Heroku fails to build Java application with XSL transformation
I have just attempted to deploy onto Heroku a change to my Java 8 application, which includes an XSL transformation. The deploy fails because the Maven build fails, with the message:
cannot find ...
0
votes
1
answer
367
views
How do I assign a output from a get method to 'accountId'
I'm struggling to find a way to set my accountID value to the returned value of my get parentAccountName() method.
The method works and returns the value successfully, but when trying to assign it to ...
1
vote
1
answer
249
views
Update an object - SOAP API /Selenium Java
I've faced an issue. I'm trying to create a method to update a requirement in Salesforce. (I'm using Selenium - Java) and I have the following error. " The method update(com.sforce.soap....
0
votes
1
answer
289
views
Can I upload Java class as a Jar file in Static Resource and use that Java class components in Apex class?
I have piece of code in Java language, I need to use it in apex class. Let me know if I can upload Java class as Static Resource and use it in Apex class?
0
votes
1
answer
358
views
How to read apex classes from outside java application?
Need assistance with how can I read apex class lines? which API should I use for accomplishing this REST or SOAP? Please help.
1
vote
0
answers
190
views
Convert decoding from JAVA to apex
I have a method that was implemented on JAVA, but I need it in Apex
public static String decryptAccountInformation(String websitekey, String document,String encryptedAccount) {
String key = ...
0
votes
1
answer
205
views
What's the best way to pull all the Metadata types from the Salesforce?
I have used describeMetadata() call to fetch the xml names but it's showing only few out of what we have in the Metadata coverage url. I was wondering if there is a way to pull all the Metadata types ...
5
votes
1
answer
1k
views
Data Loader on MacOS - java.lang.NullPointerException with Zulu/OpenJDK 11
Last login: Thu Aug 27 14:29:01 on ttys000
/Users/vamshikrishna/dataloader/v49.0.0/dataloader.command ; exit;
vamshikrishna@MacBook-Pro-6 ~ % /Users/vamshikrishna/dataloader/v49.0.0/dataloader.command ...
0
votes
1
answer
99
views
Mismatch in custom object field count in rest api and salesforce UI
I have a java codebase for performing CRUD on salesforce as an rdbms db. I was looking at the response on my rest api and that on SF setup UI of a custom object that I create in object manager. I have ...
0
votes
1
answer
942
views
Usage of salesforce bulk api for integration with java using rest
I am new to salesforce, hence this long post. I wanted to create a java app to do CRUD on salesforce. I have followed the rest api tutorial, and created app for fetching data from salesforce using ...
0
votes
1
answer
120
views
not able to get FaultString in soap api JAVA
I am trying to get faultstring from SoapFaultException class but can only get faultcode but not faultstring. Code snipped :
public static Object querySf(String query , PartnerConnection pc) throws ...
0
votes
1
answer
242
views
How to create a records as another user with Salesforce OAuth AccessToken
Am able to create the records as an admin using the OAuth access_token. But, here I need to create a record as another user with the OAuth access_token.
Could you please share the sample code.
Thanks ...
0
votes
2
answers
440
views
How to retrieve status of an Automation using Java FuelSDK
I'm using Java 8 with FuelSDK and am trying to retrieve some Automations but can however not wrap my head around how do it. I am able to fetch the DataExtensions using the following code:
...
0
votes
2
answers
176
views
Optimization of code removing extra if and else block
I need to remove the extra if and else loop as per the req and need to make it short for reading of the code should be easy.
can anyone suggest some better for below:
if (data[0].FA_N__c) {
...
0
votes
1
answer
153
views
Lightning Web Component findIndex [duplicate]
Hi I need help with the method that follows:
var ages = [3, 10, 18, 20];
function checkAdult(age) {
return age >= 18;
}
function myFunction() {
document.getElementById("demo").innerHTML = ...
0
votes
1
answer
1k
views
Javascript ternary operator
I need to set a constant value as true or false for the particular scenario not sure correct working or not
const test = data.findIndex(d => d.Fname === '' && d.Lname === '') < 0 ? false ...
0
votes
0
answers
166
views
How to use ETDataExtension / ETResponse / ETConfiguration by Salesforce Marketing Cloud Java SDK
I need to download more than 2500 Rows from tables of Salesforce Marketing Cloud with following code(for ETSubscriber):
ETConfiguration configuration = new ETConfiguration();
configuration....
1
vote
1
answer
565
views
Check if a substring is repeating in a string
My requirement is to find if a unknown string of 4 chars is repeating of a string of length 16.
So basically, INPUT : "shgtHellorhecHello" Should return true.
Only known thing to us is that the ...
0
votes
1
answer
155
views
Salesforce Marketing Cloud download API Biggest Table
I'm trying download, for Soap calls, tables of Salesforce Marketing Cloud with 1 million or more rows but the process is very slowly.
For each download I can only get 2.500 records, ok.
I have used ...