Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Yodlee Service URL 404s generally happen because the the URL in fact is incorrect.</p> <p>This can happen because of several reasons. </p> <ol> <li>Either the URL is invalid </li> <li>The Version was not specified in the Service Url (and the functionality you requested is not available in the fail-over API version).</li> </ol> <p><strong>To check if your URL is valid/invalid you need to enable tracing so you can see the exact request url that went out.</strong> </p> <p>If you're on Windows you may find <a href="http://fiddler2.com" rel="nofollow">Fiddler</a> to be very useful for this. (You will need to enable the requirements for <a href="http://fiddler2.com/documentation/Configure-Fiddler/Tasks/DecryptHTTPS" rel="nofollow">sniffing/decrypting</a> SSL Traffic). For other platforms the SDK Guide has some other alternatives. </p> <p>Once you've ensured that the URL is valid the next step is making sure you're specifying the version. </p> <p><strong>Newer API functionality is not available in older API Versions.</strong> You specify the Version in your Service Url URL which determines the functionality that is available to you. Yodlee versions are appended to the Service Page Url in the form of _Major_Minor (12.0 and 11.1) would be _12_0 or _11_1</p> <p><strong>Example:</strong></p> <pre><code>new EndpointAddress(BaseServiceUrl + Name_TransactionDataService + ServiceVersionPrefix) </code></pre> <p>where </p> <ul> <li>BaseServiceUrl is your base Yodlee url (provided by your rep or Yodlee Dev Center) </li> <li>Name_TransactionDataServices is say "TransactionDataService" </li> <li>and VersionPrefix would be your version/sub version in the format of "_12_0" or "_11_1" (12.0 or 11.1).</li> </ul> <p>So your url should look/resemble the following: </p> <pre><code>https://yodleedomain/yodsoap/services/TransactionDataServices_12_0 </code></pre> <p>(I do not append the ?WSDL to the url).</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload