Jump to content
We've recently updated our Privacy Statement, available here ×

lutfijd

Members
  • Posts

    6
  • Joined

  • Last visited

lutfijd's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. try something like this <parameters> <name>BatchId</name> <value xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:type='xs:int'>52</value></parameters>[/code] <parameters> <name>FiscalYear</name> <value xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:type='xs:string'>2014</value></parameters>[/code] <parameters> <name>fromDate</name> <value xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:type='xs:date'>2014-03-15</value></parameters>[/code]
  2. hey all, I'm unable to pass paramters to report i schedule through rest_v2 api, the report is scheduled correctly, it executes and sends attachment as expected. but when i open the report i can tell the paramters are not set, can you please take a look at the below job xml request and let me know if anything needs to be changed: (NOTE, the paramter is a single value of type Number) (using jasper server 5.2) <job> <baseOutputFilename>ljd_file_name_2</baseOutputFilename> <repositoryDestination> ...... </repositoryDestination> <description/> <label>MyNewJob</label> <mailNotification> ..... </mailNotification> <outputFormats> <outputFormat>XLS</outputFormat> </outputFormats> <outputLocale/> <source> <reportUnitURI>/STAR/_LJD/CashReport</reportUnitURI> <parameters> <entry> <key>BatchID</key> <value>123</value> </entry> </parameters> </source> <simpleTrigger> .... </simpleTrigger> <version>1</version></job> Thanks for the help
  3. Thanks djohnson, but it turns out this is caused by the fact that someone changed jasperadmin password without informing me http://community.jaspersoft.com/sites/all/libraries/ckeditor/plugins/smiley/images/angry_smile.gif ah well, live and learn.
  4. Hey Guys, Before setting LDAP on jasper server 5.2 community edition, user jasperadmin was working fine, I could login and do whatever i want. Now that LDAP is setup, im unable to login as jasperadmin. One of the LDAP users has an LDAP group that maps to ROLE_ADMINISTRATOR, that user logged to jasper and all his LDAP groups were imported to jasper server. does jasper 5.2 CE allow multiple users to have ROLE_ADMINISTRATOR. I scimmed the admin guide and authentication cook book, didnt see anything that alluded to the idea that jasper disallows having 2 ROLE_ADMINISTRAOR users for the same organization. also, dao authentication provider is still enabled, jasperadmin user is also enabled. any help is really appreciated. thanks
  5. Hi Guys, I managed to get LDAP authentication working using applicationContext-externalAuth-LDAP.xml. But i have one concern when creating ldapContextSource, as you can see below a username and password must be providded in order for authentication to work. is there a way to avoid that? <bean id="ldapContextSource" class="com.jaspersoft.jasperserver.api.security.externalAuth.ldap.JSLdapContextSource"> <constructor-arg value="ldaps://xxxxxxxx.xx.xxx.com:636/dc=fox,dc=com"/> <property name="userDn"><value>uid=username</value></property> <property name="password"><value>password</value></property> </bean> Thanks
×
×
  • Create New...