Jsp el custom functions not loading

Hi,
          We are currently testing Weblogic 9.0 and have come across a
          problem with custom EL functions.
          The problem is that it does not recognise the custom function.
          It is replicable using the sample webapp
          found here /opt/bea/weblogic90/samples/server/examples/src/examples/webapp/jsp/expressions/
          jspExpressionEar/
          the JSP exception thrown shows...
          javax.servlet.jsp.el.ELException: no method corresponding to the one declared in the EL was found method : 'strCompare'
               at javelin.jsp.el.FunctionEvaluator.evaluate(FunctionEvaluator.java:62)
               at javelin.jsp.el.ELNode$Function.evaluate(ELNode.java:630)
          We have tried a couple of methods of configureing.
          URI to taglib.tld (which should not matter) was /WEB-INF/..
          Tried http://someunique.url.com
          and both a JSP (this sample) and a JSPX file (our original).
          Has anyone seen this problem before, I see no mention of the error on the forums.
          Regards
          Ramon

You get the same error even when the class which includes the method is missing. Can you check whether the class is available in WEB-INF/classes or WEB-INF/lib or at the ear level?
          I just tried this locally and it works as expected w/ the class in web-inf/classes
          We'll add a better error message in this case.
          -- Nagesh

Similar Messages

  • [SOLVED]Custom DSDT not loading - OEM battery doesn't work - Sony Vaio

    EDITING ORIGINAL POST TO POST SOLUTION so I don't do a massive bump
    Installed windows and ran the BIOS flasher that came with the battery. Didn't work until I changed a line in the plaintext configuration file (config.ini or something) it comes with. Changed "Capacity: 20" to "Capacity: -10". This changed the battery charge requirement from 20% to negative ten percent (any negative number will do), allowing the program to run and flash the BIOS. Didn't realize I could do that, but it fixed  the problem 100%.
    #### BEGIN ORIGINAL POST: ################################
    Hey guys,
    I'm a bit of a linux noob, but I've spent many hours this week trying to fix this issue on my own and have learned a lot about making custom kernels, hardware stuff, ACPI, and ABS. However, nothing I've done has worked and I've hit a wall. For reference, I'm on a Sony Vaio VGN-FZ4000 with linux-3.0 base kernel, gnome3/gdm. The battery is made in china and doesn't list a manufacturer, just model number BPS8, 52000mAh.
    [Backstory]
    So I recently got an OEM battery to replace the broken original, which hasn't worked since before I installed arch (though it worked with an Arch install I did a couple years ago). When I first plugged it in, the gnome battery symbol popped up listing the battery at 0% with an exclamation icon. I unplugged from AC power and the laptop still ran, but the battery monitor just said it was at 0% and 'Estimating' remaining time. I figured this was a glitch with gnome or just because it was this battery's first cycle so I let it run down until it hard-crashed. Then I plugged back into AC and tried to turn on the computer, but it wouldn't do anything until I removed the battery.
    Looking into the problem I discovered this was due to the ACPI firmware table DSDT being compiled for Windows, which has, shall we say, fewer restrictions on sanity than the Intel ASL compiler used for UNIX systems. Sure enough I extracted /sys/firmware/acpi/tables/DSDT to find that its section about the battery contained the entry 'Zero' for Battery Technology, which translates to "non-rechargeable", rather than 'One', which makes it chargeable. acpitool confirmed this; my system thought the battery was non-rechargeable and was constantly discharging it. Needless to say I've only been putting it in temporarily to test solutions since.
    [/backstory]
    [tl;dr] DSDT firmware contains malformed battery description, now I can't get my system to run with a custom DSDT. [/tl;dr]
    Attempted solutions:
    [1]
    Extract, modify, recompile DSDT and include it with the kernel compilation .config options
    CONIFG_ACPI_CUSTOM_DSDT=y
    CONFIG_ACPI_CUSTOM_DSDT_FILE="/usr/src/custom_dsdt.hex
    CONIFG_STANDALONE=n
    as suggested here, a page linked to by the arch wiki page on DSDT.
    I followed the instructions but no matter what this has generated errors during the kernel compilation, sometimes due to every line containing unexpected \231 (or other numbers) characters, sometimes finding some error in the DSDT file and then claiming that the driver it was compiling (ol.c somewhere in the drivers/acpi section I believe) had references to undefined functions all over the place. I CANNOT compile with a custom DSDT specified.
    [2]
    Place recompiled DSDT in /lib/initcpio/custom.dsdt and add 'dsdt' to the HOOKS in mkinitcpio (and rebuild the initramfs-linux-*.img, of course). Another version of this included recompiling the kernel with CONFIG_STANDALONE disabled.
    In neither of these situations has the running DSDT ever been anything but the BIOS-supplied one and not once has the battery shown any different behavior.
    acpitool and $ cat /proc/acpi/battery/BAT0/info have consistently claimed the information specified in the BIOS-supplied DSDT; the battery is non-rechargeable and is discharging at an unknown rate. Sometimes acpi will even report that the battery has zero capacity.
    The arch wiki does say mkinitcpio doesn't support the dsdt hook as of 2.6.30, but [1] didn't work either and mkinitcpio -H dsdt still told me to try this so I did.
    [3]
    The final solution I have tried has been to do [2] but to recompile the kernel with the legacy support for battery and ac adapter stuff disabled. I tried this because it was suggested in the kernel.log;
    Sep  13 11:51:03 localhost kernel: [   11.740059] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    Sep  13 11:51:03 localhost kernel: [   11.753434] ACPI: AC Adapter [ADP1] (on-line)
    The corresponding line now reads
    ACPI: AC Adapter [ADP1] (on-line)
    (The same goes for the battery BAT0)
    but all this does is remove the battery/ and adp1/ folders from /proc/acpi/ and break acpitool functionality. The log still doesn't mention the dsdt hook, either.
    [4]
    The old way to do this was to use the acpi-dsdt-initrd-patch-* patch, but that hasn't been updated for modern kernels, presumably because of the new "functionality" from mkiniticpio. The current kernel .config doesn't include any options for ACPI initrd/initramfs support or reading a DSDT from initramfs, which is the functionality provided by this patch.
    This covers all the methods I've been able to find on the internet and I'm at a loss for what to do. Am I doing something wrong in [1]? Under what conditions will the compiler fail/succeed with a CONFIG_ACPI_CUSTOM_DSDT_FILE?
    When I recompile I fix the 'Zero' definition and a couple compiler errors and warnings. The errors come from section length definitions, which read as 0x00000000 rather than the appropriate max-min value so I fix those, and the warnings come from _T_* methods belonging to the compiler, so I refactor the code to remove the initial underscores. The last warning comes from an isolated And statement that's within brackets (compiler complains it doesn't do anything), but if I remove that the compiler fails hard.
    Thanks to anyone who's read this far.  Please let me know if you have any ideas how to get my system to use a customized DSDT.
    Last edited by paraffin (2011-09-29 23:20:30)

    Thanks for the offer, Radioactive man However, I'm actually compiling a customized kernel with the linux-ck and -sony patches, so your packages won't help. (The custom kernel works fine and I've tested this battery behavior on the the regular, -ck, and -sony kernels as well)
    Anyway, so I tried another compile with
    CONFIG_PREVENT_FIRMWARE_BUILD=n in addition to the options listed in [1] and that time it compiled.
    Unfortunately it still didn't load the DSDT!
    I did catch a quick little error message that turned up in kernel.log though;
    /var/log/kernel.log:Sep 15 11:50:24 localhost kernel: [    0.925780] acerhdf: unknown (unsupported) BIOS version Sony Corporation/VGN-FZ4000E/R2110J7, please report, aborting!
    acerhdf is a fan controller module for the Aspire One, and perhaps I left that in the kernel config and it's preventing the custom DSDT from loading, even though the acerhdf module never gets loaded itself, nor is it in my rc.conf or anything else... If that was the cause of all this, I'm gonna be angry...
    Anyway, this message does not appear with my latest kernel build because I took off the custom DSDT option, hoping to be able to use ACPI_CUSTOM_METHOD=y, which supposedly allows one to inject a custom AML method into a debug fs. It wouldn't have worked anyway, as it doesn't let you modify Device sections, but even with a dummy method insertion it didn't give my root modification privileges as it was supposed to...
    Will try recompiling AGAIN with this CONFIG_ACERHDF=n (it's simply 'not set' in my current .config), while also enabling the custom kernel etc. If this doesn't work I have no idea what I'll do.
    Anyway, thanks for your help and time:

  • JSP / HTML page does not load correctly in IE

    I have a particular jsp page, which has heavy volume of data and it does not load completely in IE, but loads perfectly in Firefox and Safari.
    It is a really perpleximg problem that occurs only when the volume of data is large. None of the people in my team were able to solve this issue.
    Please send in your suggestions as to why this is happening or if there are any known bugs in IE.
    In case you need an HTML version of the code, please do mail me at [email protected]

    Jaison_Sabu wrote:
    I have a particular jsp page, which has heavy volume of data and it does not load completely in IE, but loads perfectly in Firefox and Safari.
    It is a really perpleximg problem that occurs only when the volume of data is large. Why would you be sending large amounts of data to a JSP? Sounds fishy to me.
    None of the people in my team were able to solve this issue.Well if you provided your team with the same amount (none) of information you provided here, then I would understand.
    Please send in your suggestions as to why this is happening or if there are any known bugs in IE.Personally, I think it's the flux capacitor.
    In case you need an HTML version of the code, please do mail me at [email protected]
    Hope you're ready for some spam.

  • Custom Functions not exported - Urgent

    Hi,
    We have couple of Custom Functions imported into the OWB Design Repository. After completing with Development, now i want to move into TEST repository. I created a snapshot and exported (MDL file) the project. When I imported into TEST Design Repo, the custom functions are missing.
    our environment is -
    OWB Design Client - 9.2.0.2.8
    OWB Design Repo - 9.2.0.2
    Can you please give me some idea why this is happening?
    Thanks
    Mahesh

    Hi JP,
    No, I have not renamed MY_PROJECT. The problem lies in the Export phase itself. When I export those custom functions (defined under public transformations) are not exported at all. Like when I look into the export log file, it shows the count of standalone Functions / Functions as 0.
    since the Custom Functions are not exported, when I import it into a TEST environment the links are broken inside the PF, due to the fact of UOIDs you have rightly mentioned. Exporting the custom functions alone and importing into the TEST environment does not solve the problem due to lack of connectivity (again due to UOID).
    But, I think I nailed the problem by approaching in a different way. I have created a target module and then moved the custom functions into that module as private functions. When I exported the project, the functions are exported and imported without any problem.
    so, I guess we have not fully understood the custom functions concept(under public transformations). If anybody clarifies / explains how to use them I will be very glad for learning something new.
    Thanks
    Mahesh

  • Custom fonts not loading while Edge Animation inside an iFrame

    Hi can someone help me with this strange problem? Custom fonts, specifically, Typekit fonts I used in my Edge Animate animation is not loading IE 11 when the animation is inside an iFrame. If you view the animation HTML directly on the browser, the fonts load perfectly fine.
    Here is an example where the animation is inside an iFrame and part of a webpage where fonts are not loaded when using IE11.
    http://www.pandaequipment.com/test/contact.html
    and here is the HTML file directly where fonts and loaded fine in IE 11
    http://www.pandaequipment.com/test/edgeanimate_assets/myhero/Assets/myhero.html
    All the other browsers I tested don't have this problem.
    Can someone tell me some ways to fix this in IE?

    Hi Keith,
    I'm sorry that you ran into trouble with this.  I also saw this issue when I tested your site in Chrome on OS X 10.9, although the fonts worked on reload because they were then cached in the browser.
    I suspect the the issue is in the "src" attribute on the iframe:
    iframe allowtransparency="true" frameborder="0" scrolling="no" src="edgeanimate_assets/myhero/Assets/myhero.html"
    Would you try changing the src to a full path, and see if the fonts load into the iframe?
    iframe allowtransparency="true" frameborder="0" scrolling="no" src="http://www.pandaequipment.com/test/edgeanimate_assets/myhero/Assets/myhero.html"
    Background:  Typekit gets the domain name from the browser referrer and uses it to check that the site matches the listing on your kit.  This is one of the security layers to make sure someone can't steal your Typekit fonts and use them on their own site.  When loading fonts into an iframe, the iframe referrer needs to match as well.
    If the iframe referrer doesn't match or is blank, the behavior is browser-specific.  Some browsers will use the referrer of the parent page and so the fonts load, while others don't apply the fonts at all.
    Setting the iframe src to the full URL should ensure that a referrer is sent, and may fix this issue.
    Please give that a try, and let me know how it goes!  Thank you,
    -- liz

  • IWeb 08 - Custom Fonts not loading Anymore

    All,
    When I had iWeb '06 installed I could use custom fonts when designing and the fonts would display on any computer without having to install them. It seems that iWeb '06 used to load them as images.
    Now in iWeb '08 that doesn't seem to be the case. Now you have to have the fonts on your system to view them. Anyone know a way in '08 to change this. Or should I just create those portions as images then add them to the page?
    Thanks to all who respond.

    HI phantom27,
    While in iWeb, go to iWeb help and type in fonts in the search box.
    In the results page, look at the bottom where it says "iWeb:Tips for making text appear consistant in all browsers. It will give you all the info you need.

  • Custom library not loading on Android 4.1.2

    it happen to me as well on android 4.1.2
    downloaded zip file from DPS Configurator Android combined library and store.
    uploaded the zip on the native app builder.
    installed on device.
    Nothing happens I have a black screen. I use direct entitlement, and after I login, I can see the default library, but not my custom one with the banner.
    Thanks

    (Branched out to new discussion, but sadly it didn't take all the replies with it. Silly forum software).
    As we discussed in the other thread, check that the custom store files are zipped into the top level of the zip file and that your start page is called index.html. Make sure you haven't zipped the folder containing your files. The zip itself has to have all the files loose in the top level, not in a folder inside.
    Neil

  • Custom Viewset not loading on browser

    HI
    i have created a custom view and assigned to a view set.. everything looks good. added new fields created context node. done configuration tab work, like editing the configuration and made those fields available on screen.
    everything looks good. but when i test this custom component . the browser asks me the user id and pwd, but doenstload anything
    white blank window apperas and that is it.
    i tried to test BT115S_SLSO component, its the same for this tooo?
    but when i run the complete webui, its good, means crm_ui tcode.... i can login with web ui link ..
    how to test individual components std or custom? is there anything needs to do.. i saw SICF services with these components are active..
    pls help

    Hi,
    I tested in bsp_wd_cmpwb with BT115S_SLSO, it is okay, the page shown with the search page.
    Would you please take an httpwatch trace?
    Is bspwd_cmp_test correctly started?
    Hongyan

  • IGoogle custom layout not loading properly in Firefox 4

    When using the new Firefox version 4 - iGoogle does not display correctly, most of the objects display nothing more than their titles, and some do not display anything at all.
    Tested on IE9, no issues.

    If you use Avast try disabling the WebRep add-on. I had the same problem, it was working fine in safe mode to I guessed it was a problem with an add-on, when I disabled Avast it now displays perfectly. I have WOT so thankfully Avast was superfluous anyway. Hope that helps.

  • EBS posting to clear customer open items - Function not working?

    Hello SAPers
    I have an issue I just canu2019t seem to resolve! We are receiving MT940 statements and receive customer invoice reference details with field: 86 as follows:
    :61:090910C1500,00FOSB1000270 //100909050      0        035315
    :86:DEPOSIT
    Remitter:1000270 MISSION AUSTRALIA   Ref:1200000017
    Immediately following the BTC FOSB the bank quotes the customer number however I am not using this as standard SAP should identify the customer by document number within the note to payee field?
    I am using a 2 step process in posting to the clearing account and customer. Config as follows:
    Pst Type 1
    40     Bank
    50     Clearing
    Pst type 2
    40     Clearing
    15     BLANK          DZ     3      15
    I have also set up a string to look for the documents ^(12########)$. When we load the statement the first posting is successful however the second does not post to the customer or clear based on the invoice reference. I am using algorithm 020. The error that occurs is F5 102 Customer does not exist in company code xxxx. It actually does exist in the company code.
    I have loaded the EBS to the buffer and simulated the search on BELNR and it picks up the document?
    I am sure this is standard and a CMOD is not required on this type of functionality? What have I not done to allow posting to the customer based on document number or to post on account where it is not cleared?
    Any assistance on this issue is appreciated? Thanks in advance.

    Function Module for GL open Items
    how to clear customer open items by another  customer open item
    Function Module for GL Open Items
    Reward points..

  • Customized User Profiles not loading for Network Users

    I manage Macs in public computer labs and classrooms at a university. My general set up is as follows:
    Clients are running 10.8.5, OD Masters are running 10.7.5. Open Directory Master to manage client preferences for Login window and screen saver. Clients bind to Active Directory for authentication purposes only. Networked users home directories are stored locally then deleted at log out. Using Deploy Studio to image and restore clients.
    My customized user profiles are stored in /User Templates/Non_Localized.lproj.(I also update English.lproj for any local users that may need to be created for various reasons).
    Recently I have come across a situation where, randomly, my customized user profile does not load at Login, and I am given the out-of-the-box default Apple profile. This is happening in 11 of my 14 labs. I have three labs that seem to not be affected by this.
    On some labs I manage the DHCP, some labs I do not, and rely on our Networking group to supply DHCP and DNS. Because of this setup I have six different DNS server that may be in the mix. Two are Unix boxes, the other four are the Active Directory Domain Control servers. I did create a spreadsheet of all the AD/OD settings for each lab to see if I could find some kind of pattern, but don't see a way to upload it.
    The one thing I do notice is that when I do a mass login using a shell script via Apple Remote Desktop, when the profile fails to build correctly, the user login is quick, much quicker than when the correct profile loads. Almost as if a packet is sent the the OD server, it's rejected, and bam, Apple's default profile loads.
    I have flushed the DNS cache of the local clients using killall --HUP mDNSResponder
    I've got one week to figure this out before classes start, so if you have a clue as to what's going on, I sure would be grateful.
    Here are logs from both the admin's account and the user's account when the default profile fails to build:
    ADMIN log:
    8/20/14 1:31:03.366 PM  CVMServer[109]  Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    8/20/14 1:31:03.389 PM  loginwindow[44] Login Window - Returned from Security Agent
    8/20/14 1:31:03.491 PM  loginwindow[44] USER_PROCESS: 44 console
    8/20/14 1:31:04.084 PM  WindowServer[75]    **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    8/20/14 1:31:06.307 PM  locationd[563]  NOTICE,Location icon should now be in state 0
    8/20/14 1:31:06.478 PM  coreaudiod[560] Enabled automatic stack shots because audio IO is inactive
    8/20/14 1:31:06.621 PM  UserEventAgent[548] cannot find fw daemon port 1102
    8/20/14 1:31:08.530 PM  WindowServer[75]    Display 0x04280480: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    8/20/14 1:31:09.707 PM  NetworkBrowserAgent[591]    Starting NetworkBrowserAgent
    8/20/14 1:31:10.393 PM  apsd[593]   Certificate doesn't match host
    8/20/14 1:31:11.499 PM  com.apple.SecurityServer[15]    Session 100010 created
    8/20/14 1:31:13.561 PM  genatsdb[608]   ########## genatsdb Sandboxed. ##########
    8/20/14 1:31:13.562 PM  apsd[593]   Certificate doesn't match host
    8/20/14 1:31:13.740 PM  com.apple.time[548] Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/20/14 1:31:14.555 PM  apsd[593]   Certificate doesn't match host
    8/20/14 1:31:45.040 PM  genatsdb[608]   *GENATSDB* FontObjects generated = 1113
    8/20/14 1:31:55.663 PM  com.apple.time[548] Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/20/14 1:32:20.627 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.627 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.627 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.627 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.628 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.628 PM  WindowServer[75]    dict count after removing entry for window 0x2a is 0
    8/20/14 1:32:20.641 PM  com.apple.launchd[1]    (com.apple.quicklook.satellite.4D0B4319-944D-49A6-A515-02F31AE3C235[628]) Could not terminate job: 3: No such process
    8/20/14 1:32:20.641 PM  com.apple.launchd[1]    (com.apple.quicklook.satellite.4D0B4319-944D-49A6-A515-02F31AE3C235[628]) Using fallback option to terminate job...
    8/20/14 1:32:20.645 PM  coreservicesd[65]   SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=188
    8/20/14 1:32:20.647 PM  coreservicesd[65]   SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=147
    8/20/14 1:32:20.647 PM  coreservicesd[65]   SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=194
    8/20/14 1:32:20.648 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.648 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.648 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.648 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.648 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.716 PM  loginwindow[44] DEAD_PROCESS: 44 console
    8/20/14 1:32:20.891 PM  com.apple.time[548] Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/20/14 1:32:20.929 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.929 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.929 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.929 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.929 PM  WindowServer[75]    CGXGetConnectionProperty: Invalid connection 32023
    8/20/14 1:32:20.930 PM  coreservicesd[65]   SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=158
    8/20/14 1:32:22.259 PM  WindowServer[75]    CGXRestartSessionWorkspace: session workspace exited for session 256 (on console)
    8/20/14 1:32:22.259 PM  WindowServer[75]    Session 256 released (1 references)
    8/20/14 1:32:22.259 PM  WindowServer[75]    Session 256 released (0 references)
    8/20/14 1:32:22.259 PM  WindowServer[75]    loginwindow connection closed; closing server.
    8/20/14 1:32:22.268 PM  apsd[593]   CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    8/20/14 1:32:22.285 PM  loginwindow[653]    Login Window Application Started
    8/20/14 1:32:22.299 PM  UserEventAgent[11]  Captive: [UserAgentDied:139] User Agent @port=45319 Died
    8/20/14 1:32:22.310 PM  ARDAgent[574]   CGSGetNextEventRecord (Inline) connection 0xb903, 16384 bytes
    8/20/14 1:32:22.310 PM  ARDAgent[574]   CGSShutdownServerConnections: Detaching application from window server
    8/20/14 1:32:22.310 PM  ARDAgent[574]   CGSDisplayServerShutdown: Detaching display subsystem from window server
    8/20/14 1:32:22.311 PM  blued[58]   -[CBManager init] init returning self:0x7ff6a3b04990
    8/20/14 1:32:22.329 PM  WindowServer[654]   Server is starting up
    8/20/14 1:32:22.330 PM  WindowServer[654]   Session 256 retained (2 references)
    8/20/14 1:32:22.330 PM  WindowServer[654]   Session 256 released (1 references)
    8/20/14 1:32:22.333 PM  WindowServer[654]   Session 256 retained (2 references)
    8/20/14 1:32:22.333 PM  WindowServer[654]   init_page_flip: page flip mode is on
    8/20/14 1:32:22.357 PM  WindowServer[654]   mux_initialize: Couldn't find any matches
    8/20/14 1:32:22.367 PM  WindowServer[654]   GLCompositor enabled for tile size [256 x 256]
    8/20/14 1:32:22.367 PM  WindowServer[654]   CGXGLInitMipMap: mip map mode is on
    8/20/14 1:32:22.424 PM  WindowServer[654]   WSMachineUsesNewStyleMirroring: true
    8/20/14 1:32:22.425 PM  WindowServer[654]   Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 30 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x000006100000a0120000000004280480
    8/20/14 1:32:22.425 PM  WindowServer[654]   Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    8/20/14 1:32:22.425 PM  WindowServer[654]   Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    8/20/14 1:32:22.429 PM  WindowServer[654]   Created shield window 0x4 for display 0x04280480
    8/20/14 1:32:22.429 PM  WindowServer[654]   Created shield window 0x5 for display 0x003f003e
    8/20/14 1:32:22.429 PM  WindowServer[654]   Created shield window 0x6 for display 0x003f003d
    8/20/14 1:32:22.431 PM  WindowServer[654]   Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 30 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x000006100000a0120000000004280480
    8/20/14 1:32:22.431 PM  WindowServer[654]   Display 0x003f003e: GL mask 0x4; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    8/20/14 1:32:22.431 PM  WindowServer[654]   Display 0x003f003d: GL mask 0x2; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    8/20/14 1:32:22.431 PM  WindowServer[654]   CGXPerformInitialDisplayConfiguration
    8/20/14 1:32:22.431 PM  WindowServer[654]     Display 0x04280480: MappedDisplay Unit 0; Vendor 0x610 Model 0xa012 S/N 0 Dimensions 18.70 x 10.51; online enabled built-in, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    8/20/14 1:32:22.431 PM  WindowServer[654]     Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    8/20/14 1:32:22.431 PM  WindowServer[654]     Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    8/20/14 1:32:22.522 PM  WindowServer[654]   GLCompositor: GL renderer id 0x01022647, GL mask 0x00000007, accelerator 0x00003fab, unit 0, caps QEX|QGL|MIPMAP, vram 512 MB
    8/20/14 1:32:22.527 PM  WindowServer[654]   GLCompositor: GL renderer id 0x01022647, GL mask 0x00000007, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    8/20/14 1:32:22.530 PM  loginwindow[653]    **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    8/20/14 1:32:22.557 PM  WindowServer[654]   Created shield window 0x7 for display 0x04280480
    8/20/14 1:32:22.557 PM  WindowServer[654]   Display 0x04280480: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    8/20/14 1:32:22.609 PM  launchctl[657]  com.apple.findmymacmessenger: Already loaded
    8/20/14 1:32:22.613 PM  hidd[49]    CGSShutdownServerConnections: Detaching application from window server
    8/20/14 1:32:22.613 PM  hidd[49]    CGSDisplayServerShutdown: Detaching display subsystem from window server
    8/20/14 1:32:22.621 PM  com.apple.SecurityServer[15]    Session 100012 created
    8/20/14 1:32:22.622 PM  loginwindow[653]    Login Window Started Security Agent
    8/20/14 1:32:22.666 PM  com.apple.dock.extra[644]   Our bootstrap port disappeared out from under us: 0x1507 { urefs = 32774, rights = 0x1507: dead name }
    8/20/14 1:32:22.667 PM  com.apple.dock.extra[644]   Bug: 12F45: libxpc.dylib + 36100 [70BC645B-6952-3264-930C-C835010CCEF9]: 0x10000003
    8/20/14 1:32:22.681 PM  UserEventAgent[659] cannot find useragent 1102
    8/20/14 1:32:22.686 PM  com.apple.dock.extra[644]   Check-in to the service com.apple.imagent.desktop.auth failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    8/20/14 1:32:22.693 PM  SecurityAgent[665]  MacBuddy was run = 0
    8/20/14 1:32:22.695 PM  com.apple.dock.extra[644]   CGSGetNextEventRecord (Inline) connection 0xc917, 16384 bytes
    8/20/14 1:32:22.695 PM  com.apple.dock.extra[644]   CGSShutdownServerConnections: Detaching application from window server
    8/20/14 1:32:22.695 PM  com.apple.dock.extra[644]   CGSReleaseShmem : Cannot release shared memory
    8/20/14 1:32:22.695 PM  com.apple.dock.extra[644]   CGSDisplayServerShutdown: Detaching display subsystem from window server
    8/20/14 1:32:22.696 PM  com.apple.dock.extra[644]   Our bootstrap port disappeared out from under us: 0x1507 { urefs = 32774, rights = 0x1507: dead name }
    8/20/14 1:32:22.696 PM  com.apple.dock.extra[644]   Bug: 12F45: libxpc.dylib + 36100 [70BC645B-6952-3264-930C-C835010CCEF9]: 0x10000003
    8/20/14 1:32:22.696 PM  com.apple.dock.extra[644]   [Warning] Bad response from daemon for setup info
    8/20/14 1:32:22.704 PM  WindowServer[654]   MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280480 device: 0x106d8d110  isBackBuffered: 1 numComp: 3 numDisp: 3
    8/20/14 1:32:24.429 PM  WindowServer[654]   **DMPROXY** (2) Found /System/Library/CoreServices/DMProxy'.
    8/20/14 1:32:24.459 PM  WindowServer[654]   Display 0x04280480: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    8/20/14 1:32:24.500 PM  WindowServer[654]   Display 0x04280480: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    8/20/14 1:32:24.695 PM  com.apple.dock.extra[644]   Our bootstrap port disappeared out from under us: 0x1507 { urefs = 32774, rights = 0x1507: dead name }
    8/20/14 1:32:24.696 PM  com.apple.dock.extra[644]   Bug: 12F45: libxpc.dylib + 36100 [70BC645B-6952-3264-930C-C835010CCEF9]: 0x10000003
    8/20/14 1:32:24.696 PM  com.apple.dock.extra[644]   [Warning] Bad response from daemon for setup info
    8/20/14 1:32:40.928 PM  com.apple.launchd[1]    (com.apple.dock.extra[644]) Exit timeout elapsed (20 seconds). Killing
    8/20/14 1:32:40.928 PM  coreservicesd[65]   SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=202
    8/20/14 1:33:35.215 PM  SecurityAgent[665]  User info context values set for jsuny
    8/20/14 1:33:35.297 PM  SecurityAgent[665]  Login Window login proceeding
    8/20/14 1:33:36.387 PM  loginwindow[653]    Login Window - Returned from Security Agent
    8/20/14 1:33:36.000 PM  kernel[0]   Sandbox: kcm(695) deny mach-lookup com.apple.networkd
    8/20/14 1:33:36.453 PM  loginwindow[653]    USER_PROCESS: 653 console
    8/20/14 1:33:37.052 PM  locationd[708]  NOTICE,Location icon should now be in state 0
    8/20/14 1:33:37.107 PM  UserEventAgent[700] cannot find fw daemon port 1102
    8/20/14 1:33:37.683 PM  xpcd[611]   MiniLauncher[711]: registration request failed: (0x12, 0xd) process failed sandbox check
    8/20/14 1:33:37.907 PM  WindowServer[654]   **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    8/20/14 1:33:38.011 PM  coreservicesd[65]   SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationReady to notificationID=237
    8/20/14 1:33:38.114 PM  WindowServer[654]   Display 0x04280480: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    8/20/14 1:33:38.395 PM  imagent[737]    [Warning] Setting up a new messages database.
    8/20/14 1:33:38.428 PM  NetworkBrowserAgent[747]    Starting NetworkBrowserAgent
    8/20/14 1:33:40.068 PM  com.apple.time[700] Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/20/14 1:33:40.069 PM  com.apple.time[700] Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/20/14 1:33:43.910 PM  netbiosd[89]    name servers down?
    8/20/14 1:33:56.635 PM  netbiosd[89]    notify name "self.mdns.disconnection" has been registered 20 times - this may be a leak
    8/20/14 1:33:56.639 PM  netbiosd[89]    notify name "self.mdns.disconnection" has been registered 40 times - this may be a leak
    8/20/14 1:34:49.927 PM  netbiosd[89]    name servers down?
    8/20/14 1:35:54.977 PM  netbiosd[89]    name servers down?
    USER LOG:
    8/20/14 1:31:03.956 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.gamed) Ignored this key: UserName
    8/20/14 1:31:03.956 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.gamed) Ignored this key: GroupName
    8/20/14 1:31:03.957 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    8/20/14 1:31:03.961 PM  loginwindow[44] Connection with distnoted server was invalidated
    8/20/14 1:31:04.013 PM  distnoted[549]  # distnote server agent  absolute time: 799.097924175   civil time: Wed Aug 20 13:31:04 2014   pid: 549 uid: 1467285364  root: no
    8/20/14 1:31:08.954 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.afpstat-qfa[588]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    8/20/14 1:31:08.955 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.afpstat-qfa[588]) Job failed to exec(3) for weird reason: 2
    8/20/14 1:31:08.958 PM  com.apple.launchd.peruser.1467285364[536]   (com.google.keystone.user.agent[590]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    8/20/14 1:31:08.958 PM  com.apple.launchd.peruser.1467285364[536]   (com.google.keystone.user.agent[590]) Job failed to exec(3) for weird reason: 2
    8/20/14 1:31:12.394 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.mrt.uiagent[578]) Exited with code: 255
    8/20/14 1:31:15.132 PM  SystemUIServer[557] Could not load menu extra NSBundle </System/Library/CoreServices/Menu Extras/User.menu> (loaded) for Class AppleUser
    8/20/14 1:32:20.642 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.quicklook[626]) Exited: Killed: 9
    8/20/14 1:32:20.647 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.mdworker.single.08000000-0000-0000-0000-000000000000[641]) Exited: Killed: 9
    8/20/14 1:32:20.647 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000[635]) Exited: Killed: 9
    8/20/14 1:32:20.783 PM  Dock[556]   could not open iterator, -43, for directory <ECDirectory: 0x7fd8ac846970> {path=/Users/jsuny/Documents/} (directory changed)
    8/20/14 1:32:20.783 PM  Dock[556]   problem iterating directory, -43, for directory <ECDirectory: 0x7fd8ac846970> {path=/Users/jsuny/Documents/} (directory changed)
    8/20/14 1:32:22.310 PM  ARDAgent[574]   HIToolbox: received notification of WindowServer event port death.
    8/20/14 1:32:22.311 PM  ARDAgent[574]   port matched the WindowServer port created in BindCGSToRunLoop
    8/20/14 1:32:22.694 PM  com.apple.dock.extra[644]   HIToolbox: received notification of WindowServer event port death.
    8/20/14 1:32:22.694 PM  com.apple.dock.extra[644]   port matched the WindowServer port created in BindCGSToRunLoop
    8/20/14 1:33:36.504 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.gamed) Ignored this key: UserName
    8/20/14 1:33:36.504 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.gamed) Ignored this key: GroupName
    8/20/14 1:33:36.505 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    8/20/14 1:33:36.517 PM  loginwindow[653]    Connection with distnoted server was invalidated
    8/20/14 1:33:37.429 PM  MiniLauncher[711]   Skipping Setup Assistant for user 1467285364
    8/20/14 1:33:37.464 PM  transition[714] INFO: Not signed into MobileMe, nothing to do. Reason: 3
    8/20/14 1:33:37.506 PM  MiniLauncher[711]   INFO: MMAccountMgr_Private: finishedSetup called.
    8/20/14 1:33:38.180 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.afpstat-qfa[744]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    8/20/14 1:33:38.180 PM  com.apple.launchd.peruser.1467285364[536]   (com.apple.afpstat-qfa[744]) Job failed to exec(3) for weird reason: 2
    8/20/14 1:33:38.489 PM  CalendarAgent[741]  Could not find Meta Data for persistent Store
    8/20/14 1:33:38.877 PM  fontd[716]  FontWorker failed to return directory info (IPC failure?) for file://localhost/Users/jsuny/Library/Fonts/
    8/20/14 1:34:48.723 PM  migCacheCleanup[719]    Cache cleanup: cleanup for user 1467285364 took 0.43 seconds
    8/20/14 1:37:15.114 PM  Dock[723]   no information back from LS about running process

    Check these out:
    http://images.apple.com/server/macosx/docs/UserManagementv10.5.mnl.pdf
    http://clc.its.psu.edu/Labs/Mac/Resources/blastimageconfig/
    
