Datacontrols Tiles problem

It shows a message: Access denied when using Datacontrols of type table with Tiles in JSF, this is my code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ page contentType="text/html;charset=windows-1252"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
<%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
<af:table rows="#{bindings.findAllCatalog1.rangeSize}"
first="#{bindings.findAllCatalog1.rangeStart}"
emptyText="#{bindings.findAllCatalog1.viewable ? 'No rows yet.' : 'Access Denied.'}"
var="row" value="#{bindings.findAllCatalog1.collectionModel}"
selectionState="#{bindings.findAllCatalog1.collectionModel.selectedRow}"
selectionListener="#{bindings.findAllCatalog1.collectionModel.makeCurrent}">
<f:facet name="selection">
<af:tableSelectOne text="Select and ">
<af:commandButton text="Submit"/>
</af:tableSelectOne>
</f:facet>
<af:column headerText="#{bindings.findAllCatalog1.labels.id}"
sortable="true" sortProperty="id">
<af:outputText value="#{row.id}"/>
</af:column>
<af:column headerText="#{bindings.findAllCatalog1.labels.journal}"
sortable="true" sortProperty="journal">
<af:outputText value="#{row.journal}"/>
</af:column>
<af:column headerText="#{bindings.findAllCatalog1.labels.publisher}"
sortable="true" sortProperty="publisher">
<af:outputText value="#{row.publisher}"/>
</af:column>
<af:column headerText="#{bindings.findAllCatalog1.labels.edition}"
sortable="true" sortProperty="edition">
<af:outputText value="#{row.edition}"/>
</af:column>
<af:column headerText="#{bindings.findAllCatalog1.labels.title}"
sortable="true" sortProperty="title">
<af:outputText value="#{row.title}"/>
</af:column>
<af:column headerText="#{bindings.findAllCatalog1.labels.author}"
sortable="true" sortProperty="author">
<af:outputText value="#{row.author}"/>
</af:column>
</af:table>

Did you ever solve this problem ? I'm seeing extact the same issue. JSF and Tiles work great, but as soon as I try to add an ADF databound tile, e.g. including a read-only table, things break. I get an "Access Denied" error which is the default setting for the af:table's emptyText attribute.

