Berkeley Xml 2.4.13 works on Tomcat but not on Glassfish

I recently upgraded my web app to using the latest version of Berkeley Xml from 2.3. The old version worked fine on both glassfish and tomcat java servers.
When I upgraded and made the necessary modifications to my app I could not get it to work on glassfish but had no problems on tomcat.
This error happens in the beginning of start up when I call the XmlManager constructor. I am clueless as to what it is because I can not recreate it on anything else but glassfish v2. I even created a new project and played around with some options.
Here is part of the stack trace:
DB errno:0
The log message is null.
com.sleepycat.dbxml.XmlException: Uncaught exception from C++ API, errcode = INTERNAL_ERROR
at com.sleepycat.dbxml.dbxml_javaJNI.new_XmlManager(Native Method)
at com.sleepycat.dbxml.XmlManager.<init>(XmlManager.java:56)
For now I am going to just use tomcat, but I would really like to know what is going on for both peace of mind and because I like some of the features of glassfish.
Not sure if this matters but I am deploying the web app through netbeans 6 for both glassfish and tomcat.
Thanks in advance for any help.

I don't think it is a library path problem. The java.library.path shows the right values. I did have it working fine on the previous version of berkeley xml. I did have a version mismatch problem but I deleted the other database. I did have problems uninstalling the old database and I had to do it manually (the uninstall was hanging). Maybe I didn't clean it up correctly. My confusion is if I didn't clean it up correctly why does it work on everything else but glassfish.
Thanks for your help.

