XSQL work with TomCat4.04/JBoss 3.0.1 bundle? xsql-013 error

Hi, does anyone have any luck to make xsql servlet in xdk_java_9_2_0_3_0 work with Tomcat/Jboss?
Tomcat here is 4.0.4.
I tried but find the following message:
Oracle XDK Java 9.2.0.3.0 Production
XSQL-013: XSQL Page URI is null or has an invalid format.
I also install in on tomcat 4.0.4 standalone.
At lease it showed that it can't find my database connection 'demo'.
So I am not sure what is the problem any more.
Thanks

If you expand the xsqldemos.war file, does it work ok?
Until xsql 10i release, pages from an unexpanded WAR file won't work. No. I extracted the war file out of the ear file and only deploy the war file.
And try to access http://host:8080/xsqldemos/index.html
I got the same error: "XSQL-013: XSQL Page URI is null or has an invalid format."
However, it works with JBOSS 3.0.0 Tomcat 4.0.3.

Similar Messages

  • Channel error when working with BlazeDS and JBoss

    I am getting this error... can someone just help me on this front
    this is the mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.rpc.events.ResultEvent;
    import mx.controls.Alert;
    import mx.events.ResizeEvent;
    public function showData(evt:ResultEvent):void{
    var data:String = evt.result as String;
    Alert.show(data);
    ]]>
    </mx:Script>
    <mx:RemoteObject id="remoteSend" destination="CreateRpc"
    result="showData(event)" />
    <mx:Button id ="myclick" label="Get Me"
    click="remoteSend.getResults('Priyank')"/>
    </mx:Application>
    =====================================
    remoting-config.xml entry for createrpc
    <destination id="CreateRpc">
    <properties>
    <source>RemoteServiceHandler</source>
    <scope>application</scope>
    </properties>
    <adapter ref="java-object"/>
    </destination>
    ========================== error i get ===============
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed:
    HTTP: Status 404: url: 'http://localhost:9081/biz/messagebroker/amf'"]
    Any solutions

    Ensure the services-config.xml on the running server contains the same
    channel definition as the services-config.xml you point at when you compile
    the Flex application.
    It looks like the application is attempting to use a URL
    ('http://localhost:9081/biz/messagebroker/amf') that the server is not
    listening to (404 not found).
    Hope that helps
    Tom Jordahl

  • ITunes sync stopped working with my iPhone 5 and Outlook on Windows 7.  Error states in part "because the sync server failed to sync the iphone"

    I have an iPhone 5 running iOS 7.1.2.  I am using iTunes version 11.2.2.3 on Windows 7.  After updating to the new version of iTunes I am currently using, the snyc between my Outlook calendar and phone stopped working.  I get the error "iTunes could not sync the calendars to the phone xxxxx because the sync server failed to sync the iphone"  I followed the instructions here - Troubleshooting Sync Services on Windows with Microsoft Outlook 2003, Outlook 2007, or Outlook 2010 - to no avail, with the exception of not re-installing Outlook.  Not an option on my corporate computer.  When I run the Sync test, it says it passes -
    Microsoft Windows 7 Enterprise Edition Service Pack 1 (Build 7601)
    LENOVO 4384AJ9
    iTunes 11.2.2.3
    QuickTime 7.7.5
    FairPlay 2.6.12
    Apple Application Support 3.0.3
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.1.1.3
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number xxxxxxxxxxx
    Current user is not an administrator.
    The current local date and time is 2014-07-09 21:39:02.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Intel(R) HD Graphics
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 11.2.2.3 is currently running.
    iTunesHelper 11.2.2.3 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Device Sync Tests ****
    Sync tests completed successfully.
    Any ideas?

    Try this
    To resolve this issue, follow the steps in iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting. If you have a Windows computer with an Intel® 5 series/3400 series chipset, you may need updates for your chipset drivers. See iTunes for Windows: Issues syncing iOS devices with P55 and related Intel Chipsets for more information.

  • Does iTunes work with windows Vista?

    I cannot get iTunes to install on my windows Vista desktop computer.  Does Windows Vista not work with iTunes?

    Vista is supported. What, if any, error messages do you get?
    tt2

  • Can't get extended class to work with asbstract class

    I am having trouble working an extended class to work with my base abstract class. I keep getting this error message: "Fiction.java:4: invalid method declaration; return type required" public FictionBook()" Can someone give me some advice and or guidance on what I need to do? Thanks.
    Here is my abstract class:
    import javax.swing.*;
    public abstract class Book
         protected String bookTitle;
         protected double bookPrice;
         public abstract double setPrice();
    public Book()
              setBookPrice();
    public double getBookPrice()
              return bookPrice;
    public abstract void setBookPrice();
    Here is the extended class that I have:
    import javax.swing.*;
    public class Fiction extends Book
         public Fiction()
              super();
              setBookPrice();
         public void setBookPrice();
              bookPrice = 24.95;
         public String toString()
              return("Fiction Book Price is $" + bookPrice);
    }

    Fiction.java:2: Fiction is not abstract and does not override abstract method setPrice() in BookThis one is pretty straightfoward: Book declares an abstract setPrice() method. In effect is promises "every concrete subclass of Book will define an implementation of setPrice()". But your Fiction class does not do this - it does not give an implementation of setPrice() even though as a Book it is required to do so. That is what the compiler is complaining about.
    Fiction.java:6: call to super must be first statement in constructorThis one is slightly cryptic. If you use super() it must be as the first line of a constructor. You are using it as the first line of Fiction() so that looks OK - until you realise that Fiction() is not a constructor! That's because you declare it as a method returning void. Remove the "void" and the compiler will recognise it as a constructor and will be happy about your use of super().
    Edited by: pbrockway2 on Sep 13, 2008 12:13 PM
    Just a general point: it might be worth writing very brief comments for your abstract class to say what the methods are supposed to do. It isn't really clear what setBookPrice() is supposed to do given that it isn't passed any argument. Likewise setPrice(), how does it differ from setBookPrice()? what is the double value that it returns?

  • Getting Java Beans working with Developer Forms 6i

    Hello everyone,
    I have been trying to get Java Beans to work with the Developer Forms 6i. I keep getting diffrent errors depending on the bean I play with. I will detail the problems and the computer setup. I am sure this problem is a configuration one, I just dont seem to have enough experiance to determine the issue or the configuration problem.
    Here are the problems I am encountering:
    Problems 1:
    --JDeveloper 10g
    I cant see the VBean class. When I add this code, the VBean decleration comes up with an error.
    import oracle.forms.ui.VBean;
    public class MyNewClass extends VBean
    public Class1()
    This code shows the IMPORT statement with a wavy blue line under it and the word VBean after the extends also has on. I understand that this means that the JDeveloper cant find the class, I just cant seem to find the correct environment variable to set to point to this.
    Second Problem:
    --Forms 6i
    I open forms, and create a new form. I then add a datablock and a canvas. I open the canvas and drop the BeanArea component on the canvas. I enter the fully pathed/qualified Bean in the Implementation Class and get one of three errors. Either a FRM-13008, a FRM-99999 with a 13009 or a 13010 error. I suspect that the 13008 error is because the bean I created does not have the correct decleration types or IView interface calls. My problem is that when I load any of the Oracle provided beans I get the 13009 or 13010 errors. I have looked here and in Metalinks for some kind of solution that I haven't already tryed, but to no avail.
    Any advice on either of these problems would be appreciated. Please keep in mind that we cant upgrade to version 9 or 10 yet (silly aif force and their regulations), so those type of solutions arn't usable to me.
    Here is the configuration information that I know about. If there is more information that can be provided or I need to provide more information, please let me know and I will get what I can.
    Thanks,
    Bill Hunsicker
    ============= Config Information =======================
    Forms Version 6.0.8.25.2
    JBuilder Version and Information
    Oracle IDE     9.0.5.13.88
    Business Components Version     9.0.5.13.52
    UML Modelers Version     9.0.5.12.38
    Versioning Support     9.0.5.12.38
    WebDAV Support Version     9.0.5.12.38
    Designer Generators Framework     9.0.5.3.39
    java.version     1.4.1_02
    java.home     C:\Oracle\JDeveloper\jdk\jre
    java.vm.name     OJVM Client VM
    java.vm.vendor     Oracle Corp.
    java.vm.version     9.0.5.972 4dopv
    user.language     en
    user.region     <no value assigned>
    user.name     Bill.Hunsicker
    user.home     C:\Documents and Settings\Bill.Hunsicker
    user.dir     C:\Oracle\JDeveloper\jdev\bin
    os.name     Windows XP
    os.version     5.1
    os.arch     x86
    ide.patches     
    ide.user.dir     
    FORMS60_JAVADIR = C:\orant\FORMS60\java
    CLASSPATH = C:\orant\FORMS60\java;C:\orant\TOOLS\COMMON60\JAVA\IMPORTER.JAR;C:\orant\forms60\java\P3load.jar;C:\orant\forms60\java\f60all.jar

    Ok, I added the f60all.jar to the project. This allowed me to create the file using the VBean. I created the JAR file and copied it to the forms60/java directory. I also copied the new .class files to the forms60/java/mil/af/rs/leads direcory.
    I then edited my formsweb.cfg file and had to add the jinit_archive tag. I set it = f60all.jar, P3load.jar. I also added my P3load.jar file to the default archive tag.
    When I open up Forms, drop the bean area component on the canvas, and set the Implementation Class, I still get an error (13008), and when I run the form in web, and click the button to invoke the bean I get no response from the bean.
    here is the code to invoke the bean. in_filename is a text component on the canvas and contained in the CTRL block. The bean area is named BEAN (because the demo was that way).
    :in_filename := get_custom_property('BEAN',1,'getFileName');
    synchronize;
    Not sure where to go from here, but thanks for the help so far.

  • Will CS2 work with Apple's Mountain Lion?

    Will CS2 work with Apple's Mountain Lion?

    Hi,
    You might see errors such as "You can't open the application Adobe <App Name XXX> because PowerPC applications are no longer supported."
    You might also like to visit this page http://helpx.adobe.com/photoshop/kb/error-powerpc-applications-supported-photoshop.html for a similar scenario with Adobe Photoshop.
    Thanks,
    Arindam Ghosh

  • Flash doesn't work and work with another browser!!

    ''locking as a duplicate of - https://support.mozilla.com/en-US/questions/900202''
    Flash doesn't work and work with another browser!!.
    The message is " An error occurred, please try again later" just with youtube. Other sites work. Another browser works with youtube!!

    Whay do you mean "difficult with the camer?"
    Two things that might help. Reset all your settings and reset the phone.  Use the Settings app to reset all settings. Settings > General > Reset > Reset All Settings  Then reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that helps.

  • Can jGRASP convert to work with C?

    I have tried changing my jGRASP compiler settings to work with C programs, but I keep on getting the following error:
    ----jGRASP exec: gcc -g -c C:\Documents and Settings\MARK GRUSZECKI\My Documents\Pep8\Hello.c
    ----jGRASP wedge2 error: command "gcc" not found.
    ---- This command must be in the current working directory
    ---- or on the current PATH to use this function.
    ---- PATH is ";C:\..."
    Any help is appreciated.

    The error is saying that jGRASP cannot find 'gcc' which is the GNU C/C++ compiler. Have you installed it ? It looks like you are running on Windows so if you want to use the GNU C/C++ compiler then you will have to install it. There is lots of documentation available from the jGRASP home page. Have you read it?

  • How do I get XSQL Servlet to work with OCI 9i

    I'm using the most recent jdbc driver (ojdbc14.jar) that works with jdk 1.4. I'm using a 9.0.1 db, and I'm using xdk for java 9.2.0.3. If I specify an oci driver in the XSQLConfig.xml file, I get the following error with a xsql:query request:
    Oracle XDK Java 9.2.0.3.0 Production
    XSQL-017: Unexpected Error Occurred
    java.lang.UnsatisfiedLinkError: no ocijdbc8 in java.library.path
    Now why does XDK insist to look for ocijdbc8 if I only have ocijdbc9.dll installed on my client? The config file only allows oci8 in the dburl specification, which is probably why XDK insists to look for ocijdbc8, but I CANNOT specify oci9, which would make sense to me, although it's most likely not a valid specification.
    <connection name="9ic">
    <username>scott</username>
    <password>tiger</password>
    <dburl>jdbc:oracle:oci8:@</dburl>
    <driver>oracle.jdbc.OracleDriver</driver>
    <autocommit>true</autocommit>
    </connection>
    So how do get XSQL Servlet to work with OCI 9i?

    If you are using the latest Oracle9i JDBC driver, which you should be able to get from OTN, it should look for the DLL with 9 in the name.
    Perhaps you have a "stale" JDBC driver somewhere earlier on the classpath?
    Steve Muench
    JDeveloper/BC4J Development Team
    Author, Building Oracle XML Applications

  • How to integrate Jboss seam frame work with Jdeveloper 11

    hi
    Really i don't know how to integrate Jboss seam frame work with JDeveloper, actually my current project implementation was started with Netbeans, but i am planning to suggest my customer , use JDeveloper.
    please provide the solution are any information, how to integrate the JBoss Seam frame work.
    Thanks
    Lakshmi

    Hi,
    JDeveloper 11 does not yet provide documentation about the integration with Seam (not only the technology but also the documentation is in early preview stage). However, this is an interesting question you ask and I'll follow up to see if we can get some document out in short term.
    Frank

  • Is XSQL API  compatible/will work  with Servet 2.3/JSP1.2 container?

    Dear OTN,
    Is XSQL API compatible/will work with Servet 2.3/JSP1.2 container, namely with recently released Tomcat 4.0.
    There are two levels of compatibility: AS IS use and programmatically.
    Regards,
    David

    Hello iamjohngalt,
    Welcome ot the HP Forums!
    The image of the cable that you provided, does appear that it might work with the combo port.
    The only concern that I would have, is the orientation of the two female ports. The cable that I would expect to work would look like this.
    Hope this helps.
    I worked on behalf of HP

  • How to use Flex builder with blazeds and JBoss

    Following the instructions it is pretty easy to set up a project to work with the turnkey tomcat. However, I am having problems with JBoss because the app has to be deployed as a .war file. I can create a war file manually and depoly it no problem. How do I get flex builder to deploy to a war file? I want to be able to debug in flex builder and run at the click of a button.

    Hi,<br /> I am trying to configure BlazeDS with JBOSS Application Server.<br /> I have downloaded BlazeDS binary version - blazeds_bin_3-0-0-544.zip from Adobe. But in the installation steps, it says that copy blazeds.war, samples.war and console.war into <JBOSS_HOME>/server/default/deploy folder. But in this zip, it contains only blazeds.war file only. I have copied it to <JBOSS_HOME>/server/default/deploy folder.<br /><br />I have restarted JBoss. I didn't get any error. But when i give <br /> http://localhost:8080/blazeds ... i am always getting "Page not found 404" error.<br /><br />Please help me, if you have detailed steps to configure BlazeDS on JBoss.<br /><br />Thanks for your time.

  • Does jsf components in wsad works with any application server ?

    I 'm working with wsad 5.1.2 and using JSFcomponents and testing on the WAS test.
    then i will deploy on jboss AS.
    are the custum wsad componenets depoyable on any AS ?
    thanx a lot

    i used a jsf with data caching on which i put a data grid (a wsad component)
    can you help me to solve the error ?
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: javax.servlet.jsp.JspException: com/ibm/etools/wdo/datagraph/DataGraph
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:821)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758)
         org.apache.jsp.dataGrid_jsp._jspService(dataGrid_jsp.java:103)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         com.ibm.faces.context.MultipartExternalContextImpl.dispatch(MultipartExternalContextImpl.java:320)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:142)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
         org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)
    root cause
    java.lang.NoClassDefFoundError: com/ibm/etools/wdo/datagraph/DataGraph
         com.ibm.odcb.jrender.emitters.WDO4JSEmitter$Transformer.<init>(WDO4JSEmitter.java:116)
         com.ibm.odcb.jrender.emitters.WDO4JSEmitter.Init(WDO4JSEmitter.java:214)
         com.ibm.faces.bf.renderkit.ClientDataRenderer.encodeEnd(ClientDataRenderer.java:76)
         javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:712)
         javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:604)
         javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:527)
         com.ibm.faces.bf.taglib.ClientDataTag.doEndTag(ClientDataTag.java:101)
         org.apache.jsp.dataGrid_jsp._jspx_meth_odc_clientData_0(dataGrid_jsp.java:185)
         org.apache.jsp.dataGrid_jsp._jspx_meth_hx_scriptCollector_0(dataGrid_jsp.java:157)
         org.apache.jsp.dataGrid_jsp._jspx_meth_f_view_0(dataGrid_jsp.java:128)
         org.apache.jsp.dataGrid_jsp._jspService(dataGrid_jsp.java:94)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         com.ibm.faces.context.MultipartExternalContextImpl.dispatch(MultipartExternalContextImpl.java:320)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:142)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
         org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)

  • PCS no longer working with contacts and 6086

    I have applied the latest release of PC Suite 6.84.10.3.
    Previously the installed level was 6.83.14.1
    The send/read/write message still doesn't work but hangs the Windows Explorer for a while (this hang didn't occur previously)
    But now, the contact facility no longer works. It is no longer possible to edit a contact, to store it locally or to send it to the phone even a message says everything is OK
    (translate it from french: The contact has been well recorded into the phone)
    Folder browsing still works correctly, either the phone folder or the memory card folder
    Need a fix or a way to install the previous version, at least for the contacts...
    This is a really negative feedback!
    Phil

    I guess what I learned is that sometimes the best solution is to do nothing and wait for the problem to solve itself! Funny, this has never worked for me before.
    WOT is now working for me but often for only the first few rows of images. That's cool that it is also working with bing images.
    Boudica, thanks for understanding. I am new contributor/ question-asker here on mozilla and may not understand how things are done. I was just frustrated, getting an email saying that my question was answered, logging in to find that it wasn't.
    Now we have the functionality that we wanted, right?

