Starting functions in BPS_WB

Hi everybody.
I need to run a planning function when I open a layout, and when I change any variable values.
I know it's possible in Planning Folders, but I don't know how it can be possible in the Web Interface Builder. I also have tried to export my planning folder as a web interface, but the planning function doesn't run.
How can I do.
Best regards to all.
Luca.

Hi,
Can you elaborate more on your problem?
Regards,
Deepti

Similar Messages

  • How to assign "back to start" function on a button in Bex workbook?

    Hi guiys,
    I want to control fitering funtion with buttons since every object takes time for filtering, I want to set multi objects and multi value in excel sheet and filter them at one with button command.
    Filtering at ones is OK. the problem is when I want to filter out it shoIuld be done one by one as long as I know.
    Can we go "back to start" function of the workbook with a button?
    Thanks in advance

    Dear lim bk,
    Under Data Provider - Commands ---> General Data Provider Commands  --> Back and Back to Start. You can use the command RESET for Back to Start.
    For more info, check this link -
    http://help.sap.com/saphelp_nw04/helpdata/en/76/80a1393e3a6942e10000000a11402f/frameset.htm
    Hope this helps you!
    -Pradnya

  • On plugging my iPod to the iMac, all the songs got deleted on the iPod. Now it doesn't sync to iTunes and it shows that 'mac os can't repair the device'. How can I get my iPod to start functioning normally again? Please help!

    Hey! I plugged my 80 gb ipod classic to my imac, but had to switch it off when itunes hung. The ipod wasn't switching on , and when it did, all the data, including all my songs were deleted. Now, when I try syncing it to the mac, it doesn't connect to the itunes and I keep getting an alert saying ' Mac osx can't repair the device'. Now, althought all the data is gone, the ipod still shows 30 gb free. What will happen if I partiton my ipod? How do I get it to start functioning again? Please help!

    Try a low level reformat of the iPod's hard drive to possibly try and repair some of its damage. Use the instructions in this article to walk you through the process.
    http://www.methodshop.com/gadgets/ipodsupport/erase/
    B-rock

  • I have problems for to use Start function inside a case structure.

    I am doing data acquisition using the Config, Start and Read functions, all them inside a while loop. I want to use Config function only when certain conditions occur, so I put the function inside a case and no problem. But when I put the start function inside the same case, the acquisition is not good. Please view my attachment. My application is client-server type.
    Attachments:
    scope_server(config_start).vi ‏160 KB

    Boxer,
    I checked your example and have several easy but important suggestions for you:
    1.- First, make sure that the first time you initialize the VI, the AI Config and AI Start are executed, because based on the debug I made, your program doesn't do it, and this is very important.
    2.- Add an AI Clear after the acquisition is done, so that you release the resources. This is a good programming technique, and may help you solve your issue.
    3.- Add an Error Cluster, so that you know if an error occurred at some point of the acquisition. This will help you track the issue.
    4.- What do you mean by "the acquisition is not good". What does it happen? What does it do? Do you get an error? <- This is the reason of step 3.
    5.- Finally, if you have doubts
    programming AI, check one of the shipping examples of LV. They can give you a much clearer idea.
    Hope this helps,
    L Aguila
    Applications Engineeer
    National Instruments

  • My Macbook air 2011, one line of key board (a to l) do not respond, but when an external keyboard is hooked up these keys starts functioning as normal, after disconnecting the external key board (from the USB) the problem comes back...Please help. Thank y

    My Macbook air 2011- key board (a-l) do not respond, but when you hook up an external key board to the usb these keys on the computer also starts functioning as normal and when you disconnect the external key, these keys stops functioning...?

    Perform SMC reset
    Shut down the computer.
    Plug in the MagSafe power adapter to a power source, connecting it to the Mac if its not already connected.
    On the built-in keyboard, press the (left side) Shift-Control-Option keys and the power button at the same time.
    Release all the keys and the power button at the same time.
    Press the power button to turn on the computer. 
    Note: The LED on the MagSafe power adapter may change states or temporarily turn off when you reset the SMC.

  • Call/start function on another package

    hi all,
    i'm new to java card development..
    i'd like to know if it's possible to call/start a function, or assign a value to a variable that belongs in an applet of a different package..
    currently, i'm using an old eclipse version for development..
    any comment is appreciated..
    thanks..
    regards,
    bayu k

    Hi Manuel,
    Thanks a lot for the hint and the link..
    I already started making 2 test packages (server and client) to try the shareable interface object, but i cant seem to get it right..
    on the client side, i cant cast the interface.. i think i need to import the server's package, but i dont know how to refer to another project.. (em using eclipse v2.1)
    below is the code.. i mark the line where i other package can not be resolved.. (commented as "PROBLEM")
    appreciate it very much for anyone's comment..
    thank you..
    server package : (1 class, 1 interface)
    the interface :
    package settings;
    import javacard.framework.*;
    public interface Settings extends Shareable
         public void SetLang(byte lang);
         public byte GetLang();
    the class :
    package settings;
    import javacard.framework.*;
    public class Proc extends Applet implements Settings {
         private byte bLang;
         public void SetLang(byte lang)
              bLang = lang;     
         public byte GetLang()
              return bLang;     
         public Shareable getShareableInterfaceObject(AID clientAID, byte parameter)
                    return this;
         public static void install(byte[] bArray, short bOffset, byte bLength) {
              // OP-compliant JavaCard applet registration
              new Proc().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
         public void process(APDU apdu) {
              // Good practice: Return 9000 on SELECT
              if (selectingApplet()) {
                   return;
              byte[] buf = apdu.getBuffer();
              switch (buf[ISO7816.OFFSET_INS]) {
                   case (byte) 0xb1 :
                        break;
                   default :
                        // good practice: If you don't know the INStruction, say so:
                        ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
    client package : (1 class)
    package client;
    import javacard.framework.*;
    public class client extends javacard.framework.Applet{
         private byte[] servAID = {(byte)'A',(byte)'0',(byte)'1',(byte)'0',(byte)'1',(byte)'0',(byte)'1',(byte)'0',(byte)'0',(byte)'0',(byte)'0',(byte)'2'};
         public client()
         private void Call()
         AID settingsAID = JCSystem.lookupAID(servAID,(short) 0, (byte) servAID.length);
            //PROBLEM = BELOW IS THE LINE WHERE I CANT CALL THE SERVER'S PACKAGE "settings"     
           settings sio = (settings)(JCSystem.getAppletShareableInterfaceObject(settingsAID, (byte) 0));
         public static void install(byte[] bArray, short bOffset, byte bLength){
              (new client()).register(bArray, (short)(bOffset + 1), bArray[bOffset]);
         public void process(APDU apdu){
              byte[] buf = apdu.getBuffer();
              switch(buf[ISO7816.OFFSET_INS]){
                   case (byte)0xb1:
                        break;
                   default:
    }

  • Ability to create a dvd menu (for wedding) with "start" function?

    hi there
    i hope you can help.
    i urgently need to create some a dvd menu for a wedding. i have the picture and i wanted some kind of effect and the options to have a 'start' option...so it plays when the user presses 'start' .. is this possible to do in elements.
    i am going to have main wedding video file in a .mov file...and i wanted to to add an intro at the beginning of the video..
    can you please help? this is really stressing me out..

    Travis,
    The navigational functions in PrE's DVD-Video authoring module are very limited.
    Pretty much, one can choose a Menu Set (both a Main Menu and a Scene Selection Menu), and then with the addition of a Menu Marker, and Scene Markers, let PrE create the linear navigation. One can modify many Menu Sets, but only to a limited level.
    For more intricate navigation, I strongly recommend another program, just for the authoring. Many users sing the praises of Sony's DVD Architect, which has a much better feature-set, than does PrE. I use Adobe Encore, but it is ONLY available with PrPro, and not as a stand-alone any more.
    Steve Grisetti, our MOD here, has written a great book on DVD Architect, in the Muvipix.com series, and if you do go with that program, I highly recommend his book.
    Good luck,
    Hunt

  • IPhone 5 suffered heavy water damage, just started functioning regularly-- Need help!

    So last July my iPhone 5 experience severe water damage. Apple store employees said that there was little they could do. The phone would not function
    Fast forward to 6 months later: I hook up the phone to the wall outlet and the black screen shows up with rows and rows of white text. I can hook it up to iTunes but it can't restore.
    Fast forward to today (a year later): I plugged my phone into the wall outlet and hooked it up to iTunes. The phone successfully was updated and restored. It now seems to function normally. I'm considering calling my carrier to switch back to my iPhone 5, however I'm not sure if it will fail on my later because there was extensive water damage before. What are your guys' thoughts?

    however I'm not sure if it will fail on my later because there was extensive water damage before. What are your guys' thoughts?
    It will fail at some point or start acting in a strange manner. And such failure will occur at the time you need the device the most according to my friend Murphy. When the device was water damaged you could have gotten an out of warranty replacement for less than the price of a new phone. In fact you may still be able to get such a replacement. Check with the local Apple store.

  • My imac takes 15 minutes each day to wake up and start functioning properly. My Etrecheck has a lot of red but i don't know how to fix it.

    Problem description:
    Start up each morning (from sleep) takes about 15 minutes before computer runs well. Extremely sluggish.
    EtreCheck version: 2.0.11 (98)
    Report generated November 28, 2014 at 9:26:21 AM EST
    Hardware Information: ℹ️
      iMac (20-inch, Early 2009) (Verified)
      iMac - model: iMac9,1
      1 2.66 GHz Intel Core 2 Duo CPU: 2-core
      2 GB RAM Upgradeable
      BANK 0/DIMM0
      1 GB DDR3 1067 MHz ok
      BANK 1/DIMM0
      1 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce 9400 - VRAM: 256 MB
      iMac 1680 x 1050
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 4 days 22:43:39
    Disk Information: ℹ️
      Hitachi HDT721032SLA380 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 319.21 GB (180.50 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
      Apple Inc. Built-in iSight
      Apple Computer, Inc. IR Receiver
      hp photosmart 7700 series
      Microsoft Microsoft Optical Mouse with Tilt Wheel
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [not loaded] com.wdc.driver.1394HP (1.0.7) Support
      [not loaded] com.wdc.driver.USBHP (1.0.5) Support
    Startup Items: ℹ️
      HP IO: Path: /Library/StartupItems/HP IO
      Startup items are obsolete and will not work in future versions of OS X
    Problem System Launch Agents: ℹ️
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.CallHistorySyncHelper.plist
      [failed] com.apple.coreservices.appleid.authentication.plist
      [failed] com.apple.printtool.agent.plist
      [failed] com.apple.scopedbookmarkagent.xpc.plist
      [failed] com.apple.spindump_agent.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.AssetCacheLocatorService.plist
      [failed] com.apple.awdd.plist
      [failed] com.apple.ctkd.plist
      [failed] com.apple.findmymac.plist
      [failed] com.apple.ifdreader.plist
      [failed] com.apple.spindump.plist
      [failed] com.apple.tccd.system.plist
      [failed] com.apple.wdhelper.plist
    Launch Agents: ℹ️
      [loaded] com.google.keystone.agent.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist Support
      [failed] com.facebook.videochat.[redacted].plist Support
      [running] com.spotify.webhelper.plist Support
      [running] com.zeobit.MacKeeper.Helper.plist Support
    User Login Items: ℹ️
      iTunesHelper UNKNOWNHidden (missing value)
      Garmin Lifetime Map Updater UNKNOWN (missing value)
      Microsoft Outlook Application (/Applications/Microsoft Office 2011/Microsoft Outlook.app)
      GeekTool Helper Application (/Applications/GeekTool.app/Contents/PlugIns/GeekTool.prefPane/Contents/Resourc es/GeekTool Helper.app)
      Skype UNKNOWN (missing value)
      Yammer UNKNOWN (missing value)
      Dropbox Application (/Applications/Dropbox.app)
      Google Chrome Application (/Applications/Google Chrome.app)
      StatusMenu Application (/Incompatible Software/StatusMenu.app)
      HP Scheduler Application (/Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app)
      HP Product Research Application (/Library/Application Support/Hewlett-Packard/Customer Participation/HP Product Research.app)
    Internet Plug-ins: ℹ️
      o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 Support
      Default Browser: Version: 600 - SDK 10.10
      OfficeLiveBrowserPlugin: Version: 12.3.6 Support
      Silverlight: Version: 4.0.60531.0 Support
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Mismatch! Adobe recommends 15.0.0.239
      QuickTime Plugin: Version: 7.7.3
      googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 Support
      SharePointBrowserPlugin: Version: 14.4.6 - SDK 10.6 Support
      AdobePDFViewer: Version: 9.5.5 Support
      iPhotoPhotocast: Version: 7.0
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User Internet Plug-ins: ℹ️
      CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 Support
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      RayV  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      Macintosh HD: Disk size: 319.21 GB Disk used: 138.71 GB
      Destinations:
      My Book [Local]
      Total size: 999.37 GB
      Total number of backups: 11
      Oldest backup: 2012-08-02 18:29:31 +0000
      Last backup: 2014-03-07 21:41:18 +0000
      Size of backup disk: Excellent
      Backup size 999.37 GB > (Disk size 319.21 GB X 3)
    Top Processes by CPU: ℹ️
          1% Google Chrome
          1% parentalcontrolsd
          0% discoveryd
          0% WindowServer
          0% Microsoft Word
    Top Processes by Memory: ℹ️
      70 MB Google Chrome
      64 MB Google Chrome Helper
      27 MB mds
      19 MB System Events
      17 MB WindowServer
    Virtual Memory Information: ℹ️
      36 MB Free RAM
      341 MB Active RAM
      325 MB Inactive RAM
      599 MB Wired RAM
      31.14 GB Page-ins
      575 MB Page-outs

    Agree with Esquared - uninstall these:
    [running] com.spotify.webhelper.plist Support
      [running] com.zeobit.MacKeeper.Helper.plist Support
    http://www.thesafemac.com/?s=mackeeper&submit=Search
    And max out your RAM - you only have 2; no wonder everything takes that long. Here are the specs for your model:
    http://www.everymac.com/systems/apple/imac/specs/imac-core-2-duo-2.66-20-inch-al uminum-early-2009-specs.html
    And here is one of the two most recommended RAM vendors in the US (they also have how-to video instructions on their site):
    http://eshop.macsales.com/shop/memory/iMac/DDR3_2009
    Another good source is Crucial; both offer lifetime warranties.

  • Auto start function on iphoto

    whenever I plug a digital camera into my computer iphoto automatically starts. How do I stop this?????
    G5   Mac OS X (10.4.8)  

    Hi PhillyPhan, thanks heaps!!! All sorted now.
    G5   Mac OS X (10.4.8)  

  • Apple-provided Java SE 6 web plug-in and Web Start functionality - Chrome

    I have recently upgraded my work MBA to OSX 10.9.1 and need to use the Chrome browser to access several work sites.  These work sites also need Java to run.  I have followed the below procedures:
    http://support.apple.com/kb/DL1572
    and
    http://support.apple.com/kb/ht5559
    When I check Java version in Terminal, I get:
    java version "1.6.0_65"
    Java(TM) SE Runtime Environment (build 1.6.0_65-b14-462-11M4609)
    Java HotSpot(TM) 64-Bit Server VM (build 20.65-b04-462, mixed mode)
    However, when I follow the instructions from the second link, the response to the second command (sudo mv /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin /Library/Internet\ Plug-Ins/disabled) yields the following response:
    mv: rename /Library/Internet Plug-Ins/JavaAppletPlugin.plugin to /Library/Internet Plug-Ins/disabled/JavaAppletPlugin.plugin: Not a directory
    In http://support.apple.com/kb/DL1572, it indicates that "On systems that have not already installed Java for OS X 2012-006, this update disables the Java SE 6 applet plug-in. To use applets on a web page, click on the region labeled "Missing plug-in" to download the latest version of the Java applet plug-in from Oracle".  How do I get the Java SE 6 applet plug-in back to use in Chrome?
    Thanks.

    No thoughts on this?  The application of interest is IBM GERS.
    Additionally, I have to use Juniper Network Connect to access work network when travelling away from the office and it is not working either after Mavricks upgrade.
    Thanks.

  • How do you start a function without a button?

    I currently have an action that starts with a button click. But I want it to start on frame 1 automatically without a button. How do I need to edit my code to make this work correctly? It's a typewriter effect and I plan on exporting it out as a .MOV and importing it into Adobe Premiere. I also need to figure out how to get the background transparent if possible. Thanks in advance!
    Here is what I have.
    Button to start the action
    btn.onRelease = function()
        txt_ani.startTypeEffect();
    Typewriter function
    typewriter effect
    // clear the string
    //txt.text = "";
    // stop the page
    stop();
    // the text string
    // use \n for line breaks
    var _txt:String = "“This is the text that will start after you press the button, but hopefully it will start automatically soon”";
    var _tmr:Number; // timer
    var _sec:Number = 62; // milliseconds till next letter
    var i:Number = 1;
    var l:Number = _txt.length;
    function TypeEffect() : Void
        if( i < l )
            txt.text = _txt.substr( 0, i );
            i++;
        } else {
            txt.text = _txt;
            clearInterval( _tmr );
            trace("\t< FIN >");
        //trace( i );
    // call this function to start:
    function startTypeEffect() : Void
        trace("\t< START >");
        _tmr = setInterval( TypeEffect, _sec );

    My movie has 1 frame. I deleted the layer that had the button, so I have an AS layer with the following code in it.
    txt_ani.startTypeEffect();
    And a layer below it with my movie clip with the Function code on one layer and the text in another layer below it.
    When I do play it, nothing happens. But when I add some frames to the movie, it starts after a delay, but I keep seeing "START" in my output tab due to the Trace I have, which makes the text appear very quickly. I think I may need some code to stop it from restarting.
    Where should this code you provided be put? And do I need additional code to have the text not speed up?

  • Error while starting Managed server in wls

    I am using WebLogic Server Version: 10.3.4.0. I have created one managed server thru admin console. I am starting managed server using startManagedWebLogic.cmd batch file. Chnages I made in this cmd file is added managed server name and wls userid/password.
    When execute this, I get below error:
    Server
    Exception in thread "Main Thread" java.lang.NoClassDefFoundError: weblogic/Server
    Caused by: java.lang.ClassNotFoundException: weblogic.Server
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Could not find the main class: weblogic.Server.  Program will exit.
    The contents of the startManagedWebLogic.cmd is as below:
    @ECHO OFF
    @REM WARNING: This file is created by the Configuration Wizard.
    @REM Any changes to this script may be lost when adding extensions to this configuration.
    SETLOCAL
    @REM --- Start Functions ---
    GOTO :ENDFUNCTIONS
    :usage
         echo Need to set SERVER_NAME and ADMIN_URL environment variables or specify
         echo them in command line:
         echo Usage: %1 SERVER_NAME {ADMIN_URL}
         echo for example:
         echo %1 managedserver1 http://localhost:7001
    GOTO :EOF
    :ENDFUNCTIONS
    @REM --- End Functions ---
    @REM *************************************************************************
    @REM This script is used to start a managed WebLogic Server for the domain in
    @REM the current working directory. This script can either read in the SERVER_NAME and
    @REM ADMIN_URL as positional parameters or will read them from environment variables that are
    @REM set before calling this script. If SERVER_NAME is not sent as a parameter or exists with a value
    @REM as an environment variable the script will EXIT. If the ADMIN_URL value cannot be determined
    @REM by reading a parameter or from the environment a default value will be used.
    @REM
    @REM For additional information, refer to "Managing Server Startup and Shutdown for Oracle WebLogic Server"
    @REM (http://download.oracle.com/docs/cd/E17904_01/web.1111/e13708/overview.htm)
    @REM *************************************************************************
    @REM Set SERVER_NAME to the name of the server you wish to start up.
    Set SERVER_NAME=*ManagedServer1*
    set DOMAIN_NAME=mydomain
    set ADMIN_URL=http://localhost:7001
    @REM Set WLS_USER equal to your system username and WLS_PW equal
    @REM to your system password for no username and password prompt
    @REM during server startup. Both are required to bypass the startup
    @REM prompt.
    set WLS_USER=*weblogic*
    set WLS_PW=*weblogic1*
    @REM Set JAVA_OPTIONS to the java flags you want to pass to the vm. i.e.:
    @REM set JAVA_OPTIONS=-Dweblogic.attribute=value -Djava.attribute=value
    set JAVA_OPTIONS=-Dweblogic.security.SSL.trustedCAKeyStore="d:\Perforce\weblogic1\src_16020jr\bea\wlserver_10.3\server\..\server\lib\cacerts" %JAVA_OPTIONS%
    @REM Set JAVA_VM to the java virtual machine you want to run. For instance:
    @REM set JAVA_VM=-server
    set JAVA_VM=
    @REM Set SERVER_NAME and ADMIN_URL, they must by specified before starting
    @REM a managed server, detailed information can be found at
    @REM http://download.oracle.com/docs/cd/E17904_01/web.1111/e13708/overview.htm
    if "%1"=="" (
         if "%SERVER_NAME%"=="" (
              CALL :usage %0
              GOTO :EOF
    ) else (
         set SERVER_NAME=%1
         shift
    if "%1"=="" (
         if "%ADMIN_URL%"=="" (
              CALL :usage %0
              GOTO :EOF
    ) else (
         set ADMIN_URL=%1
         shift
    @REM Export the admin_url whether the user specified it OR it was sent on the command-line
    set ADMIN_URL=%ADMIN_URL%
    set SERVER_NAME=%SERVER_NAME%
    set DOMAIN_HOME=D:\Perforce\weblogic1\dev\src_crmod\wls\mytest
    if "%1"=="" (
         @REM Call Weblogic Server with our default params since the user did not specify any other ones
         call "%DOMAIN_HOME%\bin\startWebLogic.cmd" nodebug noderby noiterativedev notestconsole noLogErrorsToConsole
    ) else (
         @REM Call Weblogic Server with the params the user sent in INSTEAD of the defaults
         call "%DOMAIN_HOME%\bin\startWebLogic.cmd" %1 %2 %3 %4 %5 %6 %7 %8 %9
    ENDLOCAL
    Any help is really appreciated.

    I could see calling to setDomainEnv.cmd script:
    *@REM Call setDomainEnv here.*
    set DOMAIN_HOME=D:\Perforce\weblogic1\dev\src_crmod\wls\mytest
    for %%i in ("%DOMAIN_HOME%") do set DOMAIN_HOME=%%~fsi
    call "%DOMAIN_HOME%\bin\setDomainEnv.cmd" %*
    set SAVE_JAVA_OPTIONS=%JAVA_OPTIONS%
    set SAVE_CLASSPATH=%CLASSPATH%
    But in my environment I do not see these variable set to any, JAVA_HOME, DERBY_CLASSPATH, JAVA_OPTIONS, CLASS_PATH.
    This might be the issue? Or anything else?

  • Error: unexpected XML reader state. expected: END but found: START:

    I am getting following error while invoking method 'GetVersionInfo' (.net web service over dll) which takes one input parameter(string) and gives two output parameters(both short):
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception: deserialization
    error: unexpected XML reader state. expected: END but found: START:
    {UPPLink}pnVersionMajor
    ORA-06512: at "SYS.UTL_DBWS", line 388
    ORA-06512: at "SYS.UTL_DBWS", line 385
    ORA-06512: at line 40
    Expected Request is as follows:
    POST /UPPLink/UPPLink.asmx HTTP/1.1
    Host: 172.16.1.38
    Content-Type: text/xml; charset=utf-8
    Content-Length: length
    SOAPAction: "UPPLink/GetVersionInfo"
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
    <GetVersionInfo xmlns="UPPLink">
    <ignore>string</ignore>
    </GetVersionInfo>
    </soap:Body>
    </soap:Envelope>
    EXpected Response is as follows:
    HTTP/1.1 200 OK
    Content-Type: text/xml; charset=utf-8
    Content-Length: length
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
    <GetVersionInfoResponse xmlns="UPPLink">
    <GetVersionInfoResult>
    <pnVersionMajor>short</pnVersionMajor>
    <pnVersionMinor>short</pnVersionMinor>
    </GetVersionInfoResult>
    </GetVersionInfoResponse>
    </soap:Body>
    </soap:Envelope>
    The PL/SQL code I am using is as follows:
    DECLARE
    service_ sys.utl_dbws.SERVICE;
    call_ sys.UTL_DBWS.call;
    service_qname sys.utl_dbws.QNAME;
    port_qname sys.utl_dbws.QNAME;
    operation_qname sys.utl_dbws.QNAME;
    string_type_qname sys.utl_dbws.QNAME;
    number_type_qname sys.utl_dbws.QNAME;
    retx ANYDATA;
    strEntry VARCHAR2(100);
    retx_string VARCHAR2(100);
    majorVersion NUMBER;
    minorVersion NUMBER;
    params sys.utl_dbws.ANYDATA_LIST;
    v_outputs sys.utl_dbws.anydata_list;
    BEGIN
    dbms_output.put_line('Starting Function');
    service_qname := sys.utl_dbws.to_qname(null, 'UPPLink');
    strEntry := 'vab';
    dbms_output.put_line('Creating Service');
    service_ := sys.utl_dbws.create_service(HTTPURITYPE('http://172.16.1.38/UPPLink/UPPLink.asmx?WSDL'), service_qname);
    dbms_output.put_line('Creating Operation');
    operation_qname := sys.utl_dbws.to_qname(null, 'GetVersionInfo');
    dbms_output.put_line('Calling Service');
    call_ := sys.utl_dbws.create_call(service_, null, operation_qname);
    sys.utl_dbws.set_property(call_, 'SOAPACTION_USE', 'true');
    sys.utl_dbws.set_property(call_, 'SOAPACTION_URI', 'UPPLink/GetVersionInfo');
    sys.utl_dbws.set_property(call_, 'OPERATION_STYLE', 'rpc');
    string_type_qname := sys.utl_dbws.to_qname('http://www.w3.org/2001/XMLSchema', 'string');
    number_type_qname := sys.utl_dbws.to_qname('http://www.w3.org/2001/XMLSchema', 'short');
    sys.utl_dbws.add_parameter(call_, 'ignore', string_type_qname, 'ParameterMode.IN');
    sys.utl_dbws.add_parameter(call_, 'pnVersionMinor', number_type_qname, 'ParameterMode.OUT');
    sys.utl_dbws.set_return_type(call_, number_type_qname);
    params(0) := ANYDATA.convertvarchar2(strEntry);
    dbms_output.put('Invoking with Input Parameter: ');
    dbms_output.put_line(ANYDATA.ACCESSVARCHAR2(params(0)));
    retx := sys.utl_dbws.invoke(call_, params);
    dbms_output.put_line('Invoke complete');
    majorVersion := retx.accessnumber;
    dbms_output.put_line('Major Version ' || majorVersion);
    v_outputs := SYS.utl_dbws.get_output_values(call_);
    minorVersion := ANYDATA.AccessNumber(v_outputs(1));
    dbms_output.put_line('Minor Version ' || minorVersion);
    sys.utl_dbws.release_service(service_);
    END;
    /

    Actually, the name needs to match what is specified in the WSDL file.

  • Mac OS 10.4.8 , Java Web Start and JRE version of 1.4.2 and 1.5.0 problem

    Hello,
    I've been searching internet and reading the problems related to Java Web Start and JNLP.
    But no solution I read can solve what I faced.
    I'm running Mac OS x 10.4.8 and Macintosh updates the Java in my machine so that it has Java version 1.4.2 and Java 1.5.0
    The application I'm running needs to be running in JRE 1.4.2.
    So I changed the Java Preferences so that the default Java setting is JRE 1.4.2. However, the JNLP application still running in Java 1.5.0
    So I changed the MIME and make sure the JNLP is opened with Java Web start instead. The Java Web start is for version 1.4.2. I also change its preference so that the console is opened.
    I tried to run the JNLP application once again. Java web start 1.4.2_09 starts and console open, but the Java Runtime is still showing Java 1.5.0
    I adjust the JNLP file so that the version is only showing 1.4.2_09 (ignoring all other variables of version 1.4.1, 1.4.2, etc found in the original JNLP file). That didn't work either.
    I search on methods on how to uninstall Java 1.5.0 in Mac - apple page told me that I can't do that unless I reinstall the whole OS.
    I am henceforth declare that I am stuck now !!!! Heellllpp....

    Are you up to date with the updates?
    Update for Snow Leopard users:
    Apple issued update 12 for Java for OS 10.6:
    http://support.apple.com/kb/DL1573
    Note:  On systems that have not already installed Java for Mac OS X 10.6 update 9 or later, this update will configure web browsers to not automatically run Java applets. Java applets may be re-enabled by clicking the region labeled "Inactive plug-in" on a web page. If no applets have been run for an extended period of time, the Java web plug-in will deactivate.
    If, after installing Java for OS X 2013-002 and the latest version of Java 7 from Oracle, you want to disable Java 7 and re-enable the Apple-provided Java SE 6 web plug-in and Web Start functionality, follow these steps:
    http://support.apple.com/kb/HT5559?viewlocale=en_US
    Further update:
    Apple issued this Java related security update No. 13 on February 19:
    http://support.apple.com/kb/HT5666
    and Update No. 14 on March 4:  http://support.apple.com/kb/DL1573
    http://support.apple.com/kb/HT5677
    The standard recommendation is for users to turn off Java except when they have to use it on known and trusted websites (like their bank). Javascript, which is unrelated despite the name, can be left on.

Maybe you are looking for