Similar Messages

  • Works in Tomcat but not in iPlanet Web server

    I have a servlet which first generates a form which has one input field, when user fills in the text field and submits the form it is posted to same servlet. The posted data is processed and redirected to another servlet. Everything works fine on Tomcat3.2 but fails to work on iPlanet web server and throws HTTP Error 500.
    Can someone help me with this? What might be the problem?

    Don't know whey it worked in Tomcat and not in iPlanet, but the reason is because I missed '/' in getRequestDispatcher() methoc
    public RequestDispatcher getRequestDispatcher(java.lang.String path)
    The pathname must begin with a "/" and is interpreted as relative to the current context root.

  • Session.invalidate works on tomcat but not in WebSphere Server

    I'm trying to figure out a .jsp written by another developer in WS Studio.
    The page does this:
    session = request.getSession(false);
    session.setMaxInactiveInterval(5);
    then almost immediately, does this:
    session.invalidate();
    In Tomcat, I get the "session already invalidated" error message I would expect. However, In WS Server, the rest on the page loads, and I can continue to interact with the application. I'm using IE 6.0, sp2.
    The "session.setMaxInactiveInterval(5);" call seems to have no effect in either container; al least, the application never times out.
    The most important thing for my purposes is to be able to invalidate the session in websphere. How can I fix this? Thanks!

    duffymo wrote:
    Is the machine that you ran this simple java class on the same one where you're >deploying the web app?Same machine where my sql connections bug. I just copypasted it into a file in tomcat5.5/webapps directory and then compiled it and used it from there. I used it from command line.
    duffymo wrote:
    how well do you know jsps, tomcat, and web apps? sure it's deployed properly? if you >put in a simple jsp and invoked it via tomcat, would you be able to do it?Dont know jsps well. :) Essentially my jspservlet thingie works normally on my computer through my tomcat and on other computers which have netbeans etc... It compiles .war file and ive copied that .war file to the target server's tomcat webapps directory, then when I access the website of my jspservlet tomcat unpacks it and shows my jsp pages normally if they have no sql components. So at least jsp pages are working... :)
    "minor modifications"? sure those are right? you wouldn't be the first programmer to fool >themselves by saying "it's the same code - except for X."
    try you "minor modifications" on the command line, too.First I used with main on command line, then removed main etc... and included it into my project.

  • XSL works on WinNT but not Solaris

    I've got an XSL doc that works great on WinNT with oraxsl but not after I port it to Solaris 5.8 with JDK1.3.1. Why should they perform differently? Is this a config problem on the solaris?
    Solaris is using Oracle XDK 9.0.1.2.0, WinNT is using Oraxle XDK 9.2.0.2.0. Is this the problem? I ftp'd the file from winnt to solaris using ascii mode so it wouldn't garble a byte.
    The error it gets on Solaris is:
    $ java oracle.xml.parser.v2.oraxsl XCBLASN2.xml TransformShipment.xsl OAGASN2.xml
    oracle.xml.parser.v2.XSLException: XSL-1008: Namespace prefix 'date' used but not declared.
    Error occurred while processing XCBLASN2.xml: XSL-1008: Namespace prefix 'date' used but not declared.
    Here is a sample from the XSL doc:
    <?xml version="1.0"?>
    <!-- Stylesheet containing the reusable templates for xCBL to OAGI transformations -->
    <!--xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:date="http://www.jclark.com/xt/java/java.util.Date" exclude-result-prefixes="date"-->
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:date="http://www.oracle.com/XSL/Transform/java/java.util.Date" exclude-result-prefixes="date"><!--011220ak different xslns for XT or oracle-->...
    <xsl:call-template name="createCurrentDATETIME"/>
    <xsl:template name="createCurrentDATETIME">
    <xsl:variable name="today" select="date:new()"/>
    <xsl:variable name="len" select="string-length(normalize-space(date:toString($today)))"/>
    <xsl:if test="$len &gt; 0">
    <xsl:element name="DATETIME">
    <xsl:attribute name="qualifier">
    <xsl:value-of select="'CREATION'"/>
    </xsl:attribute>
    <xsl:element name="YEAR">
    <xsl:value-of select="substring(date:toString($today),$len - 4,$len)"/>
    </xsl:element>
    <xsl:element name="MONTH">
    <xsl:call-template name="FindMonth">
    <xsl:with-param name="month" select="substring(date:toString($today),5,3)"/>
    </xsl:call-template>
    </xsl:element>
    <xsl:element name="DAY">
    <xsl:value-of select="substring(date:toString($today),9,2)"/>
    </xsl:element>
    <xsl:element name="HOUR">
    <xsl:value-of select="substring(date:toString($today),12,2)"/>
    </xsl:element>
    <xsl:element name="MINUTE">
    <xsl:variable name="var" select="substring(date:toString($today),15,2)"/>
    <xsl:call-template name="Validate">
    <xsl:with-param name="Val" select="$var"/>
    </xsl:call-template>
    </xsl:element>
    <xsl:element name="SECOND">
    <xsl:variable name="var" select="substring(date:toString($today),18,2)"/>
    <xsl:call-template name="Validate">
    <xsl:with-param name="Val" select="$var"/>
    </xsl:call-template>
    </xsl:element>
    <xsl:element name="SUBSECOND">0000</xsl:element>
    <xsl:element name="TIMEZONE">
    <xsl:value-of select="'-500'"/>
    </xsl:element>
    </xsl:element>
    </xsl:if>
    </xsl:template>
    </xsl:stylesheet>

    I've got an XSL doc that works great on WinNT with oraxsl but not after I port it to Solaris 5.8 with JDK1.3.1. Why should they perform differently? Is this a config problem on the solaris?
    Solaris is using Oracle XDK 9.0.1.2.0, WinNT is using Oraxle XDK 9.2.0.2.0. Is this the problem? I ftp'd the file from winnt to solaris using ascii mode so it wouldn't garble a byte.
    The error it gets on Solaris is:
    $ java oracle.xml.parser.v2.oraxsl XCBLASN2.xml TransformShipment.xsl OAGASN2.xml
    oracle.xml.parser.v2.XSLException: XSL-1008: Namespace prefix 'date' used but not declared.
    Error occurred while processing XCBLASN2.xml: XSL-1008: Namespace prefix 'date' used but not declared.
    Here is a sample from the XSL doc:
    <?xml version="1.0"?>
    <!-- Stylesheet containing the reusable templates for xCBL to OAGI transformations -->
    <!--xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:date="http://www.jclark.com/xt/java/java.util.Date" exclude-result-prefixes="date"-->
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:date="http://www.oracle.com/XSL/Transform/java/java.util.Date" exclude-result-prefixes="date"><!--011220ak different xslns for XT or oracle-->...
    <xsl:call-template name="createCurrentDATETIME"/>
    <xsl:template name="createCurrentDATETIME">
    <xsl:variable name="today" select="date:new()"/>
    <xsl:variable name="len" select="string-length(normalize-space(date:toString($today)))"/>
    <xsl:if test="$len &gt; 0">
    <xsl:element name="DATETIME">
    <xsl:attribute name="qualifier">
    <xsl:value-of select="'CREATION'"/>
    </xsl:attribute>
    <xsl:element name="YEAR">
    <xsl:value-of select="substring(date:toString($today),$len - 4,$len)"/>
    </xsl:element>
    <xsl:element name="MONTH">
    <xsl:call-template name="FindMonth">
    <xsl:with-param name="month" select="substring(date:toString($today),5,3)"/>
    </xsl:call-template>
    </xsl:element>
    <xsl:element name="DAY">
    <xsl:value-of select="substring(date:toString($today),9,2)"/>
    </xsl:element>
    <xsl:element name="HOUR">
    <xsl:value-of select="substring(date:toString($today),12,2)"/>
    </xsl:element>
    <xsl:element name="MINUTE">
    <xsl:variable name="var" select="substring(date:toString($today),15,2)"/>
    <xsl:call-template name="Validate">
    <xsl:with-param name="Val" select="$var"/>
    </xsl:call-template>
    </xsl:element>
    <xsl:element name="SECOND">
    <xsl:variable name="var" select="substring(date:toString($today),18,2)"/>
    <xsl:call-template name="Validate">
    <xsl:with-param name="Val" select="$var"/>
    </xsl:call-template>
    </xsl:element>
    <xsl:element name="SUBSECOND">0000</xsl:element>
    <xsl:element name="TIMEZONE">
    <xsl:value-of select="'-500'"/>
    </xsl:element>
    </xsl:element>
    </xsl:if>
    </xsl:template>
    </xsl:stylesheet>

  • BPEL SCA: XML-20129: (Error) Namespace prefix 'ui' used but not declared.

    SOASuite 11g
    Oracle Weblogic Server 10.3.3
    Oracle Solaris on SPARC (64-bit) 10
    Database: Oracle Server - Enterprise Edition 10.2.0.5
    When I start the SOA domain server, I find the following in the log file:
    <Feb 25, 2011 10:41:23 AM CET> <Error> <org.apache.commons.digester.Digester> <BEA-000000> <Parse Error at line 9 column 79: <Line 9,
    Column 79>: XML-20129: (Error) Namespace prefix 'ui' used but not declared.
    org.xml.sax.SAXParseException: <Line 9, Column 79>: XML-20129: (Error) Namespace prefix 'ui' used but not declared.
    at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:422)
    at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:287)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:342)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:226)
    at org.apache.commons.digester.Digester.parse(Digester.java:1785)
    at oracle.fabric.composite.Parser.parseComposite(Parser.java:132)
    at oracle.integration.platform.kernel.WLSFabricKernelInitializer.deployComposite(WLSFabricKernelInitializer.java:493)
    at oracle.integration.platform.kernel.WLSFabricKernelInitializer.prepareCompositeDeployments(WLSFabricKernelInitializer.java:
    239)
    at oracle.integration.platform.kernel.WLSFabricKernelInitializer.init(WLSFabricKernelInitializer.java:127)
    at javax.servlet.GenericServlet.init(GenericServlet.java:241)
    at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
    at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1976)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1950)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1869)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3126)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1267)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    My composite.xml is:
    <composite name="JIPSYHandleRTOTaskEBF" revision="1.0" mode="active" state="on"
    xmlns="http://xmlns.oracle.com/sca/1.0"
    xmlns:ui="http://xmlns.oracle.com/soa/designer/"^M
    xmlns:xs="http://www.w3.org/2001/XMLSchema">^M
    <import location="GetTimeoutPeriod.wsdl" namespace="http://xmlns.oracle.com/pcbpel/adapter/db/GetTimeoutPeriod/"/>
    <service ui:wsdlLocation="JIPSYHandleRTOTaskEBF.wsdl" name="client">
    </composite>
    But when it has been deployed, I see that this has been changed into:
    <composite name="JIPSYHandleRTOTaskEBF" revision="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <import location="GetTimeoutPeriod.wsdl" namespace="http://xmlns.oracle.com/pcbpel/adapter/db/GetTimeoutPeriod/"/>
    <service ui:wsdlLocation="JIPSYHandleRTOTaskEBF.wsdl" name="client">
    </composite>
    (I exported this from MDS).
    Apparently, some namespaces are stripped.
    This appears to happen during the deploy (using ant), because the version in the generated jar file is already missing the namespaces.
    The BPEL processes appear to work fine though.
    Why is this happening and how can I prevent these errors?

    I've fiddled around with the file composite.xml and found the following workaround:
    If I change the start of the file to:
    <?xml version="1.0" encoding="UTF-8"?>
    <composite name="JIPSYUpdateWorkflowReqABCSImpl"
    xmlns="http://xmlns.oracle.com/sca/1.0"
    xmlns:ui="http://xmlns.oracle.com/soa/designer/"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    revision="1.0"
    mode="active"
    state="on">
    it remains unchanged and the errors during deployment are gone.

  • Direct URL Working In IE but not with New Domain

    Hey Guys
    Something very weird here.
    This music player for www.arikecansing.com works in Mozilla
    but not IE. The site is being hosted here
    www.tahnaiya.com/clients/arike and that link works in IE but not
    under the other domain www.arikecansing.com Weird huh? Does anyone
    know why this is?
    The playlist.xml file is this but do note that i did change
    the mp3 name so the mp3 cannot be downloaded. This site is for my
    client. I would extremely appreciate any help
    <?xml version="1.0" encoding="utf-8" ?>
    <mp3s>
    <file name="song 1" file="
    http://www.tahnaiya.com/clients/arike/music/everything.mp3"
    />
    </mp3s>
    I did try changing the file to this but it still didn't work
    <?xml version="1.0" encoding="utf-8" ?>
    <mp3s>
    <file name="song 1" file="
    http://www.arikecansing.com/music/everything.mp3"
    />
    </mp3s>

    I am not sure...but have you heard that NS 6/Mozilla are use based on standards. So they dod not support some of the proprietary JS/CSS/Misc functionality of IE or NS 4.0+ versions. You can read more about the JavaScript differences on Netscape's NS6 evangism site. Maybe you are missing something. I think I remember reading something about getElementByID/Name ...

  • Custom F4 help in a BSP application working in Mozilla but not in IE

    Hi,
    I have created a custom F4 help in a BSP application.
    It is working in Mozilla but not in IE. I tried enabling javascript as well but still it is not working.
    Can someone please suggest a possible solution for this?

    Hi,
    See simmilar discussion in thread /thread/1883519 [original link is broken]
    I think this may be helpful for you.
    Thanks,
    Chandra

  • Why does the counter work in MAX, but not Labview?

    Please help, I have been away from Labview for over 3 months, and I am quite rusty....
    Last year, I successfully configured NI9401 to measure period (seconds) by counting the rising edges of my sensor signal.  Since then, I have aquired a new PC, and loaded all my software into it, including the Labview VI's that successfully worked on the old computer.
    I can see the digital signal using MAX and the test panel for the NI9401, so, I know my wiring and my TTL signal is OK, but, when I try to run the attached VI, nothing happens except the error below..  How do I tell this VI to look for the signal on MOD3/CTR0 and channel 14?
    Thanks. I am sure it is a small adjustment...this worked fine a few months ago...not sure what is wrong now.
    Thanks,
    Dave
    Solved!
    Go to Solution.
    Attachments:
    continuously measure period buffered_singlechannel_forum_feb_23_2012.vi ‏20 KB

    OK, now.  Resolved the issue. The vi is fine, but, some shaky wires were identified...worked in MAX but not in the vi.  Now that the connections have been tightened up, it works for both.  Sorry for the inconvenience.
    Dave

  • Works on emulators but not on mobile devices

    Hello,
    My project works on emulators but not on mobile devices (no image and on Samsung it says "unsupported file").
    Please help, I don't know what to do. My configurations: MIDP 2.1, CLDC 1.1.
    Thanks in advance.
    Edited by: Vitali.pom on Oct 27, 2011 12:01 PM

    Edit: I succeeded to solve it accidentally. I did the following: Sign the jar in Netbeans, clean and build, the jar didn't work, I wiped out the .ks from the jar and clean and build again. Now it worked.
    Edited by: Vitali.pom on Oct 30, 2011 1:28 AM

  • Wifi works at home but not when away from home

    My Wifi works at home but not when away from home, what is wrong?  I thought with a phone plan I didn't need to have a wifi connection.

    You either need WiFi or Cellular (or both). If you have neither, you can't connect to the internet.
    Most people use WiFi at home and Cellular while away from home, or connect to public WiFi networks where there are some.

  • Can't FaceTime anymore?  iPad states wifi connected and iPhone 4 states not connected?  I have wireless in my home? Not sure what happened.  Password works for iPad but not on phone?

    iPhone won't connect to wifi.  iPad is connected.  Password working on iPad but not on phone.  Can't upload software update of IOS 7.1 because phone not connecting to wifi?

    Connect iPhone to computer and open iTunes.  You will be prompted to update to iOS 7.0.  Keep your phone connected until the update is finished.

  • My apple id works on itunes but not on my ipod touch, what gives ?

    my apple id works on itunes but not on my ipod touch, what gives ?

    What are you trying to do on the iPod?
    Have you went to Settings>Store and sign out and then sign back in?

  • Album Art works for most, but not all

    I was reading previous forums on the subject, but no clear answer was given..
    The album art shows up fine in itunes and my library and works for most of my music on my ipod, but how come some album's art does appear? I have it set manually and select 'Get Info' then 'Artwork' and add it from there, then drag in the finished product to my ipod. I've been doing that and it works fine for most of the albums, but every so often, the album art will not appear on my ipod. Am I doing something wrong? I take them all from the same source (amazon.com) but it makes no sense to me how some randomly don't appear.
    I tried deleting the artwork and re-adding it, but nothing happened again. If you could answer why it works for most but not all or how I can get the album art to appear for the ones it will not by re-doing something, it would be appreciated. thanks.

    I encountered the same problem in the beginning. When I compared the size of the original images, the working ones seemed to be smaller in general, so I reduced the size of all covers I intended to upload on the pod to 300x300 pixels.
    This seemed to work - for 2 days. I bought the pod on friday, had pictures on sunday, but on Monday (after the first time the pod was fully discharged) none were left left.
    So I ended searching this forum for related problems...
    And decided to join my problem to this entry.

  • How to send active links in email from firefox. Works in IE but not Firefox... Is there a setting to change?

    how to send active links in email from firefox. Works in IE but not Firefox... Is there a setting to change?
    == This happened ==
    Every time Firefox opened
    == Always

    Check with your web mail service provider for help with that issue.

  • Medical app from Intuit works in IE, but not Firefox.

    Encrypted medical app works in new IE, but not Firefox. Everything works down to the end, and click on "continue" and nothing happens. A tech and I have spent hours on this. Did not work on FF5 or 6. Did not work on old IE, but did on fresh new version with no data files copied in.

    If it works in IE but not FF, then it has nothing to do with the mp3s. More likely it's because of the HTML on the page.
    To start, page is missing DOCTYPE declaration... a MAJOR problem. The DOCTYPE declares which set of rules the browser will use to display the page. Without it, different browsers go crazy or do not work at all.
    http://www.w3schools.com/tags/tag_DOCTYPE.asp
    Validate the html code here:
    http://validator.w3.org/
    You will have to fix all the errors if you want this to work in all browsers.
    Best wishes,
    Adninjastrator

Maybe you are looking for

  • Purchased Music Not Playing on iPod but on iTunes

    Before I start, I have had this problem before (6 months ago) and it resolved itself through some unknown fix (with the help of a Apple Genius Bar who had no idea what worked). The purchased songs - mine and others who use my computer - play fine in

  • Zen Vision M 30GB Warre

    Hello i own a creative zen vision m 30GB and no that the new creative zen has come out I have heard that they won't be making any hardisk MP3 players again so i was wondering if my Zen Vision M broke now would it still be coverd in warrenty and what

  • Javac is working but not java

    PLEASE HELP. I've got a project due very soon, and I can't get very far until I can run my apps. Thank you, Dustin 1. I CAN compile a single .java file if it does NOT refer to any class outside of itself. 2. I CAN'T compile a .java file if it refers

  • Import Journal Entries

    Hello, I'm going to import with DTW sales and purchase documents from a commercial management software and journal entries from an accounting software. I have seen that when I import a document, an automatic journal entry is created. So, when I will

  • Navigate to Transactional iVIEW by passing parameters & UWL

    Hi Experts, I have 2 queries here, 1>> I understand  that to navigate to a transaction from webdynpro a transactional iview has to be used. In my case i have to navigate to ME51 from the component and display the transaction with the details of a pat