Using Weblogic JWSC Ant task with Maven

This post has been moved to here.

77 Responses to Using Weblogic JWSC Ant task with Maven

  1. Vish says:

    Hello,

    Thanks for posting information on “Weblogic JWSC Ant task with Maven”. I was trying to implement exactly as described, but obviously I might be missing something; like classpath setting on my system.

    I’ve been getting following error when I ran project with the command “mvn clean install”.

    [ERROR] BUILD ERROR
    [INFO] ————————————————————————
    [INFO] An Ant BuildException has occured: The following error occurred while executing this line:
    C:\..\workspace\project\src\com\app\webservices-build.xml:103: java.lang.NoClassDefFoundError: com/sun/jav
    adoc/Type

    com.sun.javadoc.Type

    Any insight on resolving the issue will be appreciated.

    Thanks
    Vish

  2. ricardoekm says:

    Hi Vish,
    This class is usually in located in tools.jar. There’s a line that tries to load it:

    classloader classpath="lib/tools.jar" loader="project

    So it’s necessary to copy tools.jar from your JDK (preferably 1.5) to a relative path lib/tools.jar.

    Please let me know if this helps.

    Ricardo

    • Patrick says:

      Sorry, the xml I pasted got trashed…

      Add a dependency after the antrun executions section:

      groupId=com.sun
      artifactId=tools
      version=1.5
      scope=system
      systemPath=${java.home}/../lib/tools.jar

  3. Ark says:

    Hi Ricardo,

    Thanks for your post.

    I’m compiling with JDK 1.6.05 (supplied with WLS 10.3) but I continuing having a problem. Before adding a piece with ant-classloader I was plainly getting an odd NoClassDefNotFoundError for com/sun/javadoc/Type. After – something’s changed. Now I’m getting even a full explanatory why *thing* fails:

    Reason: Error executing ant tasks

    The following error occurred while executing this line:
    ..\build.xml:45: com.bea.util.jam.internal.javadoc.JavadocClassloadingException: An error has occurred while invoking javadoc to inspect your source
    files. This may be due to the fact that $JAVA_HOME/lib/tools.jar does
    not seem to be in your system classloader. One common case in which
    this happens is when using the ‘ant’ tool, which uses a special
    context classloader to load classes from tools.jar.

    This situation elicits what is believed to a javadoc bug in the initial
    release of JDK 1.6. Javadoc attempts to use its own context classloader
    tools.jar but ignores one that may have already been set, which leads
    to some classes being loaded into two different classloaders. The
    telltale sign of this problem is a javadoc error message saying that
    ‘languageVersion() must return LanguageVersion – you might see this
    message in your process’ output.

    This will hopefully be fixed in a later release of JDK 1.6; if a new
    version of 1.6 has become available, you might be able to solve this
    by simply upgrading to the latest JDK.

    Alternatively, you can work around it by simply including
    $JAVA_HOME/lib/tools.jar in the java -classpath
    parameter. If you are running ant, you will need to modify the standard
    ant script to include tools.jar in the -classpath.

    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:384)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)…

    etc.

    Maybe something more is still missing here?

    With best regards,
    Arkady

  4. Vishnu Koya says:

    Hi,

    Thanks for the reply Recardo.

    I was using jdk that came with wl10.3, ant version 1.7.1 and maven version 2.0.10.

    I’ve tried setting up the classpath using classloader, but for some reason ant is complaining about the “loader” attribute.

    classloader classpath="C:\bea\jdk160_05\lib\tools.jar;" loader="project"

    Error that I got with above line in Ant:


    [ERROR] BUILD ERROR
    [INFO] ------------------------------------------------------------------------
    [INFO] An Ant BuildException has occured: The following error occurred while executing this line:
    C:\..\build\build.xml:30: classloader doesn't support the "loader" attribute

    The type doesn't support the "loader" attribute.

    We fixed that issue by modifying the file “mvn.bat” located at “MAVEN_HOME\bin”.
    Search for “runm2” in that file and add “tools.jar” location to the classpath under line “runm2”.

    It look like as follows on my machine.


    @REM Start MAVEN2
    :runm2
    %MAVEN_JAVA_EXE% %MAVEN_OPTS% -classpath C:\bea\jdk160_05\lib\tools.jar;%CLASSWORLDS_JAR% "-Dclassworlds.conf=%M2_HOME%\bin\m2.conf" "-Dmaven.home=%M2_HOME%" org.codehaus.classworlds.Launcher %MAVEN_CMD_LINE_ARGS%
    if ERRORLEVEL 1 goto error
    goto end

    Though this solution doesn’t sound great, but it fixed the problem.

    Can anyone suggest how to fix “loader” attribute problem, so I don’t need to modify Maven files?

    Thanks
    Vishnu Koya

  5. ricardoekm says:

    Hi Ark,
    I think I solved this problem using tools.jar from JDK 1.5.
    As soon as possible I will update with the link where you can get the same file I’m using for my builds.

  6. ricardoekm says:

    Hi Vishnu,
    Could you please post your ant build xml?

  7. Vishnu Koya says:
    
    <project name="focalexposure.webservices.jaxws.java2wsdl" default="all" basedir=".">
    
      <!-- Web Service WLS Ant task definitions -->
      <taskdef name="jwsc"
    	            classpath="${wl.class.path}"
    	            classname="weblogic.wsee.tools.anttasks.JwscTask"
    	            onerror="report" />
    	
      <taskdef name="wldeploy"
      				classpath="${wl.class.path}"
      				classname="weblogic.ant.taskdefs.management.WLDeploy"
      	  			onerror="report" />
    	
      <target name="all" depends="build, deploy"/>
      <target name="build" depends="clean,init,build.ws.server"/> 
    
      <target name="clean">
        <delete dir="${focalexposure.build.dir}/${server.service.ear}" failonerror="false"/>
      </target>
    
      <!-- Target that builds the target Web Service -->
      <target name="init">
        <mkdir dir="${server.service.dir}"/>
      </target>
    
      <!-- Target that builds the target Web Service -->
    
      <target name="build.ws.server" description="Target that builds the target Web Service">
      	<!-- classloader classpath="C:\bea\jdk160_05\lib\tools.jar" loader="project" / -->
      	<javac
      		classpath="${wl.class.path};${focal.class.path};"
      		srcdir="${focalexposure.src.dir}" destdir="${server.service.dir}"
      		includes="FocalWebContext.java"
      	/>
        <jwsc
            srcdir="${focalexposure.src.dir}"
            destdir="${server.service.dir}"
            classpath="${wl.class.path};${focal.class.path};${server.service.dir}"
            fork="true"
            keepGenerated="true"
            deprecation="${deprecation}"
            keepTempFiles="true"
            listfiles="true"
            debug="${debug}">
          <jws file="FocalWebServiceImpl.java" type="JAXRPC" explode="true"/>	
          <jws file="FocalWebServiceImpl.java" type="JAXRPC" wsdlOnly="true" explode="true"/>
        </jwsc>
    	<!-- Y - network drive is mapped to eComm1 -->
    	<copy todir="${server.service.dir}/FocalWebServiceImpl/WEB-INF/lib" overwrite="true">
            <fileset dir="Y:\backup\contractors\FocalExposure\lib" includes="**/*"/>
        </copy>
        <!-- copy *.jsp, *.js to war dir -->
        <copy todir="${server.service.dir}/FocalWebServiceImpl">
            <fileset dir="${focalexposure.ui.dir}/jsps" includes="**/*"/>
            <fileset dir="${focalexposure.ui.dir}/js" includes="**/*"/>
        </copy>
      </target>
    
      <!-- Target that deploys the target Web Services -->
      <target name="deploy.server" description="Target that deploys the target Web Service">
      	<wldeploy
      	        action="deploy"
      	        source="${server.service.dir}"
      	        user="${wls.username}"
      	        password="${wls.password}"
      	        verbose="true"
      	        adminurl="t3://${wls.hostname}:${wls.port}"
      	        targets="${wls.server.name}"
      	        failonerror="${failondeploy}"/>
      </target>
    
      <!-- Target that deploys the all Web Services -->
      <target name="deploy" depends="deploy.server"
              description="Target that deploys the all Web Services">
      </target>
    
      <!-- Target that undeploys the target Web Service -->
      <target name="undeploy.server" description="Target that undeploys the target Web Service">
        <antcall target="common_undeploy">
          <param name="name" value="${focalexposure.service.ear}"/>
        </antcall>
      </target>
    
      <!-- Target that undeploys all Web Service within these sample -->
      <target name="undeploy" depends="undeploy.server"
              description="Target that undeploys all Web Service within these sample">
      </target>
    
      <target name="common_undeploy">
        <wldeploy
            action="undeploy"
            name="${name}"
            user="${wls.username}"
            password="${wls.password}"
            verbose="true"
            adminurl="t3://${wls.hostname}:${wls.port}"
            targets="${wls.server.name}"
            failonerror="false"/>
      </target>
    
    </project>
    
    
    

  8. shikha says:

    Hi ..I am not sure if you were able to solve the issue but I was running into the same issue using weblogic 10.3 with with maven to build ant task, and this is what I ended up doing

    So I am saying -noclasspath i.e. dont use the system classpath at all..
    I dont know if this is the clean way but atleast it works..I was trying to use the clasloader approach stated above..but it doesnot work for me

  9. shikha says:

    I am not sure how to post code here but what I did was =invoking ant using <java tag

  10. ricardoekm says:

    Vishnu,
    Lets try the reverse way. Here is a simple ant build that loads tools.jar using classloader task.
    Please let me know if it works for you.

    Ark,
    You may try to use the tools.jar attached to check if it solves your problem.

  11. Vishnu Koya says:

    Hi Ricardo,

    The simple ant build that you have provided works for just fine. If I use the ant-classloader.jar, tools.jar that you provided in my project, it works. If I replace the tools.jar that you gave with the one that come with Bea WebLogic10.3, my build fails.

    Can you please let me know where you got that tools.jar?

    Thanks
    Vishnu Koya

  12. ricardoekm says:

    Hi Vishnu,
    This tools.jar I got from JDK 1.5, downloaded from SUN website.

  13. Ark says:

    Hi Ricardo,

    I’m sorry for delay: tools.jar from jdk 1.5 does solve the problem of infinite classloader issues and the build finishes well. The tools.jar that comes with jdk 1.6 has a known bug in javadoc class loading, that can be solved only by adding tools.jar to a *system classpath*, adding it to ant classpath doesn’t help.

    Thank you again.
    =Ark

  14. ricardoekm says:

    Great Ark!

  15. Vishnu Koya says:

    Thank you all!

  16. John Fjellstad says:

    Hi,

    I tried to use your example, but keep getting a nullpointerexception. I was wondering if you can see what the problem might be:

    My pom entry:

    org.apache.maven.plugins
    maven-antrun-plugin

    compile

    run

  17. ricardoekm says:

    Hi John,
    Could you please send your pom entry to ricardo.ekm at gmail?

  18. Anandhu says:

    Hi
    I have scenario similar to this.

    Maven version 2.2.1 (needs java 1.5)
    Ant Version 1.6.5 (needs java 1.4)

    Now I need to call my ant build script from maven.
    How should I do that?

  19. Ricardo Mayerhofer says:

    Hi, have you tried maven ant run task? http://maven.apache.org/plugins/maven-antrun-plugin/
    What error shows up?

  20. Dennis H says:

    Thank you for article. It was very helpful. I too had issues with tools.jar with WebLogic 10.3. I wanted to use Maven’s dependency management instead of putting the jdk 1.5 tools.jar in the classpath. So this is the example that worked for me that I wanted to share with others:

    
      org.apache.maven.plugins
      maven-antrun-plugin
      1.4
      
        
          compile
          
            
              
                
                
              
              
                
                  
                
              
              
              
                
                  
                    
                  
                
              
            
          
          
            run
          
        
      
      
    
        
          sun.jdk
          tools
          jdk150_11
          provided
        
      
    
    
  21. Dennis H says:

    Here is the code formatted correctly (I hope):

     
    <plugin>
    	<groupId>org.apache.maven.plugins</groupId>
    	<artifactId>maven-antrun-plugin</artifactId>
    	<version>1.4</version>
    	<executions>
    		<execution>
    			<phase>compile</phase>
    			<configuration>
    				<tasks>
    					<path id="weblogic.jar.classpath">
    						<path location="${BEA103_HOME}/patch_wls1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar"/>
    						<path location="${BEA103_HOME}/wlserver_10.3/server/lib/weblogic.jar"/>
    					</path>
    					<!--
    					<taskdef resource="net/jtools/classloadertask/antlib.xml" classpath="${maven.dependency.jtools.ant-classloadertask.jar.path}"/>
    					-->
    					<taskdef name="jwsc" classname="weblogic.wsee.tools.anttasks.JwscTask" classpathref="weblogic.jar.classpath">
    						<classpath>
    							<path refid="weblogic.jar.classpath"/>
    						</classpath>
    					</taskdef>
    					<property name="maven.compile.classpath" refid="maven.compile.classpath"/>
    					<jwsc destdir="target" classpathref="weblogic.jar.classpath" classpath="${maven.compile.classpath}" verbose="true" debug="true">
    						<module name="${project.artifactId}-${project.version}" explode="true" contextPath="pearsonaccess">
    							<jwsFileSet srcdir="src/main/java/">
    								<include name="**/*.java"/>
    							</jwsFileSet>
    						</module>
    					</jwsc>
    				</tasks>
    			</configuration>
    			<goals>
    				<goal>run</goal>
    			</goals>
    		</execution>
    	</executions>
    	<dependencies>
    		<!-- bea uses jdk tools 1.5  in jwsc causing this error when compiling with jdk tools 1.6: java.lang.NoClassDefFoundError: com/sun/javadoc/Type -->
    		<dependency>
    			<groupId>sun.jdk</groupId>
    			<artifactId>tools</artifactId>
    			<version>jdk150_11</version>
    			<scope>provided</scope>
    		</dependency>
    		<!--
    		<dependency>
    			<groupId>jtools</groupId>
    			<artifactId>ant-classloadertask</artifactId>
    			<version>1.0-RC2</version>
    			<scope>provided</scope>
    		</dependency>
    		-->
    	</dependencies>
    </plugin>
    
  22. ricardoekm says:

    Great Dennis, thank you for this plus.

  23. ms shekar says:

    Need urgent help…
    I am running a jwsc ant task to generate a war file.
    It is working fine for me if I add the weblogic.jar to classpath before running the ant script ( CLASSPATH=/opt/bea/weblogic91/server/lib/weblogic.jar export CLASSPATH)

    But is is not working if i add this in my build.xml as follows

    I am getting the following error.

    [AntUtil.deleteDir] Deleting directory /var/tmp/_927vxb

    BUILD FAILED
    /wls_domains/CIT/cruisecontrol-bin-2.8.3/util/Ivy/build.xml:231: Deployment descriptor: /var/tmp/_927vxb/web.xml does not exist.
    at weblogic.wsee.tools.anttasks.JwscTask.execute(JwscTask.java:184)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    at org.apache.tools.ant.Main.runBuild(Main.java:698)
    at org.apache.tools.ant.Main.startAnt(Main.java:199)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
    Caused by: Deployment descriptor: /var/tmp/_927vxb/web.xml does not exist.
    at org.apache.tools.ant.taskdefs.War.setWebxml(War.java:95)
    at weblogic.wsee.tools.anttasks.JwscTask.jar(JwscTask.java:397)
    at weblogic.wsee.tools.anttasks.JwscTask.pkg(JwscTask.java:331)
    at weblogic.wsee.tools.anttasks.JwscTask.execute(JwscTask.java:166)
    … 17 more
    — Nested Exception —
    Deployment descriptor: /var/tmp/_927vxb/web.xml does not exist.
    at org.apache.tools.ant.taskdefs.War.setWebxml(War.java:95)
    at weblogic.wsee.tools.anttasks.JwscTask.jar(JwscTask.java:397)
    at weblogic.wsee.tools.anttasks.JwscTask.pkg(JwscTask.java:331)
    at weblogic.wsee.tools.anttasks.JwscTask.execute(JwscTask.java:166)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    at org.apache.tools.ant.Main.runBuild(Main.java:698)
    at org.apache.tools.ant.Main.startAnt(Main.java:199)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)

    Total time: 1 minute 3 seconds

    I am running weblogic91 in solaries system…….

  24. JmacWay says:

    Hi, I’d be very grateful for an extra pair of eyes to take a look at my problem. I tried many things but I keep getting the notorious error:
    webservices-build.xml:23: com.bea.util.jam.internal.javadoc.JavadocClassloadingException: An error has occurred while invoking javadoc to inspect your source files. This may be due to the fact that $JAVA_HOME/lib/tools.jar

    Here’s the webservices-build.xml:

    And the maven snippet:

    org.apache.maven.plugins
    maven-antrun-plugin

    generate-sources

    run

  25. darshan says:

    @vishnu Koya
    hi vishnu
    @REM Start MAVEN2
    :runm2
    %MAVEN_JAVA_EXE% %MAVEN_OPTS% -classpath C:\bea\jdk160_05\lib\tools.jar;%CLASSWORLDS_JAR% “-Dclassworlds.conf=%M2_HOME%\bin\m2.conf” “-Dmaven.home=%M2_HOME%” org.codehaus.classworlds.Launcher %MAVEN_CMD_LINE_ARGS%
    if ERRORLEVEL 1 goto error
    goto end

    how do i achieve this part in linux platform in mvn.sh file
    exec “$JAVACMD” \
    $MAVEN_OPTS \
    -classpath “${M2_HOME}”/boot/plexus-classworlds-*.jar;”${JAVA_HOME}”/lib/tools.jar \
    “-Dclassworlds.conf=${M2_HOME}/bin/m2.conf” \
    “-Dmaven.home=${M2_HOME}” \
    ${CLASSWORLDS_LAUNCHER} “$@”
    It is giving me errors

  26. Sheri says:

    While the liquid microsoft windows within the position must prevent overfilling, I need to
    confess that one sleepy day we was not having to pay interest and also forgot that I got therefore loaded it alongside liquid the evening before.

    Drip Coffee Maker Commonly Asked queries Precisely what exactly is
    actually the really temperature for brewing coffee?
    all specialist consent which 200 levels is easily the most effective heat
    for brewing coffee.

  27. I must mention that I bought every one of the of the supplies during the dollar store, except my fish.
    whenever the kids boomers become senior citizens, they will have already understand about computers, having being taught through out college and even
    in highschool. And also, naturally, this sharpener is actually affordable and also
    it comes down by way of a great warranty. My husband and also I assist
    whenever needed and also regularly reveal exactly what my son is actually understanding at school.
    The proper store attracting should display every one of the the required
    information and facts that is required for the piece being built.

    expected to constants through their physical mobility, maybe likewise
    sight and also hearing, it presents the reachable challenge to one teacher or tutor in helping a senior learn.
    In fact, I recently wrote looking for bigger benefits through class materials and
    not being nervous to walk in return out the
    door when the store truly not provide up the awesome deals they promote.
    If possible, give consideration to finding term searches that coordinate
    a monthly holiday because most elementary schools touch on the major vacations.

  28. Take avantage d’avantage de tous seuls votre amène qui la mode, le style, ULTRAVIOLET la protection toutefois en plus le la part de légende comme de everything, alors . Ce particulier la collection fera le plaisir chaque un des passionnés D’accessoires pour le
    mois d’été best pour le day hors avec les amis ou à le promenade quant au la plage. qualité de carrera de lunettes à un coût, toutefois en fait moins que le cent euros j’en fait l’un exceptionnel offre vous offre this particulier le site de site Web, donc l’apprécier as partie de ceux-ci les temps de crise nous
    devoir nevertheless sent capable s’amuser. There j’en fait
    aussi le carbone variation j’en fait mon advice le la plupart d’ les versions de gorgeous du exact même .

    Éloigné d’ se reposant sur the passé le succès, récemment là je the vrai la motivation de tout les ces a impliqué dans initiating l’INNOVATION.

  29. le commerce, helped par le roi du roi Michael Jackson, aussi Motivé par
    Tom cruise comme de Idéal Arme, le film achievements. Il had a été mis sur le marché comme de 60
    ans mais à prise loin vingt les ans, 80 déterminer le start du sien awesome Le fera.
    si ne fait pas attente pour le second et gentillement un enjoyed l’un ou votre soi avec ceci le rabais incroyable passé ces lunettes de soleil de carrera bon marché. solaire qui regagne it je shape et aussi remplaçant le métal De high plastique de qualité aidé par le les Chats 5000.

  30. Bricklaying software include the mixer, wall ties, a
    bricklaying trowel, a spacing rule, and also the levels.
    In building construction the force and aesthetic beauty of brick walls, brick pillars depend in the quality of bonds.
    So from preparing the homework in order to final bricklaying Melbourne is actually ready below definitely one roof by
    a few of the reputable construction service providers.
    What Exactly Is desirable is actually a diploma after highschool
    and also this is certainly exclusively if you want to become apprentices.
    Create markings showing the location of each brick to choose as a guide while laying them.

  31. Sweet blog! I found it while surfing around on Yahoo News.

    Do you have any suggestions on how to get listed in Yahoo News?

    I’ve been trying for a while but I never seem to get there! Many thanks

  32. I’m not certain the place you’re getting yohr info, however
    ood topic. I must spend a while learning more orr figuring out more.
    Thank you forr excellent informatrion I wwas in search of tbis info for my mission.

  33. To avoid this through going on, lying on the side a very good idea.
    If you have a swollen throat, this may be a factor of your snoring.
    not to take sleep aids or tranquilizers (for the similar reason),.

  34. Nice post. I learn something totally new and challenging on sites I
    stumbleupon on a daily basis. It will always be useful to read through content from other writers and use something from their websites.

  35. Hi there! Wօuld yoս mind if I share yօur blog witҺ my
    twitter group? There’s a lot of peoρle that I think would really appreciate your content.
    Рlease leet mee know. Thank you

  36. Rochelle says:

    Hi, every time i used to check website posts here early in the morning, since
    i love to find out more and more.

  37. Carley says:

    Thanks for the marvelous posting! I certainly enjoyed reading it,
    you can be a great author.I will ensure that I bookmark your blog and definitely will come back at some point.
    I want to encourage one to continue your great posts, have a nice weekend!

  38. Undeniably consider that which you said. Your favorite reason seemed to be at the internet the simplest factor to
    have in mind of. I say to you, I definitely get annoyed while people think
    about issues that they just don’t realize about.
    You controlled to hit the nail upon the highest and defined out the entire thing with no need side-effects , other
    people could take a signal. Will likely be again to get more.

    Thank you

  39. Melaine says:

    Thank you for every other informative website. Where else may just I get that type of information written in such a perfect method?

    I’ve a project that I am just now operating on, and I’ve been at
    the glance out for such information.

  40. Rosita says:

    Good day! I could have sworn I’ve been to this website before but after browsing through some of the articles I realized it’s new to me.
    Anyways, I’m certainly delighted I found it and I’ll be book-marking it and checking back often!

  41. I’m gone to tell my little brother, that he should also go to see this
    blog on regular basis to take updated from hottest news.

  42. I’m curious to find out what blog system you have been working with?
    I’m having some minor security issues with my latest blog and I’d
    like to find something more secure. Do you have any solutions?

  43. Fae says:

    I am really delighted to glance at this website posts which
    includes tons of helpful information, thanks for providing such statistics.

  44. Harriett says:

    Hello to every one, the contents existing at this web site are really remarkable for people knowledge, well,
    keep up the nice work fellows.

  45. Using blocks means putting blocks under the legs and at the
    head of your bed. Oral Masks are worn over the mouth and delivers
    air right into the mouth. This can be a very dangerous condition, and needs to be
    closely monitored.

  46. Hello! I just wanted to ask if you ever have any trouble with
    hackers? My last blog (wordpress) was hacked and I ended up losing
    months of hard work due to no back up. Do you have any
    methods to prevent hackers?

  47. Best Dental Clinic in Hyderabad Can Provide Necessary
    Tips. Root canals are basically filling materials for the canals that travel down the
    length of the root. The clinic provides children with dental care as well.

  48. Billy says:

    Greetings! This is my first visit to your blog! We are a team of volunteers and starting a new initiative in a
    community in the same niche. Your blog provided us beneficial information to work on. You have done a marvellous job!

  49. Having read this I thought it was extremely informative.
    I appreciate you taking the time and energy to put this content together.
    I once again find myself personally spending a lot of time both reading and posting comments.
    But so what, it was still worthwhile!

  50. We’re a gaggle of volunteers and starting a brand new scheme in our
    community. Your web site offered us with useful information to work on. You have done an impressive
    task and our entire neighborhood will likely be
    thankful to you.

  51. Masaoka and Mitsuyo Seo, nonetheless made great strides in animation technique, especially with increasing help from a
    government using animation in education and propaganda.
    That means your cable operator is not providing you with sufficient channels and your child is also devoid of some of the must
    popular cartoon channels. The transparent background adds a subtle chic touch to the symbol and looks like a water mark.

  52. Ahmed says:

    Hi i am getting the issue with Ant Build for JAXWS , I am Getting the Build Failure with below Cause :
    jws does not support “type” Attribute .

    any Help in this Regards would be highly appreciable .

  53. You ccan choose the length of the excursion to rante from
    half a day to five days. Thee resort of Hurghada,
    with iits mixtrure of oold bazaars, beautiful beaches and vibrant nightlife iss a popular choice
    from which to experience tthe Red Sea region, with
    its slightly quieter neighour El Gouna, a more laid back option. Don’t
    forget to visit one of the recommended Spaa centers in Hurghada, you will enjoy orr
    Spa programs with varieties of nature elements.

  54. Belize vacations

    Using Weblogic JWSC Ant task with Maven | Agile Enterprise

  55. Good blog post. I absolutely appreciate this website.

    Continue the good work!

  56. thenextweb.com

    Using Weblogic JWSC Ant task with Maven | Agile Enterprise

  57. launching new product

    Using Weblogic JWSC Ant task with Maven | Agile Enterprise

  58. patent law programs

    Using Weblogic JWSC Ant task with Maven | Agile Enterprise

  59. Oh my goodness! Incredible article dude! Thank you, However I am
    having problems with your RSS. I don’t understand the reason why I cannot subscribe to it.
    Is there anyone else having similar RSS issues?

    Anybody who knows the answer will you kindly respond?
    Thanx!!

  60. pagina web says:

    each time i used to read smaller content that also clear their motive, and that is also happening with this article
    which I am reading at this place.

  61. Wonderful goods from you, man. I’ve understand your stuff previous to and you are just too
    fantastic. I actually like what you have acquired here, certainly like what
    you are stating and the way in which you say it. You make it
    entertaining and you still care for to keep it wise. I can not wait to read far more from you.
    This is actually a wonderful web site.

  62. I enjoy what you guys are usually up too. This sort of clever work and exposure!
    Keep up the excellent works guys I’ve included you guys to my blogroll.

  63. Thanks to my father who shared with me on the topic of this weblog, this website
    is in fact remarkable.

  64. superherouniverse.com

    Using Weblogic JWSC Ant task with Maven | Agile Enterprise

  65. Mobo – Player is an awesome video payer app for android.
    The demand for android application developers is increasing with the
    growth in popularity of Android applications. So then what you simply should do is gather as
    many facts as possible and think about them.

  66. ani says:

    Adding classpathref=”weblogic.jar.classpath” in the taskdef works fine in Linux, but throws below exception in Windows
    weblogic.Deployer -verbose -upload -noexit -name ums-mats-war-0.0.1 -source C:\ADE\mhv_dte2307\oracle\work\com.oracle.ucs.messaging.test\ums-mats-war\target\ums-mats-war-0.0.1.war -targets ums_server1 -adminurl t3://adc6260252.us.oracle.com:${adminport} -user weblogic -password ******** -redeploy
    [wldeploy] C:\ADE\mhv_dte2307\oracle\work\com.oracle.ucs.messaging.test\ums-mats-war\target\antrun\build-main.xml:13: java.io.IOException: Cannot run program “\\adcnas418\farm_fmwqa\java\win64\jdk8u20_b20\jre\bin\java.exe”: CreateProcess error=206, The filename or extension is too long
    [wldeploy] at org.apache.tools.ant.taskdefs.Java.fork(Java.java:798)
    [wldeploy] at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:214)
    [wldeploy] at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:135)
    [wldeploy] at weblogic.ant.taskdefs.management.WLDeploy.executeDeployer(WLDeploy.java:508)
    [wldeploy] at weblogic.ant.taskdefs.management.WLDeploy.execute(WLDeploy.java:422)
    [wldeploy] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    [wldeploy] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [wldeploy] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    [wldeploy] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    [wldeploy] at java.lang.reflect.Method.invoke(Method.java:483)
    [wldeploy] at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    [wldeploy] at org.apache.tools.ant.Task.perform(Task.java:348)
    [wldeploy] at org.apache.tools.ant.Target.execute(Target.java:390)
    [wldeploy] at org.apache.tools.ant.Target.performTasks(Target.java:411)
    [wldeploy] at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
    [wldeploy] at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
    [wldeploy] at org.apache.maven.plugin.antrun.AntRunMojo.execute(AntRunMojo.java:327)
    [wldeploy] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
    [wldeploy] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
    [wldeploy] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
    [wldeploy] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
    [wldeploy] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
    [wldeploy] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
    [wldeploy] at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
    [wldeploy] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
    [wldeploy] at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
    [wldeploy] at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
    [wldeploy] at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
    [wldeploy] at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
    [wldeploy] at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
    [wldeploy] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [wldeploy] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    [wldeploy] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    [wldeploy] at java.lang.reflect.Method.invoke(Method.java:483)
    [wldeploy] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
    [wldeploy] at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
    [wldeploy] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
    [wldeploy] at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
    [wldeploy] Caused by: java.io.IOException: Cannot run program “\\adcnas418\farm_fmwqa\java\win64\jdk8u20_b20\jre\bin\java.exe”: CreateProcess error=206, The filename or extension is too long
    [wldeploy] at java.lang.ProcessBuilder.start(ProcessBuilder.java:1042)
    [wldeploy] at java.lang.Runtime.exec(Runtime.java:620)
    [wldeploy] at org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Execute.java:862)
    [wldeploy] at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:481)
    [wldeploy] at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:495)
    [wldeploy] at org.apache.tools.ant.taskdefs.Java.fork(Java.java:791)
    [wldeploy] … 37 more
    [wldeploy] Caused by: java.io.IOException: CreateProcess error=206, The filename or extension is too long
    [wldeploy] at java.lang.ProcessImpl.create(Native Method)
    [wldeploy] at java.lang.ProcessImpl.(ProcessImpl.java:386)
    [wldeploy] at java.lang.ProcessImpl.start(ProcessImpl.java:137)
    [wldeploy] at java.lang.ProcessBuilder.start(ProcessBuilder.java:1023)
    [wldeploy] … 42 more
    [INFO] ————————————————————————

    Any pointer on this please.

  67. Through ordering one planned reading, you’ll be impressed the amount of you
    have actually know during the course of a reading.

  68. Everyone loves what you guys are usually up too. This type of
    clever work and exposure! Keep up the superb works guys I’ve added you guys to my blogroll.

  69. Gnanasekhar says:

    Hi,

    I am facing issue on JWS ANT task, I try to build, unable find out the my source code.

  70. Gnanasekhar says:

    Please suggest me.

  71. Ronald says:

    you can use to solve such issue of process error-206,it works very well on it.

  72. barryk desteve says:

    Do not worry if you want to remove the blocked files or too long path files from

    your system, here I suggest a smooth way. Use “Long path tool” software and keep

    yourself cool.

  73. Stafford Heights barber near me

    Using Weblogic JWSC Ant task with Maven | Agile Enterprise

Leave a reply to web design company Cancel reply