http://blog.macadmincorner.com/

  • Error while opening the custom forms-''function not available to this respo

    Error: Function not available to this responsibility , change responsibility or contact ur system administrator
    Hiiiii,
    While accessing the custom forms in release 12i we are facing the popup error and the form is not getting opened up: "Function Not available to this responsibility. Change Responsibilities or Contact your System Administrator"...
    I check the custom top path in $APPL_TOP/admin/adovars.env... its fine there..
    but the $Apache_top is not there...
    can u plz tell me the solution....
    Thanks
    Meenakshi Verma

    user609981 ,
    If ur referring to forms, u need to search in appropriate forum, as this forum is only for OAF queries, and if its realted to OAF page, check the the function of oa page is attached to the specific responsibilty .
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Could not find Model while pointing to a custom Function Group

    Hello ,
    I am on EP7.0 ERP05 NW04s and trying to modify ESS Address application  to point to a custom function group rather than the standard one . When I tried to do that by changing the mapping for the ReadInfotype I got certain compilation errors ,I fixed those and then got the following error at runtime:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Couldnt find info for class com.sap.xss.hr.per.us.address.custom_model_custom.Zhrxss_Per_Read_P0006_Us_Input in model com.sap.xss.hr.per.us.address.model.HRXSS_PER_P0006_US@10c7f0a[scope=APPLICATION_SCOPE]
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.associatedModelClassInfo(DynamicRFCModelClass.java:220)
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.elementIndexForFrontendName(DynamicRFCModelClass.java:1359)
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.setAttributeValueAsString(DynamicRFCModelClass.java:664)
         at com.sap.xss.hr.per.us.address.custom_model_custom.Zhrxss_Per_Read_P0006_Us_Input.setInfty(Zhrxss_Per_Read_P0006_Us_Input.java:162)
         at com.sap.xss.hr.per.us.address.fc.wdp.IPublicFcPerAddressUS$IReadInfotypeElement.setInfty(IPublicFcPerAddressUS.java:11824)
         at com.sap.xss.hr.per.us.address.fc.FcPerAddressUS.readRecord(FcPerAddressUS.java:271)
         at com.sap.xss.hr.per.us.address.fc.wdp.InternalFcPerAddressUS.readRecord(InternalFcPerAddressUS.java:692)
         at com.sap.xss.hr.per.us.address.fc.FcPerAddressUSInterface.readRecord(FcPerAddressUSInterface.java:150)
         at com.sap.xss.hr.per.us.address.fc.wdp.InternalFcPerAddressUSInterface.readRecord(InternalFcPerAddressUSInterface.java:230)
         at com.sap.xss.hr.per.us.address.fc.wdp.InternalFcPerAddressUSInterface$External.readRecord(InternalFcPerAddressUSInterface.java:306)
         at com.sap.xss.hr.per.us.address.overview.VcPerAddressUSOverview.onBeforeOutput(VcPerAddressUSOverview.java:267)
         at com.sap.xss.hr.per.us.address.overview.wdp.InternalVcPerAddressUSOverview.onBeforeOutput(InternalVcPerAddressUSOverview.java:275)
         at com.sap.xss.hr.per.us.address.overview.VcPerAddressUSOverviewInterface.onBeforeOutput(VcPerAddressUSOverviewInterface.java:158)
         at com.sap.xss.hr.per.us.address.overview.wdp.InternalVcPerAddressUSOverviewInterface.onBeforeOutput(InternalVcPerAddressUSOverviewInterface.java:140)
         at com.sap.xss.hr.per.us.address.overview.wdp.InternalVcPerAddressUSOverviewInterface$External.onBeforeOutput(InternalVcPerAddressUSOverviewInterface.java:224)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.callOnBeforeOutput(FPMComponent.java:602)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:568)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:437)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:195)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:748)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:283)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:759)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:712)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    I wonder what's the cause of this ...
    Any help would be highly appreciated.

    Do below things.
    1. Re-import your Model.
    2. Restart your J2ee server
    3. Re-load & Rebuild your project.
    It should work now..
    Raja T
    Message was edited by:
            Armin Reichert

  • Installed FF. 8.1 and after reboot, tryed to start FF and got message "Could not load XRE functions.

    I have been running I believe FF 6.3. I was getting nag popups to update FF. I went to help and used the selection there to up date. In doing so (more than once tryed this method) it would download and install like a usual update untill compleation. Then it would say Could not compleat update or Could not restart firefox because and instance is running. Close FF and try again. But there was no visiable FF running not even in Device Manager.
    I will mention here that I did install Skype last week and have seen a couple of messages concerning Skype not loading on start up but seeing it running in the tool bar if this may have anything to do with it.
    So looking for help at the FF site I saw recomended to DownLoad and install FF 8.1 so I did that. Then from Control Panel I uninstalled FF and rebooted and installed fresh leaving the old settings and bookmarks etc. Then rebooted again.
    When I started FF 8.1 I now get a message "Could not load XRE Functions".
    So remembering the last progy install on this box was Skype I went to the control panel and un installed it ---- and when I did, at the finish I got that same message "Could not load XRE Functions".---- Intresting---- hummmm but how do I get FF installed so I can get on with Life?
    I just tried to verify this new account and got the same Couldnt Load message when I clicked on the email link for this forum.
    Much Thanks in advance for anyones help.

    Do a clean (re)install and delete the Firefox program folder (C:\Program Files\Mozilla Firefox\).
    Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 8.0.x: http://www.mozilla.com/en-US/firefox/all.html
    Uninstall your current Firefox version if possible.
    *Do NOT remove personal data when you uninstall the current version or you lose your bookmarks and other data in the profile folder.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Custom XPath Function not working - ORABPEL-09503 error

    I wrote a simple date conversion custom xpath function.
    1. Implemented IXPathFunction as mentioned in Clemens and Antony Reynolds blog.
    2. Also changed the xpath-functions.xml kept at C:\product\10.1.3.1\OracleAS_1\bpel\system\config\xpath-functions.xml and also at C:\product\10.1.3.1\OracleAS_1\bpel\domains\default\config\xpath-functions.xml (Not sure why this xml is in two places)
    3. Placed my class file at C:\product\10.1.3.1\OracleAS_1\bpel\system\classes and also made a jar and placed in C:\product\10.1.3.1\OracleAS_1\j2ee\home\applib.
    But when I run the process which uses this custom function, it is throwing the following error
    <Faulthttp://schemas.xmlsoap.org/soap/envelope/>
    <faultcode>env:Server</faultcode>
    <faultstring>ORABPEL-09503 Invalid xpath expression. Error while parsing xpath expression "o2c:formatDateString('10/30/2007', 'MM/DD/yyyy', 'YYYY-MM-DD');", the reason is Error in expression: 'o2c:formatDateString('10/30/2007', 'MM/DD/yyyy', 'YYYY-MM-DD');'.. Please verify the xpath query "o2c:formatDateString('10/30/2007', 'MM/DD/yyyy', 'YYYY-MM-DD');" which is defined in BPEL process. </faultstring>
    </Fault>
    Can somebody help me to resolve this.

    My bad. I had a semi-colon after the expression. Now I am getting a different error
    <Faulthttp://schemas.xmlsoap.org/soap/envelope/>
    <faultcode>env:Server</faultcode>
    <faultstring>ORABPEL-09500 XPath expression failed to execute. Error while processing xpath expression, the expression is "o2c:formatDateString('10/30/2007', 'MM/DD/YYYY', 'YYYY-MM-DD')", the reason is FOTY0001: type error. Please verify the xpath query. </faultstring>
    </Fault>

