JDeveloper 10.1.2 - JSF extension mapping

Hi!<br>
I'm using JSF with JDeveloper 10.1.2. Is it possible to configure JDeveloper, so that it recognizes the extension .faces or .jsf as JSF/JSP page?<br>
Extension mapping would be much more comfortable than path prefix mapping, because with path prefix mapping, I have to change the URL which invokes the application by inserting the path prefix each time I run a JSF/JSP page with the embedded OC4J server.<br>
Without explizit configuration, I cannot run pages with a non-jsp extension.

1. Specify the file type with Tools>Preferences>File Types.<br>
2. Add the .jsf fiel type with Add.<br>
3. Specify Extension as .jsf.<br>
4. Select File Type as JSP Source.<br>Thanks, but running the app with this configuration fails. I get a 404 error code. When I look at the .jsps directory, where the translated (compiled?) JSP pages normally reside, the directory is empty. JDeveloper doesn't translate the .jsf pages, so it does still not recognize them as JSP pages. <br>
But I configured the file extension .jsf as JSP source, and I also changed the servlet mapping to *.jsf, and the file extensions of the JSF pages, and the faces-config.xml.<br>
Have you ever tried to use the extension mapping in JDeveloper 10.1.2.0.0?

Similar Messages

  • How does *.jsf extension map to *.jsp extension and where it is mapped

    Hi ,
    How does *.jsf extension map to *.jsp extension and where it is mapped ?
    Thanks

    How does *.jsf extension map to *.jsp extension and where it is mapped ?It is mapped in the web.xml.
    If you add the following in your web.xml:
    <context-param>
    <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
    <param-value>.xhtml</param-value>
    </context-param>
    The *.jsf will be mapped to the file with the same name, but xhtml as extention.
    if you the javax.faces.DEFAULT_SUFFIX is not defined in the web.xml, the default suffix comes from the one of the constant of javax.faces.application.ViewHandler . This constant names DEFAULT_SUFFIX and equals to ".jsp"
    Look at:
    http://java.sun.com/j2ee/javaserverfaces/1.1/docs/api/constant-values.html
    Sergey : http://jsfTutorials.net

  • url-pattern for extension mapping in security-constraint not working

    I'm trying to use extension mapping in a <security-constraint> configuration,
    According to:
    http://download.oracle.com/otn-pub/jcp/servlet-3_1-fr-eval-spec/servlet-3_1-final.pdf?AuthParam=1429824454_de04222eab1b8…
    Section 12.2:
    A string beginning with a ‘*.’ prefix is used as an extension mapping.
    But WebLogic does not take in consideration my configuration. If I use path mapping exact mapping it work.
    My configuration is:
    <security-constraint>
        <web-resource-collection>
            <web-resource-name>Unsecured</web-resource-name>
            <url-pattern>*.wsdl</url-pattern>
            <url-pattern>*.xsd</url-pattern>
        </web-resource-collection>
        <user-data-constraint>
            <transport-guarantee>NONE</transport-guarantee>
        </user-data-constraint>
    </security-constraint>
    <security-constraint>
        <web-resource-collection>
            <web-resource-name>HttpAuth</web-resource-name>
            <url-pattern>/ws/*</url-pattern>
        </web-resource-collection>
        <auth-constraint>
            <role-name>ws-user</role-name>
        </auth-constraint>
        <user-data-constraint>
            <transport-guarantee>INTEGRAL</transport-guarantee>
        </user-data-constraint>
    </security-constraint>
    <login-config>
        <auth-method>BASIC</auth-method>
        <realm-name>Test1</realm-name>
    </login-config>
    <security-role>
        <role-name>ws-user</role-name>
    </security-role>
    WebLogic Server 12c (12.1.3)
    Has anybody used extension mapping with security-constraint? Is that a WebLogic issue?

    Hi nikita,
    I have delt with the same problem before. As you say, most JSF actions all get posted back to the original page, and the faces servlet internally redirects according to the navigation rules and actions. This can mean the URL seen by the browser does not always correspond to the actual JSP (wrapped by JSF) that produced the content.
    Generally adding the "<redirect/>" tag to all your navigation rules (in faces-config.xml) remedies this, so the actions are still posted back to the original page, but then the JSF servlet sends an http-redirect to the browser before invoking the new page. This way, the URL is always in sync, and the security constraints defined in your web descriptor always get invoked properly.
    regards,
    tony

  • Facelets and jsf-extensions problem.

    I'm fairly certain I've run into a problem between facelets and jsf-extensions. I'm working with JSF 1.2 RI, Woodstock, Facelets 1.1.13, on Tomcat 6.
    When trying to get Woodstock autoValidation to work I get a javascript error the "I has no properties". The error occurs in the com_sun_faces_ajax.js file in the jsf-extensions-dynamic-faces-0.1.jar (I've used both the RC4 and a build today ,10/18/07 from source with the same results). Here is the code snippet where it happens (with my comment).
    var I = G.getElementsByTagName("components")[0];
    var C = I.getElementsByTagName("render");
    for(var F = 0; F < C.length; F++) {
    In the second line there it looks like the variable I is null, but based on the post response below I don't know why.
    The response from the post looks like this:
    <partial-response><components><render id="PayableForm:vendorGci"><markup><![CDATA[{"valid":true,"id":"PayableForm:vendorGci"}]]></markup></render></components>
    However the server side code (validation method) never gets executed. I'm willing to do some digging and debug work, but I'd need to be pointed in the right direction.
    The following is more potentially useful code snippets.
    Here is the textField code:
    <w:form id="PayableForm">
    <w:textField style="display:none;" />
    <w:message for="vendorGci" />
    <w:label id="vendorGciLabel" for="vendorGci" text="Vendor: " />
    <w:textField id="vendorGci" autoValidate="true"
    text="${vendorBean.searchGci}" maxlength="8" required="true"
    validatorExpression="#{ vendorBean.validateVendor}" />
    Here is the javascript in the page (the init function is called from the body: onLoad="setTimeout('init();', 0);" , this does happen):
    <w:script type="text/javascript">
    function VendorListener(){
    function VendorNotify(props){
    alert("VendorNotify called!"); <--------------- I never see this alert message
    if ( props.id != "PayableForm:vendorGci") { return; }
    var field = document.getElementById("PayableForm:vendorGciLabel");
    field.setProps({
    valid: props.valid
    VendorListener.prototype.notify = VendorNotify;
    function initAccountRows(){
    var table = document.getElementById("PayableForm:vendorAccountTable");
    table.initAllRows();
    function init(){
    initAccountRows();
    var listener = new VendorListener();
    dojo.subscribe(
    webui.suntheme.widget.textField.event.validation.endTopic ,
    listener, listener.notify);
    Here is the validator method. It currently doesn't do anything, just trying to get something to work. I never see the output, and I never hit the breakpoint in the method.
    public void validateVendor(FacesContext context, UIComponent comp, Object value){
    System.out.println("**********************************");
    System.out.println("validateVendor called");
    System.out.println(value);
    System.out.println("**********************************");
    }

    Actually I don't need a global variable. I need to refer in my included template the actual backing bean used in the current page. As all my backing bean extends a abstract class I could bind my component to a property of the current backing bean, no matters which one. Just like a polymorphic call but without the parameter. Let's imagine I could get this object of the facesContext object I would be able to do:
    <rich:datascroller renderIfSinglePage="false" align="right" for="listagem" maxPages="12" fastStep="10"
    pageIndexVar="pageIndex" pagesVar="pages" stepControls="show" fastControls="hide" boundaryControls="show"
    inactiveStyleClass="paginacaoInativa" selectedStyleClass="paginacaoSelecionada"
    styleClass="paginacao" tableStyleClass="paginacaoTabela"
    binding="#{facesContext.currentBackingbean.formDataScroller}" id="paginacao">
    Instead of pass the backing bean to the ui:param of this template... Dou you get the point?

  • Jdeveloper with BPEL and OA Extension.

    Hi,
    Can someone point me to the right download and version of JDeveloper for BPEL and OA Extensions together.
    Thanks,
    --KC.                                                                                                                                                                                                                                                                       

    Yes,
    You need to have separate versions. Check the metalink Note 416708.1 - How to find the correct version of JDeveloper to use with eBusiness Suite 11i or Release 12.
    For BPEL related dependency, check the help docs of process manager installed on your application server.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Does exact match has priority over extension mapping?

    Hi, i'm using extension mapping in my web application. So one
    servlet is responsible for all requests with extension 'do'.
    Now i would like to have one special request served by another
    servlet. What's the best way to implement this? I'm thinking
    about setting up an exact match mapping for the special request
    and an extension mapping for the rest. There's only one thing
    i worry about: if i use the 'do' extension in my special request
    (for consistency reasons), which servlet will handle this request?
    Thanks in advance for your comments.
    Markus

    A exact match on path will override the extension mappng. Here's the rules from the servlet 2.3 spec (also contains examples)..
    1. The container will try to find an exact match of the path of the request to the
    path of the servlet. A successful match selects the servlet.
    2. The container will recursively try to match the longest path-prefix: This is done
    by stepping down the path tree a directory at a time, using the �/� character as
    a path separator. The longest match determines the servlet selected.
    3. If the last segment in the URL path contains an extension (e.g. .jsp), the servlet
    container will try to match a servlet that handles requests for the extension.
    An extension is defined as the part of the last segment after the last �.� character.
    4. If neither of the previous three rules result in a servlet match, the container will
    attempt to serve content appropriate for the resource requested. If a "default"
    servlet is defined for the application, it will be used.
    The container must use case-sensitive string comparisons for matching.

  • Problem in JSF action mapping for ZOHOwrter

    Hello Every one,
    I am struggling with a problem by using zohowriter in JSF Frame work, my problem is..
    I have developed an application to open and edit a Document which resides in server and save it in server in another path, for this purpose we are using ZohoWriter. For this application the Struts frame work is working fine.
    I have designed xhtml page by using struts framework as bellow,
    <body>
    <form method="POST" action="http://export.writer.zoho.com/remotedoc.im?apikey=ad40de81a92f4d644b474276c7ac1640&output=editor" target="_self">
    <input type="hidden" name="url" value="http://customers.info-sun.com/itrack/templateDocuments/TestPlan.doc">
    <input type="hidden" name="saveurl" value="http://localhost:8080/Struts/zoho.do">
    <input type="hidden" name="filename" value="mydocument.doc">
    <input type="hidden" name="id" value="12345678">
    <input type="hidden" name="format" value="doc">
    <input type="hidden" name="persistence" value="true">
    <input type="submit" value="Edit" class="divbutton" name="submit">
    </form>
    By using above code that editor is calling the "saveurl" attribute value while saving the document, that is automatically executing the Action class and saving the Document in specified server path.
    But,
    In my application we are following JSF framework,
    In my application I have written the xhtml page like,
    <form id="myform" method="post" enctype="multipart/form-data" action="http://export.writer.zoho.com/remotedoc.im?apikey=ad40de81a92f4d644b474276c7ac1640&output=editor">
         <h:commandButton value="Edit" />
         <h:inputHidden id="url" value="http://customers.info-sun.com/itrack/templateDocuments/TestPlan.doc" />
         <h:inputHidden id="filename" value="TestPlan.doc" />
         <h:inputHidden id="id" value="12345678" />
         <h:inputHidden id="saveurl" value="http://customers.info-sun.com/itrack/zoho.fileDownload" />
         <h:inputHidden id="format" value="doc" />
    </form>
    in the page designing if I use <h:form> this tag is not containing action attribute , so I am giving by command button but it is not working.
    So, I continued with html form.
    also, if I specify the "saveurl" attribute mapped with backing been , it is executing in page load only , So My actual intention means after editing it needs to call but it is not happening, while loading this method is calling so other problems are raising.
    Can any one please guide me that, what is my mistake and how to over come.
    Thanks and Regards
    N.Sailaja
    Edited by: SailajaN on Jun 9, 2009 7:37 AM

    Hi,
    I got solution for the above problem.
    I am calling a servlet instead of calling jsf flow, I got that, the zohowriter calling only lifecycle method for saveurl attribute.
    Thanks and Regards
    N.Sailaja
    Edited by: SailajaN on Jun 12, 2009 6:32 AM

  • JDeveloper 11g TP 4 Custom Extensions

    Hello.
    I'm trying to develop an Extension for JDeveloper 11G TP 4. I'd like to know, if it is possible to access a JDeveloper IDE Connection (Database connection), and use this connection to query some information on the database ?
    Thanks a lot.
    Sincerely,
    John

    To use the database connection APIs in an extension, add a dependency from your extension to
    Database Connection Support (oracle.jdeveloper.db.connection)
    Database Features (JDeveloper) (oracle.jdeveloper.db)
    Then you can use the oracle.jdeveloper.db.DatabaseConnections API to list/get connection information.
    To get the central connections for the IDE use DatabaseConnections.getInstance()
    To get the connections for a given Application use AppDatabaseConnections.getAppDatabaseConnections()
    From a DatabaseConnections object you can:
    - get the java.sql.Connection to the database - getConnection( name )
    - get the Properties for the connection - getProperties( name )
    - get the oracle.javatools.db.Database that provides an API for getting at the objects (e.g. Tables) in the database dictionary - getDatabase( name )

  • JDeveloper - obtaining and installing ADF extensions

    Just got back from an Oracle ADF course to find that the copy of Jdeveloper (10.3.3.0) used on the course has more extensions installed by default than the version on the web site. (all the cool ADF stuff we were using on the course!)
    I can't find these extensions available on the "check for updates" option on JDeveloper, and the guides on using ADF with JDeveloper on the oracle site are over 3 years old.
    I don't particularly want to rely on a copy of JDeveloper I got from a CD on a training course... I should be able to install the same setup from oracle downloads.
    I've searched the forums, but to no avail - I suspect that I'm perhaps looking at this issue from the wrong angle.

    OK, these are the extensions that are in the training course version, but not in mine:
    ADF Faces Cache
    ADF Model
    ADF Security (Design Time)
    ADF Struts Page Flow Modeler
    ADFm DC Adapter
    BC4J Framework Installer
    BI Beans Graph
    BPEL Process Modeler
    ESB Modeler
    External Application Extension
    J2EE
    JGoodies Forms
    Java Content Repository (JCR)
    Java Server Faces Page Flow Modeler
    Local Help for J2EE Edition
    Local Help for Studio Edition
    Modelers
    Oracle ADF Faces
    Oracle ADF Faces - ADFm Integration
    Oracle ADF Faces Customizable Components
    Oracle Mobile ADF
    Oracle WebCenter Extension
    Oracle WebCenter Preconfigured OC4J
    Portlet Creation Extension
    Registration for ILOG JViews in Oracle JDeveloper
    Struts Page Flow Modeler
    Workflow Editor
    XSL Mapper

  • How to convert *.jsf extension to *.htm

    hi,
    I am using jsf in my application. and i am using url patteren as *.jsf to access page but now i want to make it as *.htm how can i do that.
    i am using the fallowing code in my web.xml
         <servlet-mapping>
              <servlet-name>Faces Servlet</servlet-name>
              <url-pattern>*.jsf</url-pattern>
         </servlet-mapping>

    i have used the fallowing mapping still i am not able to access the page.
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.htm</url-pattern>
    </servlet-mapping>
    what are the other changes need to be done??

  • What previous knowledge need to learn oracle jdeveloper 11g (adf faces&jsf)

    hi plz tell me, what are all technologies and languages i want to knew before i learn adf faces with jsf in oracle jdeveloper 11g

    Hi,
    Although the blog post is ok, I would certainly add a good JSF book/tutorial before the "Developing RIA Web Applications with Oracle ADF" part. For even better results, I would add a Trinidad book/tutorial before it as well. If you want to be future proof, add a Facelets tutorial between the JSF and Trinidad part. If you go right away to "Developing RIA Web Applications with Oracle ADF" you'll only make yourself a robot not understanding what happen behind the scene, often resulting in performance and memory issues as well as not so good looking application since you're going to force yourself into the Oracle LaF only.
    For the JSF part, check out http://horstmann.com/corejsf/ and, if you can handle really technical stuff: http://jcp.org/aboutJava/communityprocess/final/jsr314/index.html
    For Facelets: https://facelets.dev.java.net/nonav/docs/dev/docbook.html and http://www.ibm.com/developerworks/java/library/j-facelets/
    For Trinidad: http://myfaces.apache.org/trinidad/devguide/index.html
    Regards,
    ~ Simon

  • RequestDispatcher / servlet mapping broken for extension mapping?

    Hello folks,
              I'm using RequestDispatcher from a 'Control' servlet to forward
              ServletRequests to a 'Presentation' servlet. The Control servlet does
              some processing and determines which 'URL' to forward the request to.
              Sometimes, I expect the Control servlet to forward requests to a file
              URL; which the servlet container will intercept and send to another
              Servlet because there is a mapping for that file's extension.
              For example (in a servlet)...
                   RequestDispatcher presentationServlet =
                        context.getRequestDispatcher("/xsl/somestylesheet.xsl");
                   presentationServlet.forward(req, resp);
              and in WEB.xml
                   <servlet-mapping>
                        <servlet-name>XSLTStylesheetServlet</servlet-name>
                        <url-mapping>*.xsl</url-mapping>
                   </servlet-mapping>
              I find however that Weblogic simply displays the content of
              '/xsl/somestylesheet.xsl', rather than invoking the
              XSLTStylesheetServlet with the appropriate value for 'getServletPath()'
              (which I expect to return '/xsl/somestylesheet.xsl').
              I've seen some stuff in these newsgroups to indicate that this might be
              a known issue; if so, when is it likely to be fixed because this is a
              show-stopper for me - I'll note that Tomcat (http://jakarta.apache.org)
              supports this functionality ;-) [although admittedly, this is a possibly
              murky area of the spec.]
              Thanks,
              James W.
              

    The WebLogic newsgroups are not the appropriate place to file product defect
              reports.
              I suggest that you file a bug report with our support organization. Be sure
              to include a complete test case. They will also need information from
              you -- please review our external support procedures:
              http://www.beasys.com/support/index.html
              Thanks,
              Michael
              Michael Girdley
              Product Manager, WebLogic Server & Express
              BEA Systems Inc
              James Webster <[email protected]> wrote in message
              news:[email protected]...
              > Hello folks,
              >
              > I'm using RequestDispatcher from a 'Control' servlet to forward
              > ServletRequests to a 'Presentation' servlet. The Control servlet does
              > some processing and determines which 'URL' to forward the request to.
              > Sometimes, I expect the Control servlet to forward requests to a file
              > URL; which the servlet container will intercept and send to another
              > Servlet because there is a mapping for that file's extension.
              >
              > For example (in a servlet)...
              >
              > RequestDispatcher presentationServlet =
              > context.getRequestDispatcher("/xsl/somestylesheet.xsl");
              > presentationServlet.forward(req, resp);
              >
              > and in WEB.xml
              >
              > <servlet-mapping>
              > <servlet-name>XSLTStylesheetServlet</servlet-name>
              > <url-mapping>*.xsl</url-mapping>
              > </servlet-mapping>
              >
              > I find however that Weblogic simply displays the content of
              > '/xsl/somestylesheet.xsl', rather than invoking the
              > XSLTStylesheetServlet with the appropriate value for 'getServletPath()'
              > (which I expect to return '/xsl/somestylesheet.xsl').
              >
              > I've seen some stuff in these newsgroups to indicate that this might be
              > a known issue; if so, when is it likely to be fixed because this is a
              > show-stopper for me - I'll note that Tomcat (http://jakarta.apache.org)
              > supports this functionality ;-) [although admittedly, this is a possibly
              > murky area of the spec.]
              >
              > Thanks,
              > James W.
              

  • JDeveloper reports: The JAX-RPC extension is not installed

    Hi. I'm attempting to publish a JAX-RPC Web Service, following the instructions in the "Publish a JAX-RPC Java Web Service" document from Oracle Magazine (http://www.oracle.com/technology/tech/webservices/htdocs/series/jaxrpc1/index.html). I get all the way to the point of creating the Web Service from the Emp.jpr (step 13). When I select "JAX-RPC Web Services" as my "Deployment Platform" and press "Next" I get a dialog saying "The JAX-RPC extension is not installed. Either install the extension or choose a differrent platform for the service." I have, in fact, installed the JAX-RPC extension (following the instructions at http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jaxrpc/readme.html).
    Does anyone know the cause of this problem? Thanks.

    I"m also getting this message while trying to launch mini bridge on a Mac. I went to the Library folder you noted and the mini bridge extension is not there. I have 4 extensions present: BuzzwordAccessBundle, CSREviewBundle, Knowledge, and STORY. However the PS menu item Window>Extensions, the Extensions is grayed out. Also when I click on the "CS Live" button in the upper right of PS window, nothing happens.
    I havn't used mini bridge much because I use Lightroom for organization, but I know I've used it in the past and it worked, so I can't understand how it would just disappear, and why these other things would stop working.
    How can I reinstall mini bridge and get the CS Live button and extensions working again?
    I'm back. I installed a couple of extensions to see what would happen and the Extensions button was still grayed out. Too shorten the story; it occurred to me to check what mode PS was running in. I had switched it to 32 bit mode so some not yet updated plugins would work. I switched it to 64 bit mode and bingo, everything works now, including mini bridge, though it is still not present in the Library folder you mention.

  • JSF mapping missing. ExtensionsFilter not correctly configured.

    I am new to JSF's and using JBoss 4.2.0 application server.
    I trying to use <t:panelTabbedPane> and <t:panelTab> in my page like this:
    <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
    <t:panelTabbedPane id= "tbParticipant" selectedIndex = "0">
         <t:panelTab id = "ptFirstName" label = "First Name"></t:panelTab>
         <t:panelTab id = "ptLastName" label = "Last Name"></t:panelTab>
    </t:panelTabbedPane>
    When I open my page i get this error
    ExtensionsFilter not correctly configured. JSF mapping missing. JSF pages not covered.
    Please see: http://myfaces.apache.org/tomahawk/extensionsFilter.html
    I have my web.xml configured exactlly as described at http://myfaces.apache.org/tomahawk/extensionsFilter.html
    Actually I copied and paste the whole text word by word as shown below but still getting that error.
    <filter>
         <filter-name>MyFacesExtensionsFilter</filter-name>
         <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
    <init-param>
    <param-name>maxFileSize</param-name>
    <param-value>20m</param-value>
    <description>Set the size limit for uploaded files.
    Format: 10 - 10 bytes
    10k - 10 KB
    10m - 10 MB
    1g - 1 GB
    </description>
    </init-param>
    </filter>
    <!-- extension mapping for adding <script/>, <link/>, and other resource tags to JSF-pages -->
    <filter-mapping>
    <filter-name>MyFacesExtensionsFilter</filter-name>
    <!-- servlet-name must match the name of your javax.faces.webapp.FacesServlet entry -->
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    <!-- extension mapping for serving page-independent resources (javascript, stylesheets, images, etc.) -->
    <filter-mapping>
    <filter-name>MyFacesExtensionsFilter</filter-name>
    <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
    </filter-mapping>
         Alternate mapping using a url-pattern instead of a servlet-name (you still need the /faces/myFacesExtensionResource/* mapping as well):
    <!-- extension mapping for adding <script/>, <link/>, and other resource tags to JSF-pages -->
    <filter-mapping>
    <filter-name>MyFacesExtensionsFilter</filter-name>
    <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    Please help and thank you in advance.

    Please post the configuration of the FacesServlet in the web.xml.

  • Soa 11g and jdeveloper 11g user defined extension function

    I have developed a set of extension functions,
    in design time for the previous version, I can put the deployment file (jar file) that contains the extension functions in the %JDEV_HOME%\jdev\lib\ext directory and jdeveloper recognizes the set of extension functions if previously i have defined an xml descriptor with every one of the functions i need to include in the panel.
    Now, with the jdeveloper 11g i have tried the same, and jdev recognizes the functions, but when I am going to test one transformation that includes the extension function, the parser is not founding the jar file; the error (in spanish) is:
    XML-22045: (Error) Error de funcion de extension: No se ha encontrado la clase '
    Falta la clase: aac._shared.extensions.xsl.XmlW3cDomFunctions
    Clase Dependiente: oracle.xml.xpath.XSLExtFunctions
    Cargador: main:11.0
    Origen del Codigo: /C:/.extracted/jdevstudio1111/lib/xmlparserv2.jar
    Configuraci≤n: system property PCLMain.createExtensionManagerLoader()
    Esta carga se ha iniciado en main:11.0 mediante el mΘtodo loadClass().
    La clase que falta no esta disponible desde ningun origen de codigo o cargador del sistema.
    my dude is:
    + at design time, where can I put the jars with extension functions to make one transformation function used in a mediator component can works fine?
    + at runtime, where can I put those libraries? (in the previous version, we can put this libraries in the %APP_SERVER%\j2ee\home\applib, or create one shared library and reference it in the oracle.bpel.common shared library declaration of the server.xml configuration file).

    Hi,
    please post this question to the JDeveloper 11 forum. Please translate the messages into English as well
    JDeveloper and OC4J 11g Technology Preview
    Frank

Maybe you are looking for

  • Unable to capture IdcService on certain webdav actions like copy-paste

    We wrote a simple checkin filter long back for the Dynamix Prefix functionality. We have written an If Clause to restrict running this for any services other than CHECKIN related ones, by checking the value of IDCService parameter There is a scenario

  • Adding data to multiple tables using one form in Access 2010?

    Hi All, I have a access database with two tables and I want to create a single form to enter data into that tables. How to adding data to multiple tables using one form in Access 2010? I don't have to much knowledge of access database? Please help me

  • Help! How to migrate local account settings to domain account in Windows 8.1 Pro

    All kinds of answers to this question come up for Windows 7 (even though I specify Windows 8.1 Pro) Anyway, have a laptop originally with Win 8.1 and a local account created.   Upgraded to Win 8.1 Pro and logged in as domain user.  How can I copy all

  • PO formed from SO has inverted line items compared to SO line items

    Dear Friends, We have certain cases in EKKN table where the SO line items dont match with PO line items. Let me give an example. SO  item no   |    item  |                PO item no        |     PO item 10                 |    A      |               

  • AIR 2 Linux .rpm - breaks with updated software builds

    Hello Everyone, We are bundling the AIR 2 .rpm installer in our software builds for use on RedHat 5.x using the following code: if [ -x "/usr/bin/Adobe AIR Application Installer" ]           then                "/usr/bin/Adobe AIR Application Install