Adding rights to forms programmically or thru command line

We have the reader extension 7.0 and it comes with the web interface to add rights one file at a time. I checked the API and still not sure where to start. If somebody can shed more light I'll appreciate it. Also do I need other components to develop API.. we host our reader extension in Solaris 10. Many thanks.

You can use the Java API to do it. See the developer_guide.pdf and api_reference.pdf that comes with the product.
Chris
Adobe Enterprise Developer Support

Similar Messages

  • Web Application Status thru Command Line!

    Hi,
    How do i find the status of web application thru command line?
    I dont find a direct and easy way to get to know the status of a web application. In websphere it was straight forward. Any help from BEA team would be really appreciated
    Regards,
    C R baradwaj

    Hi Satya Ghattu,
    We have a requirement wherein we wanted to manage the start and stop of web application without using the weblogic server console.
    If I stop the web application from the console it shows the web application status as unavailable. I want to retrieve the status of the web application that is shown in the console from a command line utility or thru a java program.
    Any sample program or a command line utility will be very very helpful.
    Waiting for your earlier response. I understand from other source of information that WLST is the way to go. If I can get some source code for the same will be REALLY appreciated.
    Many Thanks in Advance,
    C R Baradwaj

  • Adding Views/Folders thru command line

    Hi --
    I am just wondering whether i can add views and create folders on those views from command line for a business area.
    Any ideas?
    Thanks
    Anil Chada

    Have you checked the Java Command line utility. It has lot of administration commands.
    regards
    http://www.infocaptor.com <--- Create your own intelligence

  • ERR file produced thru command line compile

    I'm trying to compile Oracle6 and Oracle9i forms thru the command line. Fmx files are created but so are err files. Upon inspection of the err files, it just states that there are no compilation errors. So this means that the fmx files are created correctly.
    Is there a way for the Oracle6 form compiler (ifcmp60.exe) and the Oracle9i form compiler (ifcmp90.exe) to suppress the creation of err files if there are no compilation errors ?
    thanks.

    No they will always be created. To check if there is a error with the compile you should check the DOS %ERRORLEVEL% value and if that indicates a non zero value then look at the .err file.

  • Passing user defined parameters in oracle reports thru command line

    Hi All
    We are currently using Reports 6i with Oracle 10g 10.2.0.4.0
    I would like to know that is it possible to pass user defined parameters values while calling report from command line.
    For Example: I am using following coding to call report from command line.
    for /f "tokens=1-3 delims=/ " %%a in ('date /t mm/dd/yyyy -1') do (
    set mm=%%b
    set dd=%%a
    set yyyy=%%c)
    rwrun60 report=c:\reports\banks.rdf userid=express/test@test_rs2 destype=FILE desname=c:\reports\banks%dd%%mm%%yyyy%.pdf desformat=PDF BACKGROUND=NO BATCH=YES
    The report contains some user defined parameter which is using in where condition of reqport query.
    Select * from banks
    where id = :Bank_ID
    Now I want to Pass value for :Bank_Id from command line (like we pass parameter list while calling report with run_product), how it is possible?
    Thanks
    Hassan

    Hi guys
    Fortunately I am able to perform the required task as I just added the report parameter field as follows:
    rwrun60 report=c:\reports\banks.rdf userid=express/test@test_rs2 destype=FILE desname=c:\reports\banks%dd%%mm%%yyyy%%h%%mi%%ss%%ts%.pdf desformat=PDF BACKGROUND=NO BATCH=YES ERRFILE=c:\reports\error.log LOGFILE=c:\reports\joblog.log bank_id='MCB'
    bank_id is the report parameter using in where clause.
    Regards,
    Hassan

  • Compiling Forms & reports 9i in command line

    Hi All:
    Can we compile forms and reports developed in 9i using the command line rather than opening a form and compiling it. If it possible to compile whole of the .fmb file in a command line.
    Any syntax or the documentation on this issue would be very helpful
    Thanks

    I recommend you to post this topic in Form Forum
    Forms
    Joel P�rez

  • Prevent Startup Form from Loading using Command Line Arguments

    Hi there
    I'm developing a VB.NET windows forms application in VS2013.
    The application will have 2 ways of being executed, one being by the user manually and the other being automated by the task scheduler.
    When executed by the task scheduler, command line arguments will be used so that the application is aware that it is being run automatically and not by a user.
    My problem is that I want the startup form to load when run by a user but I don't want it to load when it is run automatically, I just want to execute code.
    Is it possible to prevent the startup form from loading by using the commandline arguments from the MyApplication_Startup event?
    Cheers

    Hi Aureuz,
    >>Is it possible to prevent the startup form from loading by using the commandline arguments from the MyApplication_Startup event
    It is impossible to accomplish it in the MyApplication_Startup event, we can use Form.Shown event:
    #Form.Shown Event
    http://msdn.microsoft.com/en-us/library/system.windows.forms.form.shown(v=vs.110).aspx
    If we start a form by using the commandline arguments, the count of CommandLineArgs will be above one, if so, use Me.Hide() method to hide this form.
    Private Sub Form1_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
    Dim args As String() = Environment.GetCommandLineArgs()
    If args.Count > 1 Then
    Me.Hide()
    Else
    Me.Show()
    End If
    End Sub
    You can also uncheck "Enable application framework" on the project properties application tab and select your startup object to a module object:
    Module Module1
    Sub Main()
    Dim args As String() = Environment.GetCommandLineArgs()
    If args.Count > 1 Then
    'Run your background code
    Else
    Dim f As New Form1
    f.ShowDialog()
    End If
    End Sub
    End Module
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • PM3 programmer communication without command line EXE

    Hello All,
    We are using a PM3 programmer for ICSP in our ATE by using the command line option provided by Microchip. We could succesfully solve the task using USB communication.
    But, to reduce some more command line execution time, instead of command line option we are planning to communicate with the PM3 directly by using the protocol details supplied by Microchip
    To reduce our development time, we want to use the already developed PM3 programmer protocol interface driver VIs, if available .
    If any of you have tried this option earlier, pls provide your suggestions.
    thanks.
    Krishna

    Krishna,
    I'm afraid I don't have any experience in that area, so I can't be of much help.  However, there is some discussion in the thread
    How can I control PIC programmer with LabVIEW which you may find helpful.
    Regards,
    Devin K
    Systems Engineering - RTT & HIL

  • Invoking Forms 6i application from command line with parameters

    Hi,
    I have a java application that requires to start up and execute an existing Forms 6i application.
    I am not a java person, and I could not find any help regarding this. If anyone knows how to execute an fmx(6i) from within a java application, then please let me know. The java application has to pass in parameters so that the the Forms application opens up with the correct data.
    One alternative suggested was that the java application execute a command line invocation of the Forms application. I am looking for the correct and complete syntax to do this. The fmx can be invoked from the command line with the following entered at the dos prompt -
    c:\>OraFrm6i\Bin\ifrun60.exe<module name> <userid/password@db>. This works fine and the Forms application is executed.
    The requirement is to pass a couple of user defined parameters to the Forms application which can be used by it to query the database and display the correct information when it opens.
    Any help on this would be greately appreciated.
    Thanks
    Shailesh

    Shailesh,
    Create a parameter in your form - eg. COUNTRY_CODE and add any startup code.
    Then add the parameter to your command line (or put it in a *.bat file)
    c:\>OraFrm6i\Bin\ifrun60.exe<module name> <userid/password@db> country_code=UK
    JR

  • Schedule workbooks thru command line

    hi,
    how do we schedule workbooks thru unix command line?
    Thanks

    Hi,
    Well you can use windows task manager or another third party scheduler to run Discoverer exports on a windows workstation. You can search this site for information on how to do this.
    You can then use a unix command to send the details of the workbook to the workstation. One way to do this would be for the script running on the windows workstation to obtain the list of workbooks, worksheets, parameters etc that need to be scheduled from a custom database table. A unix command could then be used to add rows to the table which the workstation would then read and run the exports.
    How you do this depends on what output you want to generate and how you want to deliver that output to the users. You can find an article on my web site (www.cabotconsulting.co.uk) that describes how to schedule Discoverer reports using the Applications concurrent manager. This method also uses a custom table to hold the reports to be scheduled.
    Rod West

  • MS Access to oracle 10g Migration thru command line/script?

    Hi,
    Is there a command line for executing OWMB?..One of the customers currently using multiple databases of Access DB are interested in migrating to Oracle but they want the migration process to be very simple...For ex: On the click of a button or if there is something like silent mode migration through some command..
    Any help is greatly appreciated.
    Thanks,
    Veena

    Hi Veena,
    There's no command line or silent mode migration facility to run the workbench.
    However, the workbench does that have capability of migrating multiple MDB files in the one operation. Using the Exporter Tool for MS Access, which is shipped as part of the OMWB install, the user can select multiple MDB files to export. For each exported MDB file, an associated XML file is generated by the Exporter tool, which contains the database schema information for the MS Access database. The user can then load up all of these XML files, via a wizard, into the workbench, and carry out their migration. The ability to export & migrate multiple database in the one operation should greatly reduce the customer's migration time.
    I hope this helps.
    Regards,
    Hilary

  • Adding Wireless Profile XML In TS or Command Line in SCCM

       I have exported my wireless profile to an XML file and have created a package and tried from the command line in TS but keep getting errors (0x00000001 or 0x80004005). The command line I've been using is netsh wlan add profile filename="<Profilename>"
    I have to be missing something. Does anyone have any ideas?

    Now I'm with you :)
    My way of doing it is that i have my scripts included in the toolkit package (we do use integrated MDT). 
    Therefore i need a use toolkit befor i riun my script. 
    After that I just use a run command line step with Cscript.exe "myscriptname".
    Sccm is running as system so it should have all permissions it needs.
    By the way, you are not trying to do a gpupdate by chance? That will not work (at least not in 2007)

  • Deploy an EAR file thru command line?

    I have been able to deploy the Petstore.ear file from
    the 10G AS Deploy EAR file option in the Server admin console.
    Now how do I to run this ear via the command line ?
    Any suggestions please?

    In ias9041 enterprise, I do
    $IAS_HOME/dcm/bin/dcmctl deployapplication -a myapp -f /root/myapp.ear -co home
    $IAS_HOME/dcm/bin/dcmctl redeployapplication -a myapp -f /root/myapp.ear -co home
    $IAS_HOME/dcm/bin/dcmctl undeployapplication -a myapp -co home
    I don't use the OEM at all. I do everything in command line with dcmctl and opmnctl. Read oracle's doc for more info.
    Ken

  • Executing system command thru command line by passing it to a server

    Hello,
    I would like to know if there is any way by which I can call a system command through a java program . This system command takes parameters. If yes then how do i pass these paramaeters. This program will be called thru a sheel scripts and the parameters may vary...

    If I just look at the question in your post, I would say the answer is to call Runtime.getRuntime().exec("the system command"). But the title of the post mentioned passing it to a server; I won't attempt to answer that without knowing what it's all about.

  • Registering sunone5.2 instance on dscc7 console thru command line

    Hi,
    We migrated our existing sunone 5.2 server to new ODSEE11g servers,
    I was successfully able to register all the 11g -Instances in DSCC using the "./dsccreg add-server" command, the reason I used ./dsccreg command was because some how our console wasn't able to take the credential for registering,
    Is there any way/command (apart from console) by which I can register my 5.2 Instance on DSCC, we have set up the replication, apart from 5.2-Instance all other 11g Instances are registered under DSCC.
    Thanks,
    Kiran.

    I don't believe it's possible to fully register 5.2 on DSCC because DSCC relies heavily on Cacao to communicate from the DSCC to the DS & DS 5.2 does not have support for Cacao.
    The best I've seen it do is to show the 5.2 server in the console when you have a replication agreement, but I haven't been able to get it to register due to Cacao not being installed.
    Also we are in the same boat as you with having 5.2 & 11g running simultaneously. I'm curious if you could share any or your setup.
    So far I've been able to get 11g & 5.2 replicating (multi-master) to each other both ways. Things seem to be working fine, but I have thus far not been able to work out a way to get "passwordretrycount" to replicate. I'm currently looking at writing a script to do this, but haven't decided on the best way to do it.
    Are there any issues you have run across? or anything you've been able to tackle that you can share?