Maybe you are looking for

  • Losing Network Connection

    Hi All - every time I put this iMac to sleep, it loses its Airport Connection. So if I wake it up and click on Safari, it says I have no internet connection. I then go the Airport menu and select my network zone, and it connects again. But, help says

  • Error in A/P creditmemo

    Dear Al l Error 1: In SAP Business one 2007B PL15 an error occur while creating A/P creditmemo for excisable invoice Error:Unbalanced transcation We have check entry withou doing frieght and with frieght in both cases this error is coming. Error 2: W

  • Trying to open mail preferences in OS X 10.8.2 blocks mail application.

    I'm currently working with OS X 10.8.2. Mail seems to work properly, but when I try to open mail preferences but nothing happens. I can only see the "rainbow wheel" and mail is blocked. I can only force mail's shutdown. Other applications wprks prope

  • Does anyone know which was the first version of Acrobat to offer electronic signatures?  Thank you.

    Trying to roll out a project that includes electronic signature (only... does not include digital certificate) in an organization with many older versions of software floating around. (It is a controlled environment, where not that easy to just have

  • Desktop shortcuts to web pages don't have the correct icon, can this be corrected?

    I just upgraded from IE to Firefox and it's really working well. The only problem is all the shortcuts to websites on my desktop have the Firefox icon. They had their correct icons under IE how can I get the correct icons back? My computer is running