BUG - Omniportlet 10.1.4 with HTML layout ??

Steps to reproduce:
1. Create an OmniPortlet instance which is based on a SQL statement
2. Use the following SQL
select :BIND1 as MY_BIND1 from dual
3. Define the bind variable BIND1 as tied to ##Param1##
4. Give Param1 a default value= "MY_PARAM"
5. Step through to the LAYOUT portion of the wizzard and choose HTML layout
(10.1.4)
6. Use the following layout for the header
<TABLE BORDER='0' WIDTH="100%">
<TR CLASS='PortletSubHeaderColor'>
<TH CLASS='PortletHeading1'>MY_BIND1</TH>
<TH CLASS='PortletHeading1'>##Param1##</TH>
</TR>
7. Use the following layout for the repeading section
<TR CLASS='PortletText1'>
<TD>##MY_BIND1##</TD>
<TD>##Param1##</TD>
</TR>
8. Default all other sections.
The results show as
MY_BIND1 MY_PARAM
MY_PARAM
There is no data showing in the REPEATING section for the ##Param1##
placeholder.
Is this a known bug or a new thing?
Regards,
Tim

Hi Tim,
This is a know issue, the bug has already been logged. Parameters(param1, param2 etc) works only on Non Repeating Heading Section, but not in Repeating Section and Non Repeating Footer Section.
Thanks,
Seshan K.

