Where can I get a reference implementation of XQJ

Where can I get a reference implementation of XQJ
- Raees Uzhunnan

Reference implementation of XQJ is not available yet. When it becomes available, you can find it from the JSR XQJ page (http://jcp.org/en/jsr/detail?id=225).
Regards,
Geoff

Similar Messages

  • Where can I get references about install sap in aix,oracle

    where can I get some references about installation of sap in AIX+ORACLE.      I try to installation sap in AIX, but I encounter many problems,  so I want to have a standard installation reference.     thanks

    Did you look at www.service.sap.com/instguides ?

  • How can I get a reference to the Local interface of a EJB 3 session?

    Hi,
    How can I get a reference to the Local interface of a EJB 3 session?
    My session implements both the local and remote interfaces, so in my client, when I look up the remote interface using the following code, I did get a reference
              processor = (IItemProcessorRemote)initialContext.lookup(IItemProcessorRemote.class.getName());but if I also look up the local interface in th eclient using this:
    processorLocal =(IItemProcessor)initialContext.lookup(IItemProcessor.class.getName());I got errors like the following, do you know why? Thanks a lot!
    Exception in thread "main" javax.naming.NameNotFoundException: sessions.IItemProcessor not found
         at com.sun.enterprise.naming.TransientContext.doLookup(TransientContext.java:203)
         at com.sun.enterprise.naming.TransientContext.lookup(TransientContext.java:175)
         at com.sun.enterprise.naming.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:61)
         at com.sun.enterprise.naming.RemoteSerialContextProviderImpl.lookup(RemoteSerialContextProviderImpl.java:116)
         at sun.reflect.GeneratedMethodAccessor114.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.corba.ee.impl.presentation.rmi.ReflectiveTie._invoke(ReflectiveTie.java:121)
         at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(CorbaServerRequestDispatcherImpl.java:650)
         at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(CorbaServerRequestDispatcherImpl.java:193)
         at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(CorbaMessageMediatorImpl.java:1705)
         at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest(CorbaMessageMediatorImpl.java:1565)
         at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleInput(CorbaMessageMediatorImpl.java:947)
         at com.sun.corba.ee.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(RequestMessage_1_2.java:178)
         at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest(CorbaMessageMediatorImpl.java:717)
         at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.dispatch(SocketOrChannelConnectionImpl.java:473)
         at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.doWork(SocketOrChannelConnectionImpl.java:1270)
         at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(ThreadPoolImpl.java:479)

    BTW, findItemByTitle(String title) is a business method in my ItemProcessor session bean.
    public String findItemByTitle(String title) {
              AuctionItem item;
              String result = null;
              try {
                   Query query = entityManager
                             .createNativeQuery("SELECT i from AuctionItem i WHERE i.title LIKE : aTitle");
                   query.setParameter("aTitle", title);
                   item = (AuctionItem) query.getSingleResult();
                   result = item.toString();
              } catch (EntityNotFoundException notFound) {
              } catch (NonUniqueResultException nonUnique) {
              return result;
         }

  • Where can i get an iProcurement TRM?

    Is there an iProcurement TRM available for 11.5.0 and where can i get it? Thanks for your help.

    Hi Guys,
    I went to the above site and also i searched the forum, but i cannot find a TRM (technical reference manual) iprocurement in 11.5.0.
    Not only that, i cant find any technical reference for any i- modules in this version. I need this info for development purposes. It is weird and confusing that there is no documentation available for the ICX tables etc. :(
    Any help??

  • Where can i get the time stamp in Messaging Multiplexor's log?

    i have modify the loglevel to 10,but i can only find the date informatioin in mmp's log like this:
    20060317 000000 PopProxyAService.cfg (sid 0xd100c4) USER login
    which is the "time" stamp and what's it means?
    i have read the Administration Guide/Reference,but didn't find session abt it.
    where can i get some documents abt how to read the mmp's log file?
    thx!

    bash-2.05# tail -2 /mypath/PopProxy_20060317.log
    20060317 052425 PopProxyAService.cfg (sid 0x6a2044) 12 C->S bytes, 34 S->C bytes in 0 seconds
    20060317 052425 PopProxyAService.cfg (sid 0x6a2044) session end
    bash-2.05# date
    Fri Mar 17 13:24:26 CST 2006but 52425/3600=14.6h=14:36
    that's different, i don't know the reason. does sth. wrong with my mmp?
    thx in advance!
    btw:you are respect because i found lots of result which anwsered by "jay_pleaset" during my search.

  • How can I get a reference to ApplicationModule in a servlet

    I know that I can easily get the reference to my ApplicationModule in any JSP using the tags but I need to use a servlet instead of a JSP.
    Would you please let me know how I can a reference to my ApplicationModule in my Servlet? Every function that I am trying to use has been depricated.
    I appreciate any help.

    The following code will instantiate a module for you...
    public static ApplicationModule getGenericApplicationModule(String sAppModule, String sConnection)
    throws Exception {
    if (am != null)
    return am;
    sName = sAppModule;
    sConn = sConnection;
    Hashtable env = new Hashtable(2);
    env.put(Context.INITIAL_CONTEXT_FACTORY, JboContext.JBO_CONTEXT_FACTORY);
    env.put(JboContext.DEPLOY_PLATFORM, JboContext.PLATFORM_LOCAL);
    Context ic = new InitialContext(env);
    ApplicationModuleHome home = (ApplicationModuleHome)ic.lookup(sName);
    am = home.create();
    am.getTransaction().connect(sConn);
    return am;
    Problem in a servlet environment is that this is not pooled so you want to use the pool manager like this...
    public static EDMSMgrImpl getPooledApplicationModule(String sPoolName) throws BaseBc4jException
    ApplicationPool aPool = getApplicationPool(sPoolName);
    try
    return (EDMSMgrImpl)aPool.checkout();
    catch (Exception e)
    String message = "Exception checking out pool: "+sPoolName+" : "+e.getMessage();
    LogBroker.getInstance().severe(_instance,message ,e);
    throw new BaseBc4jException(message, e);
    protected static ApplicationPool getApplicationPool(String sPoolName) throws BaseBc4jException
    ApplicationPool aPool = PoolMgr.getInstance().getPool(sPoolName);
    if (aPool == null)
    try
    createPools();
    aPool = PoolMgr.getInstance().getPool(sPoolName);
    catch(IOException ioe)
    String message = "IOException thrown in EDMSAppModuleHelper.createPools" + ioe.getMessage();
    LogBroker.getInstance().severe(_instance,message, ioe);
    throw new BaseBc4jException(message, ioe);
    if (aPool == null)
    String message = "got a null result when getting pool: "+sPoolName;
    BaseBc4jException e = new BaseBc4jException(message);
    LogBroker.getInstance().severe(_instance, message, e);
    throw e;
    return aPool;
    Where a pool is created like this...
    sPoolName = poolElem.getAttribute(POOL_NAME_ATTRIBUTE);
    sAppModule = poolElem.getAttribute(APP_MODULE_ATTRIBUTE);
    sConnection = poolElem.getAttribute(CONNECTION_ATTRIBUTE);
    stateFull = poolElem.getAttribute(STATEFULL_ATTRIBUTE);
    sClass = getPoolClass(poolElem);
    if(PoolMgr.getInstance().getPool(sPoolName) == null) {
    Hashtable info = new Hashtable();
    info.put(JboContext.INITIAL_CONTEXT_FACTORY, JboContext.JBO_CONTEXT_FACTORY);
    info.put(JboContext.DEPLOY_PLATFORM, "LOCAL");
    info.put("IsStateLessRuntime", stateFull);
    PoolMgr.getInstance().createPool(sPoolName, sClass, sAppModule , sConnection, info);

  • How can I get a reference to all controls on a front panel of one type )for example of the type Text Ring?

    I'd like to set the strings[] property of all the Text Ring controls on a front panel at once without creating a property node for every text ring. How can i do that?

    > How can I get a reference to all controls on a front panel of one type
    > )for example of the type Text Ring?
    >
    > I'd like to set the strings[] property of all the Text Ring controls
    > on a front panel at once without creating a property node for every
    > text ring. How can i do that?
    This is likely more complicated than making property nodes for each
    ring, but you can do it. Make a subVI that takes in a panel reference,
    reads the array of control references, loops through them looking for
    rings, and modifying the Strings[] property on each ring.
    The part of this that will probably be the least obvious, when you
    have an array of control references there are two ways to find out
    if an element is a ring. You can read the classID and compare it
    to the cla
    ssID of a true ring control. An alternative is to cast
    the control reference to a ring control using a Cast to more specific
    node and wire the error out to a case structure. The error case is
    where the objects that aren't rings will go. The success case case
    where you will have a valid ring refnum that you can use to modify
    the strings.
    Greg McKaskle

  • Where can I get Internet Toolkit for LabVIEw v.5.1

    I would like to start Internet (web-based) application and using labVIEW v.5.1 now. So how can I get Internet Toolkit for that version and where can I get manual for that purpose.

    All NI manuals are available as PDF versions in our Manuals library at http://www.ni.com/manuals
    The latest version of the Internet Developers Toolkit for G Reference Manual is at http://digital.ni.com/manuals.nsf/websearch/EB3302​A150B625AC8625665E00635958?OpenDocument&node=13210​0_US
    Good luck,
    Kelly HolmesLabVIEW Documentation
    Kelly H
    LabVIEW Documentation
    National Instruments

  • Where can I get user mapping info?

    Dear all,
    I have to implement a simple audit report that displays the mapping of an EP user name and the related SAP user name that he/she use during certain time. Where can I get that kind of information?
    Please help.
    Rgds,
    Adhimas

    Hello Adhimas,
    as I answerd you in the other thread I think that you can use the Export Function of the J2EE Usermanagement at http://your-portal/useradmin. You can give also points for this answer ;-).
    Regards
    Gregor

  • Where can I get tutorials/Pdf for SAP Insurance ?

    I want to learn SAP Insurance .Where can I get tutorials/Pdf for SAP Insurance ?
    Thanks
    Ravi Teja

    You must go thru this material: This is SAP authorized material.
    FS300 - SAP for Insurance - Overview
    FS310 - SAP Collections and Disbursements Overview - Insurance Industry 
    FS315 - SAP Collections and Disbursements Customizing - Insurance Industry
    FS316 - SAP Insurance - Collections & Disbursements Overview & Customizing
    FS320 - Incentive & Commission Management 
    FS330 - SAP Insurance - Claims Management Overview
    FS335 - SAP Claims Management-Customizing
    FS340 - SAP Policy management overview
    FS345 - SAP Policy management implementation scenarios
    SAP Help: http://help.sap.com/insurance
    Regards
    Giri

  • Where can I get the sample code of gantt chart?

    hi, all
    I want to use gantt chart component.I find this video http://download.oracle.com/otn_hosted_doc/jdeveloper/11/demos/DVT_Gantt_Chart/ADFDVTGanttChartDemo.html.
    where can I get the sample code in this video?
    I have got the demo <strong>dvt-faces-demo.ear</strong>.but in this demo, the code of events process is too simple.I want more detail code of date change, denpendency change and so on.
    this is my mail [email protected]
    Thanks
    Best Regards
    kenshin
    Edited by: Himura Kenshin on 2010-8-20 上午4:57
    Edited by: Himura Kenshin on 2010-8-20 上午9:03

    Hi Katia,
    Essentially the same sample app which was referenced above (http://download.oracle.com/otn_hosted_doc/jdeveloper/11/demos/DVT_Gantt_Chart/ADFDVTGanttChartDemo.html). There are many features implemented in this sample which I'll be "reinventing the wheel" with. Its been a bit since I worked with the gantt component as I had to abandon for other development but will be getting back into it here shortly.
    Namely as I remember, I had difficult time getting the gantt to load quickly with large amount of tasks, difficulty getting the selected item when using context menus or buttons defined within the control, and a few other minor issues which could be fixed as I was using the first release of 11g and cannot remember specifics. I'll let you know as I get back into it if I see similar problems.
    For example, if you go to the ADF Demo Site (http://jdevadf.oracle.com/adf-richclient-demo/faces/feature/index.jspx) and click on "Project Gantt Custom Menu and Toolbar - add menus and buttons on the Project Gantt Menu and Toolbar". The buttons work, however if you first select a row in the left and then click the button, you have to click twice for it to work (in my findings the action listener never "fires"). So in my case I want to select a row and then have a custom event for that selected row when I click the button. There were other similar findings I had when I tried to go off of the examples.
    Hope this helps.
    Thank you,
    Kris

  • Where can I get detailed info on bug fixes?

    Hi,
    Where can I get more information on bug fixes that are listed in the release notes of each version? For instance, I am interested in each of the following ones.
    GRANITE-1215 - Workflow Monitoring via JMX
    CRX-4167 - Improved handling for backup procedure on ""listDir = /""
    GRANITE-877 - Fixed ""Too many open files"" issue in monitoring
    GRANITE-741 - Replication can handle missing content in the activation queue
    GRANITE-1090 - Configure exclusion of publish instances for activation status updates
    CRX-2943 - Cluster: Enable audit log on workspaces
    Apart from the one line descriptions, I need more detailed info like what was the issue or why it occurs and how was it fixed, looking for something similar to a KB article.
    Thanks

    These are internal reference numbers and the detailed descriptions are not available publicly.
    Please note that they are not all bug fixes, they can also be: improvements; enhancement requests; and new features.

  • Where can I get documents for Oracle?

    I only have Installation Guide and Administrator's Reference for Oracle 8i. I want to particularly learn how to use tools of Oracle 8i. Where can I get documents for them?
    Thanks for your help,
    Xu

    The rest of the manuals used to be included on the same CD with the product software, but no more. I don't think you can download the complete documentation set (although you can browse it) but you can order one of their CD "packs" and a separate doc CD is included in that. If you get it under their evaluation/development license, it's just a media/shipping charge--something like $35 for the whole "pack."

  • Where can I get a java API specification for jdk 6 update 7?

    Where can I get a java API specification for jdk 6 update 7?
    About jdk-6u7-windows-i586-p.exe

    Flying_eagle wrote:
    I don't know what is it called. I think maybe it's a specification about api that lists java api and explains how to use them.
    Such as a html file just like a dictionary.Well, the API documentation I posted a link of in reply #1 is not an explanation of how to use the Java classes. It is more a reference. When you need a thorough explanation, I recommend doing some tutorials, or buying a book.

  • What is gWinCal in dat picker and from where can i get the details

    hello,
    i saw the use of gWinCal in the datepicker and in many js files.
    in calander of js files gWinCal is used.
    what is gWinCal and where can i get the description about gWinCal ?
    i also saw
    this.gWinCal.document.close();
    this.gWinCal.document.open();
    etc..
    where the this.gWiinCal is defined and what is it ?
    please help me in this regard.
    thanks
    Archana

    Hi Archana-
    I tried to analyse the following URLs.
    http://www.koders.com/javascript/fidDEECF746921981FD9BD64B2B0EF7402979BF0570.aspx
    http://www.wodeveloper.com/omniLists/webobjects-dev/2002/June/msg00804.html
    function show_yearly_calendar(p_item, p_year, p_format) {
         // Load the defaults..
         if (p_year == null || p_year == "")
              p_year = new String(gNow.getFullYear().toString());
         if (p_format == null || p_format == "")
              p_format = "MM/DD/YYYY";
         var vWinCal = window.open("", "Calendar", "scrollbars=yes");
         vWinCal.opener = self;
         ggWinCal = vWinCal;
         Build(p_item, null, p_year, p_format);
    Mainly in the code snippet from the second URL I could find that this is nothing but a variable.
    for example vWinCal above , is a local variable which points to the calendar above.
    similarly gWinCal is a global Calendar-Window object and nothing more.
    You were not able to find it - since you will not find much of code level variable definitions
    anywhere.
    It is everewhere used as a object only which has reference to the calendar window.
    I hope it makes sense to you.
    Regards,
    Vishal

Maybe you are looking for