Can you solve the error ? FlashBuilder 4 :launch failed : Illegal character in path at index 41

Hi
when I am going to run an application (even a simple blank mxml one) ,  the flashbulider is saying the follows:
Launch failed
Illegal character in path at index 41
file:///......bin-debug/Main.html

cant access your stuff maybe paste it in pastie.org

Similar Messages

  • On Yahoo Mail...and ONLY Yahoo Mail..I get a 404 error after entering my user name and password. This doesn't happen with IE, just Firefox, and just Yahoo Mail. Yahoo was absouletly no help whatsoever; can you solve the mystery? Thanks

    On Yahoo Mail...and ONLY Yahoo Mail..I get a 404 error after entering my user name and password. This doesn't happen with IE, just Firefox, and just Yahoo Mail. I tried uninstalling and reinstalling FF; no change. Yahoo was absolutely no help whatsoever; can you solve the mystery? Thanks

    HI Emmet,
    thanks so much for your posts back. I really appreciate it and yes that does help to know that you could not get it working.
    I did have some success, in removing the SSL Authentication checkbox in the smtp server settings - I found that this allowed my friend to be able to send mail from the mail app via his sbcglobal (yahoo) account.
    So that did help but of course the messages do not have ssl encryption and I'm not sure how big a deal that is for an individual. He is able to receive mail but unless the SSL authentication box is unchecked, he cannot send.
    i hope that helps anyone out there also!
    Thanks also for the tip about sparrow - yes I have heard of it and it is very popular, he may end up using that in the end.    
    Thanks again, much appreciated.
    Felix    

  • How can i solve the error (-3221)?

    How can i solve the error (-3221)?

    You get this error because there is no App Store in your country. Are you in Iran?  Unless you can legitimately establish an apple ID in another country then there is nothing you can do to fix this

  • How can I solve the error "media corruption error"?

    I have asynchronous errors in Media and MediaPlayer objects: [com.sun.media.jfxmediaimpl.NativeMediaPlayer@1b0a038] "Error: medio corrupto": "Error: medio corrupto".
    When the program runs in NetBeans the error doesn´t appear "quickly". When the program runs in command line, the error appears the first time I change the video.
    I have this problem since I started my application in JavaFx 2.0 in october, first I thought that I was doing wrong, then I wait for 2.0.2 realease but today I tested my program with the new release and I had the same result.
    Is it a bug? Can be a problem of the video? Can be a problem of my video card?
    I test my program in 5 computers and I have the same error.
    I think that is very strange that there are videos that always fail and there are videos that never fail.
    Perhaps is the content of the video? Perhaps is the way that the video was created? All my videos are created by a graphic designer with 3D Studio.
    Thanks!
    package pruebafx;
    import java.util.logging.FileHandler;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaErrorEvent;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaView;
    import javafx.scene.paint.Color;
    import javafx.scene.text.Text;
    import javafx.stage.Stage;
    * @author Solange
    public class PruebaFX extends Application {
        private static final Logger logger = Logger.getLogger("pruebafx.pruebafx");
        private static final String MEDIA_PATH = "/images/";
        private static final String VIDEOLOGO_PATH = MEDIA_PATH + "logo.flv";
        private static final String VIDEOSALUDO_PATH = MEDIA_PATH + "saludo.flv";
        private static Group root;
        private static Group grupo2;
        private static Scene scene;
        private static MediaPlayer mpLogo;
        private static MediaPlayer mpSaludo;
        private static Media mLogo;
        private static Media mSaludo;
        private static MediaView mediaView;
        private static Text text1 = new Text();
        private static Text text2 = new Text();
        private static final Color color = Color.BLACK;
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(args);
        @Override
        public void start(Stage primaryStage) {
            try {
                FileHandler fh = new FileHandler("DisplayManagerlog-%u-%g.txt", 100000, 100, true);
                // Send logger output to our FileHandler.
                logger.addHandler(fh);
                // Request that every detail gets logged.
                logger.setLevel(Level.ALL);
                // Log a simple INFO message.
                logger.info("Starting PruebaFX");
            } catch (Exception e) {
                System.out.println(e.getMessage());
            primaryStage.setTitle("Change Videos");
            root = new Group();
            grupo2 = new Group();
            mLogo = new Media(myGetResource(VIDEOLOGO_PATH));
            mSaludo = new Media(myGetResource(VIDEOSALUDO_PATH));
            mpLogo = new MediaPlayer(mLogo);
            mpSaludo = new MediaPlayer(mSaludo);
            mediaView = new MediaView(mpLogo);
            mpLogo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpLogo.stop();
                    mediaView.setMediaPlayer(mpSaludo);
                    mpSaludo.play();
                    root.getChildren().remove(grupo2);
            mpSaludo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpSaludo.stop();
                    mediaView.setMediaPlayer(mpLogo);
                    mpLogo.play();
                    root.getChildren().add(grupo2);
            mLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mLogo");
                    logger.severe(mLogo.getError().getMessage());
            mSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mSaludo");
                    logger.severe(mSaludo.getError().getMessage());
            mpLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpLogo");
                    logger.severe(mpLogo.getError().getMessage());
            mpSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpSaludo");
                    logger.severe(mpSaludo.getError().getMessage());
            mediaView.setOnError(new EventHandler<MediaErrorEvent>() {
                public void handle(MediaErrorEvent t) {
                    logger.severe("Error en MediaView mediaView");
                    logger.severe(t.getMediaError().getMessage());
            text1.setText("Hola");
            text1.setFill(color);
            text1.setX(10);
            text1.setY(10);
            text2.setText("Chau");
            text2.setFill(color);
            text2.setX(10);
            text2.setY(50);
            grupo2.getChildren().addAll(text1, text2);
            root.getChildren().addAll(mediaView,grupo2);
            scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            mpLogo.play();
        public String myGetResource(String path) {
            return (this.getClass().getResource(path).toString());
    }This is the log file:
    <?xml version="1.0" encoding="windows-1252" standalone="no"?>
    <!DOCTYPE log SYSTEM "logger.dtd">
    <log>
    <record>
      <date>2011-12-16T18:17:24</date>
      <millis>1324070244703</millis>
      <sequence>0</sequence>
      <logger>pruebafx.pruebafx</logger>
      <level>INFO</level>
      <class>pruebafx.PruebaFX</class>
      <method>start</method>
      <thread>12</thread>
      <message>Starting PruebaFX</message>
    </record>
    <record>
      <date>2011-12-16T18:17:35</date>
      <millis>1324070255234</millis>
      <sequence>1</sequence>
      <logger>pruebafx.pruebafx</logger>
      <level>SEVERE</level>
      <class>pruebafx.PruebaFX$6</class>
      <method>run</method>
      <thread>12</thread>
      <message>Error en MediaPlayer mpSaludo</message>
    </record>
    <record>
      <date>2011-12-16T18:17:35</date>
      <millis>1324070255234</millis>
      <sequence>2</sequence>
      <logger>pruebafx.pruebafx</logger>
      <level>SEVERE</level>
      <class>pruebafx.PruebaFX$6</class>
      <method>run</method>
      <thread>12</thread>
      <message>[com.sun.media.jfxmediaimpl.NativeMediaPlayer@1b0a038] "Error: medio corrupto": "Error: medio corrupto"</message>
    </record>
    <record>
      <date>2011-12-16T18:17:35</date>
      <millis>1324070255234</millis>
      <sequence>3</sequence>
      <logger>pruebafx.pruebafx</logger>
      <level>SEVERE</level>
      <class>pruebafx.PruebaFX$4</class>
      <method>run</method>
      <thread>12</thread>
      <message>Error en Media mSaludo</message>
    </record>
    <record>
      <date>2011-12-16T18:17:35</date>
      <millis>1324070255250</millis>
      <sequence>4</sequence>
      <logger>pruebafx.pruebafx</logger>
      <level>SEVERE</level>
      <class>pruebafx.PruebaFX$4</class>
      <method>run</method>
      <thread>12</thread>
      <message>[com.sun.media.jfxmediaimpl.NativeMediaPlayer@1b0a038] "Error: medio corrupto": "Error: medio corrupto"</message>
    </record>

    Noelia, i have the same problem, did you solved it ?I had the same issue as Noelia when I investigated Noelia's issue originally (see the TwoVideos sample application in this thread: Re: How can I play different videos with only one MediaPlayer?
    I tried running the TwoVideos sample application today on Windows XPsp3, JavaFX 2.1b17, JDK7u4ea and I was unable to reproduce the problem, so it is likely fixed either 2.1 or (less likely I believe) a Windows 7 only related issue.
    http://www.oracle.com/technetwork/java/javafx/downloads/devpreview-1429449.html
    If you can reproduce the issue with the latest developer preview, then log a bug at http://javafx-jira.kenai.com with environment details, steps, sample media and code to reproduce the issue.
    Please contact me ainchilc at gmail dot com.If it is an answer to an unanswered question on a public forum, it is best to post the answer on the forum, then everybody who reads the forum will know what the answer is.

  • How can I solve the Error 110 problem when trying to modify the Description of Properties of PDF?

    Hello!
    I am trying to modify the Description of the PDF fies but I cannot do for some files because of the Error 110.  How can I solve this problem so I can succesfully modify the Description of the Properties of the PDF files?
    I also have one more question!
    Why is it impossible to modify the Description parts when the File name is missing in the Description?  There is a File name on each individual PDFs but some of them have to File names on the Description!
    Thank you very much in advance!

    Noelia, i have the same problem, did you solved it ?I had the same issue as Noelia when I investigated Noelia's issue originally (see the TwoVideos sample application in this thread: Re: How can I play different videos with only one MediaPlayer?
    I tried running the TwoVideos sample application today on Windows XPsp3, JavaFX 2.1b17, JDK7u4ea and I was unable to reproduce the problem, so it is likely fixed either 2.1 or (less likely I believe) a Windows 7 only related issue.
    http://www.oracle.com/technetwork/java/javafx/downloads/devpreview-1429449.html
    If you can reproduce the issue with the latest developer preview, then log a bug at http://javafx-jira.kenai.com with environment details, steps, sample media and code to reproduce the issue.
    Please contact me ainchilc at gmail dot com.If it is an answer to an unanswered question on a public forum, it is best to post the answer on the forum, then everybody who reads the forum will know what the answer is.

  • Error in header detail, Can not solve the error

    Hi All,
    I'm new comer in SDN and also for SAP.
    I had a problem in CRM Complaint.
    When I tried to create a follow-up documents, it is prohibited if above 1000 USD.
    And the error arose : "Header Error : Cannot Proceed"
    After that, the error still there in the document. Nothing I can do to fix the error.
    Is anybody can help me to solve this problem?
    Coz when the complaint containes error and after the last status Settlement Process, I can't create Credit Memo Request.
    TIA
    Robin

    Hi
    Robin either your  user id is not permmitted for creating followup docs or problem in  Action profiles Settings , work flow , so rise a request so that you can configure according to .if you are authorised to create follow up they will give access to u r user id 
    Regards
    Venkat

  • Can you see the error ?

    Here is the code (a few lines removed) :
    public class Alone{
        static final int PACKET_SIZE = 8192;
        public static int nbPackets = 0;
        Vector[] queue;
        Thread[] thread;
        boolean run;
        int id;
        public Alone(int port) throws Exception{
         queue = new Vector[NB_OF_QUEUES];
         for(int i=0;i<NB_OF_QUEUES;i++){
             queue[i] = new Vector();
         thread = new Thread[NB_OF_THREADS];
         thread[T_RECEIVE] = new Receive(this);
        public DatagramPacket getPacket(int q){
         DatagramPacket dp;
         if(q==FREE && queue[FREE].isEmpty()){
             nbPackets++;
             dp = new DatagramPacket(new byte[PACKET_SIZE],PACKET_SIZE);
         }else{
             synchronized(queue[q]){
              dp = (DatagramPacket)queue[q].firstElement();
              queue[q].remove(0);
         return dp;
        }I'm calling the "getPacket" method from a thread which receives DatagramPacket through a DatagramSocket this way :
    public class Receive extends Thread {
        private Alone alone;
        public Receive(Alone c){
         alone = c;
         setName("Receive");
        public void run(){
         DatagramPacket dp = alone.getPacket(Alone.FREE);
         try{
             while(alone.getRun()){
              System.out.println(getName() +":sleeping");
              alone.socket.receive(dp);
              System.out.println(getName() +":wake up");
              System.out.println(getName() +" >>> packet received");
              alone.addPacket(Alone.RECEIVED, dp, Alone.T_REDIRECT);
         }catch(Exception e){
             System.out.println(e);
    }But when it gets to the "alone.socket.receive(dp);" it raises a "java.lang.NullPointerException". So i guess theres is a problem in the passing of the DatagramPacket's reference, but I just can't point out where the error is. Anyone see the problem ?

    Okay thanks for the advice ! i'll follow it from now on.
    //in class Receive
        public void run(){
         DatagramPacket dp = alone.getPacket(Alone.FREE);
         while(alone.getRun()){
             System.out.println(getName() +":sleeping");
             try{
              alone.socket.receive(dp);
             }catch(IOException e){e.printStackTrace();}
             System.out.println(getName() +":wake up");
             System.out.println(getName() +" >>> packet received");
             alone.addPacket(Alone.RECEIVED, dp, Alone.T_REDIRECT);
    //in class Alone
        public DatagramPacket getPacket(int q){
         DatagramPacket dp;
         if(q==FREE && queue[FREE].isEmpty()){
             System.out.println("instanciating a new DatagramPacket");
             nbPackets++;
             dp = new DatagramPacket(new byte[PACKET_SIZE],PACKET_SIZE);
         }else{
             synchronized(queue[q]){
              dp = (DatagramPacket)queue[q].firstElement();
              queue[q].remove(0);
         return dp;
        }running this will prompt
    instanciating a new DatagramPacket
    Receive:sleeping
    java.lang.NullPointerException
            at alone.Receive.run(Receive.java:19)

  • How do you solve the error 5.7.1 missing or literal domain not allowed?

    Two weeks ago I started getting this error message when mail executed a routine send/receive cycle: 5.7.1 Missing or literal domain not allowed.  I have Verizon for ISP.  How is this corrected.

    A quick search for this error message reveals numerous other users on both Windows and Macs have this same problem with Verizon, yet no-one appears to have found any kind of resolution. 
    If you contact Verizon maybe they will be able to sort it out for you - in which case please post the answer here. If Verizon can't sort this out then maybe you need to change ISP?
    Bob

  • Can you solve the Real Player mystery???

    Hi Guys,
    Was very pleased to hear of the Universal Binary release this morning as I access a lot of content on the BBC website. After downloading and installing I was shocked to see that I was receiving the following error when trying to listen to Radio Five Live.
    The page “BBC Radio Player” has content of MIME type “application/x-mplayer2”. Because you don’t have a plug-in installed for this MIME type, this content can’t be displayed.
    Bizarrely, although displaying this message the radio show loaded in the background and started to play!? I tried it on some other BBC stations and it got even more curious.
    Radio 1-4 load without a problem (no MIME warning, audio OK)
    Radio 5-onwards(6,7,Asian Network etc) - radio plays but with MIME warning
    Could someone please go to http://www.bbc.co.uk/radio/ and see if they are experiencing the same odd behaviour? I could at least try and understand it if all the stations were acting the same way but I'm completetly baffled.
    Anyone have any ideas/fixes?
    Cheers
    T
    iMac 20" 2GB RAM   Mac OS X (10.4.4)  

    I had the same experience last evening when testing the new UB version on the BBC. It happened for me on Stations 4 & 5. And yet inspite of the warning the broadcast started coming through AOK.
    I think it may have more to do with the sniffers and feelers of the website, than with the iMac, Safari or Realplayer!
    However, I just went back to re-test the situation and I didn't get the warnings, the Radio Player just opened and made the connection and started broadcasting the program!!

  • HELP!! My hp computer has lost airport!! Can you solve the riddle???

    I am connected to the internet through a hospital network and have airport express which works fine with another hp pc and a mac. It did work with the hp with vista until last week and now airport doesn't come up on list of wireless devices. I have reinstalled it from the disk but still no joy and I cannot connect to the internet through that computer. Please help....it's driving me mad and the network is saying connected but an X for internet! This is my 12 year old's pc which I am in a pickle with. By the way....I am an uncomplicated soul with no real knowledge of technical only turn on and off!!!
    Thank YOU!!!
    Message was edited by: liverpoolgirl

    From your previous post, it sounds like at one point you are getting the pop up that says "installing device driver software," correct?
    If you are not getting this pop up in the lower right hand corner of you screen then I need you to:
    1. Try a different USB port on your computer. Some computer USB ports are "touchy" and if you try a different one it will work. It all depends on the make of the computer.
    2. Try a different USB cable. You might have a bad USB cable. Also, be sure that the USB cable isn't longer than 3ft long.
    3. Go into your device manager and see what printers have been installed. They should be listed under "printers" or "other devices" You might have to go to view and check show hidden devices to see these on your computer. If there is a yellow triangle or question mark on this device then you have a conflict with your computer. This is something in your computer causing this and not the software download.
    Keep me  posted.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

  • "llegal character in path at index" Error While Using wsimport from ant.

    Hi,
    I am getting the following error, while using wsimport from ant build script. you have the details below. I dont have a clue on this error.
    Error :
    wsimport:
    [echo] Generating the client stubs
    [wsimport] error: Unable to parse "HelloService_schema1.xsd" : Illegal character in path at index 25: file:/D:/Study/WebService Eclipse Project/examples/jaxws/helloservice/service/server/wsdl/HelloService.wsdl#types?schema1
    [wsimport] line 0 of file:/D:/Study/WebService Eclipse Project/examples/jaxws/helloservice/service/server/wsdl/HelloService.wsdl#types?schema1
    [wsimport] error: Unable to parse "HelloService_schema1.xsd" : Illegal character in path at index 25: file:/D:/Study/WebService Eclipse Project/examples/jaxws/helloservice/service/server/wsdl/HelloService.wsdl#types?schema1
    [wsimport] line ? of file:/D:/Study/WebService Eclipse Project/examples/jaxws/helloservice/service/server/wsdl/HelloService.wsdl#types?schema1
    [wsimport] error: Element "{http://endpoint.helloservice/}sayHello" not found.
    Java WebService :
    package helloservice.endpoint;
    import javax.jws.WebMethod;
    import javax.jws.WebService;
    @WebService()
    public class Hello {
    private String message = new String("Hello, ");
    @WebMethod()
    public String sayHello(String name) {
    return message + name + ".";
    Ant Build.xml
    <project name="${project.name}" basedir="." default="ear">
         <property file="WS_build.properties"/>
         <target name="init">
              <!-- Path Setting-->
              <echo description="Setting the path for the project"/>
              <path id="classpath">
                   <fileset dir="${lib.dir}" includes="*.jar"/>          
                   <fileset dir="${commonWSLib.dir}" includes="*.jar"/>
              </path>
              <!-- WSGen -->
              <echo description="WSGEN Definition"/>
              <taskdef name="wsgen" classname="com.sun.tools.ws.ant.WsGen">
                   <classpath>
                        <path refid="classpath"/>
                   </classpath>
              </taskdef>
              <!-- WS Import-->
              <echo description="WSImport Definition" />
              <taskdef name="wsimport" classname="com.sun.tools.ws.ant.WsImport">
                   <classpath>
                        <path refid="classpath"/>
                   </classpath>
              </taskdef>
         </target>
         <target name="Compile" depends="init">
              <echo description="Compiling the project"/>
              <mkdir dir="${build.dir}"/>
              <mkdir dir="${build.dir}/classes"/>
              <javac destdir="${build.dir}/classes" srcdir="${java.base}">
                   <classpath>
                        <path refid="classpath"/>
                   </classpath>
              </javac>
              <copy todir="${build.dir}/classes">
                   <fileset dir="${java.base}" excludes="**/*.java"/>
              </copy>
         </target>
         <target name="wsgen" depends="Compile">
                   <echo message="Generating the wsdl file[${project.name}Service.wsdl]" />
                   <mkdir dir="${service.dir}"/>
                   <mkdir dir="${service.dir}/server"/>
                   <mkdir dir="${service.dir}/server/classes"/>
                   <mkdir dir="${service.dir}/server/src"/>          
                   <mkdir dir="${service.dir}/server/wsdl"/>                    
                   <wsgen sei="${sei.class}" destdir="${service.dir}/server/classes" genwsdl="true"
                   sourcedestdir="${service.dir}/server/src" resourcedestdir="${service.dir}/server/wsdl">
                        <classpath>
                             <path refid="classpath" />
                             <pathelement location="${build.dir}/classes" />
                        </classpath>
                   </wsgen>
         </target>
         <target name="copy" depends="wsgen">
                   <echo message="Copying class and config files into ${web-inf.dir} folder" />
                   <copy todir="${web-inf.dir}">
                        <fileset dir="${build.dir}"/>
                        <fileset dir="${service.dir}/server" includes="**/*.class"/>
                        <fileset dir="." includes="${lib.dir}/*.jar"/>
                   </copy>
                   <copy todir="${web-inf.dir}/${lib.dir}">
                        <fileset dir="${commonWSLib.dir}" includes="*.jar"/>
                   </copy>
                   <copy todir="${web-inf.dir}">
                        <fileset dir="${web-inf.dir}" includes="**/*.xml"/>
                   </copy>
         </target>
         <!-- Create the WAR file     -->
         <target name="war" depends="copy">
              <echo message="Creating the war file [${project.name}.war]" />     
              <mkdir dir="${dist.dir}"/>
              <mkdir dir="${dist.dir}/server"/>
              <war destfile="${dist.dir}/server/${project.name}.war" webxml="${web-inf.dir}/web.xml" basedir="${web.dir}"/>
         </target>
         <target name="wsimport" depends="war">
              <echo message="Generating the client stubs" />          
              <mkdir dir="${service.dir}"/>
              <mkdir dir="${service.dir}/client"/>
              <mkdir dir="${service.dir}/client/classes"/>
              <mkdir dir="${service.dir}/client/src"/>     
              <wsimport wsdl="${basedir}/${service.dir}/server/wsdl/${project.name}.wsdl"
                   destdir="${service.dir}/client/classes"
                   package="${wsimport.package}"
                   sourcedestdir="${service.dir}/client/src">
              </wsimport>
         </target>
         <target name="clientjar" depends="wsimport">
    <echo message="Creating the client jar file [${project.name}Client.jar] " />
    <copy todir="${service.dir}/client/classes">
    <fileset dir="${service.dir}/client/src"/>
    </copy>
    <mkdir dir="${dist.dir}/client"/>
                   <tstamp>
                   <format property="TODAY" pattern="yyyy-MM-dd hh:mm:ss" />
                   </tstamp>
    <jar destfile="${dist.dir}/client/${project.name}Client.jar"
    basedir="${service.dir}/client/classes">
                   <manifest>
                   <attribute name="Built-By" value="${user.name}"/>
                   <attribute name="Built-Date" value="${TODAY}"/>
                   <attribute name="Implementation-Version" value="${version}-b${build.number}"/>
              </manifest>
              </jar>          
    <mkdir dir="${dist.dir}/client"/>
         </target>
         <!-- JAR THE ENGINE -->
         <target name="enginejar" depends="clientjar">
         <echo message="Creating the engine jar file for local call [${project.name}.jar] " />
              <!-- <copy todir="${build.dir}/classes">
                        <fileset dir="." includes="${config.dir}/hibernate.cfg.xml"/>           
         </copy> -->
              <tstamp>
                   <format property="TODAY" pattern="yyyy-MM-dd hh:mm:ss" />
              </tstamp>
         <jar destfile="${dist.dir}/server/${project.name}.jar"
         basedir="${build.dir}/classes">
                   <manifest>
                        <attribute name="Built-By" value="${user.name}"/>
                        <attribute name="Built-Date" value="${TODAY}"/>
                        <attribute name="Implementation-Version" value="${version}-b${build.number}"/>
              </manifest>
              </jar>          
              </target>
              <!-- GENERATE EAR FOR THE ENGINE -->
              <target name="ear" depends="enginejar" >
                   <echo message="Creating the ear file [${project.name}.ear]" />
                   <ear destfile="${dist.dir}/server/${project.name}.ear" appxml="META-INF/application.xml">
                   <fileset dir="${dist.dir}/server" includes="${project.name}.war"/>
              </ear>
                   <antcall target="clean"></antcall>
              </target>
              <!-- CLEAN UP THE FOLDERS     -->
              <target name="clean">
                   <echo message="Cleaning up folders " />          
                   <delete dir="${build.dir}"/>
                   <delete dir="${service.dir}"/>
                   <delete dir="${web-inf.dir}/classes"/>
                   <delete dir="${web-inf.dir}/lib"/>
                   <echo message="${project.name}.ear, ${project.name}.war, ${project.name}.jar and ${project.name}Client.jar is available in project's ${dist.dir} folder"/>
              </target>
    </project>
    Generated wsdl(HelloService.wsdl) :
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <definitions targetNamespace="http://endpoint.helloservice/" name="HelloService" xmlns:tns="http://endpoint.helloservice/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/">
    <types>
    <xsd:schema>
    <xsd:import namespace="http://endpoint.helloservice/" schemaLocation="HelloService_schema1.xsd"/>
    </xsd:schema>
    </types>
    <message name="sayHello">
    <part name="parameters" element="tns:sayHello"/>
    </message>
    <message name="sayHelloResponse">
    <part name="parameters" element="tns:sayHelloResponse"/>
    </message>
    <portType name="Hello">
    <operation name="sayHello">
    <input message="tns:sayHello"/>
    <output message="tns:sayHelloResponse"/>
    </operation>
    </portType>
    <binding name="HelloPortBinding" type="tns:Hello">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
    <operation name="sayHello">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="HelloService">
    <port name="HelloPort" binding="tns:HelloPortBinding">
    <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
    </port>
    </service>
    </definitions>
    Generated : HelloService_schema1.xsd
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <xs:schema version="1.0" targetNamespace="http://endpoint.helloservice/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="sayHello" type="ns1:sayHello" xmlns:ns1="http://endpoint.helloservice/"/>
    <xs:complexType name="sayHello">
    <xs:sequence>
    <xs:element name="arg0" type="xs:string" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="sayHelloResponse" type="ns2:sayHelloResponse" xmlns:ns2="http://endpoint.helloservice/"/>
    <xs:complexType name="sayHelloResponse">
    <xs:sequence>
    <xs:element name="return" type="xs:string" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    If u need any other information let me know.

    This has been resolved by uploading relevant jar file

  • How can I solve this error message? Some of your photos, including the photo "IMG_0374.jpg", were not copied to the iPad "(my name's) iPad" because they cannot be displayed on your iPad.

    how can I solve this error message? "Some of your photos, including the photo “IMG_0374.jpg”, were not copied to the iPad “(my name’s) iPad” because they cannot be displayed on your iPad."
    There were 273 photos in the event syncing from my Mac, but only the last 103 made it to the ipad. Most of the photos were taken by an iphone. I would appreciate any thoughts or insights - thanks.

    Adrian-
    That error message suggests the photo is somehow corrupt.
    Do you have the Apple Camera Connection Kit?  You can set up a USB thumb drive with MS-DOS FAT-32 format and copy your photos to it into a folder named DCIM.  Assuming they have an 8 character plus suffix name, the iPad will recognize them and give you the option of transferring them via the Kit's USB adapter.
    Once they are transferred, you can find out if there is a problem with any.
    Fred

  • Who can solve the error code 403 on hp5522 ? help please

    who can solve the error code 403  on hp5522 ?   help please

    Hello fredovolley,
    Welcome to the HP Support Forums!
    I see that you are experiencing an error 403 with the Photosmart 5520 series. I would like to offer the steps I have given before, check them out here: Re: Trouble scanning using Photosmart 6520
    Even though it states it is for a 6520, the steps are all the same. I hope this help, cheers!
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • What is this Configuration Error: 1  = I must reinstall the AI every time again and again and loose so much time! How can I solve this error?

    What is this Configuration Error: 1  = I must reinstall the AI every time again and again and loose so much time! How can I solve this error?
    please answer on my email too
    [email protected]

    Nobody can tell you anything without proper system info or other technical details. The simply answer probably is that you are running your system with insufficient user privileges and system restore or some security tools are blocking stuff/ erasing your install.
    Mylenium

  • Time Capsule can you change the signal frequencies because it is causeing errors in other things that we have wireless cameras?

    Can you change the frequenices settings on the time capsule and the mac pro to receive it? Because it is causing errors with other wireless cameras that cannot be changed.

    Its ok. Thank you for replying. I meant router. lol. I have another question... I have looked at the back to my mac... so you are saying if I travel and take my mac book and use back to my mac I can access it?????
    Well here is the issue, as I said, my husband is deployed and he is the one that will be trying to access it. I have the mac book here with me. He has an iphone,ipad, and a windows based laptop with him... Is there a way for him to access it with these devices, to include the windows laptop?
    If all of this works can I load pics and movies on it and him be able to access them and then watch the movies?
    I appreciate your help. I am not a ******* but I just need help.
    Thanks so much!!!

Maybe you are looking for