Similar Messages

  • Reusing HTML layouts with new flvs

    I'm having issues with reusing html layouts for 'newsletter' type pages with updated text and video.  The new flvs don't appear when the updated page is posted to it's unique directory on the client server.
    I've narrowed the issue down to a possible problem with the AS_RunActiveContent.js file.  I need force Dreamweaver to create a new one when the layout is updated.  When I'm developing locally, it seems as though the page references the previously created js file.  When I post the preview to my server, the videos play.  But when I post the html page and image folder to new directory on the client server, the flvs disappear.  Copying the old js file to the new directory on the server doesn't work.
    How do I force Dreamweaver to create a new java script file when I update the content?  Or is there something else I need to do?
    Here's a quick rundown of the process:
    Open old html page and save as w new name in new local folder
    Update text and flvs (updated flvs by completely removing all content in table cell, not just updating the file name properties)
    Upload new folder to my host server
    Once approved, send folder to client
    Client posts folder to their server - and the flv's dissappear.
    Thanks for your help.
    Kristen

    I'm guessing you're using CS3 or earlier. DW does not create a new .js file if one already exists in a given path, nor does it need to.
    I am also guessing that the problem is related to paths. You should probably make all references to that script site-root relative (with the slash in front). ie:
    /Scripts/AS_RunActiveContent.js
    Then upload the Scripts folder to the root of the site. All files in subfolders will still find that script using with that link, including new folders.
    Does that make sense? If not, can you supply a link to one of these problem pages?
    Mark A. Boyd
    Keep-On-Learnin' :-)
    If you are reading this via email, be aware that it may not be an accurate representation of my message. Login to read the actual message and/or to reply.

  • Omniportler HTML Layout - How do I pass a parameter to another page?

    How do I pass a parameter to another page from an HTML Layout like I can with the Tabular layout?

    If I have a parameter I can pass it from one page to another, i.e. if I have a list of customers and I want data for that particular customer alone, I can create a page parameter form or an omniportlet where I would then pass the value of that portlet to the page. I would use a string like the following: https://test.test.com/test/page?_pageid=536,7483646&_dad=portal&_schema=test&customer=##CUSTOMER_NAME##

  • BUG: Popup in page fragment; with many regions and popup binded to backing.

    BUG: Popup in page fragment; with many regions and popup or parent binded to backing bean.
    JDEV11.1.2.1 Popup will not popup.(sometimes works if using RichPopup.Show() in backing bean Java code.)
    I have a bug (Popup will not popup)that only happens when I have more than one of the same region.
    And I have a popup in the page fragment is binded to backing bean.
    My SR guy is out today but we plan to enter one.
    test.jspx
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:f="http://java.sun.com/jsf/core">
        <jsp:directive.page contentType="text/html;charset=UTF-8"/>
        <f:view>
            <af:document title="test" id="d1">
                <af:form id="f1">
                    <af:panelGroupLayout id="pgl1" layout="horizontal">
                        <af:outputText value="BUG JDEV11.1.2.1 and IE7. Broken Popup! If I have a jsff fragment and I have many regions of this fragment."
                                       id="ot2"/>
                        <af:outputText value="Inside the fragment I have a popup. If that popup or its parent are binded to a Backing Bean the popup doesn't work."
                                       id="ot1"/>
                    </af:panelGroupLayout>
                    <!-- with a single region it also works (with bindings in place in fragment). -->
                    <af:region value="#{bindings.taskflowemp1.regionModel}" id="r1"/>
                    <af:region value="#{bindings.taskflowemp2.regionModel}" id="r2"/>    
                    <!--
                    <af:region value="#{bindings.taskflowemp3.regionModel}" id="r3"/>
                    <af:region value="#{bindings.taskflowemp4.regionModel}" id="r4"/>
                    -->
                </af:form>
            </af:document>
        </f:view>
    </jsp:root>region.jsff
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:f="http://java.sun.com/jsf/core">
      <af:group id="g1">
      <!-- If I remove the binding for popop or popup group, the popup works fine. -->
    <!--Working code here
        <af:group id="g2">
          <af:popup childCreation="deferred" autoCancel="disabled" id="p1" >
        -->
           <!-- Problem code here   -->
        <af:group id="g2" binding="#{TestBean.popupGroup}">
          <af:popup childCreation="deferred" autoCancel="disabled" id="p1" binding="#{TestBean.testPopup}"> 
            <!-- End problem code -->
            <af:dialog id="d2" title="Dialog Title">
              <f:facet name="buttonBar"/>
              <af:outputText value="Dialog Contents" id="ot100"/>
            </af:dialog>
          </af:popup>
        </af:group>
        <af:panelGroupLayout id="pgl1">
          <af:panelBox text="Region" id="pb1">
            <f:facet name="toolbar"/>
            <af:commandButton text="showPopupBehavior" id="cb1" >
              <af:showPopupBehavior popupId="p1"/>
            </af:commandButton>
            <af:commandButton text="AdfPage.PAGE.findComponent JavaScript" id="cb2" actionListener="#{TestBean.popupTestJavaScript}"/>
            <af:commandButton text="RichPopup.Show() Java" id="cb3" actionListener="#{TestBean.popupTestJava}"/>
          </af:panelBox>
        </af:panelGroupLayout>
      </af:group>
    </jsp:root>TestBean.java
    package view;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ActionEvent;
    import oracle.adf.view.rich.component.rich.RichPopup;
    import org.apache.myfaces.trinidad.component.UIXGroup;
    import org.apache.myfaces.trinidad.render.ExtendedRenderKitService;
    import org.apache.myfaces.trinidad.util.Service;
    public class TestBean {
        private RichPopup testPopup;
        private UIXGroup popupGroup;
        public TestBean() {
        public void setTestPopup(RichPopup testPopup) {
            this.testPopup = testPopup;
        public RichPopup getTestPopup() {
            return testPopup;
        public void popupTestJava(ActionEvent actionEvent) {
            if(testPopup != null){
                RichPopup.PopupHints ph = new RichPopup.PopupHints();
                testPopup.show(ph);
            }else{
                System.err.println("TestBean.testPopop IS NULL!");
        public void popupTestJavaScript(ActionEvent actionEvent) {
            showPopupTest("r1:0:p1");
        private static void showPopupTest(String popupId) {
            FacesContext facesContext = FacesContext.getCurrentInstance();
            ExtendedRenderKitService service =
                Service.getRenderKitService(facesContext,
                                            ExtendedRenderKitService.class);
            service.addScript(facesContext,
                              "AdfPage.PAGE.findComponent('" + popupId + "').show();");
        public void setPopupGroup(UIXGroup popupGroup) {
            this.popupGroup = popupGroup;
        public UIXGroup getPopupGroup() {
            return popupGroup;
    }

    Thanks that fixed the problem.
    "a user error"
    Well I followed your book! Chapter 6 of the "Oracle Fusion Developer Guide - Working with Bounded Task Flows in ADF Regions". I think this comes back to book writer error. I found almost no mention of BackingBeanScope in this chapter. Don't you think this would be an important note?
    "did you know that there is a Java API (on the RichPopup instance) to launch a popup ?"
    Yes I posted in my code! If you read the above code you would see it there.
    I don't really understand why the scope of the bean has anything to do with af:showPopupBehavior or AdfPage.PAGE.findComponent.

  • Replacing non-ASCII characters with HTML charcter references

    Hi All,
    In Oracle 10g or greater is there a built-in function that will convert a string with non-ASCII characters like this
    a b č 뮼
    into an ASCII string with HTML character references like this?
    a b & # x 0 1 0 D ; & # x B B B C ;
    (note I had to include spaces between each character in the sample code for message to prevent the forum software from converting my text)
    I tried using
    utl_i18n.escape_reference( val, 'us7ascii' )
    but for some reason it returns
    a b c & # x B B B C ;
    Note how it converted the Western European character "č" to its unaccented counterpart "c", not "& # x 0 1 0 D ;" (is this a bug?).
    I also tried a custom solution using regexp_replace and asciistr (which I can't include here because the forum software chokes on it) but it only returns the correct result for values <=4000 characters long. Unfortunately asciistr doesn't appear to accept CLOB values larger than 4000 characters. It returns an error message like
    (ORA-22835: Buffer too small for CLOB to CHAR or BLOB to RAW conversion (actual: 30251, maximum: 4000) ).
    I'm looking for a solution that works on CLOB data of any size.
    Thanks in advance for any insight you can provide.
    Joe Fuda

    So with that (UTF8) in mind, let's take another look.....
    As shown below, I used a AL32UTF8 database.
    Note: I did not use a unicode capable tool for querying. So I set console mode code page to 1250 just to have č displayed properly (instead of posing as an è).
    Also, as a result of using windows-1250 for client character set, in the val column and in the second select's ncr column (iso8859-1), è (00e8) has been replaced with e through character set conversion going from server back to client.
    Running the same code on a database with a db character set such as we8mswin1252, that doesn't define the č (latin small c with caron) character, would yield results with a c in the ncr column.
    C:\>chcp 1250
    Aktuell teckentabell: 1250
    C:\>set nls_lang=.ee8mswin1250
    C:\>sqlplus test/test
    SQL*Plus: Release 11.1.0.6.0 - Production on Fri May 23 21:25:29 2008
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the OLAP option
    SQL> select * from nls_database_parameters where parameter like '%CHARACTERSET';
    PARAMETER              VALUE
    NLS_CHARACTERSET       AL32UTF8
    NLS_NCHAR_CHARACTERSET AL16UTF16
    SQL> select unistr('\010d \00e8') val, utl_i18n.escape_reference(unistr('\010d \00e8'),'us7ascii') NCR from dual;
    VAL  NCR
    č e  c e
    SQL> select unistr('\010d \00e8') val, utl_i18n.escape_reference(unistr('\010d \00e8'),'we8iso8859p1') NCR from dual;
    VAL  NCR
    č e  &# x10d; e     <- "è"
    SQL> select unistr('\010d \00e8') val, utl_i18n.escape_reference(unistr('\010d \00e8'),'ee8iso8859p2') NCR from dual;
    VAL  NCR
    č e  č &# xe8;
    SQL> select unistr('\010d \00e8') val, utl_i18n.escape_reference(unistr('\010d \00e8'),'cl8iso8859p5') NCR from dual;
    VAL  NCR
    č e  &# x10d; &# xe8;In the US7ASCII case, where it should be possible for all non-ascii characters to be escaped, it seems as if the actual escape step is skipped over.
    Hope this helps to understand whether utl_i8n is usable or not in your case.
    Message was edited by:
    orafad
    Fixed replaced character references :)

  • Please help to send an email with html page in body

    I need an html page on the body of an email to send an email blast to our customers.

    HTML Emails can be a bit tricky. You can design them in Dreamweaver, but you really shouldn't send mass email through your personal email account (or your company account). That could get you blacklisted by corporate spam filters and make your email addresses pretty much useless.
    For mass email campaigns (over a few hundred email addresses) I use http://www.icontact.com.
    You can build the email right through their site (without DW) or you can import your html from DW to their service.
    Some things to keep in mind with HTML email...
    1. Use absolute links to images and files on a server you control
    2. Use a limited amount of inline css (no external or embedded css)
    3. Use table based layouts, css support is spotty at best with email clients
    4. The <head> will be stripped from a number of email clients, don't rely on anything between the <head> tags making it to your recipients
    5. Don't use an image-only email. HTML text is very important to keep it from being labeled spam, make the images secondary to the message, many email clients will not download images without the user's say-so
    6. Include an opt-out link so people can get off your list
    There are more things to watch out for, but those are the big ones. Here is some more good info: http://alt-web.com/Articles/HTML-Emails.shtml

  • Report with custom layout - formatting conditions

    Hi,
    There's a report with custom layout. What I need is to format some cells depending on the data they contain(like different background color). There's a tab named "Formatting Conditions" which should be meant for doing this and it works perfectly when report has tabular layout. But nothing happens in case of custom layout. Should this be done then in the "Report Layout Editor" and with Javascript? Portal version is 3.0.9.8.0.
    Thanks in advance,
    Madis

    Hi,
    Some condtions like background color do not work in custom mode reports. This is because in case of custom reports the table html is specified by the user and the report renderer has no control over it.
    Hope this helps.
    Sunil.

  • JLabel with HTML visible only for the first time

    I've implemented a really simple applet:
    public class TestApplet extends JApplet {
      @Override
      public void init() {
        try {
          SwingUtilities.invokeAndWait(new Runnable() {
            public void run() {
              JPanel topPanel = new JPanel();
              topPanel.setLayout(new BorderLayout());
              getContentPane().add(topPanel);
              JLabel labelHello = new JLabel("<html>Hello World!</html>");
              topPanel.add(labelHello, BorderLayout.NORTH);
              JLabel labelHelloNoHTML = new JLabel("Hello World - without html!");
              topPanel.add(labelHelloNoHTML, BorderLayout.SOUTH);
        } catch (Exception e) {
          System.err.println("Couldn't initialize GUI");
    }And there are two html pages, both having the same applet and a link referring to each other:
    index.html
    <html>
           <head><title>Applet</title></head>
           <body>
                  <div><a href="link.html">Link</a></div>
                  <div>
                        <applet hspace="0" height="375" align="left" width="600" vspace="0" mayscript="" alt="GetJava" codebase="./"
                        code="com.test.TestApplet" name="TestApplet"></applet>         
                  </div>
           </body>
    </html>link.html
    <html>
           <head><title>Applet</title></head>
           <body>
                  <div><a href="index.html">Link</a></div>
                  <div>
                        <applet hspace="0" height="375" align="left" width="600" vspace="0" mayscript="" alt="GetJava" codebase="./"
                        code="com.test.TestApplet" name="TestApplet"></applet>         
                  </div>
           </body>
    </html>Now when I navigate to index.html the applet shows correctly both labels but in case I jump to link.html the applet shows only the second label i.e. Hello World - without html! . This seems to be specific to Java version 1.6.0_21 and 1.6.0_22, it was working properly in 1.6.0_17. Is anyone else experiencing similar issue or am I missing something?
    Edited by: user13135196 on Nov 25, 2010 4:33 AM
    Edited by: Slavek Tecl on 25.11.2010 13:12

    I am having this exact same issue. I have a JLabel with <html> for superscript in my JApplet. The first time I run my applet it displays fine. All subsequent times (refresh the page, or close the tab then open again) the JLabel with <html> doesn't show. This issue does NOT occur in the Eclipse Applet Viewer, but does occur with Google Chrome9 and IE8.
    I spent forever checking my methods and changing things trying to figure out why all the other labels show. Never would have guessed <html> in a JLabel would make it not display. This is terrible bug. Please fix ASAP.

  • Custom Popup - Passing values back to Textarea with HTML Editor

    I have created a Custom Popup which is to populate a "Textarea with HTML Editor".
    I have found that the Custom Popup works fine if the target item is defined as a "Textarea", or "Textarea (auto-height)", or "Textarea w/Character Counter" (although the counter is not automatically updated), or "Textarea w/Character Counter & Spellcheck", or "Textarea with Spell Checker".
    However, if the target item is defined as "Textarea with HTML Editor" the Custom Popup does not populate the target item. No error message is produced. If the target item already had data, the data is unchanged.
    Is this a known bug?

    "Textarea with HTML Editor" is actually two objects on the screen with javascript keeping the data in the two objects in sync as you type in the editor.
    You have to populate both objects as you try to syncronize the data from your popup.
    I built a screen using dHTML that switches between the HTML Editor and the Text with Spell check and use Javascript to keep the two (actually three objects in sync)
    My button that switches from one view to the other uses the following syntax:
    javascript:setEqual('P9904_HTML_MESSAGE','P9904_MESSAGE','P9904_MESSAGEDiv');
    'P9904_HTML_MESSAGE' is the HTML view of the data with spell check
    'P9904_MESSAGE' is the html editor view of the data
    'P9904_MESSAGEDiv' is the extra object that Oracle uses for the editor
    This is the fuction that keeps the data in sync:
    function setEqual(fromObjectID,toObjectID,htmlObjectID)
    document.getElementById(toObjectID).value = document.getElementById(fromObjectID).value;
    document.getElementById(htmlObjectID).innerHTML=document.getElementById(fromObjectID).value;
    I hope this helps.
    Michael Snyder

  • Portal with multiple layout !!!

    Hi,
    I've seen a lot of questions in this Newsgroup regarding the development of a
    portal containing multiple layouts, but no clear answers was given.
    If the only way to develop a portal with multiple layout is to not use the portal
    framework, please could you give me a detailed approach how to do it (maybe there
    is Howto document somewhere ...) !
    Thanks for your help, I'm stuck and unfortunately not very familiar with the product.
    /Julien

    Thanks Phil,
    OK, then could you explain me how to build a simple portal without the portal/portlet
    facilities, but taking advantage of the personnalization tags available.
    - e.g. Which APPLICATION_INI I need to setup ?
    I appreciate your help
    /Julien
    "Phil" <[email protected]> wrote:
    >
    Julien - BEA's next portal release (version 4.0) will
    have complete support for a variety of different
    layout templates. There will be a selection of layouts
    out-of-the-box as well as the ability to provide your
    own custom layout. Also, "tabs" will be added to the
    portal and each tab may use a different layout template.
    Version 4.0 is scheduled for Fall 2001.
    With previous versions of the portal product, you will
    need to edit/customize portalcontent.jsp and the jsp's
    it calls. The layout Html is spread through them, so it
    is not a fun excercise.
    -Phil
    "Julien GATTONI" <[email protected]> wrote:
    Hi,
    I've seen a lot of questions in this Newsgroup regarding the development
    of a
    portal containing multiple layouts, but no clear answers was given.
    If the only way to develop a portal with multiple layout is to not use
    the portal
    framework, please could you give me a detailed approach how to do it
    (maybe there
    is Howto document somewhere ...) !
    Thanks for your help, I'm stuck and unfortunately not very familiarwith
    the product.
    /Julien

  • Is there a bug in implementation of RequestDispatcher with sessions?

    Hi,
    I have two applications, one that contains /stest1/test1.jsp, the other that contains /stest2/test2.jsp. In test1.jsp I set the attribute "stest1-attribute" in the session. Then I get the context of /stest2, include /test2.jsp, and then see if I get the "stest2-attribute", which is set in /test2.jsp. I end up getting "stest2-attribute" but it seems to be I shouldn't since where I set that attribute is in an entirely different web context. Is there a bug here?
    /stest1/test1.jsp
    ========================================================
    <html><body>
    Beginning test in /stest1/test1.jsp. Including JSP page /stest2/test2.jsp
    <p>
    <%
    out.flush(); // must flush before include
    ServletContext ctx = pageContext.getServletContext();
    ServletContext parentCtx = ctx.getContext("/stest2");
    session.setAttribute("stest1-attribute", new String("stest1-only"));
    RequestDispatcher rd = parentCtx.getRequestDispatcher("/test2.jsp");
    rd.include(request, response);
    String s2 = (String) session.getAttribute("stest2-attribute");
    if (s2 != null)
    out.println("<b>*** ERROR - should not see stest2-attribute in web application stest1</b>");
    else
    out.println("Correct - no stest2 attribute visible in stest1");
    %>
    </body></html>
    /stest2/test2.jsp
    ========================================================
    In included page /stest2/test2.jsp.
    <%
    if (session.getAttribute("stest1-attribute") == null)
    out.println("<p>Correct - stest1-attribute should not be visible here");
    else
    out.println("<p><b>*** ERROR - should not see stest1-attribute in web application stest2</b>");
    session.setAttribute("stest2-attribute", new String("stest2-only"));
    %>

    What I discovered was that the main WLAN was mapped to the management interface, and AP Group was overriding the setting.  However, what I found was a lot of access points never got assigned to the AP Group, so they were sitting in the default group and I can only wonder what the service was like with "holes" in the coverage on the main WLAN that is meant for production.
    Moving forward, I think I will replace this Farm with a 5508 and use an interface group on the main wlan and do away with the ap groups.  That way, an AP can boot up and be in the default group and will work..That way technicians don't have to remember what ap group to configure, etc.

  • Show  links with news layout set

    Hi ,
         Can i show edit list and subscribe link for XML items, with newsexplorer layout i was able to get the commands for a single resource but i want to links to folder..I want users to subscribe to and if they have folder permisssion then display edit link.. I tried HTML Collection Renderer, this is not working for Newsexplorer layout. Any Ideas? thanks
    Sree

    Hi Srilatha
    user RID DataType
    RID aRid = new RID("/documents/test/myfile.xml");
    RID aRid = RID.getRID("/documents/test/myfile.xml");
    thanks

  • Custom ui component with default layout

    Hello,
    I am trying to develop custom swing components with default layout set.
    Both component class and its BeanInfo are written with NetBeans 6.1
    However, when trying to put this custom swing component into interface builder (matisse) of
    NetBeans 6.1, the default layout is always replaced with GroupLayout.
    Is there any way to correctly specify default layout manager used in a custom
    swing component?
    thanks a lot!

    Hi Jacek
    You can embed your custom component with IFrame element in WebDynpro view. IFrame element loads a content by URL which can be bound to controller's context. You can store your custom HTML content in MIME folder of the WebDynpro component. At runtime you can get the URL to the MIME content and initialize the IFrame with the URL.
    However, IFrame element is being reloaded by WebDynpro framework too often during each request/response cycle. This is a disadvantage of the solution.
    BR, Siarhei

  • Overlay Flash content with HTML

    I have been working to fix a layout that uses DHTML menus and
    has Flash in the middle of the page... Like many others I am having
    some issues with the DHTML menu not overlaying the Flash content.
    I have read this post :
    Fixing
    Safari's wmode flicker that looked to be the solution but in
    this case it did not work all together...
    Here is a
    link to the site...
    I had tried using an class on the <li> tags that gave
    it a background image. This worked in IE 6 & 7 and FF on Mac
    but it did not work on FF on Windows... I thought that might be as
    close as I could get for the moment so I added in SWFobject for my
    Flash detection and Alt display and now none of the above works at
    all...
    So my question is... What is the "Best Standard" for
    accomplishing this overlay of Flash with HTML content?
    If you can provide relative links to the topic for reference
    that would be helpful too... I've only been able to locate a few
    with one being here in the CSS Advisor beta.

    Correction: This class with on the <li> tag corrected
    this in all browsers except Safari... When I added the SWFobject
    for detection / alt content it caused the overlay to no longer
    function.

  • Importing and Exporting Data with a Clob datatype with HTML DB

    I would like to know what to do and what to be aware of when Importing and Exporting data with a Clob Datatype with HTML DB?

    Colin - what kind of import/export operation would that be, which pages are you referring to?
    Scott

Maybe you are looking for

  • Dunning email and print both at a time

    Hi all, My client need to send Dunning document as email to the customer, at the same time they want to generate printout also for the same. I have successfully send an email to customer email address. But i am unable to generate print out for the sa

  • Shared services config error

    Am trying to configure essbase with shared services, am getting the following error in the configtool.log STACK_TRACE: 40 java.lang.UnsatisfiedLinkError: getOSVersion      at com.hyperion.css.spi.impl.ntlm.NTLMProvider.getOSVersion(Native Method)    

  • SetCompositeInstanceTitle in soa 12c

    In soa 12c ora:setCompositeInstanceTitle('dummy name') is not setting title in weblogic server as it did in soa 11g. Any pointers are appreciated. Checked the documentation too these are mentioned at 14.2.6 How to Use bpelx:exec Built-in Methods void

  • "Skype has stopped working" upon launch (7.3) Wind...

    I have been using Skype for more than a year with no issues but today when I launched Skype it came up with a message saying that "Skype has stopped working" and asked me to send information to Microsoft. Skype will not open at all - this message app

  • My Curve 8520 stops working

    Hello, My Blackberry smartphone curve 8520 stops working. I can't call or ping. It has given me the message to reload software 552. Even my service provider can't help me. Is there anyone who can help me with this?