Maybe you are looking for

  • 6120c Gallery disappeared but files still there - ...

    Last night I was at a concert (Fantomas/Serj for anyone who's curious ) and filmed for a few minutes on my phone after the camera was full. Today when I look into my gallery, EVERYTHING is gone - pics, vids, sound clips, music. When I go into my data

  • Concept of util and helper classes

    whats the concept behind helper and util classes, how to divide code according to both perspective would any one state clear separation line b/w them.

  • Configuration Objects (ID Objects) Question

    I am trying to understand each ID object better way, What is the definition of each objects, What the use of each objects...... Configuration scenario examples using each object. 1. Party 2. Service Without Party             a. Business System       

  • Urgent help needed....Query..

    Hello Experts Can someone help with writing a particular query. This is the test scenario CREATE TABLE TEST (MONTH DATE, AMOUNT NUMBER(17)); INSERT INTO TEST VALUES('01-FEB-06',100); INSERT INTO TEST VALUES('01-MAR-06',100); INSERT INTO TEST VALUES('

  • Icons keep disappearing off the monitor when computer sleeps for more than 10 minutes

    My new HP Pavilion I5-2300 keeps locking up when the computer rests for more than 10 minutes.  When i go to wake up the computer the desktop background comes up on the monitor, but all of my icons are missing and no command prompts work from the keyb