Similar Messages

  • Print tile problem

    I have a one page pdf document I want to print enlarged on several pages.
    I'm running Acrobat Pro on a mac OS 10.6.7 with an epson workForce 840.
    I follow instructions (see below) and selected tiling options but the print out is reduced rather than enlarged.
    Does anyone have a solution? Much obliged!
    Here are the directions I followed:
    Print an oversized document
    Although you can create a PDF file as large as 15,000,000 inches (38,100,000 cm) in either direction, most desktop printers cannot print such large pages. To print an oversized document on your desktop printer, you can print each page in pieces, called tiles, and then trim and assemble those pieces.
    You can also increase the scale of a standard-sized document and print it on multiple pages.(note: dosen't say how to do this and scaling up in "tile scale" does not increase the print out size but rather seems to reduce it.
    Choose File > Print.
    From the Page Scaling menu, choose Tile All Pages if all pages of the document are oversized. If some of the pages are standard-sized, choose Tile Large Pages.
    (Optional) Set any of these options, referring to the Preview image to check the output results:
    Tile Scale
    Adjusts the scaling. The scaling affects how the sections of the PDF page map to the physical sheet.
    Overlap
    Specifies the minimum amount of duplicated information you want printed on each tile for ease in assembly. The Overlap option uses the unit of measure specified for the document. The value should be greater than the minimum nonprinting margins for the printer. You can specify up to half the size of the shortest side of the document page to overlap. For example, tiles for a page that measures 11-by-17 inches (279.4mm-by-431.8mm) can overlap up to 5.5 inches (139.7mm).
    Labels
    Includes the PDF name, date of printing, and tile coordinate on every sheet. For example, Page 1 (1,1) means row 1, column 1 of the first page. Tile coordinates are used for reassembling the tiles.
    Cut Marks
    Prints marks on each corner of a tiled page for ease of assembly. Use this option in conjunction with the Overlap option. When you specify an overlapping edge and then superimpose those edges, you can use the cut marks to line up the tiles.

    I think that your problem might be that you are not using a PostScript printer. It works on a PS printer.

  • Tiles problem

    Hi
    I'm new to struts and I have some problem with struts.
    I have tiles.jsp:
    <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
    <tiles:insert page="/tiles/karta.jsp" flush="true">
    <tiles:put name="title" type="string" value="karta" />
    <tiles:put name="header1" value="/tiles/top1.jsp" />
    <tiles:put name="body1" value="/tiles/evidCard.jsp" />
    </tiles:insert>
    In top1.jsp there's just this table of links
    <td>All cards</td>
    <td>Evid.card</td>
    <td>Store card</td>
    When I first call tiles.jsp, then I see both tiles (top1.jsp, evidCard.jsp). Then when I click link e.g. All cards, then I dont see top1.jsp (I see just allcards.jsp)........Can you tell me, where's the problem?
    Do I need to write other jsp pages like tiles.jsp, but I will change value in body1 into :
    value="/tiles/allcards.jsp"
    value="/tiles/storeCard.jsp"???
    Thanks a lot.
    regards

    Check this out.
    http://www.jsftutorials.net/tiles/jsf-tiles.html

  • Tile problem: Working on 1.3 and not on 1.3.1

    Ok, I've already sent this as a bug in JavaFX Jira but it's not public yet, so I'm going to post it here in case someone can understand what is really happening. The problem timeline is the following:
    - I have a tile with 3 rectangles that had a roll over effect (they scale their size)
    - After 1 second I remove all of the rectangles, so the tile has 0 elements and the rectangles are not shown.
    - One second later a put again 3 rectangles in the tile and at this point we have to different behaviours:
    - In 1.3 the three rectangles apear without problems
    - In 1.3.1 none of them is shown, but strangely if I put the mouse over their "virtual" position the rollover is done and all of them
    magically appear (not only the one I was over)
    package test;
    import javafx.scene.CustomNode;
    import javafx.scene.Node;
    import javafx.scene.paint.Color;
    import javafx.scene.layout.Tile;
    import javafx.animation.Timeline;
    import javafx.animation.KeyFrame;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.input.MouseEvent;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    public class SimpleBidButtons extends CustomNode {
        public var numButtons: Integer;
        init {
            this.children = [ Tile {
                        id: "firstMenuBar{id}";
                        rows: 1;
                        content: bind for(i in [0..numButtons-1])
                            def but:Rectangle = Rectangle {
                            width: 90; height: 90;
                            onMouseEntered: function(e: MouseEvent) {
                                but.scaleX = 1.1;
                                but.scaleY = 1.1;
                            onMouseExited: function(e: MouseEvent) {
                                but.scaleX = 1.0;
                                but.scaleY = 1.0;
                            fill: Color.BLACK
                            but;
                        height: 100;
                        width: 300;
    function run() {
        var buttons: Integer = 3;
        var menu = SimpleBidButtons {
                    numButtons: bind buttons;
                Stage {
         title: "MyApp"
         onClose: function () {  }
         scene: Scene {
              width: 320
              height: 120
              content: menu;
        Timeline {
            keyFrames: [
                KeyFrame {
                    time: 1s;
                    action: function() {
                        buttons = 0;
                } KeyFrame {
                    time: 2s
                    action: function() {
                        println("Push");
                        buttons = 3;
        }.play();
    }Edited by: AnderRuiz on Aug 23, 2010 1:14 AM

    There is no need to override create function anymore in 1.3 and in fact the children variable was created to avoid memory consumption because many CustomNodes create a Group in 1.2. Anyway I changed my code to override create() and as I supposed the result was the same. This code was working also with JavaFX 1.2 without any problems (overriding create() of course)
    Edited by: AnderRuiz on Aug 23, 2010 3:59 AM

  • Map Coord, Tile , problems with getting tile for a coord

    Hello,
    I got a following question of which i unfortunately don't see the answer ...
    I've a class Coordinate and a class Tile.
    Now when i'm loading the tiles,
    format: x y z color ...
    i put them in a Map Map<Coord, Tile>, where coord is x,y,z and Tile contains color etc
    so basically i want to do is this:
    Coordinate c = new Coordinate(1,1,0);
    map.get(c);But this returns null because it isn't mapped ...
    I know by creating a new coordinate it creates a new object, so it's normal it returns null.
    Though i want something like that so i can call the method above, but i just don't see it.
    The only way i can think of is looping through the keys, getting x, y and z of them, and check if they equal
    the x y and z of the new coordinate. Still i don't know if this would be a good solution, as i have - 10000 coords and about 5 differen heights so about - 50000 coordinates
    Any ideas ?
    Thanks in advance!
    Edited by: Kolarius on Apr 28, 2009 11:48 AM

    Your Coordinate class needs to override the hashCode and equals methods in a suitable manner. Read about those methods in the API documentation for java.lang.Object.

  • Re: ADF Mobile webservice datacontrol parameter problem

    When i am trying to create Data Control from wsdl, the data control is generated but it doesnot contain any method or operation..Can someone help, i am getting the below message:
    oracle.adf.model.adapter.AdapterException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is DCA-40002. Error message parameters are {0=null}
    at oracle.adfinternal.model.adapter.webservice.WSModel.createModelFromWSDL(WSModel.java:656)
    at oracle.adfinternal.model.adapter.webservice.WSModel.<init>(WSModel.java:197)
    at oracle.adfinternal.model.adapter.webservice.WSDefinition.loadDCOperations(WSDefinition.java:1707)
    at oracle.adfinternal.model.adapter.webservice.WSDefinition.loadFromMetadata(WSDefinition.java:769)
    at oracle.adfdt.model.datacontrols.JUDTAdapterDataControl.loadDefinitionFromElement(JUDTAdapterDataControl.java:335)
    at oracle.adfdt.model.datacontrols.JUDTAdapterDataControl.getDef(JUDTAdapterDataControl.java:771)
    at oracle.adfdt.model.datacontrols.JUDTAdapterDataControl.setConfigurationParent(JUDTAdapterDataControl.java:365)
    at oracle.adfdt.model.objects.Configuration$6.run(Configuration.java:204)
    at oracle.adfdt.jdev.transaction.JDevTransactionManager.fetchUnderReadLock(JDevTransactionManager.java:363)
    at oracle.adfdt.model.objects.Configuration.findDataControl(Configuration.java:215)
    at oracle.adfdtinternal.model.ide.factories.adapter.DCFactoryAdapter.createDataControl(DCFactoryAdapter.java:388)
    at oracle.adfdtinternal.model.ide.addins.AdapterContextHandler.createMetaDC(AdapterContextHandler.java:34)
    at oracle.adf.model.adapter.MetaDef.createDataControl(MetaDef.java:118)
    at oracle.adfdtinternal.model.adapter.webservice.JdxPKWSAddin.invokeDCWizard(JdxPKWSAddin.java:157)
    at oracle.adfdtinternal.model.adapter.webservice.JdxPKWSAddin.invoke(JdxPKWSAddin.java:91)
    at oracle.ide.wizard.WizardManager.invokeWizard(WizardManager.java:446)
    at oracle.ide.wizard.WizardManager$1.run(WizardManager.java:530)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:642)
    at java.awt.EventQueue.access$000(EventQueue.java:85)
    at java.awt.EventQueue$1.run(EventQueue.java:603)
    at java.awt.EventQueue$1.run(EventQueue.java:601)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:612)
    at oracle.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)
    at oracle.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

    Did you test the WSDL by
    1)opening it in a browser and
    2)also by running it using the HTTP Analyzer ... I'm guessing the WSDL might have issues
    Also is your request and response included in the WSDL or they are referred to as separate files ?

  • ADF Mobile webservice datacontrol parameter problem

    Hi, I have a method in my WS which has a List lista as input parameter when I create the datacontrol It shows Object instead of list,
    how can I solve this? I cannot use List<MyBean> because this is not awolled in adfmobile
    I use Jdeveloper 11.1.2.3.0
    --diego10.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    1. you actually need to create an entity of the type the list objects are of. E.g. Employee to represent a list of employees
    2. You access the WS DC programmatically from Java and encapsulate it in an array of Employees (to follow my sample)
    3. You use a POJO data control to expose the array list
    private HashMap employeeListCache = null;
         * Query all employees from a Web Service and keep the value local.
         * @return Collection of Employees
        public Employees[] getAllEmployees() {       
            Employees[] emps = null;
            if (employeeListCache == null) { 
                employeeListCache = _findAllEmployees();
            emps = (Employees[])employeeListCache.values().toArray(new Employees[employeeListCache.size()]);       
            return emps;
      private HashMap _findAllEmployees() {
            try {
                //renew all employee data
                employeeListCache = new HashMap();
                //invoke WS data control from this POJO
                ArrayList parameterNames = new ArrayList();
                ArrayList parameterValue = new ArrayList();
                ArrayList parameterTypes = new ArrayList();
                //Generic representation of a data control's data provider object. It exposes meta information about
                //the providers attributes and accessors, as well as the ability to get and set their values.
                //This interface abstracts the raw data provider object from the nature of its type of data control;
                //the raw provider can be a deserialized representation of an object returned by a SOAP or REST web
                //service call, or it can be an actual java class instance. This interface is used primarily by the
                //internals of the embedded java data control framework, however it can also be used when invoking data
                //control methods directly from application java bean code.
                GenericType employeesList =
                    (GenericType)AdfmfJavaUtilities.invokeDataControlMethod("HrWSDC", null, "getEmployeesFindAll",
                                                                            parameterNames, parameterValue,
                                                                            parameterTypes);           
                if (employeesList != null) {
                    for (int i = 0; i < employeesList.getAttributeCount(); i++) {
                        GenericType row = (GenericType)employeesList.getAttribute(i);
                        Employees employee = (Employees)GenericTypeBeanSerializationHelper.fromGenericType(Employees.class, row);           
                        employeeListCache.put(employee.getEmployeeId(),employee);
            } catch (AdfInvocationException e) {
                logApplicationMessage(Level.SEVERE, "Cannot read data from Web Service \n", ""+ e.getMessage());
            return employeeListCache;
        }Here's the full sample and doc:
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/m05-ws-pojo-caching-1940037.pdf
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/m05-ws-pojo-caching-1940039.zip
    Frank

  • Struts and Tiles Problem:compiler error message

    I imported the application "tiles-documentation.war" from jakarta-struts-1.1 into the newly installed JDevloper(Version 9.0.5.2 Build 1618) and try to make it running.
    While with the former Jdeveloper 9.0.4 I can run it nicely(a few manual editing of some files, though), with this newer version I just can not proceed with the following error message.
    Project: D:\jdev\mywork\oc4j_startup\tiles_doc\tiles_doc.jpr
    D:\jakarta-struts-1.1\webapps\tiles-documentation\tutorial\common\menu.jsp
    Error: package and class have same name: tutorial.common._menu
    the same kind of message repeated many many times.
    It seems that I can not probe any more...
    Can someone help me out? Thanks in advance

    Right so these where messages from the JSP compile or from the import process?

  • Seamless Tiles problems

    All tutorials that you come across on the net for creating Seamless tiles, all show to use the offset filter.  The results from using this filter are never what I want, no matter how many tutorials I follow.
    How can remove the seams in this image, without offset and or having to use the smart clone tool ? This image is a pattern applied to a canvas.
    Thank You.

    Let's give it a try. I've modified J's solutiion slightly but the method remains intact.
    1. Open your souce tile and copy it into memory.
    2. Open a new document that is as big or bigger (it doesn't matter) as 2x the width and 2 x the height of your source tile. The numbers in the New dialog box indicate the size of your tile. Make sure your have a background.
    3. Activate the Move tool and make sure the "Show Transform Controls" check box on the Property Bar is checked.
    4. Select the Actions Panel and Start a new action (Click on the icon in the panel next to the Trashcan) Give it a name and click on Record.
    5. Insert the image from memory (Ctrl-V) 4 times. You should now have a background with 4 layers (1-4) in the center with Layer 4 selected. And you should be able to see the Transormation controls.
    6. Click on the transformation controls. The Property Bar will change to the "Free Transform" set up with a square formed by 5 smaller squares on the left end. Click the small square in the center of the left side of that square. The small black square at the center will move from the center to the left center square.
    7.Select menu item Edit->Transform->Flip Horizontally. (Don't worry if it goes off the canvas we'll fix that later). Click the check mark at the right of the Property Bar to accept the change. There should be 2 copies of your tile showing abutted together horizontally.
    8.Select Layer 3 in the Layers Panel. Click on the Transform Controls in the center of the image. The Property Bar changes. Select the small square at the center of the bottom of the square on the left side of the Property Bar. Select menu item Edit->Transform->Flip Vertically. And click the check mark at the right end of the Property Bar. You hould now see 3 copies of you tile butted together.
    9. Select Layer 2 in the Layers Panel. Click on the Transformation Controls. The Property Bar changes. Select the small square in the center of the left side of the square at the left end of the Property Bar. Select menu item Edit->Transform->Flip Horizontally.
    10. Change the square selection to the small center square on the bottom of the square at the left end of the Property Bar. Select menu item Edit-Transform->Flip Vertically. Click the check mark at the right end of the Property Bar.
    11. Select Layer 1 in the Layer Panel, move your cursor to Layer 4 and with the shift key pressed select Layer 4. Layers 1 to 4 should now be hi-lighted press ctrl-E to merge them. Layer 4 (the merged layers of your tile is now selected.
    12 Still in the Layers Panel with the ctrl key pressed click on the background. Both the background and Layer 4 should now be selected. In the Property Bar click on the on the "Align Vertical Centers" icon then the "Align Horizontal Centers" icon. Your tile should now be in the center of the canvas.
    13 Click on Layer 4, Layer 4 alone should now be selected. In the Layers Panel Ctrl-Click on the Layer 4 icon. You should now have a marquee around your tile. Select menu item Image->Crop. Select Menu item Layer->Flatten Image.
    14. Press the stop recording icon at the bottom of the Actions Panel (small gray square). Your Action is now complete.
    15 Test your Action. In the History Panel go to the top and click on "New". In the Actions Panel select your Action under the name you gave it, press the Play Icon. The tile should be recreated in front of you.
    Good Luck
    Mike

  • Launch Tile Problem

    Hi,
    Am getting error when I try to use launch tile in my application.
    Code :
    var oLaunchTile = new sap.suite.ui.commons.LaunchTile({
             title : "Create Shopping Cart",
             icon : "sap-icon://cart",
             link : "http://www.sap.com"
    Error :
    Cannot read property 'ImageHelper' of undefined
    Am getting this error only when I use icon property in the Launch Tile.
    Please help me on the same.
    Regards,
    Ram

    Hi Ram,
    Below is the code written in LaunchTile.js. and as you can see the highlighted statement, ImageHelper function from sap.m is being used and that is why you were getting error when you did not included sap.m library.
    * SAP UI development toolkit for HTML5 (SAPUI5) (c) Copyright 2009-2013 SAP AG. All rights reserved
    jQuery.sap.declare('sap.suite.ui.commons.LaunchTile');jQuery.sap.require('sap.suite.ui.commons.library');jQuery.sap.require('sap.ui.core.Control');sap.ui.core.Control.extend('sap.suite.ui.commons.LaunchTile',{metadata:{library:'sap.suite.ui.commons',properties:{'title':{type:'string',group:'Misc',defaultValue:null},'icon':{type:'sap.ui.core.URI',group:'Misc',defaultValue:null},'link':{type:'sap.ui.core.URI',group:'Misc',defaultValue:null}},events:{'press':{}}}});sap.suite.ui.commons.LaunchTile.M_EVENTS={'press':'press'};jQuery.sap.require('sap.ui.core.IconPool');
    sap.suite.ui.commons.LaunchTile.prototype.exit=function(){if(this._iconImage){this._iconImage.destroy();this._iconImage=undefined}};
    sap.suite.ui.commons.LaunchTile.prototype.setIcon=function(u){this.setProperty('icon',u,true);var i=this.getId()+'-img';var s='72px';var p={src:u,height:s,width:s,size:s};this._iconImage=sap.m.ImageHelper.getImageControl(i,this._iconImage,this,p);return this};
    sap.suite.ui.commons.LaunchTile.prototype.onclick=function(e){this.firePress({title:this.getTitle(),link:this.getLink()})};
    I hope this answers your question.
    Regards,
    Chandra

  • Freehand 10 and tiles ?

    Hello, I've been experiencing lot of trouble when I try to
    print my document 1120 mm x 810 mm to a TANTO 90 negative printer
    (Japanese model), the printer doesn't accept the TILES that fill
    some of my objects, If I want to do tiles manualy it will cost me
    lot of my time, specialy that I have more than 8 big Jobs with the
    same tile problem.
    Please is there any way to print my tiles without losing my
    document boundaries or without having this problem.
    TANTO 90 gives me this message (Shortened):
    your document size is 3974.8 and the film size is 3973.98
    also same other line for width.
    I tried to reduce the size of document to less points but no
    benifits.

    > When printing, are you using a PPD for that printer?
    > I don't know, .
    First read the FreeHand Help files on the topic of printing.
    I assume you have scaling set to Uniform/100%.
    A PPD is a 'PostScript Printer Description' file that must be
    installed and
    available to a Postscript printer. (On Mac OS X the PPD for
    the printer is
    chosen when you install a printer.) Do not use generic PPDs.
    In the FH Print dialog you will see a checkbox 'Use PPD'. For
    precision
    Postscript printing, you must use the correct PPD for the
    printer.
    Judy Arndt

  • ERROR: Invoking BPEL PROCESS FROM ADF APP

    hi guys ,
    I have made a simple bpel process with invokes a webservice (This service only gets a string and returns the string).
    I have tested this bpel process and web service it works fine. when tested with bpel console.
    I copied the wsdl of bpel and created the datacontrol.
    the problem is that when i hit start the process from ADF App. it raises the error
    Sep 7, 2009 1:24:49 PM oracle.wsm.common.logging.WsmMessageLogger logSevere
    SEVERE: Failure in looking up EJB component PolicyAccessService#oracle.wsm.policymanager.ejb.IStringPolicyAccessServiceRemote.
    Sep 7, 2009 1:24:49 PM oracle.wsm.common.logging.WsmMessageLogger logSevere
    SEVERE: Failure in looking up EJB component PolicyAccessService#oracle.wsm.policymanager.ejb.IStringPolicyAccessServiceRemote.
    Sep 7, 2009 1:24:49 PM oracle.adf.model.connection.webservice.impl.WebServiceConnectionMessages debugExecuteFailure
    SEVERE: Failed to execute a SAAJ interaction.
    javax.xml.ws.WebServiceException: oracle.fabric.common.PolicyEnforcementException
         at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:741)
         at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:226)
         at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:97)
         at oracle.adf.model.connection.webservice.impl.SaajInteractionImpl.execute(SaajInteractionImpl.java:87)
         at oracle.adfinternal.model.adapter.webservice.provider.soap.SOAPProvider.execute(SOAPProvider.java:323)
         at oracle.adfinternal.model.adapter.webservice.WSDataControl.invokeOperation(WSDataControl.java:251)
         at oracle.adf.model.bean.DCBeanDataControl.invokeMethod(DCBeanDataControl.java:427)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:256)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1437)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2120)
         at oracle.adf.model.bean.DCBeanDataControl.invokeOperation(DCBeanDataControl.java:464)
         at oracle.adf.model.adapter.AdapterDCService.invokeOperation(AdapterDCService.java:307)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:693)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:394)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:217)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:176)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1245)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:673)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:273)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:165)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:54)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.wls.JpsWlsFilter$1.run(JpsWlsFilter.java:96)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.wls.util.JpsWlsUtil.runJaasMode(JpsWlsUtil.java:146)
         at oracle.security.jps.wls.JpsWlsFilter.doFilter(JpsWlsFilter.java:140)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:202)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3588)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2200)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2106)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1428)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: oracle.fabric.common.PolicyEnforcementException
         at oracle.integration.platform.common.InterceptorChainImpl.createPolicyEnforcementException(InterceptorChainImpl.java:161)
         at oracle.integration.platform.common.InterceptorChainImpl.processRequest(InterceptorChainImpl.java:97)
         at oracle.integration.platform.common.mgmt.InterceptorChainManager.processRequest(InterceptorChainManager.java:216)
         at oracle.j2ee.ws.client.mgmt.runtime.SuperClientInterceptorPipeline.handleRequest(SuperClientInterceptorPipeline.java:96)
         at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:524)
         at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:508)
         at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:693)
         ... 64 more
    Caused by: java.lang.NullPointerException
         at oracle.j2ee.ws.rm.interceptor.WSRMClientInterceptor.processRequest(WSRMClientInterceptor.java:169)
         at oracle.integration.platform.common.InterceptorChainImpl.processRequest(InterceptorChainImpl.java:89)
         ... 69 more
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://xmlns.oracle.com/SOAApp1/Project1/BPELProcess1"><env:Header/><env:Body><ns1:process><ns1:input>Shakeel Anjum</ns1:input></ns1:process></env:Body></env:Envelope>
    Kindly help
    Regards,
    Tariq

    Hi,
      Check if your wsdl endpoint can accessed properly. If yes, check the soap-binding address is properly pointing to the server hosting the webservice.
    Regards,
    Harikiran.

  • Is it possible to make an ImageIcon array?

    Hi, I have been having some strange problems with ImageIcon...
    Here is my code...
    ImageIcon tiles[][] = new ImageIcon[5][5];
    tiles[0][0] = "1.png";
    I know this is not right, but basically, I want to make a 2dimensional array of imageIcon's, and then use a loop to set the link to the image. This is tough because I have not had any luck with this code. It works on strings, int's, float's, etc. but not on ImageIcon's grrrrrrr
    thanks

    All I want to do, Is make an array of ImageIcon's and then use a 2dimensional loop to draw all the tiles.
    problem one: I want to use a loop to create each individual ImageIcon, and since there is no "setfile" kind of function i tried making my own in the post above. But im simply trying to make a loop which sets all of the tiles to appropriate file names. (all the file names are numbers and then .png)
    Thats all I want to do, and I want to pass a parameter to a function which tells it the filename to set, and the specific ImageIcon in the array to modify. Hence why I had 2 paramater strings in the previous post

  • Lumia 1020 Gallery Widget - How to Delete Sample P...

    I've got the Nokia photo gallery widget pinned to the home screen of my phone.  When the Black update installed, new sample photos were also installed and these sample photos show up on the gallery widget in the image preview.  I was able to delete some of these photos from within the Nokia Camera app but some are still showing up in the widget on the home screen.  I'm unable to find these photos on the phone so am unable to delete them.  I don't want these sample images on the phone.  How can I delete these sample images?
    Second question is in regard to the ordering of images in the gallery app.  I have the images named in the following manner: Image01, Image02, Image03.... I did this so that when the images were transferred to another device, they would show up in the proper order in the gallery and so that when they were shown to people, they would show in the proper order.  When I transfer the images to any of my Android devices, they are properly ordered in any of the gallery apps I use.  When transferring the images to my Windows Phone, they are not properly ordered.  They show up in some random order that I'm unable to figure out.  Perhaps it's date-based and based on the date the images were captured in the image EXIF, I'm not sure.  Is there any way to get the images to appear in the proper, image name-based order?
    Thank you.

    @ceroberts75 - If so, that's both unfortunate and completely inconsistent with computing convention. And very bad programming.
    @farby - It's been 4 days.
    I did find a solution to the home screen tile problem. Going into the gallery, pressing ... and choosing Shuffle background seems to get rid of the sample photos and uses my onw pictures that are stored on the phone.
    Thanks.

  • How to keep entering data in web pages

    hi,
    i am using ADF 11g 2 release. I have remote application connect with ADF jar lib and local application. when i enter data to my local application and redirect to remote application and enter the data their also. But when I link to local app page via url view but I entered data is not there. I am not commited any page data. In remote app... alos link but there also no data. how to keep them??
    all page in taskflow and they connect with control flow case. I made Auto submit true and immediate true for text component.. but no any change.
    can not use any setting changes? Need java coding for both application??
    hoping chance..
    thanks.

    hi,
    I have developed ADF 3 web applications. 2 of them are connect as ADF jar lib files in other application. That application name is local application and other 2 mentioned as remote application(jar lib files). those are in taskflowcall. IN my Local Application which has Application Module. so I selected remote application's Application modules as Application Module Instances. Then in my Local Application DataControl which include that added Application Modules inside the local application DataControl. which are in nested. Remote application DataControl also appear in the local app DataControl.
    Problem is I want to save all applications data through my local application. therefore I link to first remote app and enter data but not commit ,then come back to local app.. and enter data and again goto first remote app again, BUT entered data Not there. so I want to keep them and save all 2 remote app data and local app data.
    DCDataControl dc = bc.findDataControl("TestRemoteAppDataControl"); // *<-- this is one of my remote application Data control name..*
    ApplicationModule am = (ApplicationModule)dc.getDataProvider();
    am.getTransaction().commit();
    dc.commitTransaction();
    this code is not worked. BUT local app data only saved using below code...
    BindingContext bc =BindingContext.getCurrent();
    DataControlFrame dcf= bc.findDataControlFrame(bc.getCurrentDataControlFrame());
    Collection<DCDataControl> dcCol =dcf.datacontrols();
    for(DCDataControl dCDataControl : dcCol) {
    if(dCDataControl.isTransactionDirty()){
    try{
    dCDataControl.commitTransaction();
    catch(Exception e) {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    facesContext.addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR, e.getMessage(), null));
    e.printStackTrace();
    thanks ,hopping chance.
    any who know this??
    thanks.

Maybe you are looking for

  • Cost centers in sales order creation

    I know it's possible to input the Profit center when creating a sales order (VA01)under the account assignment tab. Is there any configuration that can be done so that the user will be able to enter cost center? Thanks for your prompt response.

  • Duplicating a Record with a Webserver Application

    Hello, We have a Designer generated webserver application. The users want me to add a button that will duplicate the existing record, except for a few fields. They then want to change a few fields, and save it as a new record. I know how to add the b

  • Also having problems with Skype-to-Go and Managing...

    For over 3 years now I have used skype to go for my family in the us while I am on bonaire in the Dutch Carribean. All of a sudden, BAM it cut off on October 7 as well as my ability to manage my account. I have been trying to get this issue resolved

  • Toplink Migration from 9 to 11 G Problem

    Hi all, DatabaseLogin.setKey(farmProp.getTopLinkKey()); not availablem in Toplink 11 g and getting compile time error, Can anyone tell me how do I fix that above piece of code in Toplink 11g And also please share me any help URL where toplink connect

  • Keyboard Shortcut Madness

    Hi, I don´t know if i might changes accidentally some keyboard shortcut or so, but when having some text select and going Cmd+- to zoom back, it does zoom back but also jumps to Page 32. I did not know there was a shortcut for something like Go to X