Coder Social home page Coder Social logo

Comments (4)

tquilapratyush avatar tquilapratyush commented on July 21, 2024

I've just modified few more codes in the class generated from tooling wsdl and now its giving me - "System.CalloutException: Web service callout failed: WebService returned a SOAP Fault: INVALID_TYPE: Must send a concrete entity type. faultcode=sf:INVALID_TYPE faultactor="

Request that I've formed now is:

env:Header00D24000000JxJC!AR4AQKVFBz8f81yXxdy_ZrddOFNONhEh5_VNKJGiMfjyW0faAMaUfM0KAEimGnVTnsyHOHbCbQcIfRP3tEWj6zm_hVLr8hFm/env:Headerenv:Body33.0@istest

private class Test_toolingSoapSforceCom {}Test_toolingSoapSforceComtrueTest_toolingSoapSforceComActive/env:Body/env:Envelope

Please could you let me know if I'm doing anything wrong. Thanks in advance for your help.

from apex-toolingapi.

afawcett avatar afawcett commented on July 21, 2024

@dancinllama any thoughts on this?

from apex-toolingapi.

afawcett avatar afawcett commented on July 21, 2024

@tquilapratyush you may in the meantime want to try out the earlier REST based implementation, which was archived in this branch, https://github.com/afawcett/apex-toolingapi/tree/apex-toolingapi-rest

from apex-toolingapi.

tquilapratyush avatar tquilapratyush commented on July 21, 2024

Thanks a lot @afawcett This works like a charm..

To provide more info on my issue:
Intially, I tried something like:
List sObjects = new List();
sObjects = testClassList;
ToolingAPIWSDL.SaveResult[] saveResult = toolingAPI.create(sObjects);
And, then I tried the following, but both of them gave the same exception – Invalid_Type.
List sObjects = new List();
for(ToolingAPIWSDL.ApexClass newTestClass : testClassList) {
ToolingAPIWSDL.sObject_x newSObject = new ToolingAPIWSDL.sObject_x();
String[] tempFieldstoNull = new String[]{};
newSObject.fieldsToNull = tempFieldstoNull; //null
newSObject.Id = null;
newSObject.ApexClass = newTestClass;
sObjects.add(newSObject);
}
ToolingAPIWSDL.SaveResult[] saveResult = toolingAPI.create(sObjects);

from apex-toolingapi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.