My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
did you try multiSelectFieldRef.getValue().getInternalId() and multiSelectFieldRef.getValue().getName()? If that's what you're looking for, I highly recommend putting forth the effort to find a way to monitor your soap, which gives you much better visibility into structure and how things work. one way to do this is with…
-
I don't see where "locationsList" is defined. seems that should be "updateLocations" instead. In general I recommend posting SOAP, it makes it easier for people to help.
-
Andre, Thank you for your detailed posts. Your observations have been correct, and the "maxOccurs" problem of the SubsidiaryList type has been fixed in the 2008_1 schema (in beta, for 2008 Release 1 users). I've filed a bug (defect 140159) for the 2_6 behavior you are seeing. Given the limitation of the schema, the…
-
We do not support Matrix Items through WS in the succinct way that the web browser does, but the information you are looking for is available through the following two step process: 1) (one time only): GetCustomization. Matrix items use custom lists to define the ways they can be sliced. In your case, establish the…
-
Hi Ben, Your assumptions look good. 1) yes, that would work 2) if use is going to be sporadic and somewhat frequent, definitely keep a single session open and re-login in the event of an invalidsessionfault (session timeout). This makes better use of resources than repeatedly doing: login, [activity], logout 3) Yes, you…
-
If I understand correctly you intend to send multiple updates to the same Opportunity record in one updateList operation. If you try it you may get your desired behavior, but I strongly discourage it. Order of appearance of elements often behaves consistently in the application, but we do not specify it in the API because…
-
Hi Tim, your approach is understandable but incorrect, as it reveals a bug in the schema. This field (customList_customValueList_valueId) should not be available for the GetSelectValue operation. the "GetCustomization" method is what you are looking for. The SOAP: <getCustomization…
-
1. CustomerSearchBasic is for constraining your search by customer fields. CustomerSearch is for constraining on fields of other records that are related to the customer you are searching (a "join" search) 2. see searchMore/searchNext operations…
-
having looked a little more into this. Sounds like ADB has problems with extensions and complex schemas, so it's no surprise that the 'type' attribute on an extending complex type is not generating properly. It may also be that with ADB you cannot benefit from 'unwrapped' style of stub generation that allows for the more…
-
Gaëtan, I'm in the process of moving my test client to Axis2. I'll keep you posted on what I find out; should have something in a couple of days. -Christian
-
Another thing: to get IE to show the error string (like firefox): Tools->Internet Options -> uncheck "Show friendly HTTP error messages" The documentation will get updated with this, as well as the url param. The url param was not your problem but could have been and may yet be, so use it.
-
For example, if a user has more than one role, and you want to log in the user to a SalesOrder record in edit mode, but only one of his/her roles allows the editing of SalesOrder, the app may choose the wrong role (based on last session). The user will get an error message from the app.
-
I noticed the role is still set the example role (Administrator). is it correct in your case? If you aren't sure, I think you can ommit it.
-
I tried this as well and ran into problems related to routing; Try appending the url param c=TSTDRV264306 (your acct num) to the post target. Let me know if this solves your problem; we may have to update the documentation. -Christian
-
Yes, what you tried is what I meant. With the original HTML you posted, I get a 400 Bad Request INVALID_LOGIN_ATTEMPT With your HTML plus the url param, I get 400 Bad Request INVALID_LOGIN_CREDENTIALS Which is actually expected, because the password is still "xxxx". I noticed in IE, the HTTP message is not displayed, only…
-
You may have both gotten past your problems by now, but I'll post anyway for the possible benefit of others. aparsa: * amazingly, there is an "add" operation within your soap headers * your other <add> tag does not match it's closing tag and closes before you have defined its attributes. dal_ab: you are using the…