Maybe you are looking for

  • Issue with Session ID during POST

    Hi All, I am using Weblogic server version weblogic 9.2 and facing an issue with the session ID. I have a client side script with numerous GET calls and one POST call that it makes in a single session. Frequently I come across with issue that the ses

  • Re: Satellite 1900 - Need XP drivers

    Hi, We have a Toshiba Satalite laptop that does not have any driver cd's its Model Number - PS192E-00G1N-EN There seem to be no drivers on Toshiba europes website for this model, can anyone help please? Thanks in advance

  • AnyConnect SSL Client issue with Mac OS X

    Hello this seems to be a very common issue with AnyConnect working on Mac OS X. A lot of random sites talk about this. I have a Cisco 2801 running IOS 12.4(22)T (ADV ENT SRV) with AnyConnect 2.3 package installed. From Windows I can connect without a

  • Sending notification from MDB to MBean

    Hi Is there a way I can send a notification to an MBean from an MDB? I have a MessageDrivenBean that is listening to a queue. Any message on the queue need to be fwded to the MBean. MBean and the MDB, both are in a jboss sar. The version used is 4.2.

  • How to access an element using its name or id if it is not a class variable?

    I am trying to retrieve the element I added to my UI in a different  function. I am using actionscript 3. I know I can put the variable into a  class variable, so it can be access anywhere in the class, but I have  too many elements. Is there anyway