Vs vs output Bundle Package Version

During an outing in the BlackBerry world, should release, Bundle and Package Version for all?

I published an application and the version of the package was 1.0.0 but when I published an updated version (package Verion 1.1.0) Version is 2.0.  I am now on version 4.0, but I don't have (according to my idea which is a major, medium or minor revision) to update my version of package 4.0.0 or anything close to that.

Is how important it?

I'm guessing that this isn't, but boredom I have is when I run a report, it shows the release as 4.0.

I wonder if, on the next version, I use the Version of the Package as the version number, so who would mess things upwards, since the Version of the package would be something like 1.1.3 and not 5.0.

I kept my increments, if you do not change the number when you submit your update it will increment just by 1.0 each time, I think it's just trying to be helpful.

Maybe it's something that help vendor can help you with to take to the stage.

I made a mistake once with the numbering (1.1 instead of 1.01) and she she has set the.

Tags: BlackBerry Developers

Similar Questions

  • Cannot install Windows Update - Package Version: 4.0.2.20110411

    Original title: Package Version: 4.0.2.20110411

    Where I can download the Version of the Package: 4.0.2.20110411 to correct the problem of automatic update?  This response should not be that big of a problem, but this download appears to be hidden from the view and Microsoft IS aware of this problem.  Help, please!

    Microsoft Fixit diagnosis points to the Package Version: 4.0.2.20110411 download and installation as a fix for this problem.

    Hello

    Try the methods provided below and check if the problem persists.

    Method 1:

    You can try to reset Windows Update components that could help solve the issue of the updates of Windows.

    How to reset the Windows Update components?

    http://support.Microsoft.com/kb/971058/en-us

    Note:

    To do: Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    How to back up and restore the registry in Windows

    http://support.Microsoft.com/kb/322756

    Method 2:

    Download and install the Windows Update Agent from the link provided below.

    You cannot install updates from Windows Update, Microsoft Update, or by using the auto update after a repair of Windows XP after installing Windows XP SP3 immediately after a clean installation of Windows XP SP2 or

    http://support.Microsoft.com/kb/943144

  • Package version number

    Tried to submit an update to an app and got it

    • BAR-Version of the Package for an OS min. lower cannot be greater than the Package-Version a BONE of min. higher BAR. Or for same min. operating system, package versions must be same.

    Does this mean that since I published a version 10.2 of the app that I can no longer update the versions lower than 10.2?  I understand not all which could mean, I haven't changed anything related api level

    Or does this mean that in this curcumstance I need to keep the old version number (from the .bar) of my previous album for future updates?

    (Guessing) The way I read it, this means that no matter what time you want to download several bars for values of different OS 'Min', you must generate and sign in ascending order of value Min OS.

    In other words, if you download two bars, a game for the 10.1 and the other for 10.2, you would need for the 10.2 version a (say 2.7.123.101) higher than that of 10.1 (for example 2.7.122.100 and not 2.7.124.100). Which would also limit the order in which you connect, because the signature server does not allow version never down.

    In short, it seems that you should not generate a 10.2 before a 10.1 you will also download, and if you make a 10.2 and wish subsequently to a 10.1, make sure that the version is higher.

    However, really just guessing based on the text that you have demonstrated.

  • Custom in the dmg bundle package icons

    Hello

    I created an ant script to create a Setup program for my application JavaFx:

    <?xml version="1.0" encoding="UTF-8"?>
    <project name="app-javafx" default="do-deploy" basedir="." xmlns:fx="javafx:com.sun.javafx.tools.ant">
        <property name="java8.jdk.home" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_11.jdk/Contents/Home" />
        <property name="javafx.tools.ant.jar" value="${java8.jdk.home}/lib/ant-javafx.jar" />
        <target name="init-fx-tasks">
            <taskdef resource="com/sun/javafx/tools/ant/antlib.xml" uri="javafx:com.sun.javafx.tools.ant" classpath="${javafx.tools.ant.jar}" />
        </target>
        <target name="setup-staging-area">
            <delete dir="externalLibs" />
            <delete dir="project" />
            <delete dir="projectRefs" />
    
            <mkdir dir="externalLibs" />
    
            <copy todir="externalLibs">
                <fileset dir="..\lib">
                    <include name="**.jar" />
                </fileset>
            </copy>
    
            <!--LIBRERIE PERSONALIZZATE-->
            <copy todir="externalLibs">
                <fileset dir=".">
                    <include name="**.jar" />
                </fileset>
            </copy>
    
    
            <mkdir dir="project" />
            <copy todir="project">
                <fileset dir="generated-sources">
                    <include name="gfx/**" />
                </fileset>
            </copy>
            <copy todir="project">
                <fileset dir="..\src\main">
                    <include name="resources/**" />
                </fileset>
            </copy>
            <copy todir="project">
                <fileset dir="..\src\main">
                    <include name="java/**" />
                </fileset>
            </copy>
    
            <mkdir dir="projectRefs" />
        </target>
        <target name='do-compile'>
            <delete dir="build" />
            <mkdir dir="build/src" />
            <mkdir dir="build/libs" />
            <mkdir dir="build/classes" />
    
            <!-- Copy project-libs references -->
            <copy todir="build/libs">
                <fileset dir="externalLibs">
                    <include name="**.jar" />
                </fileset>
            </copy>
    
            <!-- Copy project references -->
    
            <!-- Copy project sources itself -->
            <copy todir="build/src">
                <fileset dir="project/gfx">
                    <include name="**/*" />
                </fileset>
            </copy>
            <copy todir="build/src">
                <fileset dir="project/resources">
                    <include name="**/*" />
                </fileset>
            </copy>
            <copy todir="build/src">
                <fileset dir="project/java">
                    <include name="**/*" />
                </fileset>
            </copy>
    
            <javac fork="true" executable="${java8.jdk.home}/bin/javac" includeantruntime="false" source="1.8" target="1.8" srcdir="build/src" destdir="build/classes" encoding="UTF-8">
                <classpath>
                    <fileset dir="build/libs">
                        <include name="*" />
                    </fileset>
                    <filelist>
                        <file name="${java8.jdk.home}/jre/lib/jfxrt.jar" />
                    </filelist>
                </classpath>
            </javac>
    
            <!-- Copy over none Java-Files -->
            <copy todir="build/classes">
                <fileset dir="project/gfx">
                    <exclude name="**/*.java" />
                </fileset>
                <fileset dir="project/resources">
                    <exclude name="**/*.java" />
                </fileset>
                <fileset dir="project/java">
                    <exclude name="**/*.java" />
                </fileset>
            </copy>
    
    
        </target>
        <target name="do-deploy" depends="setup-staging-area, do-compile, init-fx-tasks">
            <delete file="dist" />
            <delete file="deploy" />
        
            <mkdir dir="dist" />
            <mkdir dir="dist/libs" />
    
            <copy todir="dist/libs">
                <fileset dir="externalLibs">
                    <include name="*" />
                </fileset>
            </copy>
    
            <fx:resources id="appRes">
                <fx:fileset dir="dist" includes="app-javafx.jar" />
                <fx:fileset dir="dist" includes="libs/*" />
            </fx:resources>
    
            <fx:application id="fxApplication" name="app" version="3.0" mainClass="it.client.Main" preloaderclass="it.SplashScreenUi" toolkit="fx" />
    
            <fx:jar destfile="dist/app-javafx.jar">
                <fx:application refid="fxApplication" />
                <fileset dir="build/classes">
                </fileset>
                <fx:resources refid="appRes" />
    
    
                <manifest>
                    <attribute name="Implementation-Vendor" value="Vendor" />
                    <attribute name="Implementation-Title" value="app" />
                    <attribute name="Implementation-Version" value="3.0.0" />
                </manifest>
            </fx:jar>
    
    
            <mkdir dir="deploy" />
            <!-- Need to use ${basedir} because somehow the ant task is calculating the directory differently -->
            <fx:deploy outdir="${basedir}/deploy" outfile="app-javafx" nativeBundles="all" height="768" width="1024" verbose="true">
                <fx:info title="app" vendor="Vendor" copyright="Copyright Tutti i diritti riservati" />
                <fx:application refId="fxApplication" />
                <fx:resources refid="appRes" />
    
                <fx:preferences shortcut="true" install="true" menu="true" />
    
                <fx:permissions elevated="true" />
    
    
                <!-- Custom JVM setup for application -->
                <fx:platform>
                    <fx:jvmarg value="-Xmx1024m" />
                </fx:platform>
            </fx:deploy>
        </target>
    </project>
    

    During compilation, I see:

    Using base JDK at: /Library/Java/JavaVirtualMachines/jdk1.8.0_11.jdk
      Using default package resource [Bundle config file] (add package/macosx/Info.plist to the class path to customize)
      Using default package resource [icon] (add package/macosx/app.icns to the class path to customize)
    Creating app bundle: /Users/Utente/Documents/workspaceServer/javafx/target/deploy/bundles/app.app
    Config files are saved to /var/folders/q6/vmt_h0tx3rgdbt_4h2_2f3780000gn/T/build6635061168386632777.fxbundler/macosx. Use them to customize package.
    fxbund
    ler/macosx. Use them to customize package.
    

    So I get files in the temp directory and I copied them to my target of the project directory. Unfortunally javafxbuilder not use to customize the package so I think that the path where I put the files that will not.

    Can you help me?

    Thank you

    Resources are found do sniff classpath: your classpath is missing 'dot '.

    Instead of

    Please try to

    Reference: deployment of JavaFX Applications: Application independent packaging | 2 JavaFX tutorials and Documentation

  • library packaged version compatibility issue

    Why LabVIEW cannot open the screws from a packed library created with a previous version of LabVIEW?

    Project packed library essentially contains only code compiled, as an executable must be run with the same major version of the runtime that it was built in.

    You might want to look at creating a LabVIEW DLL from your code, you should be able to call in a newer version of LabVIEW providing that you have the correct version of the runtime engine that is installed? (I've never tried, but that's my understanding anyway)

  • That means package Version 4.02.20110411

    Al verificar Windows Updater indica en Datos del Editor detail

    Please select your language from the drop-down menu at the bottom of the page to post your question in the language of your choice. The forum in which you've posted is for English only. If you can't find the desired language, support for additional international sites options are by following the link below:

    Please, select su idioma in her lista desplegable anterior to send you in el idioma of choice su pregunta. El foro Québec ha published're para frances only. If usted no encuentra el idioma no desee por encima of las options para support otros destinos international themselves can find following el siguiente enlace:

    http://support.Microsoft.com/common/international.aspx

  • problems of version 1.5 package

    This is the message that I FINALLY received my printer after having repeatedly tried to solve the problem.
    I wanted to just send and print the photo of my new grandson. In addition, he won't let me attach my photos to my Yahoo E mail.  Help!

    Message as follows...

    version 6.0 of Windows / AMD64 Architecture specifying 30/08/2009
    Publisher details

    PRINTER
    Troubleshoot issues preventing printing to complete the Package version: 1.5
    Publisher: Microsoft Corporation

    Thank you
    Cinderellie

    Hey cindy Biggs,

    Could you please give us more information on what is the type of printer that you use?

    What is the exact error message you get when you try to print?

    Let us know the brand of the manufacturer and model of the printer?

    About not being able to join the emails, I suggest that you reset your Internet Explorer settings.

    Here are the steps to reset your Internet Explorer settings:

    To use the feature reset the settings of Internet Explorer in the Control Panel, follow these steps:

    1. exit all programs, including Internet Explorer (if it is running).

    2. If you are using Windows XP, click Start and then click Run. Type the following command in the Open box, and then press ENTER:

    Inetcpl.cpl

    If you are using Windows Vista, click Start. Type the following command in the start search box and press ENTER:

    Inetcpl.cpl

    The Internet Options dialog box appears.

    3. click on the Advanced tab.

    4. Under Reset Internet Explorer settings, click Reset. Then click again on reset.

    5. when Internet Explorer has finished resetting the settings, click close in the reset Internet Explorer settings dialog.

    Here is an article that will give you more information.

    I suggest that you use the hotfix that is in the present.

    Thank you.

    Irfan H, Engineer Support Microsoft Answers. Visit our Microsoft answers feedback Forum and let us know what you think.

  • BlackBerry smartphones where wifi-call as a bundle version 7.1 1149

    WARNING: all terms translated in freestyle from German to English

    Since I've updated my bb bold 9900 bundle of version 7.1 os 1149 I wonder where it is here:

    of docs.blackberry... Change_your_Wi-Fi_calling_preferences_

    or simply: where are these parameters that I can't find as described?

    I'm at orange Switzerland... is because of the provider, that he is not displayed?

    WiFi calling, also known as the "UMA" for some, is turned on or off by the mobile operator. Not all carriers provide this function.

  • Output file refusing constantly

    Hi all

    I'm a bit desperate with this problem.   My first app SMS HUB https://appworld.blackberry.com/webstore/content/27344735/ is constantly getting rejected on the following grounds:

    "- I test your app on BlackBerry 10 devices. Please note that BlackBerry World accepts no applications with intense, frequent or graphic sexual content. Please remove sexual content within the app
    "

    Initially, it was a simple problem, I did was remove a background image of cartoon a bit sexual I had in one of the screens and he agreed.   But recently I tried to submit an other update and it was denied for the same reason.

    I tried to completely remove the pornographic "Text" category, but it still refused

    I tried to delete all the images in the background, but he is still denied

    It is even went to my database to remove all explicit SMS texts that might have been added by users in case the BlackBerry as if by magic review team can display them, but that did not help either.

    I'm a little angry because earlier around last year, the email would include details of what caused the refusal, for example: "the image in the pornographic SMS category does respect not our rules."

    But now, I have just a general answer

    I'm quite sure that there are no explicit content on the App now so...

    Help, please!

    Hello

    I can take a look to the application itself, see if there is content, we cannot allow.

    However, when I looked quickly the versions that you have submitted, I wanted to do this 10.0.5 communicated to your attention.  Currently, the Version of the Package is 0.0.1.1.  This value is much lower than previous versions, you live on the store, so, even if the team approves it, the output is not visible to users.

    Recommend the Package Version of attachment and submit a new version.  Once this is done, I'll contact the Vetting team and ask them to let me know if they intend to deny again, and what specifically they take this decision on.

  • Package id error. Signed applications WebWorks.

    Could someone please tell me why when signing of the same app for OS BB10 and PlayBook OS I'm different application id in MANIFEST. File MF, which translates as the rejection by the supplier portal .bar file downloading.

    Two software development kits are recent, if it's important.

    Unchanged demand, has signed for various devices.

    The two signature process managed just different Package name in the MANIFEST. MF file. (Must be the same because same config.xml served.)

    Keys used are the same.

    Here are some examples:

    BB10 MANIFESTO. MF

    Package-Type: application
    The package author: me - it's always the same with key set
    Package name: XXX - specified in the xml file must be the same
    Package Version: 1.0.0.0
    Package-Architecture: armle-v7
    Package-author-certificate-Hash: xxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxx
    Package-author-Id: me - it's always the same with key set
    Package-Id: this should be the same for both packages since the Package name is the same
    Package-Version-Id: number of Version loads
    Package - Issue Date: 2013-04 - 28 T 08: 18:12Z

    PlayBook MANIFESTO. MF

    Package-Type: application
    The package author: me
    Package name: XXX608d35518356ae28ab6cb8e8ck6b11b - see what screws everything up
    Package version: 1.0.0.5
    Package-Architecture: armle-v7
    Package-author-certificate-Hash: xxxxxxxxxxxxxxxx xxxxxxxxxxx
    Package-author-Id: me
    Package-Id: not the same thing because of the different package name
    Package-Version-Id: number of Version loads
    Package - Issue Date: 2013-04 - 28 T 08: 18:18Z

    608d35518356ae28ab6cb8e8ck6b11b - this is what's wrong with the name of the Package.

    .bar signed for BB10 comes with Package name normal one specified in the config.xml file in the identification sticker. .bar signed for PlayBook OS comes with the package name that resembles what would like normal more lots of numbers uttachet him he looks a bit like a hash keyword. But there simply just to imitate what is specified in the tag of the config.xml file.

    As I said package PlayBook is rejected by portal provider for some reason "different ID of Package". (Why Package ID would be the same if your own BlackBerry signature tools mess). BB10 verson was transferred first. What I'm trying to tell if verson PlayBook would be first, then the BB10 version would be rejected for exactly the same reason.

    That leaves me with two options:

    1. try to solve this problem with the support of the seller. (Not going, the last time I'm angry "why did you change your package of them ID")

    2 forget PlayBook, at least with OS its market now. (Who cares anyway, upload was almost merciful because it is not worth even the whirlpool to go thrugh signature and the download process, which is particularly hideous for PlayBook).

    The third option would be just to create something like 'Application for PlayBook' in portal provider, but that's all just stupid because it would be the same application but under different names therefore not cross-platform for users of BlackBerry ID.

    Also can't help but to say rim (BlackBerry) should gather their things and come up with a single tool can be used to sign applications. Because they have now looks more like a joke if it isn't insult all together. Process is mindbending. and if you want yourself (almost 100% certainty) frustrate develop, sign and app World de BlackBerry download. You will be pleased.

    Anyway everyone has had similar problem when downloading the BB10 and PlayBook .bars to the provider portal would be nice here how solve you it.

    See you soon! And the development of the happy. (which isn't the most difficult part, but you already know)

    This is because that the WebWorks SDK for Tablet added a random GUID to the package ID to make it unique.  The BlackBerry 10 SDK is no longer for it.  Unfortunately, this means that if a developer rebuilt their code even using the SDK for the new platform, then BlackBerry World will not see them as being of the same application (since the internal ID is different).

    There is a solution - what you need to do is change the id property of your element in the config.xml file to match the package-name of the file 'manifest '. MF' Tablet-OS.

    Here is an example of what I mean.  If the MANIFESTO of the PlayBook. MF file shows that 608d35518356ae28ab6cb8e8ck6b11b has been added in the name of the package of fooBar, then set your id like that

    http://www.w3.org/ns/widgets"
            xmlns:rim="http://www.blackberry.com/ns/widgets"
            version="1.0.1"
            id="foobar608d35518356ae28ab6cb8e8ck6b11b"
            xml:lang="en">
    

    It's not pretty, but it works.

    Once you recompile, BlackBerry World will then recognize the bar and allow you to present a new bundle for the existing version.

  • where can I find what is the latest update package?

    Where can I find what is the latest update package? I use a blowtorch to debug problems with OS 6, but I don't know if it is up-to-date. The OTA update claims it is, but which is related to the carrier, right? I use a T-mobile SIM card.

    The options said ' bundle 6.0 335 (v6.0.0.161 platform 6.4.0.75) ' is the most recent?

    Thank you!

    Package Version: 6.0.0.1907
    Composed of:

    • Applications: 6.0.0.448
    • Software platform: 6.4.0.210

    ^^, This is the latest operating system for the Torch 9800.

    Operating system device provided are "released" by specific carriers once that they are certified and trained to their support technicians, but still, you are able to load any carrier the same model by following the instructions below.

    See the link below for download and simple installation instructions.

    https://www.BlackBerry.com/downloads/entry.do?code=494C08F7A144D3CC4CFA661ED1244039

    Make a backup of your device first, using Desktop Manager > backup. Close the office at the end Manager.

    1. download the OS files to the PC then install on the PC by running (double click) the downloaded file.
    2. go in c:\program files Research in motion\apploader and delete the file named "vendor.xml."
    3. plug in the BB and double-click on "Loader.exe." It is located in the same place as the above vendor.xml file.

  • O11n package Plugin Maven-package: import-package causes error on VCO (ClassNotFoundException)

    When you try to import a package using the maven plugin, I now see a ClassNotFoundException thrown of vCO, which returns a 500 Server error.  I also tried the vco-cli-java - 6.0.2.jar just to see if I could export a package through the cli and which are perfectly worked.  Not sure if something changed in the API that was not updated to 6.0.2 or if I'm doing something wrong.  I tried 1.7.0_67 and 1.8.0_45 java


    Any thoughts are appreciated.

    Thank you


    Tim


    o11n mvn package: import-package DserverUrl-= vcoadmin: [email protected] : 8281 - Dmaven.wagon.http.ssl.insecure = true - Dmaven.wagon.http.ssl.allowall =-X-Djavax.net.ssl.trustStore=../trust.jks-Djavax.net.ssl.trustStorePassword=test - DignoreServerCertificate = true true

    Catalina.out VCO OUTPUT

    VCO version 6.0.2

    June 23, 2015 19:40:36 org.apache.catalina.core.StandardWrapperValve invoke

    SERIOUS: Servlet.service () for servlet [remoteVcoFactoryServiceExporter] in the context of path [/vco] has thrown the exception [org.springframework.web.util.NestedServletException: class not found while deserializing, the nested exception is java.lang.ClassNotFoundException: org.slf4j.impl.SimpleLogger] origin

    java.lang.ClassNotFoundException: org.slf4j.impl.SimpleLogger

    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1720)

    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1571)

    at org.springframework.util.ClassUtils.forName(ClassUtils.java:236)

    at org.springframework.core.ConfigurableObjectInputStream.resolveClass(ConfigurableObjectInputStream.java:75)

    at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1612)

    at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1517)

    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1771)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1350)

    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1990)

    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1915)

    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1798)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1350)

    at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1706)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1344)

    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1990)

    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1915)

    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1798)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1350)

    at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1706)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1344)

    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1990)

    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1915)

    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1798)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1350)

    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370)

    at org.springframework.remoting.rmi.RemoteInvocationSerializingExporter.doReadRemoteInvocation(RemoteInvocationSerializingExporter.java:142)

    at org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter.readRemoteInvocation(HttpInvokerServiceExporter.java:117)

    at org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter.readRemoteInvocation(HttpInvokerServiceExporter.java:96)

    at org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter.handleRequest(HttpInvokerServiceExporter.java:73)

    at org.springframework.web.context.support.HttpRequestHandlerServlet.service(HttpRequestHandlerServlet.java:68)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)

    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)

    at net.sf.ehcache.constructs.web.filter.GzipFilter.doFilter(GzipFilter.java:95)

    at net.sf.ehcache.constructs.web.filter.Filter.doFilter(Filter.java:86)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)

    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)

    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)

    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:610)

    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171)

    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)

    at org.apache.catalina.valves.RemoteIpValve.invoke(RemoteIpValve.java:683)

    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:950)

    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)

    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408)

    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1070)

    to org.apache.coyote.AbstractProtocol$ AbstractConnectionHandler.process (AbstractProtocol.java:611)

    to org.apache.tomcat.util.net.JIoEndpoint$ SocketProcessor.run (JIoEndpoint.java:316)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:615)

    to org.apache.tomcat.util.threads.TaskThread$ WrappingRunnable.run (TaskThread.java:61)

    at java.lang.Thread.run(Thread.java:745)

    RELEASE OF MAVEN

    o11n mvn package: import-package DserverUrl-= vcoadmin: [email protected] : 8281 - Dmaven.wagon.http.ssl.insecure = true - Dmaven.wagon.http.ssl.allowall =-X-Djavax.net.ssl.trustStore=../trust.jks-Djavax.net.ssl.trustStorePassword=test - DignoreServerCertificate = true true

    Apache Maven 3.2.5 (12a6b3acb947671f09b81f49094c53f426d8cea1; 2014-12 - 14 T 12: 29:23 - 05:00)

    House of Maven: /usr/local/Cellar/maven/3.2.5/libexec

    Java version: 1.8.0_45, name of the vendor: Oracle Corporation

    House of Java: /Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home/jre

    Default locale: en_US, platform encoding: UTF-8

    OS name: 'mac os x', version: "10.10.3," arch: "x86_64" family: "mac"

    [INFO] Error stacktraces are turned on.

    [DEBUG] Read the global settings of /usr/local/Cellar/maven/3.2.5/libexec/conf/settings.xml

    [DEBUG] Read /Users/tperry/.m2/settings.xml user settings

    [DEBUG] Using local repository at /Users/tperry/.m2/repository

    [DEBUG] With the help of Manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/tperry/.m2/repository

    [INFO] Analysis of projects...

    [DEBUG] Statistics collection of dependency: {ConflictMarker.analyzeTime = 1, ConflictMarker.markTime = 1, ConflictMarker.nodeCount = 211, ConflictIdSorter.graphTime = 1, ConflictIdSorter.topsortTime = 0, ConflictIdSorter.conflictIdCount = 63, ConflictIdSorter.conflictIdCycleCount = 0, ConflictResolver.totalTime = 6, ConflictResolver.conflictItemCount = 145, DefaultDependencyCollector.collectTime = 209, DefaultDependencyCollector.transformTime = 11}

    [DEBUG] com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2:

    [DEBUG] com.vmware.o11n.tool:o11ntool - internal: pot: 6.0.2: compile

    [DEBUG] dom4j:dom4j:jar:1.6.1: compile

    [DEBUG] xml - apis: xml - apis: jar: 1.0.b2: compile

    [DEBUG] org.apache.maven:maven - plugin-api: jar: 2.0: compile

    [DEBUG] org.apache.maven:maven - project: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - settings: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - jar: profile: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - model: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - artifact-Manager: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - repository - metadata:jar:2.0.6: compile

    [DEBUG] org.apache.maven:maven - plugin-registry: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile

    [DEBUG] junit:junit:jar:4.11:test

    [DEBUG] org.hamcrest:hamcrest - core: jar: 1.3:test

    [DEBUG] classworlds:classworlds:jar:1.1 - alpha-2: compile

    [DEBUG] org.apache.maven:maven - artifact: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - archiver: pot: 2.2: compile

    [DEBUG] org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7: compile

    [DEBUG] org.codehaus.plexus:plexus - utils:jar:1.5.7: compile

    [DEBUG] org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2: compile

    [DEBUG] org.apache.maven:maven - monitor: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus - interpolation: pot: 1.6: compiles

    [DEBUG] org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1: compile

    [DEBUG] log4j:log4j:jar:1.2.17:runtime

    [DEBUG] commons-io: commons-io: pot: 2.4: compile

    [DEBUG] commons-lang: commons-lang: pot: 2.5: compile

    [DEBUG] com.vmware.o11n:o11n - util:jar:6.0.2: compile

    [DEBUG] org.bouncycastle:bcprov - jdk15on:jar:1.50: compile

    [DEBUG] org.bouncycastle:bcpkix - jdk15on:jar:1.50: compile

    [DEBUG] com.rubiconproject.oss:jchronic:jar:0.2.6: compile

    [DEBUG] net.sf.ehcache:ehcache - core: jar: 2.6.2: compile

    [DEBUG] ognl:ognl:jar:2.6.9: compile

    [DEBUG] org.codehaus.woodstox:stax2 - api: jar: 3.0.1: compile

    [DEBUG] stax:stax - api: jar: 1.0.1: compile

    [DEBUG] org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5: compile

    [DEBUG] org.slf4j:slf4j - api: jar: 1.6.6: compile

    [DEBUG] org.slf4j:slf4j - log4j12:jar:1.6.6: compile

    [DEBUG] Commons-codec: commons-codec: pot: 1.8: compile

    [DEBUG] org.apache.httpcomponents:httpclient:jar:4.3.5: compile

    [DEBUG] Commons-Logging: commons-logging: pot: 1.1.1: compile

    [DEBUG] org.apache.httpcomponents:httpcore:jar:4.3.2: compile

    [DEBUG] com.vmware.o11n:o11n - model: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - security: pot: 6.0.2: compile

    [DEBUG] org.springframework:spring - context: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - aop:jar:4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - expression: pot: 4.0.2.RELEASE: compile

    Org.springframework.Security:spring [DEBUG] - security-core: jar: 3.2.3.RELEASE: compile

    [DEBUG] aopalliance:aopalliance:jar:1.0: compile

    [DEBUG] antlr:antlr:jar:2.7.6: compile

    [DEBUG] org.springframework:spring - web: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - beans: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - core: jar: 4.0.2.RELEASE: compile

    [DEBUG] org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1: compile

    [DEBUG] com.vmware.o11n:o11n - modelejb-client: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2: compile

    [DEBUG] org.mozilla:rhino:jar:1.7R4: compile

    [DEBUG] commons-collections: commons-collections: pot: 3.2.1: compile

    [DEBUG] com.vmware.o11n:o11n - j2eeutil:jar:6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - sdkapi:jar:6.0.2: compile

    [DEBUG] org.hornetq:hornetq - jms-client: pot: 2.2.5.Final:runtime

    [DEBUG] org.hornetq:hornetq - client-core: jar: 2.2.5.Final:runtime

    [DEBUG] org.jboss.netty:netty:jar:3.2.5.Final:runtime

    [DEBUG] Created the new Kingdom maven.api class

    [DEBUG] Importation of foreign packages in the Kingdom maven.api class

    [DEBUG]  Imported: org.apache.maven.cli < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.internal.impl < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.lifecycle < plexus.core

    [DEBUG]  Imported: org.apache.maven.lifecycle < plexus.core

    [DEBUG]  Imported: org.apache.maven.repository < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.personality < plexus.core

    [DEBUG]  Imported: org.apache.maven.usability < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.configuration < plexus.core

    [DEBUG]  Imported: javax.enterprise.inject. * < plexus.core

    [DEBUG]  Imported: org.apache.maven. * < plexus.core

    [DEBUG]  Imported: org.apache.maven.project < plexus.core

    [DEBUG]  Imported: org.apache.maven.exception < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.spi < plexus.core

    [DEBUG]  Imported: org.apache.maven.plugin < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.collection < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus. * < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.logging < plexus.core

    [DEBUG]  Imported: org.apache.maven.profiles < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.transfer < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core

    [DEBUG]  Imported: org.apache.maven.execution.scope < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon. * < plexus.core

    [DEBUG]  Imported: org.apache.maven.rtinfo < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.impl < plexus.core

    [DEBUG]  Imported: org.apache.maven.monitor < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.graph < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.metadata < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.context < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.observers < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.resource < plexus.core

    [DEBUG]  Imported: javax.inject. * < plexus.core

    [DEBUG]  Imported: org.apache.maven.model < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.deployment < plexus.core

    [DEBUG]  Imported: org.apache.maven.artifact < plexus.core

    [DEBUG]  Imported: org.apache.maven.toolchain < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.resolution < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core

    [DEBUG]  Imported: org.apache.maven.settings < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.authorization < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.events < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.authentication < plexus.core

    [DEBUG]  Imported: org.apache.maven.reporting < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.repository < plexus.core

    [DEBUG]  Imported: org.slf4j. * < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.repository < plexus.core

    [DEBUG]  Imported: javax.enterprise.util. * < plexus.core

    [DEBUG]  Imported: org.apache.maven.configuration < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.classworlds < plexus.core

    [DEBUG]  Imported: org.codehaus.classworlds < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core

    [DEBUG]  Imported: org.apache.maven.classrealm < plexus.core

    [DEBUG]  Imported: org.eclipse.aether. * < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.artifact < plexus.core

    [DEBUG]  Imported: org.apache.maven.execution < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.proxy < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.container < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.version < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.installation < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.component < plexus.core

    [DEBUG] Filling of class maven.api Kingdom

    [DEBUG] Created the new class field extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG] Importation of foreign packages in class domain extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]  Imported: maven.api

    [DEBUG] Fill class domain extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]  Included: com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2

    [DEBUG]  Included: com.vmware.o11n.tool:o11ntool - inner: jar: 6.0.2

    [DEBUG]  Included: dom4j:dom4j:jar:1.6.1

    [DEBUG]  Included: xml - apis: xml - apis: jar: 1.0.b2

    [DEBUG]  Included: org.apache.maven:maven - archiver: jar: 2.2

    [DEBUG]  Included: org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7

    [DEBUG]  Included: org.codehaus.plexus:plexus - utils:jar:1.5.7

    [DEBUG]  Included: org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2

    [DEBUG]  Included: org.codehaus.plexus:plexus - interpolation: jar: 1.6

    [DEBUG]  Included: org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1

    [DEBUG]  Included: log4j:log4j:jar:1.2.17

    [DEBUG]  Included: commons-io: commons-io: jar: 2.4

    [DEBUG]  Included: commons-lang: commons-lang: jar: 2.5

    [DEBUG]  Included: com.vmware.o11n:o11n - util:jar:6.0.2

    [DEBUG]  Included: org.bouncycastle:bcprov - jdk15on:jar:1.50

    [DEBUG]  Included: org.bouncycastle:bcpkix - jdk15on:jar:1.50

    [DEBUG]  Included: com.rubiconproject.oss:jchronic:jar:0.2.6

    [DEBUG]  Included: net.sf.ehcache:ehcache - base: jar: 2.6.2

    [DEBUG]  Included: ognl:ognl:jar:2.6.9

    [DEBUG]  Included: org.codehaus.woodstox:stax2 - api: jar: 3.0.1

    [DEBUG]  Included: stax:stax - api: jar: 1.0.1

    [DEBUG]  Included: org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5

    [DEBUG]  Included: org.slf4j:slf4j - api: jar: 1.6.6

    [DEBUG]  Included: org.slf4j:slf4j - log4j12:jar:1.6.6

    [DEBUG]  Included: Commons-codec: commons-codec: jar: 1.8

    [DEBUG]  Included: org.apache.httpcomponents:httpclient:jar:4.3.5

    [DEBUG]  Included: Commons-Logging: commons-logging: jar: 1.1.1

    [DEBUG]  Included: org.apache.httpcomponents:httpcore:jar:4.3.2

    [DEBUG]  Included: com.vmware.o11n:o11n - model: jar: 6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - security: jar: 6.0.2

    [DEBUG]  Included: org.springframework:spring - context: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - aop:jar:4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - expression: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework.security:spring - security-core: jar: 3.2.3.RELEASE

    [DEBUG]  Included: aopalliance:aopalliance:jar:1.0

    [DEBUG]  Included: antlr:antlr:jar:2.7.6

    [DEBUG]  Included: org.springframework:spring - web: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - beans: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - base: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1

    [DEBUG]  Included: com.vmware.o11n:o11n - modelejb-client: jar: 6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2

    [DEBUG]  Included: org.mozilla:rhino:jar:1.7R4

    [DEBUG]  Included: commons-collections: commons-collections: jar: 3.2.1

    [DEBUG]  Included: com.vmware.o11n:o11n - j2eeutil:jar:6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - sdkapi:jar:6.0.2

    [DEBUG]  Included: org.hornetq:hornetq - jms-client: pot: 2.2.5.Final

    [DEBUG]  Included: org.hornetq:hornetq - basic-client: pot: 2.2.5.Final

    [DEBUG]  Included: org.jboss.netty:netty:jar:3.2.5.Final

    [DEBUG] Kingdoms of extension for the test project: o11nplugin-test-package: package: 1.0.0 - SNAPSHOT: [ClassRealm [extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2, parent: sun.misc.Launcher$AppClassLoader@6d6f6e28]]

    [DEBUG] Created the new project of Kingdom of classes > test: o11nplugin-test-package: 1.0.0 - SNAPSHOT

    [DEBUG] Kingdom of settlement project classes > test: o11nplugin-test-package: 1.0.0 - SNAPSHOT

    [DEBUG] Looking for ClassRealm package wrapping cycle mappings [project > test: o11nplugin-test-package: 1.0.0 - SNAPSHOT, parent: ClassRealm [maven.api, parent: null]]

    [DEBUG] Kingdoms of extension for the test project: test: pom: 1.0.0 - SNAPSHOT: (none)

    [DEBUG] Rising maps of cycle for pom in packaging of ClassRealm [plexus.core, parent: null]

    [DEBUG] Fix the plugin version for org.apache.maven.plugins:maven - install-plugin

    [DEBUG] Found no metadata org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml in local (/ Users/tperry/.m2/repository)

    [DEBUG] unable to find org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml in https://xxx.xx.com:8281 / vco-repo has been cached in the local repository, resolution will not be returned until added by archetype update interval is elapsed or are forced to update

    [DEBUG] Query remote ignored for the org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml metadata updates cached locally.

    Resolved [DEBUG] version of the plugin for org.apache.maven.plugins:maven - install-plugin repository 2.5.2 (https://repo.maven.apache.org/maven2, by default, releases)

    [DEBUG] Fix the plugin version for org.apache.maven.plugins:maven - deploy-plugin

    [DEBUG] Found no metadata org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml in local (/ Users/tperry/.m2/repository)

    [DEBUG] unable to find org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml in https://xxx.xx.com:8281 / vco-repo has been cached in the local repository, resolution will not be returned until added by archetype update interval is elapsed or are forced to update

    [DEBUG] Query remote ignored for the org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml metadata updates cached locally.

    Resolved [DEBUG] version of the plugin for org.apache.maven.plugins:maven - deploy-plugin for 2.8.2 of the repository (https://repo.maven.apache.org/maven2, by default, releases)

    [DEBUG] Adjust the plugin version of compiler - org.apache.maven.plugins:maven - plugin

    [DEBUG] Found no metadata org.apache.maven.plugins:maven-compiler-plugin/maven-metadata.xml in local (/ Users/tperry/.m2/repository)

    [DEBUG] unable to find org.apache.maven.plugins:maven-compiler-plugin/maven-metadata.xml in https://xxx.xx.com:8281 / vco-repo has been cached in the local repository, resolution will not be returned until added by archetype update interval is elapsed or are forced to update

    [DEBUG] Query remote ignored for the org.apache.maven.plugins:maven-compiler-plugin/maven-metadata.xml metadata updates cached locally.

    Resolved [DEBUG] version of the plugin for org.apache.maven.plugins:maven - compiler-plugin repository 3.3 (https://repo.maven.apache.org/maven2, by default, releases)

    [DEBUG] Adjust the plugin prefix o11n-package of [org.apache.maven.plugins, org.codehaus.mojo]

    [DEBUG] Plugin solved prefix o11n-package com.vmware.o11n.mojo.pkg:maven - o11n-package-plugin POM test: o11nplugin-test-package: package: 1.0.0 - SNAPSHOT

    [DEBUG] = REACTOR MANUFACTURING PLAN =.

    [DEBUG] Project: test: o11nplugin-test-package: package: 1.0.0 - SNAPSHOT

    [DEBUG] Tasks: [o11n-package: import-package]

    [DEBUG] Style: aggregation

    [DEBUG] =======================================================================

    [INFO]

    [INFO] ------------------------------------------------------------------------

    [INFO] Building o11nplugin-test-package 1.0.0 - SNAPSHOT

    [INFO] ------------------------------------------------------------------------

    [DEBUG] Adjust the plugin prefix o11n-package of [org.apache.maven.plugins, org.codehaus.mojo]

    [DEBUG] Plugin solved prefix o11n-package com.vmware.o11n.mojo.pkg:maven - o11n-package-plugin POM test: o11nplugin-test-package: package: 1.0.0 - SNAPSHOT

    [DEBUG] Default life cycle - > [validate, initiate, generate-sources, process-sources, generate resources, resources process, compiling, process-classes, generate-test-sources, process-test-sources, generate-test-resources and process-test-resources, test-compile, process-test-classes, test, prepare package, package, pre-integration-test, integration test, post-integration-test, check, install, deploy]

    [DEBUG] Own lifecycle-> [pre clean, clean, clean post]

    [DEBUG] Life cycle of the site-> [prior to the site, site, site of the post and deploy site]

    [DEBUG] = GENERATION OF PROJECT PLAN.

    [DEBUG] Project: test: o11nplugin-test-package: 1.0.0 - SNAPSHOT

    [DEBUG] [Addictions (to collect):]

    [DEBUG] [Dependencies (resolve):]

    [DEBUG] repositories (dependencies): [added by archetype (https://xxx.xx.com:8281 / vco-repo, by default, the versions + snapshots), Central (https://repo.maven.apache.org/maven2, by default, release)]

    [DEBUG] repositories (plugins): [added by archetype (https://xxx.xx.com:8281 / vco-repo, by default, the versions + snapshots), Central (https://repo.maven.apache.org/maven2, by default, release)]

    [DEBUG] -----------------------------------------------------------------------

    [DEBUG] Objective: com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package (by default-cli)

    [DEBUG] Style: regular

    [DEBUG] Configuration: <? XML version = "1.0" encoding = "UTF-8"? >

    < configuration >

    < allPackages-default = "false" >$ {allPackages} < / allPackages >

    < exportHistory-default = "true" >$ {exportHistory} < / exportHistory >

    < ignoreServerCertificate-default = "true" >$ {ignoreServerCertificate} < / ignoreServerCertificate >

    org.company.myPackage < packageName > < / packageName >

    < project >$ {project} < / project >

    < projectName-default = "${project.artifactId}" >$ {projectName} < / ProjectName >

    < ServerURI >$ {ServerURI} < / serverUrl >

    < targetDirectory >$ {basedir} < / targetDirectory >

    < / configuration >

    [DEBUG] =======================================================================

    [INFO]

    [Info]---Maven-o11n-Paquet-plugin:6.0.2:import-Paquet (by default-cli) @ o11nplugin-test-package-

    [DEBUG] Statistics collection of dependency: {ConflictMarker.analyzeTime = 0, ConflictMarker.markTime = 1, ConflictMarker.nodeCount = 211, ConflictIdSorter.graphTime = 0, ConflictIdSorter.topsortTime = 0, ConflictIdSorter.conflictIdCount = 63, ConflictIdSorter.conflictIdCycleCount = 0, ConflictResolver.totalTime = 2, ConflictResolver.conflictItemCount = 145, DefaultDependencyCollector.collectTime = 14, DefaultDependencyCollector.transformTime = 3}

    [DEBUG] com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2:

    [DEBUG] com.vmware.o11n.tool:o11ntool - internal: pot: 6.0.2: compile

    [DEBUG] dom4j:dom4j:jar:1.6.1: compile

    [DEBUG] xml - apis: xml - apis: jar: 1.0.b2: compile

    [DEBUG] org.apache.maven:maven - plugin-api: jar: 2.0: compile

    [DEBUG] org.apache.maven:maven - project: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - settings: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - jar: profile: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - model: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - artifact-Manager: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - repository - metadata:jar:2.0.6: compile

    [DEBUG] org.apache.maven:maven - plugin-registry: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile

    [DEBUG] junit:junit:jar:4.11:test

    [DEBUG] org.hamcrest:hamcrest - core: jar: 1.3:test

    [DEBUG] classworlds:classworlds:jar:1.1 - alpha-2: compile

    [DEBUG] org.apache.maven:maven - artifact: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - archiver: pot: 2.2: compile

    [DEBUG] org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7: compile

    [DEBUG] org.codehaus.plexus:plexus - utils:jar:1.5.7: compile

    [DEBUG] org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2: compile

    [DEBUG] org.apache.maven:maven - monitor: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus - interpolation: pot: 1.6: compiles

    [DEBUG] org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1: compile

    [DEBUG] log4j:log4j:jar:1.2.17:runtime

    [DEBUG] commons-io: commons-io: pot: 2.4: compile

    [DEBUG] commons-lang: commons-lang: pot: 2.5: compile

    [DEBUG] com.vmware.o11n:o11n - util:jar:6.0.2: compile

    [DEBUG] org.bouncycastle:bcprov - jdk15on:jar:1.50: compile

    [DEBUG] org.bouncycastle:bcpkix - jdk15on:jar:1.50: compile

    [DEBUG] com.rubiconproject.oss:jchronic:jar:0.2.6: compile

    [DEBUG] net.sf.ehcache:ehcache - core: jar: 2.6.2: compile

    [DEBUG] ognl:ognl:jar:2.6.9: compile

    [DEBUG] org.codehaus.woodstox:stax2 - api: jar: 3.0.1: compile

    [DEBUG] stax:stax - api: jar: 1.0.1: compile

    [DEBUG] org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5: compile

    [DEBUG] org.slf4j:slf4j - api: jar: 1.6.6: compile

    [DEBUG] org.slf4j:slf4j - log4j12:jar:1.6.6: compile

    [DEBUG] Commons-codec: commons-codec: pot: 1.8: compile

    [DEBUG] org.apache.httpcomponents:httpclient:jar:4.3.5: compile

    [DEBUG] Commons-Logging: commons-logging: pot: 1.1.1: compile

    [DEBUG] org.apache.httpcomponents:httpcore:jar:4.3.2: compile

    [DEBUG] com.vmware.o11n:o11n - model: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - security: pot: 6.0.2: compile

    [DEBUG] org.springframework:spring - context: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - aop:jar:4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - expression: pot: 4.0.2.RELEASE: compile

    Org.springframework.Security:spring [DEBUG] - security-core: jar: 3.2.3.RELEASE: compile

    [DEBUG] aopalliance:aopalliance:jar:1.0: compile

    [DEBUG] antlr:antlr:jar:2.7.6: compile

    [DEBUG] org.springframework:spring - web: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - beans: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - core: jar: 4.0.2.RELEASE: compile

    [DEBUG] org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1: compile

    [DEBUG] com.vmware.o11n:o11n - modelejb-client: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2: compile

    [DEBUG] org.mozilla:rhino:jar:1.7R4: compile

    [DEBUG] commons-collections: commons-collections: pot: 3.2.1: compile

    [DEBUG] com.vmware.o11n:o11n - j2eeutil:jar:6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - sdkapi:jar:6.0.2: compile

    [DEBUG] org.hornetq:hornetq - jms-client: pot: 2.2.5.Final:runtime

    [DEBUG] org.hornetq:hornetq - client-core: jar: 2.2.5.Final:runtime

    [DEBUG] org.jboss.netty:netty:jar:3.2.5.Final:runtime

    [DEBUG] Created the new plugin of Kingdom of class > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG] Importation of foreign packages in the Kingdom plugin class > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]  Imported: < project > test: o11nplugin-test-package: 1.0.0 - SNAPSHOT

    [DEBUG] Filling of class Kingdom plugin > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]  Included: com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2

    [DEBUG]  Included: com.vmware.o11n.tool:o11ntool - inner: jar: 6.0.2

    [DEBUG]  Included: dom4j:dom4j:jar:1.6.1

    [DEBUG]  Included: xml - apis: xml - apis: jar: 1.0.b2

    [DEBUG]  Included: org.apache.maven:maven - archiver: jar: 2.2

    [DEBUG]  Included: org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7

    [DEBUG]  Included: org.codehaus.plexus:plexus - utils:jar:1.5.7

    [DEBUG]  Included: org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2

    [DEBUG]  Included: org.codehaus.plexus:plexus - interpolation: jar: 1.6

    [DEBUG]  Included: org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1

    [DEBUG]  Included: log4j:log4j:jar:1.2.17

    [DEBUG]  Included: commons-io: commons-io: jar: 2.4

    [DEBUG]  Included: commons-lang: commons-lang: jar: 2.5

    [DEBUG]  Included: com.vmware.o11n:o11n - util:jar:6.0.2

    [DEBUG]  Included: org.bouncycastle:bcprov - jdk15on:jar:1.50

    [DEBUG]  Included: org.bouncycastle:bcpkix - jdk15on:jar:1.50

    [DEBUG]  Included: com.rubiconproject.oss:jchronic:jar:0.2.6

    [DEBUG]  Included: net.sf.ehcache:ehcache - base: jar: 2.6.2

    [DEBUG]  Included: ognl:ognl:jar:2.6.9

    [DEBUG]  Included: org.codehaus.woodstox:stax2 - api: jar: 3.0.1

    [DEBUG]  Included: stax:stax - api: jar: 1.0.1

    [DEBUG]  Included: org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5

    [DEBUG]  Included: org.slf4j:slf4j - api: jar: 1.6.6

    [DEBUG]  Included: org.slf4j:slf4j - log4j12:jar:1.6.6

    [DEBUG]  Included: Commons-codec: commons-codec: jar: 1.8

    [DEBUG]  Included: org.apache.httpcomponents:httpclient:jar:4.3.5

    [DEBUG]  Included: Commons-Logging: commons-logging: jar: 1.1.1

    [DEBUG]  Included: org.apache.httpcomponents:httpcore:jar:4.3.2

    [DEBUG]  Included: com.vmware.o11n:o11n - model: jar: 6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - security: jar: 6.0.2

    [DEBUG]  Included: org.springframework:spring - context: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - aop:jar:4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - expression: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework.security:spring - security-core: jar: 3.2.3.RELEASE

    [DEBUG]  Included: aopalliance:aopalliance:jar:1.0

    [DEBUG]  Included: antlr:antlr:jar:2.7.6

    [DEBUG]  Included: org.springframework:spring - web: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - beans: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - base: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1

    [DEBUG]  Included: com.vmware.o11n:o11n - modelejb-client: jar: 6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2

    [DEBUG]  Included: org.mozilla:rhino:jar:1.7R4

    [DEBUG]  Included: commons-collections: commons-collections: jar: 3.2.1

    [DEBUG]  Included: com.vmware.o11n:o11n - j2eeutil:jar:6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - sdkapi:jar:6.0.2

    [DEBUG]  Included: org.hornetq:hornetq - jms-client: pot: 2.2.5.Final

    [DEBUG]  Included: org.hornetq:hornetq - basic-client: pot: 2.2.5.Final

    [DEBUG]  Included: org.jboss.netty:netty:jar:3.2.5.Final

    [DEBUG]  Excluded: org.apache.maven:maven - plugin-api: jar: 2.0

    [DEBUG]  Excluded: org.apache.maven:maven - project: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - settings: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - view profile: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - model: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - artifact-Manager: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - repository - metadata:jar:2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - plugin-registry: jar: 2.0.6

    [DEBUG]  Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1

    [DEBUG]  Excluded: junit:junit:jar:4.11

    [DEBUG]  Excluded: org.hamcrest:hamcrest - core: jar: 1.3

    [DEBUG]  Excluded: classworlds:classworlds:jar:1.1 - alpha-2

    [DEBUG]  Excluded: org.apache.maven:maven - artifact: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - monitor: jar: 2.0.6

    [DEBUG] Configuration of mojo com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - Kingdom ClassRealm plugin package [plugin > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2, parent: sun.misc.Launcher$AppClassLoader@6d6f6e28]

    [DEBUG] Mojo configuration ' com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package "with base-> Configurator

    [DEBUG]  (f) allPackages = false

    [DEBUG]  (f) exportHistory = true

    [DEBUG]  (f) ignoreServerCertificate = true

    [DEBUG]  (f) packageName = org.company.mypackage

    [DEBUG]  (f) project = MavenProject: test: o11nplugin-test-package: 1.0.0 - SNAPSHOT @ /Users/tperry/development/java/test/o11nplugin-test-package/pom.xml

    [DEBUG]  (f) projectName = o11nplugin-test-package

    ServerUrl [DEBUG] (f) = vcoadmin: [email protected] : 8281

    [DEBUG]  (f) targetDirectory = / Users/tperry/development/java/test/o11nplugin-test-package

    [DEBUG] - configuration - end

    o11nplugin-test-package

    true

    [DEBUG] Connection to server VMO: xxx.xx.com:8281

    [DEBUG] Create Session

    log4j: WARN no appenders could be found for logger (org.apache.http.impl.conn.BasicClientConnectionManager).

    log4j: WARN Please initialize log4j correctly system.

    log4j: WARN see http://logging.Apache.org/log4j/1.2/FAQ.html#noconfig for more information.

    [DEBUG] Converter re record type: Array

    [DEBUG] Session created

    [DEBUG] Connected!

    [DEBUG] VMO server connection: success!

    org.Company.MyPackage

    [DEBUG] Disconnect from the server

    [INFO] ------------------------------------------------------------------------

    [INFO] BUILD FAILURE

    [INFO] ------------------------------------------------------------------------

    [INFO] Total time: 1,212 s

    [INFO] Finished in: 2015-06 - 23 T 15: 40:35 - 04:00

    [INFO] Final thesis: 13 M / 306 M

    [INFO] ------------------------------------------------------------------------

    [ERROR] cannot run the purpose com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package (by default-cli) on the o11nplugin-test-package project: could not import the package [org.company.mypackage] Server ' [vcoadmin:[email protected]: 8281]': could not access HTTP calling remote service to [https://xxx.xx.com:8281/vco/webremoting/vcofactory.service]; nested exception is org.apache.http.NoHttpResponseException: did not make a successful HTTP response: status code = 500, the status message assistance [Internal Server Error]-> [1]

    org.apache.maven.lifecycle.LifecycleExecutionException: cannot run the purpose com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package (by default-cli) on the o11nplugin-test-package project: could not import the package [org.company.mypackage] Server ' [vcoadmin:[email protected]: 8281]'

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:216)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)

    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)

    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)

    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)

    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:120)

    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:355)

    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:155)

    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:584)

    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:216)

    at org.apache.maven.cli.MavenCli.main(MavenCli.java:160)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:497)

    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)

    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)

    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)

    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)

    Caused by: org.apache.maven.plugin.MojoExecutionException: could not import the package [org.company.mypackage] Server ' [vcoadmin:[email protected]: 8281]'

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.importSinglePackage(ImportPackageMojo.java:194)

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.execute(ImportPackageMojo.java:144)

    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:132)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)

    ... 19 more

    Caused by: org.springframework.remoting.RemoteAccessException: could not access HTTP calling remote service to [https://xxx.xx.com:8281/vco/webremoting/vcofactory.service]; nested exception is org.apache.http.NoHttpResponseException: did not make a successful HTTP response: status code = 500, the status message = [Internal Server Error]

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.convertHttpInvokerAccessException(HttpInvokerClientInterceptor.java:216)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.invoke(HttpInvokerClientInterceptor.java:147)

    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)

    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:207)

    to com.sun.proxy. $Proxy22.invokeOperation (unknown Source)

    at com.vmware.o11n.model.support.proxy.RemoteHttpVSOFactoryInvocationHandler.doInvoke(RemoteHttpVSOFactoryInvocationHandler.java:186)

    at com.vmware.o11n.model.support.proxy.RemoteHttpVSOFactoryInvocationHandler.invoke(RemoteHttpVSOFactoryInvocationHandler.java:138)

    to com.sun.proxy. $Proxy23.getPackageContent (unknown Source)

    at ch.dunes.model.client.VSOFactoryClient.getPackageContent(VSOFactoryClient.java:2170)

    at ch.dunes.model.pkg.Package.loadContent(Package.java:234)

    at ch.dunes.model.pkg.impexp.LocalPackageFileManager.writePackage(LocalPackageFileManager.java:148)

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.importSinglePackage(ImportPackageMojo.java:189)

    ... more than 22

    Caused by: org.apache.http.NoHttpResponseException: did not make a successful HTTP response: status code = 500, the status message = [Internal Server Error]

    at org.springframework.remoting.httpinvoker.HttpComponentsHttpInvokerRequestExecutor.validateResponse(HttpComponentsHttpInvokerRequestExecutor.java:232)

    at org.springframework.remoting.httpinvoker.HttpComponentsHttpInvokerRequestExecutor.doExecuteRequest(HttpComponentsHttpInvokerRequestExecutor.java:148)

    at org.springframework.remoting.httpinvoker.AbstractHttpInvokerRequestExecutor.executeRequest(AbstractHttpInvokerRequestExecutor.java:138)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.executeRequest(HttpInvokerClientInterceptor.java:194)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.executeRequest(HttpInvokerClientInterceptor.java:176)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.invoke(HttpInvokerClientInterceptor.java:144)

    ... 32 more

    [ERROR]

    [ERROR]

    [ERROR] For more information about errors and possible solutions, please read the following articles:

    [ERROR] [help 1] http://cwiki.Apache.org/Confluence/display/Maven/MojoExecution

    I was on the same track here and after the explosion the war vco.war, adding in the slf4j-simple - file 1.6.6.jar in the directory WEB-INF/lib and re-Jouffroy, and restart the tomcat server, things work.  This looks like a BUG in the version 6.0.2 of vco, where they forgot to add in the file slf4j-simple - 1.6.6.jar.

    Thank you

    Tim

  • xsl: Copy - of output without linebreak

    Hello

    I have trouble with the copy element. If I try a fragment of exit node while the output is made with line breaks. How can I do this without breaks?

    XML:
    Hello World < MESSAGE > < USERCONTENT > < b101 > < / b101 > < line1 l100 > < / l100 > < / USERCONTENT > < / MESSAGE >

    XSL:
    <? XML version = "1.0"? >
    < xsl: stylesheet version = "1.0" xmlns: xsl = "http://www.w3.org/1999/XSL/Transform" >

    < xsl: output method = "xml" version = "1.0" / >

    < xsl: template match = "/" >
    < xsl: apply-templates / >
    < / xsl: template >

    < xsl: template match = "USERCONTENT" >
    < xsl: Copy - of select = "node ()" / >
    < / xsl: template >

    < / xsl: stylesheet >

    REAL POWER:
    Hello World < b101 > < / b101 >
    Line1 < l100 > < / l100 >

    THE OUTPUT TARGET:
    Hello World < b101 > < / b101 > < line1 l100 > < / l100 >


    Attack

    OK, wait... If you use the XMLType methods then it should behavior:

    http://docs.Oracle.com/CD/B19306_01/AppDev.102/b14259/xdb04cre.htm#i1024803

    Print results subject to the following rules:

    -SQL works never print.
    -XMLType methods (member functions) extract() and transform() always print.
    -All other methods of XMLType and PL/SQL functions in packages DBMS_XMLDOM and DBMS_XSLPROCESSOR print if the data is stored in object-relational; otherwise (CLOB storage), they do not print.

    Use the SQL XMLTransform function.

  • Not up to date Version 34 do not remain.

    I often have a dated version 33.0 at 34.0.But next day when I checked appear version 33.0.Why this trouble occurs.

    34 Firefox beta will not be released until 11-25.

    Firefox 33.0.3 is the version current output ; the "33" version 4th, broadcast since 14-10.

    There is no "update" live Firefox 33 to 34 Firefox beta. Once you are on a 'channel' you are on "channel" until you install the other version. And I never heard talk about Firefox jump to another version, unless the user had inadvertently installed versions and the shortcut on the Windows and Office "has achieved its crossed wires" he pointed the wrong executable file.

  • Installer exes built in several versions?

    I have an application which includes several executables that a Setup program is built in LabVIEW. The executables have been built in the same version of LabVIEW, but now I need (for reasons I will not go in) to build an installer to exe files built in different versions of LabVIEW. Anyone tried this? I guess I can just compile in different versions, paste the exe files in the spaces provided and start the installer build spec?

    You can include files you want in an Installer (so you can include the output of another version from another project), but remember that you need to also ensure that the correct version of the run LabVIEW is installed for each of them. If you are not including the runtime in your Setup program, then this isn't a problem, but something to keep in mind.

    You can also include other installers in your installer also - I think you might have an installer for each version of LV, which includes applications and the LVRT appropriate and then another installer which includes those.

    It can get tricky, but you should be able to make it work.

Maybe you are looking for

  • Satellite A30 generic fault

    Hello I have four Toshiba Satellite A30 in the workshop at the moment and all have the same defect. The machines are:1 - satellite Pro A302 - satellite A303 - satellite A30 9214 - satellite A30-931 All four machines behave as follows: Once the power

  • want to buy another camera

    Hello, I have a camera & want to get another. He has been very involved for me to set the camera, I have to go over there with a new camera or it will just walk in action with each other? If I get going, when I click on my camera as I do now, it will

  • How do CMOS screen?

    I press the botton F2 already and he had a password box, but I don't know any password I put in place for the BIOS. I am running Windows 7.

  • Mounting screws

    Hello, I recently bought an additional hard drive for my Studio XPS 8100 and would like to know if these are the screws I need to mount it. The hard drive came with no screws. These are the screws in question. Thank you in advance. http://www.TigerDi

  • BlackBerry smartphones I sent to my old storm to RIM refund back in April 2011, yet never received the cheque. Anyone know who I could contact.please?

    Hello guys, I sent my old storm RIM refund back in April 2011. They had a promotion: buy a new BlackBerry and sent back the old Blackberry for a maximum loan of $75.00 for the storm. I bought a flashlight with Telus. I never had the check. Anyone kno