Skip to content

Instantly share code, notes, and snippets.

/obiee-wsdl.ps1 Secret

Created September 12, 2015 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/ce7012c99b3eab04df90 to your computer and use it in GitHub Desktop.
Save anonymous/ce7012c99b3eab04df90 to your computer and use it in GitHub Desktop.
Using -Namespace with OBIEE WSDL
# Full Web Service documentation at http://docs.oracle.com/cd/E14571_01/bi.1111/e16364/soa_overview.htm
New-WebServiceProxy -Uri 'http://some-obiee-site:9704/analytics/saw.dll/wsdl/v6' -Namespace MyObieeNS
$mySAWSessionService = New-Object MyObieeNS.SAWSessionService
$session_token = $mySAWSessionService.logon('username', 'password');
$myWebCatalogService = New-Object MyObieeNS.WebCatalogService
$list = $myWebCatalogService.getSubItems('/', '*', 'TRUE', $null, $session_token);
$list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment