Like what you see? Have a play with our trial version.

Error rendering macro 'rw-search'

null

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Administration Service  allows to manage users and client orgs, and perform Single-Sign-On. These are enabled with any Yellowfin license.
  • Report Service allows to load reports/dashboard definitions, render reports into your interface, etc. This requires a Server license.

 

...

Other Languages  

When developing against Yellowfin Web Servicesweb services, it is possible to generate functional stubs against the WSDL definitions. These definitions can be found at http://<yellowfin-server>:<port>/services, for instance, http://localhost:8080/services.

The functional stubs will allow developers to make standard function calls in their native programming language which will directly communicate with the Web Services web services provided by Yellowfin. The process of creating function stubs should also generate any objects required by the webserviceweb service.

 

Expand
title.Net integration

 

With .NET, we recommend generating stubs from JAX web services. You should be able to hit the JAX web services at: http://<yellowfin-host>/webservices/Hello. It will display something like this:

Connect your clients to the listed WSDL URLs.

 

Note

There may be issues where data types between Java and .Net are not compatible. For example, Integer types that send through zero, rather than null. You might need to manually change the References.cs file to update the datatypesdata types.

 

 

Expand
titlePHP

 

You can use Axis generated WSDL (http://<yellowfin-server>:<port>/services) with PHP. See examples of performing SSO using PHP.

 

...