Is it possible to encode pll source code

Hi,
I wanna to make pll crypted, so it may be used by developers with in forms but not be seen.
May I encode pll so, form design time it could be used
Thanks
(plx is just runtime, not at design time)

You can use wrap.exe to encode text file with pl/sql. Then you can copy the code (preferable package) into a PLL.
wrap.exe iname=<input file> oname=<output file>
wrap.exe (may be wrap80.exe) version should be from your forms installation.
There are suggestions to wrap your code inside the database... Well, this will work if your code is using pure pl/sql without any forms-specific routines.
Sometimes people need to encode stuff, especially for out of shelf products. I also wouldn't use wrapped code in my forms but if the end product is commersial and not for developers I would wrap the sleek functionality (well, it happened just once in my 10 years forms experience).
Hope this helps.

Similar Messages

  • Is it possible to see the source code

    is it possible to see the source code when u know the transaction code for the same?

    hi Dhakshu,
    it possible,
    u run the t.code and there go to system-> status, there u can see the prog name for tht t.code, u double click on tht , u get the source code for thr t.code
    \[removed by moderator\]
    regards,
    chandu
    Edited by: Jan Stallkamp on Jun 25, 2008 1:17 PM

  • Is it possible to debug coldfusion source code remotely

    Is it possible to debug coldfusion source code remotely, if
    so can you do it at the same time as debuging a flex app
    remotely(which I can do already)

    What do you mean by "remotely"?

  • Is it possible to hide your source code?

    Hi have client who is quite design savvy and wants me to hide the source code for their website.  Is this possible?

    A google for 'hiding source code' came up with this list:
    http://www.google.com.au/search?q=hiding+source+code&ie=utf-8&oe=utf-8&aq=t&rls=org.mozill a:en-GB:official&client=firefox-a
    I'll let you sort through it  :-)  Or even better, let the client go through it, he can choose a solution so if something goes wrong, he can't blame you  :-)

  • Is it possible to get the source code of sun package in JDK1.4?

    If i want to review the code of the HTTP protocol handler and some other things.
    how can i get the source. or is it possible?
    thank you.

    See this post if you can figure out something out of it ....
    http://forum.java.sun.com/thread.jsp?forum=31&thread=391451

  • How to compile mixed encoded Java source code?

    Hi, everyone,
    I have .java files, one (file1.java) is encoded ASCII, the other (file2.java) is encoded Unicode. I can compile each file by using
    javac file1.java
    javac -encoding Unicode file2.java
    But I'd like to compile them together in one time. Is there any way to do that?
    Thanks,
    Hong

    make them both unicode or both ASCII.Thanks, that's one option.
    Is there any other way to compile those mixed encode sources without encoding conversion?
    Thanks,
    Hong

  • How to view the source code of JavaFx component ?

    Hi everybody,
    I just want to know if it's possible to view the source code of the component Button (from JavaFx) and how to do it ?
    In fact, I don't really understand if JavaFx is entirely open source ?
    Thanks.

    I lack time right now to experiment, but I think you can get your goal just with CSS.
    Here are the variables I found for Button:
    Button
    borderFill: class javafx.scene.paint.Paint = (null)
    button: class javafx.scene.control.Button = Button
    colorBrightness: Float = 0.8156863
    cornerRadius: Float = 7.0
    fill: class javafx.scene.paint.Paint = (null)
    focusFill: class javafx.scene.paint.Paint = javafx.scene.paint.Color[red=0,green=147,blue=255,opacity=1.0]
    focusSize: Float = 1.4
    highlightFill: class javafx.scene.paint.Paint = (null)
    label: class javafx.scene.control.Label = LabeledImpl [id=-Label]
    paddingBottom: Float = 4.0
    paddingLeft: Float = 10.0
    paddingRight: Float = 10.0
    paddingTop: Float = 4.0
    shadowFill: class javafx.scene.paint.Paint = (null)
    textFill: class javafx.scene.paint.Paint = (null)
    textFont: class javafx.scene.text.Font = Font[name=Verdana, family=Verdana, style=, size=11.0]Try changing cornerRadius and focusFill/highlightFill, etc. Note that some discovered properties are not affected by CSS... Perhaps that's why there isn't an official doc about CSS styling currently.

  • How to encrypt the source code of stored procedures ?

    Is it possible to encrypt the source code of the stored procedures so no one can read the content. I want to deliver a compiled code not the source
    Database 8i and later
    thanks in advance

    Wrap Utility<br>
    <br>
    Nicolas.

  • How to see the source code in the API?

    Is it possible to see the source code for the String class in the Java API 1.4.2 somehow?

    one of the IDE's I have is GEL (gexperts.com), all you do is
    Search/Go To Class/
    select the class String, and the source code is displayed.
    pre-requisite is you have to specify the location of the api docs on your pc when
    installing GEL

  • View source code of UDF's and Standard Functions

    Hi Friends,
    Is it possible to view the source code written in the UDF's and Standard Functions.
    If possible please enlighten me.
    Thanks,
    Swapna.

    Hi,
    I dont think u can view the src code for Standard function but try this.
    While holding down "ctrl" + "shift" + "0" key click on the standard function.See if u can export it and check for some src
    code
    Regards,
    Shabari

  • Procedures/packages security. Hide source code?

    Hi.
    I was wondering if it is possible to hide the source code of a procedure for a user or avoid him to recreate it, but let him to execute it.
    Im doing a sandbox procedure who edit and run an external job. It works fine but I see a bunch of security holes. If any DB user who can execute that procedure can edit it too, they could run any shell command by changing the external job attributes. I could use credentials (11.2.0.2) and somehow limit the system user to specific commands but I want to fix the security hole by limiting the DB user instead limiting system user.
    This is the external job
    BEGIN
    DBMS_SCHEDULER.CREATE_JOB(
    job_name => 'test',
    job_type => 'EXECUTABLE',
    job_action => '/bin/sh',
    number_of_arguments => 2
    DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE (
    job_name => 'test',
    argument_position => 1,
    argument_value => '-c'
    DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE (
    job_name => 'test',
    argument_position => 2,
    argument_value => '/bin/date>>/tmp/date.log'
    END;
    / And then, the procedure.
    CREATE OR REPLACE PROCEDURE TEST_DATE_FILE ( new_file IN varchar2 )
    IS BEGIN
    DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE (
    job_name => 'test',
    argument_position => 2,
    argument_value => '/bin/date>>/tmp/' || new_file
    DBMS_SCHEDULER.RUN_JOB(
                                    job_name =>             'test',
                                    use_current_session =>  TRUE
    END;
    SQL> conn scott/tiger
    Conectado.
    SQL> exec TEST_DATE_FILE('newfile.log');
    Procedimiento PL/SQL terminado correctamente.
    SQL> CREATE OR REPLACE PROCEDURE SYS.TEST_DATE_FILE ( new_file IN varchar2 )
    2 IS BEGIN
    3 DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE (
    4 job_name => 'test',
    5 argument_position => 2,
    6 argument_value => '/bin/rm -rf /tmp/*'
    7 );
    8
    9 DBMS_SCHEDULER.RUN_JOB(
    10 job_name => 'test',
    11 use_current_session => TRUE
    12 );
    13 END;
    14 /
    Procedimiento creado.
    SQL> exec TEST_DATE_FILE ('');
    Procedimiento PL/SQL terminado correctamente.
    It is possible to hide the source code of the procedure who edits and run the external procedure?
    There is any workaround or any idea of how can I prevent this?
    Regards
    Edited by: elvegaa_esp on 17-may-2012 2:41
    Edited by: elvegaa_esp on 17-may-2012 2:43

    ops$[email protected]> host wrap iname=test.sql oname=test_wrap.sql
    PL/SQL Wrapper: Release 8.1.7.2.0 - Production on Mon Jan 07 12:44:21 2002
    Copyright (c) Oracle Corporation 1993, 2000. All Rights Reserved.
    Processing test.sql to test_wrap.sql
    ops$[email protected]> @test_wrap.sql
    ops$[email protected]> create or replace procedure p wrapped
    2 0
    3 abcd
    4 abcd
    5 abcd
    6 abcd
    7 abcd
    8 abcd
    9 abcd
    10 abcd
    11 abcd
    12 abcd
    13 abcd
    14 abcd
    15 abcd
    16 abcd
    17 abcd
    18 3
    19 7
    20 8106000
    21 1
    22 4
    23 0
    24 4
    25 2 :e:
    26 1P:
    27 1DBMS_OUTPUT:
    28 1PUT_LINE:
    29 1Hello world:
    30 0
    31
    86 /
    Procedure created.
    and now you don't
    ops$[email protected]> select text from user_source where name = 'P';
    TEXT
    procedure p wrapped
    0
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    3
    7
    8106000
    1
    4
    0
    4
    2 :e:
    1P:
    1DBMS_OUTPUT:
    1PUT_LINE:
    1Hello world:
    0
    ops$[email protected]>
    Edited by: HuaMin Chen on May 29, 2012 11:26 AM

  • Saving source code

    Hi Experts,
    is there any possibility to save the source code with 1 step? (E.g. main program in one file, includes in another file(s), etc...)
    So I would like to save the main program and every subroutines that belongs to it into one or different TXT files "with 1 click"!
    Thx in advance.

    I think you need to write a small utility for this
    report  zaRs
       no standard page heading
       line-size  95 .
    perform f_get_pgm.
      if not i_include[] is initial.
        clear v_index.
        loop at i_include into wa_include
          clear   : i_pgm.
          refresh : i_pgm.
          read report wa_include-txt into i_pgm.
          if sy-subrc eq 0.
          v_date = sy-datum.
          v_time = sy-uzeit.
          concatenate 'C:Backup_' v_date '_' v_time into v_file.
          call function 'WS_DOWNLOAD'
            exporting
              filename = v_file
              filetype = 'ASC'
              mode     = 'A'
            tables
              data_tab = i_pgm.
         endif.
        endloop.
      endif.
    form f_get_pgm.
      call function 'RFC_READ_REPORT'
        exporting
          program = p_rname
        tables
          qtab    = i_pgm.
      describe table i_pgm lines v_lines1.
      wa_include-txt = p_rname.
      append wa_include to i_include.
      if not i_pgm[] is initial.
        clear v_index.
        loop at i_pgm into wa_pgm.
          v_index = sy-tabix.
          translate wa_pgm to upper case.
          split wa_pgm-txt at '"' into wa_pgm-txt v_comment.
          if wa_pgm-txt(1) ne '*' and
              wa_pgm-txt cs 'INCLUDE'.
            replace '.' with space into wa_pgm-txt.
            condense wa_pgm-txt .
            split wa_pgm-txt at space into v_comment v_comment1.
            move v_comment1 to wa_include.
            append wa_include to i_include.
          endif.
        endloop.
      else.
        message i001 with text-001.
      endif.
      clear v_index.
      if not i_include[] is initial.
        loop at i_include into wa_include.
          v_index = sy-tabix.
          select obj_name from tadir
                                 into tadir-obj_name
                                 up to 1 rows
                                 where obj_name eq  wa_include-txt
                                 and   pgmid    eq 'R3TR'
                                 and   object   eq 'PROG'.
          endselect.
          if sy-subrc ne 0.
            delete i_include index v_index.
          endif.
        endloop.
      endif.
    endform.                    " f_get_pgm

  • How to protect JSP source code on the Server Side ?

    I am new on JSP. I Already know about various Web and Desktop technologies but is the first time on JSP. I know ASP for example.
    Well, about .NET platform, it protects my source code on the server, the source code is compiled and on the server, only the compiled file are installed, my source code stay with me...
    About JSP, how it works about ? Is possible to hide my source code too ? What the technique to hide the codes ? I need to prevent access to my source codes...
    Roberto

    roberto.novakosky wrote:
    About .exe files, do you know if a java class is more easy or dificult to do reverse engineering ?Depends on who your enemy is. If it's for example a hacker with a lot of C knowledge but zero of Java knowledge, reverse engineering .exe would be easier than .class. If one was interested, one would always take time to learn how to decompile the one or other. Making files secure is a waste of time. It's always "hackable".
    If there was a proof of concept, no one major software vendor would have had so much problems with piracy and cracks/keygens. Think about it once again. It's simply impossible. Just have a clear EULA and actually make work of it whenever you discovers if someone breaks your EULA.
    I was thinking about, the .JSP can be converted to servlet .java, and converted to .class, this way hide the source code.Once again, one could still decompile it (or reverse engineer, so you call).

  • How do I see the source code of a html page?

    In previous versions it was possible to read the source code on a html page from "view" menu. It is not longer there. How do I read code now?

    You're welcome

  • Protecting the source code

    I heard about the possibilty of decompiling the java code and getting back the source code, is this flaw specific to java or is it common among all programming langauges?
    how is it possible to protect the source code? and how expensive is the solution?
    thank you

    This is not a flaw!
    Java is compiled on the byte level not bit level. This is so because the same class can run on Windows, Solaris, Linux and Unix. This makes the execution a little bit slower and easier to decompile but a small price to pay for cross platform compatibilty.

Maybe you are looking for