Working Linux Plugin Example ?

Does anyone have a working Linux Plugin example, maybe from the Starter example included in the sdk?
(Or has this been taken out, since I can see make files in SDK 7 but not on latest SDK.)

We don't support plugins for the Linux version of Adobe Reader.

Similar Messages

  • What works with plugin 1.3 fails with plugin 1.4

    Summary: What works under plugin 1.3 doesn't work under plugin 1.4 !!
    Background: Weblogic 5.1 server, Verisign certificate signed applet + server certificate,.... The applet need to communicate with servlets and EJB's on the server.
    Problem: everything works ok on a plugin 1.3 client - but with plugin 1.4 I get:
    java.security.AccessControlException: access denied (java.net.SocketPermission import.toldskat.dk:443 connect,resolve)
    java.security.AccessControlException: access denied (java.net.SocketPermission import.toldskat.dk:443 connect,resolve)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:270)
    ....snip....
    Checking newsnet: Appearently I'm not alone with this problem.
    [email protected] have the same problem, it seems - but his newsnet post has remained unanswed for 4 months - and I cheched with him that he hasn't found a solution
    http://groups.google.com/groups?q=sun+plugin+1.4+java.security.AccessControlException&hl=en&lr=&ie=UTF-8&selm=b41a32b9.0208211012.137914c9%40posting.google.com&rnum=3
    Some people seem to mean that the security part of plugin 1.4 has been gutted since 1.3. Check:
    http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&threadm=g9k89.2091%24NZ.76299%40bgtnsc05-news.ops.worldnet.att.net&rnum=3&prev=/groups%3Fhl%3Den%26lr%3D%26ie%3DISO-8859-1%26q%3Dsun%2Bplugin%2B1.4%2Bcertificate%2Bproblem
    They refere to document:
    http://java.sun.com/products/plugin/1.2/docs/nsobjsigning.html#limitation
    where it supposedly says that you need to import certificate into the browser before accessing the signed site (this is new, not necessary with plugin 1.3). Tried it quickly - no luck yet.
    This is a serious problem to us at a company here in Denmark, running a major EJB solution handling all the country's import. So I (and probably also [email protected] would appreciate an answer.
    regards
    Stig Valentini
    [email protected]

    The following examples are for a win 2000 machine, for linux
    you have to use alternative paths but I think the commands
    are about the same.
    The SUN jre doesn't care about IE settings, if an applet is signed it will ask the user "do you trust", if
    the user chooses yes or always the applet can do pretty much anything.
    Because anybody can sign an applet so it will pop up the do
    you trust dialog I prevent this dialog from popping up by
    adding the following to the
    C:\Program Files\Java\j2re****\lib\security\java.policy
    under grant { [/b]
    [color red]
    permission java.lang.RuntimePermission "usePolicy";
    [color]
    You now need to set up special permissions for sites that
    need it, signed applets get no special treatment since you
    specified in the java.policy that policy should allways be
    used.
    When your applet needs to do something it normally could
    not do (applet security) [b]and it needs to do this
    when a user clicks on a html button (applet method called
    from javascript), than all the signing and policy settings
    in the world wouldn't work Unless you grant all permission
    to all code.
    This is because the Java Plug-in executes methods with
    applet sandbox security restrictions.
    http://archives.java.sun.com/cgi-bin/wa?A2=ind0404&L=java-security&F=&S=&P=4012
    To solve this you can start a new thread that checks ...
    times a second if a variable meets certain conditions.
    These conditions are changed with public methods called
    from JavaScript. When a variable meets certain Conditions
    this thread will start the method that will perform
    normally restricted tasks.
    Here is an example where the applet doesn't work
    (the batchfile, html file are OK)
    Note that running this code with Mozilla on my w2k machine
    crashes Mozilla (not on my Fedora machine)
    Batch file to sign the applet: (please note this will
    delete some files)
    del *.cer
    del *.com
    del *.jar
    del *.class
    javac -classpath ".;C:\Program Files\Java\j2re1.4.2_04\lib\plugin.jar" test.java
    keytool -genkey -keystore harm.com -keyalg rsa -dname "CN=Harm Meijer, OU=Technology, O=org, L=Amsterdam, ST=, C=NL" -alias harm -validity 3600 -keypass pass -storepass pass
    jar cf0 test.jar test.class
    jarsigner -keystore harm.com -storepass pass -keypass pass -signedjar sTest.jar test.jar harm
    del *.classThe html page:
    <DIV id="dvObjectHolder">  </DIV>
    <br><br>
    <script>
    if(window.navigator.appName.toLowerCase().indexOf("netscape")!=-1){ // set object for Netscape:
         document.getElementById('dvObjectHolder').innerHTML = "        <object ID='appletTest1' classid=\"java:test.class\"" +
                    "height=\"0\" width=\"0\" onError=\"changeObject();\"" +
              ">" +
                    "<param name=\"mayscript\" value=\"Y\">" +
                    "<param name=\"archive\" value=\"sTest.jar\">" +
            "</object>";
    }else if(window.navigator.appName.toLowerCase().indexOf('internet explorer')!=-1){ //set object for IE
         document.getElementById('dvObjectHolder').innerHTML =      "<object ID='appletTest1' classid=\"clsid:8AD9C840-044E-11D1-B3E9-00805F499D93\"" +
                   "         height=\"0\" width=\"0\" >" +
                   "   <param name=\"code\" value=\"test.class\" />" +
                      "<param name=\"archive\" value=\"sTest.jar\">" +
                   " </object>"
    </script>
    <LABEL id="lblOutputText">This text will be replaced by the applet</LABEL>
    <BR>
    <input value="Javascript to java" type=button onClick="document.appletTest1.fromJavaScript()"><br>The applet:
    // new class for jsObject!!!! since 1.4.2 compile this:
    // javac -classpath "C:\Program Files\Java\j2re1.4.2_01\lib\plugin.jar" test.java
    // since jaws.jar does not exsist anymore
    // to compile with jaws: javac -classpath "C:\j2sdk1.4.0_03\jre\lib\jaws.jar" test.java
    import netscape.javascript.*;
    public class test extends java.applet.Applet {
        JSObject win;
        JSObject outputLabel;
        public void init() {
             try{
                 win = JSObject.getWindow(this);
                 outputLabel = (JSObject) win.eval("document.getElementById('lblOutputText')");
              outputLabel.setMember("innerHTML", "<center><h1>From Init<br>Your homedir " + System.getProperty("user.home") + "</h1></center>");
            }catch(Exception e){
                 e.printStackTrace();
        public void fromJavaScript(){
             try{
                     outputLabel.setMember("innerHTML", "<center><h1>From javascript<br>Your homedir: "+ System.getProperty("user.home") + "</h1></center>");
            }catch(Exception e){
                 e.printStackTrace();
    }When you put the files in c:\temp, run the batch file to
    compile and sign the applet and then open the html file you
    will be asked if you trust ... you can say yes and from
    init the applet can read user.home. Click on the button and
    you will get the following stack trace:
    java.security.AccessControlException: access denied (java.util.PropertyPermission user.home read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
         at java.lang.System.getProperty(Unknown Source)
         at test.fromJavaScript(test.java:20)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.plugin.com.MethodDispatcher.invoke(Unknown Source)
         at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source)
         at sun.plugin.com.DispatchImpl$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.com.DispatchImpl.invoke(Unknown Source)Conclusion: the applet can read user.home but not from
    JavaScript.
    Here is the applet that does work because a method called
    from javaScript doesn't perform a restricted task.
    // new class for jsObject!!!! since 1.4.2 compile this:
    // javac -classpath "C:\Program Files\Java\j2re1.4.2_01\lib\plugin.jar" test.java
    // since jaws.jar does not exsist anymore
    // to compile with jaws: javac -classpath "C:\j2sdk1.4.0_03\jre\lib\jaws.jar" test.java
    import netscape.javascript.*;
    public class test extends java.applet.Applet {
         JSObject win;
         JSObject outputLabel;
         boolean buttonFromJavaClicked = false;
         checkJavaScriptEvent evt = new checkJavaScriptEvent();
         public void init() {
              try {
                   evt.start();
                   win = JSObject.getWindow(this);
                   outputLabel =
                        (JSObject) win.eval("document.getElementById('lblOutputText')");
                   outputLabel.setMember(
                        "innerHTML",
                        "<center><h1>From Init<br>Your homedir "
                             + System.getProperty("user.home")
                             + "</h1></center>");
              } catch (Exception e) {
                   e.printStackTrace();
         public void fromJavaScript() {
              buttonFromJavaClicked = true;
         private void fromJavaScript2() {
              System.out.println("fromjavascript2 is started");
              try {
                   String strLbl =
                        "<center><h1>From javascript<br>Your homedir: "
                             + System.getProperty("user.home")
                             + "</h1></center>";
                   outputLabel.setMember("innerHTML", strLbl);
              } catch (Exception e) {
                   e.printStackTrace();
         class checkJavaScriptEvent extends Thread {
              public void run() {
                   while (true) {
                        if (test.this.buttonFromJavaClicked) {
                             System.out.println("OK buttonfromjava is true");
                             test.this.buttonFromJavaClicked = false;
                             test.this.fromJavaScript2();
                        try {
                             Thread.sleep(300);
                        } catch (Exception e) {
                             System.out.println("exception in sleep");
                             e.printStackTrace();
                             System.exit(1);
    }

  • In Logic Pro or Pro X Meta Events don't work correctly; for example inserting Stop Playback number 52 in a specific position the playhead stops wrongly several ticks before. Then the button play does not start.

    In Logic, Pro or Pro X Meta Events don't work correctly; for example inserting Stop Playback number 52 in a specific position the playhead stops wrongly several ticks before. Then the button play does not start.

    Curious if what your describing is similar to issue 4 which starts around 9:15 in video...
    https://youtu.be/q93jdOhi4Oc
    If so this started for me, or at least I noticed it for the first time in LPX 10.1.1. What version of logic are you running?
    I've recently found that this issue also affects note timing on instrument tracks that use the "External Instrument" plugin.

  • Headphone is not working after plugin pavillion dv6000 CNF6430M51

    Product :        Hp Pavillion dv6000
    Serial    :        CNF6430M51
    Product no. : RG254UA
    this is the first time i sending you my first problem
    since i have formated my system my new headphones are not working after plugin i have intalled sp34200 aslo but it is not fix my problem
    Please help me out this
    reply soon as you can
    thanking you
    kareem...

    Your models driver page is in the link.You need the 'Microsoft Universal Audio Architecture (UAA) Bus Driver' before   correct Audio driver:
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?cc=us&dlc=en&lang=en&lc=en&product=3245620&task=&
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • When I download an excel spread sheet from a Ford web site I seem to be getting code and not the work sheet. Example- MIME-Version: 1.0 X-Document-Type: Workbook Content-Type: multipart/related; boundary="====Boundary===="

    I have a Macbook Air. I have MS office installed and work in Excel often with no issues. But When I download an excel spread sheet from a Ford web site I seem to be getting code and not the work sheet.
    Example-
    MIME-Version: 1.0
    X-Document-Type: Workbook
    Content-Type: multipart/related; boundary="====Boundary===="
    --====Boundary====
    Content-Location: file:///C:/HOLD.XHT
    Content-Transfer-Encoding: 8bit
    Content-Type: text/html; charset="utf-8"
    <html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns="http://www.w3.org/TR/REC-html40">
    <HEAD>
    <meta name="Excel Workbook Frameset">
    <xml>
    <x:ExcelWorkbook>
      <x:ExcelWorksheets>
       <x:ExcelWorksheet>
        <x:Name>BTB</x:Name>
        <x:WorksheetSource HRef="./IBIT0001.xht"/>
       </x:ExcelWorksheet>
       <x:ExcelWorksheet>
        <x:Name>GSM</x:Name>
        <x:WorksheetSource HRef="./IBIT0002.xht"/>
       </x:ExcelWorksheet>
       <x:ExcelWorksheet>
        <x:Name>RODetail</x:Name>
        <x:WorksheetSource HRef="./IBIT0003.xht"/>
       </x:ExcelWorksheet>
      </x:ExcelWorksheets>
    </x:ExcelWorkbook>
    </xml>
    </HEAD>
    </HTML>
    --====Boundary====
    Content-Location: file:///C:/IBIT0001.xht
    Content-Transfer-Encoding: 8bit
    Content-Type: text/html; charset="utf-8"
    <html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns="http://www.w3.org/TR/REC-html40">
    <HEAD>
    <meta http-equiv=Content-Type content="text/html; charset=utf-8">
    <style>
    <!--table
            {mso-displayed-decimal-separator:"\.";
            mso-displayed-thousand-separator:"\,";}
    @page
            {margin:1.0in .75in 1.0in .75in;
            mso-header-margin:.5in;
            mso-footer-margin:.5in;
            mso-page-orientation:landscape;}
    tr
            {mso-height-source:auto;}
    col
            {mso-width-source:auto;}
    br
            {mso-data-placement:same-cell;}
    .style21
            {color:blue;
            font-size:10.0pt;
            font-weight:400;
            font-style:normal;
            text-decoration:underline;
            text-underline-style:single;
            font-family:Arial;

    Try search/ask in the forum devoted entirely to Excel issues:
    http://answers.microsoft.com/en-us/mac/forum/macexcel

  • Working Linux command to grep date range in a log file

    Linux Gurus,
    Could you please help me with command to show only those lines in a log file which falls under some date range, probably using grep command.
    Our server logs are in following format <Jun 23, 2013 12:45:02 AM UTC>
    Regards,
    Varun

    Perhaps you can do the following:
    Go to Google.
    Type "working Linux command to grep date range in a log file"
    See what results you might get from that search.  ( I did, and got more than 600,000 search results.)

  • My iphone 4 has been working fine but when i try to use music, it wont work. For example i try to put a specific kind of song and it will either not play or skip to another.

    my iphone 4 has been working fine but when i try to use music, it wont work. For example i try to put a specific kind of song and it will either not play or skip to another.

    read http://support.apple.com/kb/TS3217

  • QuckTime 7.6.2 - Dont work internet plugin

    After installing QuckTime 7.6.2 on Mac OS X 10.5.7 stopped working Internet plugin in Safari and FireFox.

    Not helped
    I think - the matter of rights of access to files. Disk utility issues in the verification:
    Проверяю права доступа для «MAC OS X»
    База данных прав доступа на чтение.
    Чтение базы данных прав доступа может занять несколько минут.
    Различаются права доступа в «System/Library/Frameworks/CoreVideo.framework/Versions/A/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/Components/CoreMediaAuthoringPrivateComponents.component/Conten ts/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/Resources/AVC.plugin/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/Resources/IIDC.plugin/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/Resources/MPEGAudioDecoder.component/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/Resources/MPEGLayer2AudioEncoder.component/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/Resources/Tundra.component/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/Resources/VDC.plugin/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CodeRes ources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/QuickTime/QuickTimeComponents.component/Contents/CodeResources» , должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/QuickTimeJava/QuickTimeJava.bundle/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/QuickTime/QuickTime3GPP.component/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/CodeResources» , должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/QuickTime/QuickTimeH264.component/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/CodeResourc es», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/QuickTime/QuickTimeImporters.component/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/QuickTime/QuickTimeMPEG.component/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/QuickTime/QuickTimeMPEG4.component/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/QuickTime/QuickTimeStreaming.component/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/QuickTime/QuickTimeVR.component/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «Library/Internet Plug-Ins/QuickTime Plugin.plugin/Contents/CodeResources», должно быть: -rw-rw-r-- , сейчас: lrw-rw-r-- .
    Различаются права доступа в «Library/Internet Plug-Ins/QuickTime Plugin.webplugin/Contents/CodeResources», должно быть: -rw-rw-r-- , сейчас: lrw-rw-r-- .
    Различаются права доступа в «System/Library/Frameworks/QTKit.framework/Versions/A/Resources/QTKitIBPlugin.i bplugin/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/Spotlight/QuickTime.mdimporter/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «Library/Audio/Plug-Ins/HAL/iSightAudio.plugin/Contents/CodeResources», должно быть: -rw-rw-r-- , сейчас: lrw-rw-r-- .
    Различаются права доступа в «System/Library/Frameworks/QuickTime.framework/Versions/A/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «Applications/QuickTime Player.app/Contents/CodeResources», должно быть: -rw-rw-r-- , сейчас: lrw-rw-r-- .
    Различаются права доступа в «Applications/QuickTime Player.app/Contents/PlugIns/AnnotationInspector.propPane/Contents/CodeResources », должно быть: -rw-rw-r-- , сейчас: lrw-rw-r-- .
    Различаются права доступа в «Applications/QuickTime Player.app/Contents/PlugIns/AudioSettingsInspector.propPane/Contents/CodeResour ces», должно быть: -rw-rw-r-- , сейчас: lrw-rw-r-- .
    Различаются права доступа в «Applications/QuickTime Player.app/Contents/PlugIns/DataRefInspector.propPane/Contents/CodeResources», должно быть: -rw-rw-r-- , сейчас: lrw-rw-r-- .
    Различаются права доступа в «Applications/QuickTime Player.app/Contents/PlugIns/HintTrackInspector.propPane/Contents/CodeResources» , должно быть: -rw-rw-r-- , сейчас: lrw-rw-r-- .
    Различаются права доступа в «Applications/QuickTime Player.app/Contents/PlugIns/NetworkInspector.propPane/Contents/CodeResources», должно быть: -rw-rw-r-- , сейчас: lrw-rw-r-- .
    Различаются права доступа в «Applications/QuickTime Player.app/Contents/PlugIns/SettingsInspector.propPane/Contents/CodeResources», должно быть: -rw-rw-r-- , сейчас: lrw-rw-r-- .
    Различаются права доступа в «Applications/QuickTime Player.app/Contents/PlugIns/VisualTrackInspector.propPane/Contents/CodeResource s», должно быть: -rw-rw-r-- , сейчас: lrw-rw-r-- .
    Различаются права доступа в «System/Library/PreferencePanes/QuickTime.prefPane/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/Resources/QTMediaKeys.bundle/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/Resources/QTMime.bundle/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/Resources/QTTransport.bundle/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTPlugIn. prefPane/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTRegiste r.prefPane/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTRegiste r.prefPane/Contents/Resources/QTAbout.bundle/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTStreami ng.prefPane/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTUpdate. prefPane/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/Components/AudioCodecs.component/Contents/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Различаются права доступа в «System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CodeResources», должно быть: -rw-r--r-- , сейчас: lrw-r--r-- .
    Проверка прав доступа выполнена

  • Load Akamai plugin example using Static plugin loading method

    Hi,
    I want to load Akamai plugin example using Static plugin loading method. For that, I passed "com.akamai.osmf.AkamaiBasicStreamingPluginInfo" as a class defination, but I got error stating, ReferenceError: Error #1065: Variable AkamaiBasicStreamingPluginInfo is not defined.
    Makjosh once sent a post that the title was "Getting an error while loading the plugin using static plugin load method". I then follow the solution. But how can I add the dependent project(Flex/AS Build Path -> Library Path -> Add Project). As a result, I do not find the AkamaiBasicStreamingPlugin project only having the NetMocker project and the StrobeUnit project in it.
    So I try to link the AkamaiBasicStreamingPlugin project use the following method(project properties->Project References->select "AkamaiBasicStreamingPlugin"), it still causes the same error.
    Please help me.
    Thanks.

    Hi,
    A couple of things to look at:
    1) Make sure you have the import statement in your project:
                import com.akamai.osmf.AkamaiBasicStreamingPluginInfo;
    2) Make sure you add the AkamaiBasicStreamingPlugin folder to your Flex Build Path (right click project, select "properties", then "Flex Build Path", in "Source Path" you need to add the plugin folder).
    3) If you are still getting Error #1065, you can try a trick where you force the swf compiler to pull in the class:
                private static const loadTestRef:AkamaiBasicStreamingPluginInfo = null;
    Now you should be able to use getDefinitionByName to load the plugin:
                    var pluginResource:IMediaResource;
                    var pluginInfoRef:Class = flash.utils.getDefinitionByName(className) as Class;
                    pluginResource = new PluginClassResource(pluginInfoRef);
                    pluginManager.addEventListener(PluginLoadEvent.PLUGIN_LOADED, onPluginLoaded);
                    pluginManager.addEventListener(PluginLoadEvent.PLUGIN_LOAD_FAILED, onPluginLoadFailed);
                    pluginManager.loadPlugin(pluginResource);
    Hope that helps,
    - charles

  • User exit work with small example

    will someone show how to make user exit work with small example and sceenshot? i do not want legthy explanation /hard examples,only a stepwise example.
    points will get reward
    email:[email protected]

    Go to transaction CMOD
    Create a project called ZVA01
    Choose the Enhancement assign radio button and press the Change button
    In the first column enter V45A0002 Predefine sold-to party in sales document . Note that an
    enhancement can only be used i 1 project. If the enhancement is allready in use, and error message
    will be displayed
    Press Save
    Press Components. You can now see that enhancement uses user exit EXIT_SAPMV45A_002.
    Double click on the exit.
    Now the function module is displayed. Double click on include ZXVVAU04 in the function module
    Insert the following code into the include: E_KUNNR = '2155'.
    Activate the include program. Go back to CMOD and activate the project.
    Goto transaction VA01 and craete a salesorder. Note that Sold-to-party now automatically is "2155"

  • Http tunneling (t3 over http) doesn't work!!  (examples too)

    Hi,
    I'm trying to get http tunneling (t3 connection over http protocol) to work. I
    ran some examples included with Weblogic that try establishing that connection
    (PingTest, HelloApplet, SimpleT3Client), as well as my own test program, and they
    all give an error similar to this :
    Couldn't get a reference to server. Exception :
    javax.naming.CommunicationException. Root exception is java.net.ConnectException:
    No server found at HTTP://<IP>:<port>
    at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:161) at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:200)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java,
    Compiled Code) at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:148)
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:123)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:671) at
    javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:242) at javax.naming.InitialContext.init(InitialContext.java:218)
    at javax.naming.InitialContext.<init>(InitialContext.java:194)
    (I replaced the actual Ip and port with <IP> and <port>).
    Now, the server is started and working at that ip and port - it services web http
    requests correctly, etc. Regular T3 connection (not over http) also works with
    it.
    Does anyone know the reason for this problem and/or how to fix it?
    Thanks, Leonid Portnoy

    It appears that one has to use the "Java Plugin" for this mode to work. The
    question is does the version of plugin need to be "in sync" with the JVM
    version on the server. ?.
    /rk
    "Adomas Svirskas" <[email protected]> wrote in message
    news:[email protected]...
    >
    It seems that the solution is to have these two lines in the
    properties file:
    weblogic.httpd.enable=true
    weblogic.httpd.tunnelingenabled=true
    Now it works.
    Thanks,
    Adomas
    "Adomas Svirskas" <[email protected]> wrote:
    Hi Leonid,
    Have you found a solution for this? I have these problems too.
    Thanks,
    Adomas
    "Leonid Portnoy" <[email protected]> wrote:
    Hi,
    I'm trying to get http tunneling (t3 connection over http protocol)to
    work. I
    ran some examples included with Weblogic that try establishing thatconnection
    (PingTest, HelloApplet, SimpleT3Client), as well as my own test program,
    and they
    all give an error similar to this :
    Couldn't get a reference to server. Exception :
    javax.naming.CommunicationException. Root exception is
    java.net.ConnectException:
    No server found at HTTP://<IP>:<port>
    at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:161) atweblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:200)
    atweblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFactoryDelegate.java,
    Compiled Code) atweblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFactoryDelegate.java:148)
    atweblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFact
    ory.java:123)
    atjavax.naming.spi.NamingManager.getInitialContext(NamingManager.java:671)
    at
    javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:242)
    at javax.naming.InitialContext.init(InitialContext.java:218)
    at javax.naming.InitialContext.<init>(InitialContext.java:194)
    (I replaced the actual Ip and port with <IP> and <port>).
    Now, the server is started and working at that ip and port - it services
    web http
    requests correctly, etc. Regular T3 connection (not over http) alsoworks
    with
    it.
    Does anyone know the reason for this problem and/or how to fix it?
    Thanks, Leonid Portnoy

  • Adobe Developer Help with Linux Plugin (nppdf.so)

    Hello,
    I am trying to get in touch with someone at Adobe who is familiar with the Adode Reader Plugin for Linux (nppdf.so) source code.
    I have been working for several months, trying to debug a problem with nspluginwrapper (which allows the Adobe Reader Plugin to run on 64-bit Linux systems) that seems to be affecting a fairly large number of users.
    Basically, the problem is that, after viewing an initial PDF, closing the PDF, acroread exits.  After this point, nppdf.so (when run under nspluginwrapper) seems unable to start a new copy of acroread.  I've turned on debug in nppdf and the problem appears to be occurring in ACT_Open.  If I could get some information about what is happening in ACT_Open, I think I could probably figure out this problem.  I don't think this would take very long to resolve with a small bit of help from Adobe.
    Here is a snippet from the debug log that shows what happens when the problem is occurring:
    ACOpen : Calling ACT_Open
    ACT_Open : Launch acrobat if required
    ACT_Open : Acrobat launched successfully
    ACT_Open : Trying to connect to acrobat
    ACTSocketConnect : Error in connect
    ACT_Open : Finished trying to connect to acrobat
    ACT_Open : Experienced some error, so closing the new session
    internal_ACT_Close : Initialized for 0x8af5d94
    internal_ACT_Close : Finished
    NPP_GetValue is called
    NPP_Destroy : called for instance 8a98738
    NPP_Shutdown : called
    If I could get in touch with someone familiar with the nppdf.so source code, I think I could resolve this problem without too much effort.  Thank you very much.
    Thanks,
    Scott

    An just incase someone looks at this and wanting to know what I typed well this is what I typed in the .bashrc file
    export NPX_PLUGIN_PATH=/usr/java/j2sdk1.4.0_02/jre/plugin/i386/ns4
    and then I had to log out and log back in then you should beable to open netscape and go to edit/preferences/advance/ then you should be able to click on enable java plugin and it should work for you just fine well thats all

  • Lightroom 4 Does not Work with plugins

    I installed my Lightroom 4 upgrade yesterday and I like the changes. However, the new program does not work with any plugin including Elements, NIK software and others. Adobe should not have released the full program until they had ensured that all will work.
    I have a MAC OS Lion. I went to the NIK homepages and followed their instructions to uninstall all prior versions and download the latest version of their software to install. I followed these directions and nothing happened. So I tried Adobe's own plugin, Elements 9, and that too did not work. Then I tried a few others I have from OnOne and other developers, but nothing works.
    Then I called Adobe where a recording told me they are very busy with complaints about Lightroom 4 and hung up. Then I tried to get a tech rep to chat with me, but got the same results as I had gotten with my call.
    Why does Adobe sell a product that fails such a basic issue? Why did they not work it out with the Beta edition before selling the progrm? I understand why Beta programs often have trouble, that's why they are Beta, but I do not understand why Adobe would sell a flawed product and then prevent their customers from getting tech help.
    Ed

    Actually, the LR4 beta worked fine with respect to this issue.  It wasn't until the full version was released that some people started experiencing the problem of being unable to access the external editors and plugins from LR.
    The problem is being worked on, according to a reply on the feedback forum:
    http://feedback.photoshop.com/photoshop_family/topics/lr4_external_editor_failure

  • "CMD_PATTERN= CGEN_PRBS" option doesn`t work properly in example design

    Hi, 
    I am using V6; MIG 3.6.1.
    When I use the option above, CGEN_PRBS, the memory controller is trying to wirte and read to "bank x"
    and Micron DDR3 memory model gave me the error, stopping simulation.
      parameter BEGIN_ADDRESS           = 32'h05fff300;
      parameter PRBS_SADDR_MASK_POS     = 32'h05fff300;
      parameter END_ADDRESS             = 32'h060003ff;
      parameter PRBS_EADDR_MASK_POS     = 32'hf9fffc00;
    These are my boundary for addressing, and those works well when I use "CGEN_SEQUNTIAL"
    Hence, I don`t think there may be problem, but I submitted for your information.
    Thank you in advace for your answer.

    Thank for reply, but seemed to be unclear about my problems.
    I have changed the option, "CGEN_ALL" in sim_tb_top.v which is top test-bench.
    And, the option, "modify_enable_sel" in example_top is assigned to "1" by default, and it is used when I want to the various configuration with vio_data_*, vio_addr_* combinations.
    My problem isn`t about custom setting of addr/cmd/data.
    I`m tryingn to use a given example code & test-bench, and its option(of sim_tb_top.v)
    I`ve attached my console messages right after "calibration done"
    libration Done
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 65925100.0 ps INFO: Refresh  
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66035100.0 ps INFO: Activate  bank 0 row 0000
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66045100.0 ps INFO: Activate  bank x row xxxx
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66055100.0 ps INFO: Activate  bank x row xxxx
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66057600.0 ps INFO: Read      bank 0 col 000, auto precharge 0
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66065100.0 ps INFO: Activate  bank x row xxxx
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66076350.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000000 data = ff
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66077600.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000001 data = 00
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66078850.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000002 data = aa
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66080100.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000003 data = 55
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66081350.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000004 data = 55
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66082600.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000005 data = aa
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66083850.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000006 data = 99
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66085100.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000007 data = 66
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.main: at time 66110100.0 ps INFO: Sync On Die Termination Rtt_NOM =         60 Ohm
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66112600.0 ps INFO: Write     bank x col xxX, auto precharge 0
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66122600.0 ps INFO: Write     bank x col xxX, auto precharge 0
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66128850.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xx
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66130100.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xx
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66131350.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xx
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66132600.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xx
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66132600.0 ps INFO: Write     bank x col xxX, auto precharge 0
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66133850.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xx
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66135100.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xx
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66136350.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xx
    sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66137600.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xx
    libration Donesim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 65925100.0 ps INFO: Refresh  sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66035100.0 ps INFO: Activate  bank 0 row 0000sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66045100.0 ps INFO: Activate  bank x row xxxxsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66055100.0 ps INFO: Activate  bank x row xxxxsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66057600.0 ps INFO: Read      bank 0 col 000, auto precharge 0sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66065100.0 ps INFO: Activate  bank x row xxxxsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66076350.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000000 data = ffsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66077600.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000001 data = 00sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66078850.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000002 data = aasim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66080100.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000003 data = 55sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66081350.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000004 data = 55sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66082600.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000005 data = aasim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66083850.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000006 data = 99sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66085100.0 ps INFO: READ @ DQS= bank = 0 row = 0000 col = 00000007 data = 66sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.main: at time 66110100.0 ps INFO: Sync On Die Termination Rtt_NOM =         60 Ohmsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66112600.0 ps INFO: Write     bank x col xxX, auto precharge 0sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66122600.0 ps INFO: Write     bank x col xxX, auto precharge 0sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66128850.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xxsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66130100.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xxsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66131350.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xxsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66132600.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xxsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.cmd_task: at time 66132600.0 ps INFO: Write     bank x col xxX, auto precharge 0sim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66133850.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xxsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66135100.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xxsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66136350.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xxsim_tb_top.comp_inst.mem_rnk[0].mem_8_4.gen_mem[0].u_comp_ddr3.data_task: at time 66137600.0 ps INFO: WRITE @ DQS= bank = x row = xxxx col = xxxxxxxx data = xx
    The options I used are mentioned my first questions, and nothing is changed.
    I`ve tested option "CGEN_SEQUNETIAL" and full range of my setting address, and in that case, there is no problem.
    I think, therefore, BEGIN/END address are not the cause of problem.
    For your information,
    I used DDR3 model of Micron, which Xilinx ISE provide in defalut.
    I really want to use the option CGEN_PRBS... :)
    Help me out
     

  • Working with iScript example

    I've been playing with the iscript example from:
    http://www.erpassociates.com/peoplesoft-corner-weblog/xml/open-peoplesoft-queries-from-excel.html
    Eventually, I want to broker data back to Excel for users without access to Oracle on the desktop using their PS security profile and running a query through the PeopleCode and not using PS Query or nVision.
    Dropped in the code and the special XML libraries into a derived work record, including declaring the functions, and setup security per the article, but when I run it I get:
    Could not open registry. Registry name: ExecQuery
    PTools 8.49 in and 8.9 environment. Is it time to bounce the app server or do I need to do something else? Will this code run in an 8.49 environment?
    Edited by: user9535225 on Feb 29, 2012 6:07 PM

    Hi,
    What is the full url your are trying to initiate?
    url should be something like this
    http:/[machine]:[port]/xmllink/[site]/ExecQuery?userid=[]&pwd=[]&runservice=yes&qryname=[]&type=public&OPRID=[]
    make sure you are not copying the url from the brower address which starts with
    http:/[machine]:[port]/psp/[site]

