java - How to create a package in Cognos - SDK? -


i have been trying create package cognos via sdk.

so far good. can created package cannot add datasource package. basicly not anything.

i getting:

ans-mes-0003 server error occurred. unable complete action.

when launching package analysis studio.

if using iis, may not getting underlying issue because iis intercept error. error may bad permissions or corrupt user data, error code returned seems umbrella specifics.

as outlined in troubleshooting page, can see original error setting httperrors passthough. replace:

<httperrors lockattributes="allowabsolutepathswhendelegated,defaultpath">   <error statuscode="401" prefixlanguagefilepath="%systemdrive%\inetpub\custerr" path="401.htm" />   <error statuscode="403" prefixlanguagefilepath="%systemdrive%\inetpub\custerr" path="403.htm" />   <error statuscode="404" prefixlanguagefilepath="%systemdrive%\inetpub\custerr" path="404.htm" />   <error statuscode="405" prefixlanguagefilepath="%systemdrive%\inetpub\custerr" path="405.htm" />   <error statuscode="406" prefixlanguagefilepath="%systemdrive%\inetpub\custerr" path="406.htm" />   <error statuscode="412" prefixlanguagefilepath="%systemdrive%\inetpub\custerr" path="412.htm" />   <error statuscode="500" prefixlanguagefilepath="%systemdrive%\inetpub\custerr" path="500.htm" />   <error statuscode="501" prefixlanguagefilepath="%systemdrive%\inetpub\custerr" path="501.htm" />   <error statuscode="502" prefixlanguagefilepath="%systemdrive%\inetpub\custerr" path="502.htm" /> </httperrors> 

with:

<httperrors existingresponse="passthrough" /> 

in iis config file.

or

  1. list item
  2. stop iis
  3. open iis config file
  4. search <section name="httperrors" overridemodedefault="deny" /> , change deny allow.
  5. look <httperrors> in <system.webserver>. if has lockallattributesexcept="errormode", remove attribute , value.
  6. in command, run %windir%\system32\inetsrv\appcmd.exe set config "<your website>/<your virtual directory>" -section:system.webserver/httperrors - existingresponse:passthrough
  7. start iis.

Comments

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

c# - Selenium Authentication Popup preventing driver close or quit -

tensorflow when input_data MNIST_data , zlib.error: Error -3 while decompressing: invalid block type -