XSLT problem when switching to JDK 1.4

Hi,
I have used Xalan for transforming XML into HTML under JDK 1.3.1 but when I switch to 1.4.1 I get problems with attributes in the HTML part of my XSL file. I know that Xalan is included in 1.4 and apparently something has changed...
Java code ---------------------------------------------------------------:
System.setProperty("javax.xml.transform.TransformerFactory", "org.apache.xalan.processor.TransformerFactoryImpl");
TransformerFactory tFactory = TransformerFactory.newInstance();
String xmlFile = "C:/<<path>>/test.xml";
String xslFile = "C:/<<path>>/test.xsl";
String htmlFile = "C:/<<path>>/test.html";
StreamSource xmlSource = new StreamSource(xmlFile);
StreamSource xsltSource = new StreamSource(xslFile);
StreamResult htmlResult = new StreamResult(new BufferedOutputStream(new FileOutputStream(htmlFile)));
// Get a XSLT transformer
Transformer transformer = tFactory.newTransformer(xsltSource);
// Do the transform
transformer.transform(xmlSource, htmlResult);
XSL code ---------------------------------------------------------------:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
<html>
<body>
<table>
<tr><td>some text</td></tr>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
If I add any attribute to the HTML part of the XSL file I get a fat stack trace.
Changing to (added a "bgcolor" attribute):
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
<html>
<body bgcolor="#0000FF">
<table>
<tr><td>some text</td></tr>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
will give me:
javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: java.lang.NullPointerException
     at org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:767)
     at se.carmen.db.XsltTransform14.main(XsltTransform14.java:32)
Caused by: javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: java.lang.NullPointerException
     at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:946)
     at org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:750)
     ... 1 more
Caused by: javax.xml.transform.TransformerException: java.lang.NullPointerException
     at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:942)
     ... 2 more
Caused by: java.lang.NullPointerException
     at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:987)
     at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:934)
     ... 2 more
javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: java.lang.NullPointerException
     at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:946)
     at org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:750)
     at se.carmen.db.XsltTransform14.main(XsltTransform14.java:32)
Caused by: javax.xml.transform.TransformerException: java.lang.NullPointerException
     at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:942)
     ... 2 more
Caused by: java.lang.NullPointerException
     at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:987)
     at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:934)
     ... 2 more
etc...
java.lang.NullPointerException
     at org.apache.xalan.processor.XSLTElementDef.getAttributeDef(XSLTElementDef.java:624)
     at org.apache.xalan.processor.XSLTElementProcessor.setPropertiesFromAttributes(XSLTElementProcessor.java:352)
     at org.apache.xalan.processor.XSLTElementProcessor.setPropertiesFromAttributes(XSLTElementProcessor.java:311)
     at org.apache.xalan.processor.ProcessorLRE.startElement(ProcessorLRE.java:315)
     at org.apache.xalan.processor.StylesheetHandler.startElement(StylesheetHandler.java:656)
     at org.apache.xerces.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:342)
     at org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(XMLSchemaValidator.java:401)
     at org.apache.xerces.impl.XMLNamespaceBinder.handleStartElement(XMLNamespaceBinder.java:809)
     at org.apache.xerces.impl.XMLNamespaceBinder.startElement(XMLNamespaceBinder.java:556)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.handleStartElement(XMLDTDValidator.java:2678)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(XMLDTDValidator.java:782)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:747)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1445)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:328)
     at org.apache.xerces.parsers.StandardParserConfiguration.parse(StandardParserConfiguration.java:479)
     at org.apache.xerces.parsers.StandardParserConfiguration.parse(StandardParserConfiguration.java:521)
     at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:148)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:972)
     at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:934)
     at org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:750)
     at se.carmen.db.XsltTransform14.main(XsltTransform14.java:32)
     Anyone got any ideas??

I took a look in the release notes for the version of JAXP that I had previously downloaded and used with JDK 1.3:
Specification Version: 1.2
Reference Implementation (RI) Version: 1.2.0-EA1
I could also find this information:
Version 1.4 of the Java Platform
To use this version of the Java XML release with version 1.4 of the Java platform, you must place them in
<platformLocation>/jre/lib/endorsed
They must exist in this location to override earlier versions of the Xalan libaries that are a standard part of the 1.4 platform. Because of that special requirement, it is not possible to specify these libraries using the -classpath option on the java/javac command line.
Putting my xalan.jar (and xerces.jar) in a new folder named "endorsed" as specified actually made it work!
I still have one question... Is there another way to specify the new version of xalan without putting it in this folder, I do not have control over the target platform and it would be better to use some kind of JVM setting if there is one?

