Problems in pdk and jpdk samples?

Any known problems in the samples externalApp and iFame that comes with the latest PDK and JPDK?
I tried to install these samples by following exactly the steps in the installation html files. But, when trying to test the installation in the last step. The error messages showed up:
"Forbidden
You don't have permission to access /servlet/flightsprov on this server."
"Forbidden
You don't have permission to access
/servlet/iframe on this server."
By the way, there is no "externalApp.jar in the jpdk
Do I miss any thing? Are there walkaround?
null

This post is best suited to the Oracle Portal Development Kit (PDK) forum.
thanks

Similar Messages

  • Video Playback Problem with Developer Walkthrough of the Continuous Measurement and Logging Sample Project

    Hi!
    I have serious problems playing the video Developer Walkthrough of the Continuous Measurement and Logging Sample Project.
    As the video pauses every few seconds for buffering. I am not able to watch it. Just wanted to check if you can playback the video:
    http://zone.ni.com/wv/app/doc/p/id/wv-3401
    This happens on any browser (chrome, ie, firefox). I am using Win XP and the latest Adobe Flash Player. About 2 weeks ago NI Germany confirmed the problem and promised to contact NI USA as they are responsible for these videos. So far nothing happened. In the meantime I received an e-mail that the problem could not be confirmed although they had confirmed it before...
    Thank you for any feedback.
    Regards,
    Anguel

    Hello ctVolFan,
    As indicated in the "support" section of the SPOT, you should get in touch with self-paced-training(at)ni(dot)com.  I don't believe that team monitors these forums directly.
    Regards,
    Tom L.

  • JPDK Sample Provider compile error

    Hi
    I have installed 'OracleAS Containers for J2EE Pre-configured PDK', version 9.0.4.
    The Portlal tools are running fine, but the 'JPDK Sample Provider' fails with a compile error:
    500 Internal Server Error
    OracleJSP: oracle.jsp.provider.JspCompileException:
    Errors compiling:C:\pdk-container2\j2ee\home\application-deployments\jpdk\jpdk\persistence\_pages\_htdocs\_testpage\_TestPage.java.
    I have set the PART and JAVA_HOME environment to point to a jsdk:
    java -version
    java version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode).
    Any ideas???

    By setting the home, are you setting the JAVA_HOME to a proper JDK installation, and not to the JRE installation?
    thanks,
    Harsha

  • Problem with axis2 and Tomcat

    Hello,
    I am having a strange problem with Tomcat and axis. I have a webservice that uses axis2 for wsdl2java class generation. When I compile my project in maven a Test is performed. During the test a glassfish server is established and the project is deployed -everything work great with the expected results. However when I try to deploy the webservice on tomcat it has some problems.
    At first I tried to call axis code in a POST method that takes a MultiPart message. The code is as below:
    *@Path("identifyWavestream")*
    *@POST*
    *@Consumes(MediaType.MULTIPART_FORM_DATA)*
    *@Produces(MediaType.APPLICATION_XML)*
    *public String multipartTest(com.sun.jersey.multipart.MultiPart multiPart) throws Exception {* 
    *// get first body part (index 0)*
    *//tomcat shows that the first error is here (line 122 is the nest one with bodypart)*
    BodyPart bp = multiPart.getBodyParts().get(0);
    BodyPartEntity bodyPartEntity = (BodyPartEntity) bp.getEntity();
    InputStream stream = bodyPartEntity.getInputStream();
    *//the rest of the code either saves the incoming file or implements the wsdl2java axis interface - neither works.*
    And the tomcat error is:
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
    java.util.ArrayList.RangeCheck(Unknown Source)
    java.util.ArrayList.get(Unknown Source)
    com.webserv.rest.resources.SearchResource.test.multipartTest(SearchResource.java:122)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    java.lang.reflect.Method.invoke(Unknown Source)
    com.sun.jersey.server.impl.model.method.dispatch.EntityParamDispatchProvider$TypeOutInvoker._dispatch(EntityParamDispatchProvider.java:138)
    com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:67)
    com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:124)
    com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:111)
    com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:71)
    com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:111)
    com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:63)
    com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:555)
    com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:514)
    com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:505)
    com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:359)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    It was strange to me since this simple approach of handling a Multipart method worked for me earlier. Then I decided skip the handling of multipart method and just call the axis code. But the results also caused an error. I then tried to call the axis code in a simple @GET method (to cross out any issues regarding the multipart) and the result where the same. Again everything works on the maven- glassfish test. In this case the tomcat error is the following:
    javax.servlet.ServletException: java.lang.NoSuchMethodError: org.apache.commons.httpclient.HttpConnectionManager.getParams()Lorg/apache/commons/httpclient/params/HttpConnectionManagerParams;
    com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:361)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    root cause
    com.sun.jersey.api.container.MappableContainerException: java.lang.NoSuchMethodError: org.apache.commons.httpclient.HttpConnectionManager.getParams()Lorg/apache/commons/httpclient/params/HttpConnectionManagerParams;
    com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:74)
    com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:124)
    com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:111)
    com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:71)
    com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:111)
    com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:63)
    com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:555)
    com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:514)
    com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:505)
    com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:359)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    root cause
    java.lang.NoSuchMethodError: org.apache.commons.httpclient.HttpConnectionManager.getParams()Lorg/apache/commons/httpclient/params/HttpConnectionManagerParams;
    org.apache.axis2.transport.http.AbstractHTTPSender.initializeTimeouts(AbstractHTTPSender.java:454)
    org.apache.axis2.transport.http.AbstractHTTPSender.getHttpClient(AbstractHTTPSender.java:514)
    org.apache.axis2.transport.http.HTTPSender.sendViaPost(HTTPSender.java:156)
    org.apache.axis2.transport.http.HTTPSender.send(HTTPSender.java:75)
    org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:371)
    org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:209)
    org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:448)
    org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:401)
    org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:228)
    org.apache.axis2.client.OperationClient.execute(OperationClient.java:163)
    com.webserv.rest.webapp.IntSoapServiceStub.getServerData(IntSoapServiceStub.java:2447)
    com.webserv..rest.resources.AIntSoapImpl.getServerData(AIntSoapImpl.java:112)
    com.webserv..rest.resources.SearchResource.test.pingTest(SearchResource.java:167)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    java.lang.reflect.Method.invoke(Unknown Source)
    com.sun.jersey.server.impl.model.method.dispatch.EntityParamDispatchProvider$TypeOutInvoker._dispatch(EntityParamDispatchProvider.java:138)
    com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:67)
    com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:124)
    com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:111)
    com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:71)
    com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:111)
    com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:63)
    com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:555)
    com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:514)
    com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:505)
    com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:359)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    I think it is also a good ide to post the pom.xml file :
    Edited by: 803864 on 2010-10-21 00:30

    I think it is also a good ide to post the pom.xml file:
    +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"+
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    +<modelVersion>4.0.0</modelVersion>+
    +<groupId>com.myProjects</groupId>+
    +<artifactId>audioid-rest-interface</artifactId>+
    +<packaging>war</packaging>+
    +<name>AudioID Rest Interface</name>+
    +<version>0.1</version>+
    +<dependencies>+
    +<!--+
    +<dependency>+
    +<groupId>com.sun.tools.xjc.maven2</groupId>+
    +<artifactId>maven-jaxb-plugin</artifactId>+
    +<version>1.1</version>+
    +<scope>test</scope>+
    +</dependency>+
    +<dependency>+
    +<groupId>com.sun.jersey</groupId>+
    +<artifactId>jersey-client</artifactId>+
    +<version>1.0.1</version>+
    +</dependency>+
    +<dependency>+
    +<groupId>com.sun.jersey.contribs</groupId>+
    +<artifactId>jersey-multipart</artifactId>+
    +<version>1.0.1</version>+
    +</dependency>+
    +<dependency>+
    +<groupId>com.sun.grizzly</groupId>+
    +<artifactId>grizzly-servlet-webserver</artifactId>+
    +<version>1.9.0</version>+
    +<scope>test</scope>+
    +</dependency>-->+
    +<dependency>+
    +<groupId>com.sun.jersey.contribs</groupId>+
    +<artifactId>jersey-multipart</artifactId>+
    +<version>1.0.1</version>+
    +</dependency>+
    +<dependency>+
    +<groupId>com.sun.jersey</groupId>+
    +<artifactId>jersey-client</artifactId>+
    +<version>1.0.1</version>+
    +</dependency>+
    +<dependency>+
    +<groupId>com.sun.jersey</groupId>+
    +<artifactId>jersey-bundle</artifactId>+
    +<version>1.0.1</version>+
    +</dependency>+
    +<dependency>+
    +<groupId>commons-logging</groupId>+
    +<artifactId>commons-logging</artifactId>+
    +<version>1.0.4</version>+
    +</dependency>+
    +<dependency>+
    +<groupId>commons-collections</groupId>+
    +<artifactId>commons-collections</artifactId>+
    +<version>3.1</version>+
    +</dependency>+
    +<dependency>+
    +<groupId>org.slf4j</groupId>+
    +<artifactId>slf4j-log4j12</artifactId>+
    +<version>1.5.6</version>+
    +</dependency>+
    +<dependency>+
    +<groupId>junit</groupId>+
    +<artifactId>junit</artifactId>+
    +<version>3.8.2</version>+
    +<scope>test</scope>+
    +</dependency>+
    +<dependency>+
    +<groupId>org.glassfish.distributions</groupId>+
    +<artifactId>web-all</artifactId>+
    +<version>10.0-build-20080430</version>+
    +<scope>test</scope>+
    +</dependency>+
    +<dependency>+
    +<groupId>org.glassfish.embedded</groupId>+
    +<artifactId>gf-embedded-api</artifactId>+
    +<version>1.0-alpha-4</version>+
    +<scope>test</scope>+
    +</dependency>+
    +<dependency>+
    +<groupId>com.sun.jersey</groupId>+
    +<artifactId>jersey-server</artifactId>+
    +<version>1.0.3.1</version>+
    +<scope>test</scope>+
    +</dependency>+
    +<dependency>+
    +<groupId>com.sun.jersey.contribs</groupId>+
    +<artifactId>maven-wadl-plugin</artifactId>+
    +<version>1.0.3.1</version>+
    +</dependency>+
    +<dependency>+
    +<groupId>org.hibernate</groupId>+
    +<artifactId>hibernate</artifactId>+
    +<version>3.2.5.ga</version>+
    +<exclusions>+
    +<exclusion>+
    +<groupId>javax.transaction</groupId>+
    +<artifactId>jta</artifactId>+
    +</exclusion>+
    +<exclusion>+
    +<groupId>cglib</groupId>+
    +<artifactId>cglib</artifactId>+
    +</exclusion>+
    +</exclusions>+
    +</dependency>+
    +<dependency>+
    +<groupId>org.apache.axis2</groupId>+
    +<artifactId>axis2</artifactId>+
    +<version>1.4.1</version>+
    +</dependency>+
    +<!-- <dependency> -->+
    +<dependency>+
    +<groupId>org.apache.axis2</groupId>+
    +<artifactId>axis2-aar-maven-plugin</artifactId>+
    +<version>1.4.1</version>+
    +<scope>test</scope>+
    +</dependency>+
    +<dependency>+
    +<groupId>org.apache.axis2</groupId>+
    +<artifactId>axis2-java2wsdl</artifactId>+
    +<version>1.4.1</version>+
    +<scope>test</scope>+
    +</dependency>+
    +<dependency>+
    +<groupId>org.apache.axis2</groupId>+
    +<artifactId>axis2-xmlbeans</artifactId>+
    +<version>1.4.1</version>+
    +</dependency>+
    +<!-- <dependency> -->+
    +<dependency>+
    +<groupId>com.sun.xml.bind</groupId>+
    +<artifactId>jaxb-impl</artifactId>+
    +<version>2.1.12</version>+
    +</dependency>+
    +<dependency>+
    +<groupId>cglib</groupId>+
    +<artifactId>cglib-nodep</artifactId>+
    +<version>2.1_3</version>+
    +</dependency>+
    +</dependencies>+
    +<build>+
    +<finalName>audioid-rest-interface</finalName>+
    +<plugins>+
    +<plugin>+
    +<!-- This class is just generated for wadl support!!! -->+
    +<!-- Take care that folder ../music-dna-core is existing -->+
    +<groupId>com.sun.tools.xjc.maven2</groupId>+
    +<artifactId>maven-jaxb-plugin</artifactId>+
    +<version>1.1</version>+
    +<executions>+
    +<execution>+
    +<phase>generate-sources</phase>+
    +<goals>+
    +<goal>generate</goal>+
    +</goals>+
    +</execution>+
    +</executions>+
    +<configuration>+
    +<generatePackage> com.webserv.wsparameters</generatePackage>+
    +<schemaDirectory>../audioid-rest-interface/src/main/resources+
    +</schemaDirectory>+
    +<includeSchemas>+
    +<includeSchema>**/*.xsd</includeSchema>+
    +</includeSchemas>+
    +<extension>true</extension>+
    +<strict>false</strict>+
    +<verbose>false</verbose>+
    +</configuration>+
    +</plugin>+
    +<plugin>+
    +<groupId>org.apache.maven.plugins</groupId>+
    +<artifactId>maven-javadoc-plugin</artifactId>+
    +<!-- <version>2.6</version> -->+
    +<executions>+
    +<execution>+
    +<goals>+
    +<goal>javadoc</goal>+
    +</goals>+
    +<phase>compile</phase>+
    +</execution>+
    +</executions>+
    +<configuration>+
    +<encoding>UTF-8</encoding>+
    +<verbose>false</verbose>+
    +<show>public</show>+
    +<subpackages> com.webserv.rest.rest.resources: com.webserv.rest.rest.commons: com.webserv.wsparameters+
    +</subpackages>+
    +<doclet>com.sun.jersey.wadl.resourcedoc.ResourceDoclet</doclet>+
    +<docletPath>${path.separator}${project.build.outputDirectory}+
    +</docletPath>+
    +<docletArtifacts>+
    +<docletArtifact>+
    +<groupId>com.sun.jersey.contribs</groupId>+
    +<artifactId>wadl-resourcedoc-doclet</artifactId>+
    +<version>1.0.3.1</version>+
    +</docletArtifact>+
    +<docletArtifact>+
    +<groupId>com.sun.jersey</groupId>+
    +<artifactId>jersey-server</artifactId>+
    +<version>1.0.3.1</version>+
    +</docletArtifact>+
    +<docletArtifact>+
    +<groupId>xerces</groupId>+
    +<artifactId>xercesImpl</artifactId>+
    +<version>2.6.1</version>+
    +</docletArtifact>+
    +</docletArtifacts>+
    +<additionalparam>-output+
    +${project.build.outputDirectory}/resourcedoc.xml</additionalparam>+
    +<useStandardDocletOptions>false</useStandardDocletOptions>+
    +</configuration>+
    +</plugin>+
    +<plugin>+
    +<groupId>com.sun.jersey.contribs</groupId>+
    +<artifactId>maven-wadl-plugin</artifactId>+
    +<version>1.0.3.1</version>+
    +<executions>+
    +<execution>+
    +<id>generate</id>+
    +<goals>+
    +<goal>generate</goal>+
    +</goals>+
    +<phase>compile</phase>+
    +</execution>+
    +</executions>+
    +<configuration>+
    +<wadlFile>${project.build.outputDirectory}/application.wadl+
    +</wadlFile>+
    +<formatWadlFile>true</formatWadlFile>+
    +<baseUri>http://192.168.2.149:8080/${project.build.finalName}+
    +</baseUri>+
    +<packagesResourceConfig>+
    +<param> com.webserv.rest.resources</param>+
    +</packagesResourceConfig>+
    +<wadlGenerators>+
    +<wadlGeneratorDescription>+
    +<className>com.sun.jersey.server.wadl.generators.WadlGeneratorApplicationDoc+
    +</className>+
    +<properties>+
    +<property>+
    +<name>applicationDocsFile</name>+
    +<value>${basedir}/src/main/doc/application-doc.xml</value>+
    +</property>+
    +</properties>+
    +</wadlGeneratorDescription>+
    +<wadlGeneratorDescription>+
    +<className>com.sun.jersey.server.wadl.generators.WadlGeneratorGrammarsSupport+
    +</className>+
    +<properties>+
    +<property>+
    +<name>grammarsFile</name>+
    +<value>${basedir}/src/main/doc/application-grammars.xml</value>+
    +</property>+
    +</properties>+
    +</wadlGeneratorDescription>+
    +<wadlGeneratorDescription>+
    +<className>com.sun.jersey.server.wadl.generators.resourcedoc.WadlGeneratorResourceDocSupport+
    +</className>+
    +<properties>+
    +<property>+
    +<name>resourceDocFile</name>+
    +<value>${project.build.outputDirectory}/resourcedoc.xml</value>+
    +</property>+
    +</properties>+
    +</wadlGeneratorDescription>+
    +</wadlGenerators>+
    +</configuration>+
    +</plugin>+
    +<plugin>+
    +<groupId>org.codehaus.mojo</groupId>+
    +<artifactId>exec-maven-plugin</artifactId>+
    +<version>1.1</version>+
    +<executions>+
    +<execution>+
    +<goals>+
    +<goal>java</goal>+
    +</goals>+
    +</execution>+
    +</executions>+
    +<configuration>+
    +<mainClass>com.sun.jersey.samples.generatewadl.Main</mainClass>+
    +</configuration>+
    +</plugin>+
    +<plugin>+
    +<groupId>org.apache.maven.plugins</groupId>+
    +<artifactId>maven-compiler-plugin</artifactId>+
    +<inherited>true</inherited>+
    +<configuration>+
    +<source>1.5</source>+
    +<target>1.5</target>+
    +<!--+
    exclude temporary types that are only needed for wadl and doc
    generation
    -->
    +<!--+
    +<excludes> <exclude>com/webserv/types/temporary/**</exclude>+
    +<exclude>com/webserv/rest/commons/Examples.java</exclude>+
    +</excludes>+
    -->
    +</configuration>+
    +</plugin>+
    +<plugin>+
    +<groupId>org.jvnet.jaxb2.maven2</groupId>+
    +<artifactId>maven-jaxb2-plugin</artifactId>+
    +<executions>+
    +<execution>+
    +<goals>+
    +<goal>generate</goal>+
    +</goals>+
    +</execution>+
    +</executions>+
    +</plugin>+
    +<plugin>+
    +<groupId>org.apache.axis2</groupId>+
    +<artifactId>axis2-wsdl2code-maven-plugin</artifactId>+
    +<version>1.4.1</version>+
    +<executions>+
    +<execution>+
    +<id>generate reco core</id>+
    +<goals>+
    +<goal>wsdl2code</goal>+
    +</goals>+
    +<configuration>+
    +<packageName>com.webserv.rest.webapp</packageName>+
    +<wsdlFile>src/main/java/com/webserv/wsdl/web.wsdl</wsdlFile>+
    +<databindingName>adb</databindingName>+
    +</configuration>+
    +</execution>+
    +</executions>+
    +</plugin>+
    +<plugin>+
    +<groupId>com.sun.tools.xjc.maven2</groupId>+
    +<artifactId>maven-jaxb-plugin</artifactId>+
    +<version>1.1</version>+
    +<executions>+
    +<execution>+
    +<goals>+
    +<goal>generate</goal>+
    +</goals>+
    +</execution>+
    +</executions>+
    +<configuration>+
    +<generatePackage>com.webserv.wsparameters</generatePackage>+
    +<schemaDirectory>src/main/xsd</schemaDirectory> <includeSchemas>+
    +<includeSchema>**/*.xsd</includeSchema> </includeSchemas>+
    +<extension>true</extension>+
    +<strict>false</strict>+
    +<verbose>true</verbose>+
    +</configuration>+
    +</plugin>+
    +</plugins>+
    +</build>+
    +<profiles>+
    +<profile>+
    +<id>jdk-1.5</id>+
    +<activation>+
    +<jdk>1.5</jdk>+
    +</activation>+
    +<dependencies>+
    +<dependency>+
    +<groupId>com.sun.xml.bind</groupId>+
    +<artifactId>jaxb-impl</artifactId>+
    +<version>2.1.10</version>+
    +</dependency>+
    +</dependencies>+
    +<build>+
    +<plugins>+
    +<plugin>+
    +<groupId>org.apache.maven.plugins</groupId>+
    +<artifactId>maven-javadoc-plugin</artifactId>+
    +<configuration>+
    +<docletArtifacts>+
    +<docletArtifact>+
    +<groupId>com.sun.jersey.contribs</groupId>+
    +<artifactId>maven-wadl-plugin</artifactId>+
    +<version>1.0.3.1</version>+
    +</docletArtifact>+
    +<docletArtifact>+
    +<groupId>com.sun.jersey.contribs</groupId>+
    +<artifactId>wadl-resourcedoc-doclet</artifactId>+
    +<version>1.0.3.1</version>+
    +</docletArtifact>+
    +<docletArtifact>+
    +<groupId>com.sun.jersey</groupId>+
    +<artifactId>jersey-server</artifactId>+
    +<version>1.0.3.1</version>+
    +</docletArtifact>+
    +<docletArtifact>+
    +<groupId>xerces</groupId>+
    +<artifactId>xercesImpl</artifactId>+
    +<version>2.6.1</version>+
    +</docletArtifact>+
    +<docletArtifact>+
    +<groupId>javax.xml.bind</groupId>+
    +<artifactId>jaxb-api</artifactId>+
    +<version>2.1</version>+
    +</docletArtifact>+
    +<docletArtifact>+
    +<groupId>javax.xml</groupId>+
    +<artifactId>jaxb-impl</artifactId>+
    +<version>2.1</version>+
    +</docletArtifact>+
    +<docletArtifact>+
    +<groupId>javax.activation</groupId>+
    +<artifactId>activation</artifactId>+
    +<version>1.1</version>+
    +</docletArtifact>+
    +<docletArtifact>+
    +<groupId>javax.xml.stream</groupId>+
    +<artifactId>stax-api</artifactId>+
    +<version>1.0</version>+
    +</docletArtifact>+
    +</docletArtifacts>+
    +</configuration>+
    +</plugin>+
    +</plugins>+
    +</build>+
    +</profile>+
    +<profile>+
    +<id>xsltproc</id>+
    +<activation>+
    +<file>+
    +<exists>../xsltproc_win32/xsltproc.exe</exists>+
    +</file>+
    +</activation>+
    +<build>+
    +<plugins>+
    +<!-- Create/generate the application.html using xsltproc -->+
    +<!-- Create/generate the application.html using xsltproc -->+
    +<plugin>+
    +<groupId>org.codehaus.mojo</groupId>+
    +<artifactId>exec-maven-plugin</artifactId>+
    +<version>1.1</version>+
    +<executions>+
    +<execution>+
    +<id>copy-docs-to-builddir</id>+
    +<goals>+
    +<goal>exec</goal>+
    +</goals>+
    +<phase>compile</phase>+
    +<configuration>+
    +<executable>copy</executable>+
    +<commandlineArgs>src\\main\\doc\\*.* target\\classes+
    +</commandlineArgs>+
    +</configuration>+
    +</execution>+
    +<execution>+
    +<id>prepare-xsltproc</id>+
    +<goals>+
    +<goal>exec</goal>+
    +</goals>+
    +<phase>package</phase>+
    +<configuration>+
    +<executable>copy</executable>+
    +<commandlineArgs>..\\audioid-rest-interface\\src\\main\\resources\\*.xsd+
    target\\classes</commandlineArgs>
    +</configuration>+
    +</execution>+
    +<execution>+
    +<id>exec-xsltproc: target/application.html</id>+
    +<goals>+
    +<goal>exec</goal>+
    +</goals>+
    +<phase>package</phase>+
    +<configuration>+
    +<!--<executable>xsltproc</executable>-->+
    +<executable>../xsltproc_win32/xsltproc.exe</executable>+
    +<commandlineArgs>-o target/application.html+
    src/main/doc/wadl_documentation.xsl
    target/classes/application.wadl</commandlineArgs>
    +</configuration>+
    +</execution>+
    +</executions>+
    +</plugin>+
    +</plugins>+
    +</build>+
    +</profile>+
    +</profiles>+
    +<pluginRepositories>+
    +<pluginRepository>+
    +<id>maven2-repository.dev.java.net</id>+
    +<name>Java.net Repository for Maven</name>+
    +<url>http://download.java.net/maven/2/</url>+
    +<layout>default</layout>+
    +</pluginRepository>+
    +<pluginRepository>+
    +<id>maven-repository.dev.java.net</id>+
    +<name>Java.net Maven 1 Repository (legacy)</name>+
    +<url>http://download.java.net/maven/1</url>+
    +<layout>legacy</layout>+
    +</pluginRepository>+
    +</pluginRepositories>+
    +<repositories>+
    +<repository>+
    +<id>maven2-repository.dev.java.net</id>+
    +<name>Java.net Repository for Maven</name>+
    +<url>http://download.java.net/maven/2/</url>+
    +<layout>default</layout>+
    +</repository>+
    +<repository>+
    +<id>maven-repository.dev.java.net</id>+
    +<name>Java.net Maven 1 Repository (legacy)</name>+
    +<url>http://download.java.net/maven/1</url>+
    +<layout>legacy</layout>+
    +</repository>+
    +<repository>+
    +<id>glassfish-repository</id>+
    +<name>Java.net Repository for Glassfish</name>+
    +<url>http://download.java.net/maven/glassfish</url>+
    +</repository>+
    +</repositories>+
    +</project>+
    Can anyonr contribute?

  • Unable to run XPSDrv Driver and Filter Sample

    Hello
    I'm facing to a problem with XPSDrv Driver and Filter Sample on my Windows 7 x64 machine
    I installed Visual Studio Ultimate 2013
    I installed WDK 8.1
    I installed WDK 8.1 Test Pack
    I installed everything from this
    site and I think that's all what I need for building the sample.
    Next I downloaded XPSDrv Driver and Filter Sample from
    http://code.msdn.microsoft.com/windowshardware/XPSDrv-Driver-and-Filter-980d24bc (btw. there is a step-by-step tutorial how to build the sample)
    1. Open the solution file in Visual Studio 2013 (I opened solution C++\XPSDrvSmpl.sln)
    2. Add all non-binary files (usually located in the \install directory of the sample) to the Package project
         a. In the Solution Explorer, right click
    Driver Files (HERE IS THE PROBLEM, WHAT IS DRIVER FILES ??? SEE PICTURE BELOW)
         b. Select Add, then click Existing Item
         c. Navigate to the location to which you downloaded the sample, and select all the files in the install directory, or the equivalent set of non-binary files such as INFs, INIs, GPD, PPD files, etc.
         d. Click Add
    Look at the picture how does my solution look like:
    Can anybody tell me what I'm doing wrong?
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

    So after I add the InstallPackage, I added all the files in the install folder to the driver files. Than I added all the files of the install folder to the package files in the properties of the driver package. I also added all the dlls of the sample to
    the package files. Then I edited the inf file:
    Change DriverVer to a new date,because the old one is not working.
    And this under the driverver:
    CatalogFile=xdsmpl.cat
    Add this to each Microsoft.xx sections: {GUID}
    Should look like this:
    [Microsoft.NTx86]
    "XPSDrv Sample Driver" = INSTALL_XDSMPL_FILTERS_PRE_VISTA,{GUID}
    [Microsoft.NTia64]
    "XPSDrv Sample Driver" = INSTALL_XDSMPL_FILTERS_PRE_VISTA,{GUID}
    Change the location of the dlls under SourceDisksFiles to 1 or leave it to 2 if you have subfolders for architecures.
    So my inf looks like that:
    ; Copyright (c) 2005 Microsoft Corporation
    ; All rights reserved.
    ; THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
    ; ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
    ; THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
    ; PARTICULAR PURPOSE.
    ; File Name:
    ; xdsmpl.inf
    ; Abstract:
    ; XPSDrv sample driver install file
    [Version]
    Signature="$Windows NT$"
    Provider=%MS%
    ClassGUID={4D36E979-E325-11CE-BFC1-08002BE10318}
    Class=Printer
    DriverVer=09/19/2013,6.0.1.0
    CatalogFile=xdsmpl.cat
    [Manufacturer]
    %Microsoft%=Microsoft,NTx86,NTia64,NTamd64,NTx86.6.0,NTia64.6.0,NTamd64.6.0
    [Microsoft.NTx86]
    "XPSDrv Sample Driver" = INSTALL_XDSMPL_FILTERS_PRE_VISTA,{GUID}
    [Microsoft.NTia64]
    "XPSDrv Sample Driver" = INSTALL_XDSMPL_FILTERS_PRE_VISTA,{GUID}
    [Microsoft.NTamd64]
    "XPSDrv Sample Driver" = INSTALL_XDSMPL_FILTERS_PRE_VISTA,{GUID}
    [Microsoft.NTx86.6.0]
    "XPSDrv Sample Driver" = INSTALL_XDSMPL_FILTERS_VISTA,{GUID}
    [Microsoft.NTia64.6.0]
    "XPSDrv Sample Driver" = INSTALL_XDSMPL_FILTERS_VISTA,{GUID}
    [Microsoft.NTamd64.6.0]
    "XPSDrv Sample Driver" = INSTALL_XDSMPL_FILTERS_VISTA,{GUID}
    [INSTALL_XDSMPL_FILTERS_PRE_VISTA]
    CopyFiles=XPSDrvSample,ConfigPlugin,COLORPROFILES
    DriverFile=mxdwdrv.dll
    PrintProcessor="MS_XPS,filterpipelineprintproc.dll"
    ConfigFile=UniDrvUI.dll
    HelpFile=UniDrv.HLP
    DataFile=XDSmpl.GPD
    Include=NTPRINT.INF, MSXPSDRV.INF
    Needs=UNIDRV.OEM, XPSGPD.OEM, XPSDRV.OEM
    [INSTALL_XDSMPL_FILTERS_VISTA]
    CopyFiles=XPSDrvSample,ConfigPlugin,COLORPROFILES
    DriverFile=mxdwdrv.dll
    ConfigFile=UniDrvUI.dll
    HelpFile=UniDrv.HLP
    DataFile=XDSmpl.GPD
    ICMProfiles=xdwscRGB.icc
    CoreDriverSections="{D20EA372-DD35-4950-9ED8-A6335AFE79F0},UNIDRV.OEM", "{D20EA372-DD35-4950-9ED8-A6335AFE79F5},XPSDRV.OEM,XPSGPD.OEM"
    [PrinterPackageInstallation.x86]
    PackageAware=TRUE
    CoreDriverDependencies={D20EA372-DD35-4950-9ED8-A6335AFE79F0}, {D20EA372-DD35-4950-9ED8-A6335AFE79F5}
    [PrinterPackageInstallation.amd64]
    PackageAware=TRUE
    CoreDriverDependencies={D20EA372-DD35-4950-9ED8-A6335AFE79F0}, {D20EA372-DD35-4950-9ED8-A6335AFE79F5}
    [PrinterPackageInstallation.ia64]
    PackageAware=TRUE
    CoreDriverDependencies={D20EA372-DD35-4950-9ED8-A6335AFE79F0}, {D20EA372-DD35-4950-9ED8-A6335AFE79F5}
    [DestinationDirs]
    DefaultDestDir=66000
    COLORPROFILES=66003
    [COLORPROFILES]
    xdwscRGB.icc
    xdCMYKPrinter.icc
    [ConfigPlugin]
    XDSmpl.ini
    XDSmplUI.dll
    [XPSDrvSample]
    xdsmpl.gpd
    xdnames.gpd
    xdwmark.gpd
    xdbook.gpd
    xdcolman.gpd
    xdnup.gpd
    xdpgscl.gpd
    xdwmark.dll
    xdcolman.dll
    xdbook.dll
    xdnup.dll
    xdscale.dll
    xdsmpl-pipelineconfig.xml
    [SourceDisksNames.x86]
    1 = %Location%,,
    2 = %Location%,,,x86
    [SourceDisksNames.ia64]
    1 = %Location%,,
    2 = %Location%,,,ia64
    [SourceDisksNames.amd64]
    1 = %Location%,,
    2 = %Location%,,,amd64
    [SourceDisksFiles]
    xdsmpl.gpd = 1
    xdnames.gpd = 1
    xdwmark.gpd = 1
    xdbook.gpd = 1
    xdcolman.gpd = 1
    xdnup.gpd = 1
    xdpgscl.gpd = 1
    xdsmpl-pipelineconfig.xml = 1
    xdsmpl.ini = 1
    xdwscRGB.icc = 1
    xdCMYKPrinter.icc = 1
    xdwmark.dll = 1
    xdcolman.dll = 1
    xdbook.dll = 1
    xdnup.dll = 1
    xdsmplui.dll = 1
    xdscale.dll = 1
    [Strings]
    Location="XPSDrv Sample Driver Location"
    MS="Microsoft"
    Microsoft="Microsoft"

  • Error message trying to synchronise audio and midi sample rate 42463

    I have a Rode Podcaster mic that is terrific. It has been working fine in GB. suddenly I am getting this when I try to record my podcast:
    'Error message trying to synchronise audio and midi sample rate 42463 recognised. Check conflict between Garageband and external device'
    Has anyone experienced this before? How do I resolve it? I'm still using my Version 6.0.5.
    Apple, is this a way of forcing me to upgrade to V10?

    Just click the icon on each track that stops it acting as a live input. It looks like a sound wave. Only have them clicked orange when using the track to record! I don't know if that will solve your problem!

  • Error while trying to sync audio and MIDI, sample rate 39100 recognised??

    When I press record a message appears saying 'error while trying to syncronise audio and MIDI, sample rate 39100 recognised. Check conflict between garage band and external device. I'm using a Behringer UMC-202 interface. The inputs are selected as the device but no audio is present either.

    Just click the icon on each track that stops it acting as a live input. It looks like a sound wave. Only have them clicked orange when using the track to record! I don't know if that will solve your problem!

  • I Pod Touch Music player stopped working but Sounds and iTunes samples still work?? Help.

    Howdy. My Music player has stopped working, but regular sounds and iTunes samples still work?? Can anyone help.
    Push the orange music button and the player opens, but when I push the play button nothing happens other than the pause icon comes up.
    Both side volume and the onscreen volume read at full.

    -restore ipod to latest ios if problems still happenes then it's a hardware problem nothing like a good old appointment at genuis bar would help.

  • Problems with Ensemble and Logic 8

    Since I did the update of the ensemble software for Leopard I have encountered only problems.
    My set up is a Macbook pro 2.33 Ghz, 2gig ram, with a studio monitor (Cinema HD 30 inches).
    Ensemble keeps making clicking noises or stops playing audio. It also resets itself (and its sampling frequency) and does it over and over.
    Logic Studio (Logic 8) has suddenly becoe incredibly slow and the processor spikes all the time telling me the system is too slow. This is even if I am working with 14 tracks (8 audio and the rest virtual instruments).
    Does anyone have a similar problem?

    No, but have you tried to update your firmware before installing the driver and software? According to Apogee this is a critical step! Good luck.

  • Problems with JMF and audio files.

    Sofware:
    Java Version 1.5.0_03
    JMF Version 2.1.1e
    Windows XP SP2
    I have a application that consists of 2 parts. The first is an editor for creating exercises, like multiple-choice, matching and so on. The second part is a &#8220;client&#8221;, used to solve the exercises. The client uses Java Webstart.
    When I include audio clips in the exercises they play just fine using the client, but in the editor program I just get a clicking sound, and then the application stops responding.
    The strange part is that the editor and client use the exact same code to playback audio clips.
    The old version of the editor (developed for Java 1.3.x) works just fine under Java 1.3.x, but when the same byte-code is launched under Java 1.5 I get the same problem (clicking sound and then the application stops responding).
    Any suggestions?

    When installing JMF, two new packages are stored in the jre\lib\ext folder : jmf.jar and sound.jar.
    Sound.jar contains the same api that are in the packages sound.midi and sound sampled contained in jre.
    Maybe these new api are an improved version but i noticed some trouble playing sound and i delete sound.jar file, now it works fine.
    Try this, maybe you had the same problem.

  • PDK-URL Services Sample

    When I tried to install the PDK-URL Services Sample, Everything went fine. I am able to test the test page. When I tried to register the provider I am getting the following error.
    An error occurred when attempting to call the providers register function.
    (WWC-43134)
    The following error occurred during the call to Web provider:
    java.lang.NoSuchMethodError: oracle.portal.provider.v1.http.DefaultProvider:
    method getDebugLevel()I not found
    at oracle.portal.provider.v1.http.URLProvider.register(URLProvider.java:658)
    at
    oracle.portal.provider.v1.http.ServletProviderResponse$SoapWriter.marshalRegiste
    rProvider(ServletProviderResponse.java:640)
    at
    oracle.portal.provider.v1.http.ServletProviderResponse$SoapWriter.access$1(Servl
    etProviderResponse.java:635)
    at
    oracle.portal.provider.v1.http.ServletProviderResponse.registerProvider(ServletP
    roviderResponse.java:116)
    at
    oracle.portal.provider.v1.http.HttpProvider.dispatchProviderAction(HttpProvider.
    java:632)
    at oracle.portal.provider.v1.http.HttpProvider.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:435)
    at org.apache.jserv.JServConnection.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)
    (WWC-43147)
    Does anyone else encounterd this error ?
    We are using portal 3.0.9.8.2 on Sun Solaris.
    Thanks in advance.
    Sanjay

    I have been trying to Install the Java-PDK, URLServices and Exchange Portlets on HP-UX and I haven't succeeded in getting the PDK samples to work.
    The error I am getting when I go to http://xxx.com/servlet/sample is:
    javax.servlet.ServletException: HttpProvider.startProvider: Unable to initialize new provider instance: oracle.portal.utils.xml.v1.NodeHandlerException: XML processing error: unable to create object of type oracle.portal.sample.devguide.samplerenderer.SampleRenderer due to the following exception: java.lang.ClassNotFoundException: oracle.portal.sample.devguide.samplerenderer.SampleRenderer
    I have followed all the instructions, read all the discussion forums and still could not get it to work.
    Since you mentioned that you were using HP/UX , can you please give me some pointers to on how to get this to work and also let me know the various versions of products used.
    The specifics of what I am looking for is:
    1. Java-XDK version used (ie xmlparserv2.jar)
    2. Java Servet Engine Version (ie ojsp.jar)
    3. samples.jar version (file size), provider.jar version (file size), urlservices.jar (file size)
    4. Java JDK version used.
    5. The jserv.conf, jserv.properties, zone.properties, relevant provider.xml files
    6. Any other information which will help.
    Thanks

  • Scrap and To sample usage to make grey

    Dear Sir/Mam
    In T-code QA32,Usage Decision screen,tab inspection lot stock,user has posted the stock to scrap iwant to bring that stock back to Quality stock.
    Even now i want to make this scrap and To sample usage and To reserve field grey as that we have not mapped to put the stock in any of this field so please guide.
    regards
    kunal

    Hi
    Ans 1:
    1) Please activate the inspection type 05 in the QM View of material master,
    2) Use MB1a trx with mvt type 554
    3) Use the same cost centre as earlier
    4) Material document will be genrated and because inspection type 05 inspection lot is created. and stock is updated in QI stock
    5) clear the Inspection lot by taking UD , so Stock is transfer from QI stock to unrestricted.
    I think your problem will be solved .
    Ans 2:
    In Plant level setting of SPRO
    QCC0--->Basic setting ->Plant level setting->select plant>Inspection completion>remove the cost centers for detroy also remove strorage location of reserves
    With regards
    Sujit

  • [svn:osmf:] 16216: Initial check-in of VAST2 and VPAID sample libraries.

    Revision: 16216
    Revision: 16216
    Author:   [email protected]
    Date:     2010-05-19 10:30:45 -0700 (Wed, 19 May 2010)
    Log Message:
    Initial check-in of VAST2 and VPAID sample libraries.  Note that the previous implementation of VAST (and MAST) remains untouched, with the VAST2/VPAID-enabled implementations being added side-by-side with a "New" suffix.  In the long term, we plan to merge the duplicate libraries/plugins.
    Added Paths:
        osmf/trunk/apps/samples/libs/VASTNewSample/
        osmf/trunk/apps/samples/libs/VASTNewSample/.actionScriptProperties
        osmf/trunk/apps/samples/libs/VASTNewSample/.project
        osmf/trunk/apps/samples/libs/VASTNewSample/readme.txt
        osmf/trunk/apps/samples/libs/VASTNewSample/src/
        osmf/trunk/apps/samples/libs/VASTNewSample/src/VASTNewSample.as
        osmf/trunk/apps/samples/libs/VASTNewSample/src/VASTNewSample.fla
        osmf/trunk/apps/samples/libs/VPAIDAdSequencingUnitTest/
        osmf/trunk/apps/samples/libs/VPAIDAdSequencingUnitTest/.actionScriptProperties
        osmf/trunk/apps/samples/libs/VPAIDAdSequencingUnitTest/.project
        osmf/trunk/apps/samples/libs/VPAIDAdSequencingUnitTest/readme.txt
        osmf/trunk/apps/samples/libs/VPAIDAdSequencingUnitTest/src/
        osmf/trunk/apps/samples/libs/VPAIDAdSequencingUnitTest/src/VPAIDTestPlayer.fla
        osmf/trunk/apps/samples/libs/VPAIDAdSequencingUnitTest/src/VPAIDTestplayer.as
        osmf/trunk/apps/samples/libs/VPAIDNoAdUnitTest/
        osmf/trunk/apps/samples/libs/VPAIDNoAdUnitTest/.actionScriptProperties
        osmf/trunk/apps/samples/libs/VPAIDNoAdUnitTest/.project
        osmf/trunk/apps/samples/libs/VPAIDNoAdUnitTest/readme.txt
        osmf/trunk/apps/samples/libs/VPAIDNoAdUnitTest/src/
        osmf/trunk/apps/samples/libs/VPAIDNoAdUnitTest/src/VPAIDTestPlayer.fla
        osmf/trunk/apps/samples/libs/VPAIDNoAdUnitTest/src/VPAIDTestplayer.as
        osmf/trunk/apps/samples/plugins/MASTSampleNew/
        osmf/trunk/apps/samples/plugins/MASTSampleNew/.actionScriptProperties
        osmf/trunk/apps/samples/plugins/MASTSampleNew/.project
        osmf/trunk/apps/samples/plugins/MASTSampleNew/MASTSample-build-config.xml
        osmf/trunk/apps/samples/plugins/MASTSampleNew/MASTSample.fla
        osmf/trunk/apps/samples/plugins/MASTSampleNew/MASTSample.html
        osmf/trunk/apps/samples/plugins/MASTSampleNew/html-template/
        osmf/trunk/apps/samples/plugins/MASTSampleNew/html-template/AC_OETags.js
        osmf/trunk/apps/samples/plugins/MASTSampleNew/html-template/history/
        osmf/trunk/apps/samples/plugins/MASTSampleNew/html-template/history/history.css
        osmf/trunk/apps/samples/plugins/MASTSampleNew/html-template/history/history.js
        osmf/trunk/apps/samples/plugins/MASTSampleNew/html-template/history/historyFrame.html
        osmf/trunk/apps/samples/plugins/MASTSampleNew/html-template/index.template.html
        osmf/trunk/apps/samples/plugins/MASTSampleNew/html-template/playerProductInstall.swf
        osmf/trunk/apps/samples/plugins/MASTSampleNew/publish_settings.xml
        osmf/trunk/apps/samples/plugins/MASTSampleNew/readme.txt
        osmf/trunk/apps/samples/plugins/MASTSampleNew/src/
        osmf/trunk/apps/samples/plugins/MASTSampleNew/src/MASTSample.as
        osmf/trunk/libs/samples/VASTNew/
        osmf/trunk/libs/samples/VASTNew/.actionScriptProperties
        osmf/trunk/libs/samples/VASTNew/.flexLibProperties
        osmf/trunk/libs/samples/VASTNew/.project
        osmf/trunk/libs/samples/VASTNew/org/
        osmf/trunk/libs/samples/VASTNew/org/osmf/
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/loader/
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/loader/VAST1DocumentProcessor.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/loader/VAST2DocumentProcessor.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/loader/VASTDocumentProcessedEvent.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/loader/VASTDocumentProcessor.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/loader/VASTLoadTrait.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/loader/VASTLoader.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/CacheBuster.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/CompanionElement.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/DefaultVAST2MediaFileResolver.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/DefaultVASTMediaFileResolver.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/ICacheBuster.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/IVAST2MediaFileResolver.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/IVASTMediaFileResolver.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/VAST1MediaGenerator.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/VAST2ImpressionProxyElement.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/VAST2MediaGenerator.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/VAST2TrackingProxyElement.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/VASTImpressionProxyElement.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/VASTMediaGenerator.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/media/VASTTrackingProxyElement.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/metadata/
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/metadata/VASTMetadata.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VAST2MediaFile.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VAST2Translator.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTAd.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTAdBase.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTAdPackageBase.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTCompanionAd.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTDataObject.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTDocument.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTInlineAd.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTMediaFile.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTNonLinearAd.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTResourceType.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTTrackingEvent.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTTrackingEventType.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTUrl.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTVideo.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTVideoClick.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/model/VASTWrapperAd.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/VAST1Parser.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/VAST2Parser.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/VASTParser.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/Parser.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/TagParserBase.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/VAST2CompanionElement.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/VAST2CreativeElement.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/VAST2Element.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/VAST2InLineElement.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/VAST2LinearElement.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/VAST2NonLinearElement.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/VAST2Time.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/VAST2TrackingData.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/VAST2WrapperElement.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/errors/
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/errors/Errors.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/errors/ParserErrors.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/events/
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/events/ParserErrorEvent.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/events/ParserEvent.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/interfaces/
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/interfaces/IParser.as
        osmf/trunk/libs/samples/VASTNew/org/osmf/vast/parser/base/interfaces/ITagParserBase.as
        osmf/trunk/libs/samples/VASTNew/vast-build-config.flex
        osmf/trunk/libs/samples/VASTNew/vast-build-config.flexcov
        osmf/trunk/libs/samples/VASTNew/vast-build-config.xml
        osmf/trunk/libs/samples/VPAID/
        osmf/trunk/libs/samples/VPAID/.actionScriptProperties
        osmf/trunk/libs/samples/VPAID/.flexLibProperties
        osmf/trunk/libs/samples/VPAID/.project
        osmf/trunk/libs/samples/VPAID/org/
        osmf/trunk/libs/samples/VPAID/org/osmf/
        osmf/trunk/libs/samples/VPAID/org/osmf/.actionScriptProperties
        osmf/trunk/libs/samples/VPAID/org/osmf/.flexLibProperties
        osmf/trunk/libs/samples/VPAID/org/osmf/.project
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/elements/
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/elements/VPAIDElement.as
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/events/
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/events/VPAIDEvent.as
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/events/VPAIDLoadEvent.as
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/media/
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/media/IVPAID.as
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/metadata/
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/metadata/VPAIDMetadata.as
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/model/
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/model/IVPAIDBase.as
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/model/VPAID_1_1.as
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/traits/
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/traits/VPAIDLoadTrait.as
        osmf/trunk/libs/samples/VPAID/org/osmf/vpaid/traits/VPAIDTimeTrait.as
        osmf/trunk/plugins/samples/MASTPluginNew/
        osmf/trunk/plugins/samples/MASTPluginNew/.actionScriptProperties
        osmf/trunk/plugins/samples/MASTPluginNew/.project
        osmf/trunk/plugins/samples/MASTPluginNew/MASTPlugin.as
        osmf/trunk/plugins/samples/MASTPluginNew/html-template/
        osmf/trunk/plugins/samples/MASTPluginNew/html-template/AC_OETags.js
        osmf/trunk/plugins/samples/MASTPluginNew/html-template/history/
        osmf/trunk/plugins/samples/MASTPluginNew/html-template/history/history.css
        osmf/trunk/plugins/samples/MASTPluginNew/html-template/history/history.js
        osmf/trunk/plugins/samples/MASTPluginNew/html-template/history/historyFrame.html
        osmf/trunk/plugins/samples/MASTPluginNew/html-template/index.template.html
        osmf/trunk/plugins/samples/MASTPluginNew/html-template/playerProductInstall.swf
        osmf/trunk/plugins/samples/MASTPluginNew/org/
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/MASTPluginInfo.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/adapter/
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/adapter/MASTAdapter.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/loader/
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/loader/MASTDocumentProcessedEvent. as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/loader/MASTDocumentProcessor.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/loader/MASTLoadTrait.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/loader/MASTLoader.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/managers/
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/managers/MASTConditionManager.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/media/
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/media/MASTProxyElement.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/model/
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/model/MASTCondition.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/model/MASTDocument.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/model/MASTSource.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/model/MASTTarget.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/model/MASTTrigger.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/parser/
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/parser/MASTParser.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/traits/
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/traits/MASTPlayTrait.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/types/
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/types/MASTConditionOperator.as
        osmf/trunk/plugins/samples/MASTPluginNew/org/osmf/mast/types/MASTConditionType.as

    Hi Marius,
    I think this problem could be linked to the changes in the layout API and the order of the loading of the video elements.
    Please try to add layoutmetadata with index property to parallel videos so they render in the correct order, something like:
                var layout1:LayoutMetadata = new LayoutMetadata();
                layout1.index= 10 ;
                videoElement.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout1);
                var layout2:LayoutMetadata = new LayoutMetadata();
                 layout2.index= 20 ;
                 vpaidNonLinear.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout2);
    Tell me if that worked,
    S.

  • Problem with JPanel and/or Thread

    Hello all,
    I have the following problem.
    I have a JFrame containing to JPanels. The JPanels are placed
    via BorderLayout.
    JPanel #1 is for moving a little rectangle (setDoubleBufferd), it is
    a self defined object extending JPanel.
    The paint methon in JPanel #1 has been overwritten to do the drawings.
    JPanel #2 contains 4 JButtons, but they have no effect at the
    moment. It is an "original" JPanel.
    The class extending JFrame implemented the interface Runnable and
    is started in its own thread.
    After starting the programm everthing looks fine.
    But if I press a Button in the second JPanel this button is painted in
    the top left corner of my frame. It changes if I press another button.
    Any help would be appreciated.
    Thanks.
    Ralf

    I have a JFrame containing to JPanels. The JPanels are
    placed
    via BorderLayout.The type of Layout does not seem to be relevant
    >
    JPanel #1 is for moving a little rectangle
    (setDoubleBufferd), it is
    a self defined object extending JPanel.
    The paint methon in JPanel #1 has been overwritten to
    do the drawings.
    JPanel #2 contains 4 JButtons, but they have no effect
    at the
    moment. It is an "original" JPanel.
    The class extending JFrame implemented the interface
    Runnable and
    is started in its own thread.
    After starting the programm everthing looks fine.
    But if I press a Button in the second JPanel this
    button is painted in
    the top left corner of my frame. It changes if I press
    another button.
    I noticed you solved this by painting the whole JFrame.
    Yeh Form time to time I get this problem too......
    Especially if the screen has gone blank - by going and having a cup of tea etc -
    Text from one Panel would be drawn in another.. annoying
    At first it was because I changed the state of some Swing Components
    not from the Event Thread.
    So make sure that your new Thread doesn't just blithely call repaint() or such like cos that leads to problems
    but rather something like
    SwingUtilities.invokeLater( new Runnable()
       public void run()
          MyComponent.repaint();
    });However I still get this problem using JScrollPanes, and was able to fix it by using the slower backing store method for the JScrollPane
    I could not see from my code how something on one JPanel can get drawn on another JPanel but it was happening.
    Anyone who could totally enlighten me on this?

  • Problem with JFrame and busy/wait Cursor

    Hi -- I'm trying to set a JFrame's cursor to be the busy cursor,
    for the duration of some operation (usually just a few seconds).
    I can get it to work in some situations, but not others.
    Timing does seem to be an issue.
    There are thousands of posts on the BugParade, but
    in general Sun indicates this is not a bug. I just need
    a work-around.
    I've written a test program below to demonstrate the problem.
    I have the problem on Solaris, running with both J2SE 1.3 and 1.4.
    I have not tested on Windows yet.
    When you run the following code, three JFrames will be opened,
    each with the same 5 buttons. The first "F1" listens to its own
    buttons, and works fine. The other two (F2 and F3) listen
    to each other's buttons.
    The "BUSY" button simply sets the cursor on its listener
    to the busy cursor. The "DONE" button sets it to the
    default cursor. These work fine.
    The "SLEEP" button sets the cursor, sleeps for 3 seconds,
    and sets it back. This does not work.
    The "INVOKE LATER" button does the same thing,
    except is uses invokeLater to sleep and set the
    cursor back. This also does not work.
    The "DELAY" button sleeps for 3 seconds (giving you
    time to move the mouse into the other (listerner's)
    window, and then it behaves just like the "SLEEP"
    button. This works.
    Any ideas would be appreciated, thanks.
    -J
    import java.awt.BorderLayout;
    import java.awt.Cursor;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class BusyFrameTest implements ActionListener
    private static Cursor busy = Cursor.getPredefinedCursor (Cursor.WAIT_CURSOR);
    private static Cursor done = Cursor.getDefaultCursor();
    JFrame frame;
    JButton[] buttons;
    public BusyFrameTest (String title)
    frame = new JFrame (title);
    buttons = new JButton[5];
    buttons[0] = new JButton ("BUSY");
    buttons[1] = new JButton ("DONE");
    buttons[2] = new JButton ("SLEEP");
    buttons[3] = new JButton ("INVOKE LATER");
    buttons[4] = new JButton ("DELAY");
    JPanel buttonPanel = new JPanel();
    for (int i = 0; i < buttons.length; i++)
    buttonPanel.add (buttons);
    frame.getContentPane().add (buttonPanel);
    frame.pack();
    frame.setVisible (true);
    public void addListeners (ActionListener listener)
    for (int i = 0; i < buttons.length; i++)
    buttons[i].addActionListener (listener);
    public void actionPerformed (ActionEvent e)
    System.out.print (frame.getTitle() + ": " + e.getActionCommand());
    if (e.getActionCommand().equals ("BUSY"))
    frame.setCursor (busy);
    else if (e.getActionCommand().equals ("DONE"))
    frame.setCursor (done);
    else if (e.getActionCommand().equals ("SLEEP"))
    frame.setCursor (busy);
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.print (" finished");
    else if (e.getActionCommand().equals ("INVOKE LATER"))
    frame.setCursor (busy);
    SwingUtilities.invokeLater (thread);
    else if (e.getActionCommand().equals ("DELAY"))
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (busy);
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.print (" finished");
    System.out.println();
    Runnable thread = new Runnable()
    public void run()
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.println (" finished");
    public static void main (String[] args)
    BusyFrameTest f1 = new BusyFrameTest ("F1");
    f1.addListeners (f1);
    BusyFrameTest f2 = new BusyFrameTest ("F2");
    BusyFrameTest f3 = new BusyFrameTest ("F3");
    f2.addListeners (f3); // 2 listens to 3
    f3.addListeners (f2); // 3 listens to 2

    I've had the same problems with cursors and repaints in a swing application, and I was thinking of if I could use invokeLater, but I never got that far with it.
    I still believe you would need a thread for the time consuming task, and that invokeLater is something you only need to use in a thread different from the event thread.

Maybe you are looking for

  • Using time capsule to backup FCP files on External Lacie drives

    Has anyone done this with any measure of success? I have my FCP projects on 3 to 4 external Lacie drives and I want to back them up onto my 1 TB TC. It seems TC only backs up the internal HD and not external HD's. Is my only option to drag the data o

  • Set title color in TitledBorder

    Hi there! i'm new to Java as well as swing. I would like to know how to set the title color of the TitledBorder. By default, the title color is black, I would like to change it to green. i intend to use this constructor: TitledBorder(Border border, S

  • OOM - Java Heap Space on BI

    Hello All, I 'am using BI publisher trial version to enable PDF printing in APEX. The BI engine hungs and and runs 100% on CPU and in the logs i do see a OOM - Java Heap Space ####<Jan 3, 2014 2:13:46 PM UTC> <Error> <HTTP Session> <ac101.us.oracle.c

  • Scanner is not allowing a pdf file to be created

    How do I get the scanner to allow a pdf file to be created?  new cmputer.. 8.1 operating system.  MP495 model.

  • Aggregating Data from multple sources with ESB

    Hi I want to aggregate data from multiple data-sources with an esb service and after that call a bpel-process with a request build from this data. 1. read data from datasource A (dbadapter-select-call) 2. read data from data-source B (dbadapter-selec