Maybe you are looking for

  • Error 7 occurred at _createExplicitChildObject.vi DIAdem report express

    I am using DIAdem Report express in LabVIEW.  I made a change in the file name and now it works most of the time but is generating an error.  Sometimes it doesn't work. C:\Neuronetrix_Sync\Development\LabVIEW Test System\SC-1673\Logs\110091507\1100

  • Error while invoking ODI Scenario from BPEL

    Hi, I have created a BPEL process for invoking ODI Scenario as mentioned in the http://www.oracle.com/technology/obe/fusion_middleware/odi/ODIscenario_BPELcallback/ODIscenario_BPELcallback.htm when i am deploying the process through console in i am g

  • TOC Book Not Working Properly

    Offering this info for anyone else who might run into a similar situation.  When reviewing the browse sequence for an RH 10 project, I noticed one topic (page) displaying where a TOC book should have been.  The topic being displayed was the topic ass

  • Need host string for xp  machine (oracle 10.1.1..2)

    Hi: my email address is [email protected] need host string or how to get information for host string. Thank You wayne

  • Help needed in geocoding through sdo_gcdr.geocode_addr_all

    Hi all, I am using the below SQL for the same. I am able to use the below query SELECT SDO_GCDR.GEOCODE('GEOSAMPLE',SDO_KEYWORDARRAY('CALIFORNIA PACIFIC MEDICAL CTR', 'US','92306'), 'US', 'DEFAULT') FROM DUAL; but now I want to use geocode_addr_all b