Similar Messages

  • HT6114 Delaying problem when switching desktop

    After upgrading to Mavericks v10.9.2 Update my "Macbook pro Retina, 15-inch, Early 2013" is delaying when switching desktops or switching to mission control. An overall delay problems occured. I need help!

    First off, I meant to title this "When switching spaces application window is not showing."
    Just in case anyone else runs into this problem or any other weirdness with switching between spaces, the answer seems to be trashing the com.apple.dock.plist file and then restarting the dock. The preferences file can evidentially get corrupted and create some problems. Spaces does not have it's own plist file but stores it's data in the dock's plist file. Be warned that this will reset all of your dock preferences including which apps you have on the dock.
    Mark

  • Problem when switch wifi to 3G or 3G to wifi

    Hi,
    I recently bought the iPad 64 wifi + 3G. I face a problem when I want to switch wifi to 3G network or the reverse. I do it through the parameters window. The wifi or 3G indicators do appear but then when I launch safari, no connexion is madfe and the following error message appear :
    "No cellular data ..."
    What can I do ?
    Plus I have problem connecting when both wifi and 3G are on.
    The ipad should manage this easily. That's key for its use.
    Thanks !

    If both cellular and wifi are on and connected, the iPad will use wifi first and only default to 3G if the wifi connection is lost. In setting you can turn wifi and 3g (cellular) off and on individually. Not infrequently a wifi connection will be show by the icon but in reality there really is no connection. You can check by going into Setting>Network>the right hand arrow by the network that may be connected. If the IP address starts with a 169 you are not really connected. There are many discussion on the forum about wifi problems.

  • Identifying problems when migrating to JDK 5/6

    We are interested in migrated from JDK 1.4 to 6.
    I found an article on walmart.com's experience.
    "Java 1.5 introduced several changes or enhancements to its XML API (SAX, DOM and XSLT in particular). These changes first became apparent when running code that relied on JSP&rsquo;s imports. Previous versions of the XML API allowed the same XML attribute to be defined more than once in a single JSP. Quite a few JSP pages, dynamic and static, broke when running under Java 1.5 because of the attribute repetition. "
    [http://www.theserverside.com/tt/articles/article.tss?l=MigratingtoJava5]
    Please identify what the author means exactly by "XML attribute" and provide an example of this behavior/bug. I'm trying to understand this so I can identify if we have this in our codebase or not. thx.

    The migration from Designer 6.0 to 6i requires careful planning. Please read the migration guide on OTN (http://www.oracle.com/technology/products/designer/index.html) for advice and to assist you with the migration.
    Regards
    Sue

  • Problem when switching from https to http on Safari

    I am using a Safari browser and try to switch from https to http within the same web application.
    The Safari browser is configured so that on Safari->Preferences->Security the check box "Ask before sending a non-secure form to a secure website" is checked.
    When using the Safari browser in my web application and going from an https page to an http page, the browser shows an (expected) dialog box asking the user whether he wants to send a non secure form. Clicking Ok (twice) causes the following problematic dialog box to appear :
    Safari can't open the specified address;
    Safari can't open "(null)" because Mac OS X doesn't
    recognise Internet addresses starting with "(null)"
    How can I avoid this problem without having to uncheck the above mentioned check box in Safari->Preferences->security.

    I have somehow a similar problem,too. My site is in https upon login which maintains some session data. One of the features of my site is the file upload (servlet) which does some batch processing. Since my https session terminates(timeout)upon uploading, I resorted to switching the link to an http session using
    File Upload
    When I do "session.getAttribute('data')" in my servlet after being called by the "upload.jsp", a NullPointerException is thrown at that particular line.
    My question:
    1. Upon uploading of file/data via https, is there a maximum bytes that it can only process? My file is just less than 1MB and it terminates the session. How do I go about it? Should I switch it then to an http?
    2. If I switch from https to an http session, SSL session data can not be retrieved from an http session?
    Thanks!

  • Codec Problem when switching computers

    I am having a problem, where I copy my .fcp and all the videos that are with it, to another computer.
    I have a macbook with leopard.
    the other computer is a 2ghz core duo imac (the white ones)which has tiger
    It says it cant find the codec.
    Also, sometimes thef iles arent connected, when i try and reconnect them, it says the times don't match up. Im literally using the same files, nothing is different.
    Any help on what to do to switch computers to work on things would be very helpful

    DX50 is a DivX format and is not a natively supported codec. the trouble is that the Mac where it plays properly has had a third party codec installed which enables that file type, whereas the other one hasn't
    Download and install Perian form http://www.perian.org then see if it doesn't automaigaclly start working

  • Ms exchange activesync problem when switching networks

    i've noticed that when i switch networks (i.e. go from ny to sf), i land and set my phone from airplane mode to active, my iphone does not sync with my company's exchange server. it gives me a connection error. i then have to do a reset of the phone and it works fine.
    this also occurs when i switch from 3G to edge and vice versa. i have to do a hard reset of the phone in order to get mail to work again. this doesn't occur with my gmail account, just my MS Exchange activesync.
    anyone else notice this?

    by the way, i'm running 2.0.1 firmware and this was not a problem with 2.0 firmware.

  • Problem when switching Pearl on - please help

    Hope someone out there can help me.  I have a Pearl 8100, its been working fine for a few months, but yesterday when i went to turn it on, the hourglass displayed for about 1 minute then i had the front screen, but with the hourglass displaying and a box the with a message "Verifying Security Software and a % sliding amount of the checking that has been processed, this is displayed for a minute or more then the phone switches off!  tried taking the battery out etc but phone again goes through this process - any help is appreciated.  

    Hey dumpeal2,
    Welcome to the forums.
    Try following the instructions here to backup and do a clean reload of your device software. http://bbry.lv/cKy9A0 if you get the same result then I would suggest contacting your service provider and have them escalate your issue to RIM. 
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Nokia Lumnia 610 problem when switched off

    when I switch the mobile fully off then switch it back on again and/or the battery is discharged, it doesn't record any calls or texts received when the phone is switched off [fully] or the battery is flat. Can anybody help please

    It wont record anything if switched off,some operators provide a call catcher service,ie you get an sms that you have had a missed call.
    If you turn on your phone and no sms come through it simply means you got none.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Look & Feel Problem when switching to JRE1.6.0_10 (GTK error on fedora 9)

    Hi,
    I have switched a Swing app I'm developping from openjdk to sun jdk1.6.0_10 in order to track memory leacks (the profiler I wish to use tells me openjdk is not stable enough to get itself installed).
    Now I have problems displaying some of the GUI components : background in some JPanel herited classes (propertysheet l2fprod component), buttons on combo boxes.
    I get these messages in the console :*
    +(<unknown>:6330): Gtk-WARNING **: Attempting to add a widget with type GtkButton to a GtkComboBoxEntry (need an instance of GtkEntry or of a subclass)+
    +(<unknown>:6330): Gtk-CRITICAL **: gtk_widget_realize: assertion `GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)' failed+
    +(<unknown>:6330): Gtk-CRITICAL **: gtk_paint_box: assertion `style->depth == gdk_drawable_get_depth (window)' failed+
    +(<unknown>:6330): Gtk-CRITICAL **: gtk_paint_box: assertion `style->depth == gdk_drawable_get_depth (window)' failed+
    As far as I know it's running fine under XP with jre 1.6.0_07. The problems occurs at runtime with jre1.6.0_10 on Fedora9. It's okay if I launch it with openjdk (but I can't use my profiler !). I didn't try other jre versions on my Linux box neither I know if the problem occurs under XP with jre1.6.0_10.
    Here's the config I have this problem on :_
    OS/Desktop : Fedora 9 (kernel 2.6.25.14.fc9.i686), GNOME 2.22.3
    VM : Java HotSpot(TM) Client VM version 11.0-b15
    Library path:
    /usr/java/jre1.6.0_10/lib/i386/client:/usr/java/jre1.6.0_10/lib/i386:/usr/java/jre1.6.0_10/../lib/i386:/usr/java/packages/lib/i386:/lib:/usr/lib
    Boot class path:
    /usr/java/jre1.6.0_10/lib/resources.jar:/usr/java/jre1.6.0_10/lib/rt.jar:/usr/java/jre1.6.0_10/lib/sunrsasign.jar:/usr/java/jre1.6.0_10/lib/jsse.jar:/usr/java/jre1.6.0_10/lib/jce.jar:/usr/java/jre1.6.0_10/lib/charsets.jar:/usr/java/jre1.6.0_10/classes
    Any Ideas ?
    Edited by: squiggly on Oct 24, 2008 1:59 AM

    I have no experience with cscript, but by typing cscript in a command prompt i get:
    Microsoft (R) Windows Script Host Version 5.7
    Copyright (C) Microsoft Corporation. All rights reserved.
    Usage: CScript scriptname.extension [option...] [arguments...]
    Options:
    //B         Batch mode: Suppresses script errors and prompts from displaying
    //D         Enable Active Debugging
    //E:engine  Use engine for executing script
    //H:CScript Changes the default script host to CScript.exe
    //H:WScript Changes the default script host to WScript.exe (default)
    //I         Interactive mode (default, opposite of //B)
    //Job:xxxx  Execute a WSF job
    //Logo      Display logo (default)
    //Nologo    Prevent logo display: No banner will be shown at execution time
    //S         Save current command line options for this user
    //T:nn      Time out in seconds:  Maximum time a script is permitted to run
    //X         Execute script in debugger
    //U         Use Unicode for redirected I/O from the consoleDoesn't this mean that the script file name should come before the option (//Nologo)?
    I run XP SP 3.

  • Problem when switching over to a Logical Standby - RESOLVED

    I used GRID to create a logical standby. The primary and standby servers have the same OS's and are both 64-bit. I am using Oracle 10gR3 on both, and the same patches have been applied to both servers. Prior to doing the switchover, I queried switchover_status on the primary database and received a state of SESSIONS ACTIVE. I then issued the command ALTER DATABASE PREPARE TO SWITCHOVER TO LOGICAL STANDBY on the primary, and ALTER DATABASE PREPARE TO SWITCHOVER TO PRIMARY on the logical. The problem is that they are now both stuck in the PREPARING TO SWITCHOVER state and I cannot to anything to budge them from that state. As far as GRID is concerned, they are both in a NORMAL state, but the SQL queries prove differently. The APPLIED_SCN and NEWEST_SCN on the current standby do not match.
    Any ideas?
    Cheers
    Message was edited by:
    user458496

    Hi,
    APPLIED_SCN means that the newest SCN at which all changes have been applied. The values in the APPLIED_SCN and NEWEST_SCN columns will match if all available redo log data has been processed.
    NEWEST_SCN means that the most recent SCN available on the standby system. If no more logs are being shipped, then changes could be applied to this SCN. The values in the APPLIED_SCN and NEWEST_SCN columns will match if all available redo log data has been processed.
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_3250.htm
    Hope this helps.
    Adith

  • Compilation problem when switching databases.

    it looks like oracle reports need recompilation everytime in order to run on other databases otherthan database where it compiled.Otherwise Oracle reports says "Unable to load program units.Do you want to load source copy only?".If you say Yes,it works fine but i need all those reports to run in non interactive mode(batch mode).this problem happens with reports 3.0 & 6i runtime tools calling from commandline.i also noticed another problem that oracle reports needs recompilation again for the same database if you have any reports dependant oracle object modified after the first compilation.please let me know the answer which is very useful for other users facing similar issues.
    Contact ph :- 302-791-8976
    without touching the columns that reports depending on.
    null

    We had this same problem with a certain version of Reports 3.0. We upgraded to version 3.0.5.12, recompiled the reports against 1 database instance, and then they ran fine on all of our instances.
    Hope that helps.

  • Problem when switching IDE environment

    Hi, all
    I've a serious and killing question, that is 2 days before, i use Netbeans to develop my JSP web server project, it work just right. But then yesterday, i try to use Eclipse 3 to develop, it tell me there is an error, which is the class path NOT found, thus i plan to switch back to Netbeans again, ok! You know guy, the project won't start, it just hang / stop at middle code of the starting project, my development spec is below:
    1.) Tomcat 4.1.3
    2. ) JAVA 1.4.2
    3.) Netbeans 3.6
    wat is happening???
    the project stop / hang at here:
    Jan 11, 2005 3:18:39 PM org.apache.coyote.http11.Http11Protocol init
    INFO: Initializing Coyote HTTP/1.1 on port 8080
    Starting service Tomcat-Standalone
    Apache Tomcat/4.1.30
    before the error, there are many other line printed between here actually
    Jan 11, 2005 3:18:42 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=tru
    e
    Jan 11, 2005 3:18:42 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNul
    l=true
    Jan 11, 2005 3:18:43 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.webapp.admin.ApplicationResources', retur
    nNull=true
    Jan 11, 2005 3:18:45 PM org.apache.coyote.http11.Http11Protocol start
    INFO: Starting Coyote HTTP/1.1 on port 8080
    Jan 11, 2005 3:18:45 PM org.apache.jk.server.JkMain start
    INFO: APR not loaded, disabling jni components: java.io.IOException: java.lang.U
    nsatisfiedLinkError: no jkjni in java.library.path
    Jan 11, 2005 3:18:45 PM org.apache.jk.common.ChannelSocket init
    INFO: JK2: ajp13 listening on /0.0.0.0:8009
    Jan 11, 2005 3:18:45 PM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/31  config=C:\tomcat4.1.30\bin\..\conf\jk2.properti
    es

    All I can say is that something really screwed up your installation. Try reinstalling netbeans completely (your application settings are in your user folder, so they are not deleted).

  • Memory leak when switching to Calendar in Outlook

    Hi,
    I have one user who has a problem when switching to the Calender in Outlook. After switching to the Calendar, memory usage for Outlook climbs until it reaches the maximum and becomes unresponsive. The process then has to be killed in the task manager.
    This happens on all PCs using that account.
    It happens even in safe mode.
    It happens even with a brand new Outlook profile.
    Running DebugDiag and trying to capture what was going on it seemed that MSO.dll was making millions of allocations, possibly for event handles.
    Function MSO!Ordinal1712+81 3,752,079 allocation(s)
    Function details
    Function   MSO!Ordinal1712+81 
    Source Line    
    Allocation type   Heap allocation(s) 
    Heap handle   0x00000000`00000000 
    Allocation Count   3753079 allocation(s) 
    Allocation Size   324.36 MBytes 
    Leak Probability   7% 
    Function   MSO!Ordinal2806+18c0 
    Source Line    
    Allocation type   Heap allocation(s) 
    Heap handle   0x00000000`00000000 
    Allocation Count   24 allocation(s) 
    Allocation Size   47.06 KBytes 
    Leak Probability   78% 
    Function   MSO!Ordinal8646+c83 
    Source Line    
    Allocation type   Virtual memory allocation(s) 
    Allocation Count   1 allocation(s) 
    Allocation Size   8.5 KBytes 
    Leak Probability   60% 
    That's from early on in the leaking behaviour when it is easier to get the dump finish properly.
    Any ideas?

    Hi,
    For troubleshooting, I would like to collect some information.
    Does this user have any ActiveSync Device?
    Outlook is in online mode or cache mode?
    Please try to move this user’s mailbox to another database to check this issue.
    Please try to create a new mailbox for this user to check this issue.
    Are there any errors when outlook crashed?
    Meanwhile please check this thread for mso.dll problem
    https://social.technet.microsoft.com/Forums/exchange/en-US/8cf1d3dd-7cb8-46c2-be76-41cd801364d2/outlook-2013-crash-msodll?forum=officeitpro
    Thanks for your time.
    Best Regards.

  • Encountered problem when converting from development to runtime environment

    1. I ran apxdevrm.sql switch my environment to runtime. Although it seemed to finish successfully, this error was in the log and according to registry, my installation was invalidated(still works though).
    drop package wwv_flow_create_flow_api (doesn't seem to exist)
    ERROR at line 1:
    ORA-04043: object WWV_FLOW_CREATE_FLOW_API does not exist
    Entry in dba_registry:
    COMP_NAME--Oracle Application ExpressSTATUS
    STATUS--INVALID
    2. Next, not sure if it had made the switch, I then ran apxdvins,sql to revert back because of problem #1. (later found out that it was still devl environment)
    This time, this message appeared in log...
    FAILED CHECK FOR TRIGGER BIN$UH58A027El3gRAADutXi8w==$0
    (Installation still invalid)
    Any ideas?

    1. Commented "drop package" stmt out on apexdevrm.sql to get rid of non-existent package problem. (probably holdover from v3.0)
    2. purged dba_recyclebin to get rid of problem #2.
    Dba_registry entry still shows as INVALID... Has anyone else encountered these problems when switching from dev to runtime? (or vice-versa)

Maybe you are looking for

  • Acrobat X Pro suddenly doesen´t start

    Hi, I try it in English My System: Win 7 I installed CS 6 Design and Web Premium on my computer. Additional the Adobe Reader was installed. An suddenly since a few days, Acrobat X Pro doesn´t start. Acrobat doesn´t start on every profile at the compu

  • GL vs AP

    Hello Comrades, How do I sort out the difference between the balance as per the GL suppliers account and total as per the AP trial balance? What could be the causes and origin of the difference? Thanking you in anticipation of your assistance [email 

  • Dynamic date & time on slides

    I've seen talk of being able to add a dynamic date and time readout to slides with Quartz Composer, but I haven't been able to find any more information about it. I've got no clue how to use QC, and really haven't had the time to devote to pulling th

  • Problem in running java web start

    Hi, I will like to use ArgoUML from tigris.org and after installing jre1.5.0_01, I have this problem when I open the link from ArgoUML : Cannot load class/plugin/JavaRunTime The Bridge was installed at <C:\PROGRA~1\Java\JRE15~1.0_0> but the class is

  • WLAN APs send syslog broadcasts in controller mode

    Hi, in a test environment we use several 1131 wlan aps in controller mode with software version 4.2.176.0. With wireshark running on a client pc in the same subnet as the wlan aps reside I saw that the wlan aps are sending syslog messages to the broa