Having problem building jcifs V1.2.19

Hello professional developer,
I am having difficulties in building jscifs v1.2.19, which I downloaded it from http://jcifs.samba.org/src/. I am using ant to build it and it return:
C:\Temp\jcifs_1.2.19>ant all
Buildfile: build.xml
dependencies:
hasServlet:
BUILD FAILED
C:\Temp\jcifs_1.2.19\build.xml:45: The following error occurred while executing
this line:
C:\Temp\jcifs_1.2.19\build.xml:34: The Java Servlet API classes could not be fou
nd.  These files can be obtained from:
        http://java.sun.com/products/servlet/download.html
Total time: 0 seconds
C:\Temp\jcifs_1.2.19>However, I had installed my J2EE into my C:\Sun\, which give me the same �build failed� result
and here is the build.xml:
<project name="jcifs" default="usage" basedir=".">
    <property name="version" value="1.2.19"/>
    <property name="reldate" value="Apr 6, 2008"/>
    <target name="usage">
        <echo>
Available Build Targets:
dependencies: Checks that all class dependencies are met.
     compile: Builds the jCIFS classes.
         jar: Packages the jCIFS classes into a .jar file.
        docs: XSLT generated website pages
     javadoc: Creates the Javadoc API documentation.
         all: Performs all of the above.
       clean: Removes build artifacts.
    allclean: Removes distribution and build artifacts.  This
              includes the .jar file, .class files, and
              the Javadoc API documentation.
       jcifs: Builds the "all" target, followed by "clean".  This
              reproduces the distribution package contents.
     distrib: Builds the "jcifs" target, and additionally
              recreates the .zip and .tgz downloadable
              distributions.
    checksum: Creates MD5 checksums of the .zip and .tgz
              distributions.
       usage: Displays this message.</echo>
    </target>
    <target name="hasServlet" unless="hasServlet">
        <fail>
    The Java Servlet API classes could not be found.  These files can be
    obtained from:
        http://java.sun.com/products/servlet/download.html
        </fail>
    </target>
    <target name="dependencies">
        <available classname="javax.servlet.Servlet" property="hasServlet"/>
        <antcall target="hasServlet"/>
    </target>
    <target name="compile" depends="dependencies">
        <mkdir dir="build"/>
        <javac srcdir="src" destdir="build" debug="on">
<!--
            <compilerarg line="-Xlint:deprecation -Xlint:unchecked"/>
-->
        </javac>
        <copy file="src/jcifs/util/mime.map" tofile="build/jcifs/util/mime.map" overwrite="yes"/>
        <copy file="src/jcifs/http/ne.css" tofile="build/jcifs/http/ne.css" overwrite="yes"/>
    </target>
    <target name="jar" depends="compile">
        <jar jarfile="jcifs-${version}.jar">
            <fileset dir="build"/>
        </jar>
    </target>
    <target name="javadoc">
        <delete dir="docs/api" quiet="true"/>
        <mkdir dir="docs/api"/>
        <javadoc destdir="docs/api"
            overview="docs/overview.html"
            author="true"
            version="true"
            use="true"
            sourcefiles="src/jcifs/smb/ACE.java,src/jcifs/smb/SID.java,src/jcifs/Config.java,src/jcifs/UniAddress.java,src/jcifs/netbios/NbtAddress.java,src/jcifs/smb/DosFileFilter.java,src/jcifs/smb/NtlmAuthenticator.java,src/jcifs/smb/NtlmPasswordAuthentication.java,src/jcifs/smb/SmbAuthException.java,src/jcifs/smb/SmbException.java,src/jcifs/smb/SmbFile.java,src/jcifs/smb/SmbFileFilter.java,src/jcifs/smb/SmbFileInputStream.java,src/jcifs/smb/SmbFilenameFilter.java,src/jcifs/smb/SmbFileOutputStream.java,src/jcifs/smb/SmbNamedPipe.java,src/jcifs/smb/SmbRandomAccessFile.java,src/jcifs/smb/SmbSession.java"
            windowtitle="JCIFS API">
            <sourcepath path="src"/>
            <classpath>
                <pathelement path="${java.class.path}"/>
                <fileset dir=".">
                    <include name="**/*.jar"/>
                </fileset>
            </classpath>
        </javadoc>
        <!--copy file="docs/allclasses-frame.html" tofile="docs/api/allclasses-frame.html" overwrite="yes"/-->
    </target>
    <target name="all" depends="jar,docs,javadoc"/>
    <target name="clean">
        <delete dir="build" quiet="true"/>
    </target>
    <target name="allclean" depends="clean">
        <delete quiet="true">
            <fileset dir=".">
                <include name="jcifs-${version}.zip"/>
                <include name="jcifs-${version}.zip.MD5"/>
                <include name="jcifs-${version}.tgz"/>
                <include name="jcifs-${version}.tgz.MD5"/>
                <include name="jcifs-${version}.jar"/>
            </fileset>
        </delete>
        <delete dir="docs/api" quiet="true"/>
        <delete quiet="true">
            <fileset dir="docs">
                <include name="index.html"/>
                <include name="pipes.html"/>
                <include name="faq.html"/>
                <include name="wins.html"/>
                <include name="capture.html"/>
                <include name="httpclient.html"/>
                <include name="resolver.html"/>
                <include name="authhandler.html"/>
                <include name="ntlmhttpauth.html"/>
            </fileset>
        </delete>
    </target>
    <target name="jcifs" depends="all,clean"/>
    <target name="distrib" depends="jcifs">
        <delete dir="dist_tmp" quiet="true"/>
        <copy todir="dist_tmp/jcifs_${version}">
            <fileset dir=".">
                <include name="build.xml"/>
                <include name="jcifs-${version}.jar"/>
                <include name="CHANGES.txt"/>
                <include name="README.txt"/>
                <include name="docs/**"/>
                <include name="examples/**"/>
                <include name="src/**"/>
                <include name="patches/**"/>
            </fileset>
        </copy>
        <fixcrlf srcdir="dist_tmp" tab="remove" tablength="4">
            <include name="**/*.java"/>
            <include name="**/*.c"/>
            <include name="**/*.h"/>
            <include name="**/*.css"/>
            <include name="**/*.html"/>
            <include name="**/*.xml"/>
            <include name="**/*.txt"/>
            <include name="**/*.jav"/>
            <include name="**/*.bak"/>
            <include name="**/*.prp"/>
            <include name="**/*.map"/>
            <include name="**/*.patch"/>
        </fixcrlf>
        <fixcrlf srcdir="dist_tmp" eol="crlf">
            <include name="**/*.java"/>
            <include name="**/*.c"/>
            <include name="**/*.h"/>
            <include name="**/*.css"/>
            <include name="**/*.html"/>
            <include name="**/*.xml"/>
            <include name="**/*.txt"/>
            <include name="**/*.jav"/>
            <include name="**/*.bak"/>
            <include name="**/*.prp"/>
            <include name="**/*.map"/>
            <include name="**/*.patch"/>
            <include name="**/Makefile"/>
        </fixcrlf>
        <zip zipfile="jcifs-${version}.zip" basedir="dist_tmp"/>
        <fixcrlf srcdir="dist_tmp" eol="lf">
            <include name="**/*.java"/>
            <include name="**/*.c"/>
            <include name="**/*.h"/>
            <include name="**/*.css"/>
            <include name="**/*.html"/>
            <include name="**/*.xml"/>
            <include name="**/*.txt"/>
            <include name="**/*.jav"/>
            <include name="**/*.bak"/>
            <include name="**/*.prp"/>
            <include name="**/*.map"/>
            <include name="**/*.patch"/>
            <include name="**/Makefile"/>
        </fixcrlf>
        <tar tarfile="jcifs-${version}.tar" basedir="dist_tmp"/>
        <delete dir="dist_tmp" quiet="true"/>
        <gzip src="jcifs-${version}.tar" zipfile="jcifs-${version}.tgz"/>
        <delete file="jcifs-${version}.tar" quiet="true"/>
    </target>
    <target name="checksum">
        <checksum file="jcifs-${version}.zip"/>
        <checksum file="jcifs-${version}.tgz"/>
    </target>
    <target name="docs">
        <style basedir="docs" destdir="docs" extension=".html" style="plain.xsl"
                includes="pipes.xml,faq.xml,wins.xml,capture.xml,httpclient.xml,resolver.xml,authhandler.xml,ntlmhttpauth.xml">
            <param name="date" expression="${reldate}"/>
            <param name="lib" expression="jcifs-${version}"/>
            <param name="title" expression="JCIFS"/>
            <param name="copyright" expression="The JCIFS Project"/>
            <param name="edge" expression="#808080"/>
            <param name="mainpane" expression="#ffffff"/>
            <param name="leftpane" expression="#FFD700"/>
            <param name="middlepane" expression="#ffffff"/>
            <param name="footer" expression="#808080"/>
            <param name="text1" expression="#000000"/>
            <param name="text2" expression="#000080"/>
        </style>
        <style basedir="docs" destdir="docs" extension=".html" style="proj.xsl"
                includes="index.xml">
            <param name="date" expression="${reldate}"/>
            <param name="lib" expression="jcifs-${version}"/>
            <param name="title" expression="JCIFS"/>
            <param name="copyright" expression="The JCIFS Project"/>
            <param name="edge" expression="#808080"/>
            <param name="mainpane" expression="#ffffff"/>
            <param name="leftpane" expression="#e0e0FF"/>
            <param name="middlepane" expression="#ffffff"/>
            <param name="footer" expression="#808080"/>
            <param name="text1" expression="#000000"/>
            <param name="text2" expression="#000080"/>
        </style>
    </target>
</project>I hope someone can help me to solve this problem. :D
Thank you
Edited by: johncsl82 on Apr 16, 2008 2:14 AM

my own solution:
1. copy C:\jboss-portal-2.6.4\server\default\libservlet-api.jar to %ANT_HOME%\lib\
2. run ant -diagnostics
C:\Temp\jcifs_1.2.19>ant  -diagnostics
------- Ant diagnostics report -------
Apache Ant version 1.7.0 compiled on December 13 2006
Implementation Version
core tasks     : 1.7.0
optional tasks : not available
ANT PROPERTIES
ant.version: Apache Ant version 1.7.0 compiled on December 13 2006
ant.java.version: 1.6
ant.core.lib: C:\Program Files\WinAnt\lib\ant.jar
ant.home: C:\Program Files\WinAnt
ANT_HOME/lib jar listing
ant.home: C:\Program Files\WinAnt
ant-antlr.jar (5769 bytes)
ant-apache-bcel.jar (8627 bytes)
ant-apache-bsf.jar (3980 bytes)
ant-apache-log4j.jar (3074 bytes)
ant-apache-oro.jar (39591 bytes)
ant-apache-regexp.jar (3737 bytes)
ant-apache-resolver.jar (4080 bytes)
ant-commons-logging.jar (3943 bytes)
ant-commons-net.jar (47163 bytes)
ant-contrib-1.0b3.jar (224277 bytes)
ant-jai.jar (21368 bytes)
ant-javamail.jar (7011 bytes)
ant-jdepend.jar (8152 bytes)
ant-jmf.jar (6609 bytes)
ant-jsch.jar (30122 bytes)
ant-junit.jar (92792 bytes)
ant-launcher.jar (11734 bytes)
ant-netrexx.jar (9895 bytes)
ant-nodeps.jar (430311 bytes)
ant-starteam.jar (35404 bytes)
ant-stylebook.jar (2334 bytes)
ant-swing.jar (6713 bytes)
ant-testutil.jar (14919 bytes)
ant-trax.jar (6897 bytes)
ant-weblogic.jar (14254 bytes)
ant.jar (1289806 bytes)
servlet-api.jar (89678 bytes)
xercesImpl.jar (1212965 bytes)
xml-apis.jar (195119 bytes)
USER_HOME/.ant/lib jar listing
user.home: C:\Documents and Settings\Administrator
No such directory.
Tasks availability
image : Missing dependency javax.media.jai.PlanarImage
sshexec : Missing dependency com.jcraft.jsch.UserInfo
scp : Missing dependency com.jcraft.jsch.UserInfo
jdepend : Missing dependency jdepend.xmlui.JDepend
A task being missing/unavailable should only matter if you are trying to use it
org.apache.env.Which diagnostics
Not available.
Download it at http://xml.apache.org/commons/
XML Parser information
XML Parser : org.apache.xerces.jaxp.SAXParserImpl
XML Parser Location: C:\Program Files\WinAnt\lib\xercesImpl.jar
Namespace-aware parser : org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser
Namespace-aware parser Location: C:\Program Files\WinAnt\lib\xercesImpl.jar
System properties
java.runtime.name : Java(TM) SE Runtime Environment
sun.boot.library.path : C:\Sun\SDK\jdk\jre\bin
java.vm.version : 10.0-b19
ant.library.dir : C:\Program Files\WinAnt\lib
java.vm.vendor : Sun Microsystems Inc.
java.vendor.url : http://java.sun.com/
path.separator : ;
java.vm.name : Java HotSpot(TM) Client VM
file.encoding.pkg : sun.io
user.country : US
sun.java.launcher : SUN_STANDARD
sun.os.patch.level : Service Pack 2
java.vm.specification.name : Java Virtual Machine Specification
user.dir : C:\Temp\jcifs_1.2.19
java.runtime.version : 1.6.0_05-b13
java.awt.graphicsenv : sun.awt.Win32GraphicsEnvironment
java.endorsed.dirs : C:\Sun\SDK\jdk\jre\lib\endorsed
os.arch : x86
java.io.tmpdir : C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\
line.separator :
java.vm.specification.vendor : Sun Microsystems Inc.
user.variant :
os.name : Windows 2003
ant.home : C:\Program Files\WinAnt
sun.jnu.encoding : Cp1252
java.library.path : C:\Sun\SDK\jdk\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\MsNfs\;C:\php-5.2.5-Win32;C:\Sun\SDK\
jdk;C:\Sun\SDK\;C:\Program Files\WinAnt;C:\Program Files\WinAnt\bin;C:\Sun\SDK\bin;C:\Sun\SDK\lib;C:\Sun\SDK\jdk\bin;C:\Sun\SDK\jdk\lib;C:\jboss-portal-2.6.4\server\default\lib;
java.specification.name : Java Platform API Specification
java.class.version : 50.0
sun.management.compiler : HotSpot Client Compiler
os.version : 5.2
user.home : C:\Documents and Settings\Administrator
user.timezone : Asia/Singapore
java.awt.printerjob : sun.awt.windows.WPrinterJob
file.encoding : Cp1252
java.specification.version : 1.6
user.name : Administrator
java.class.path : C:\Program Files\WinAnt\lib\ant-launcher.jar;C:\Program Files\WinAnt\lib\ant-antlr.jar;C:\Program Files\WinAnt\lib\ant-apache-bcel.jar;C:\Program Files\WinAnt\lib\ant-apache-bsf.jar;
C:\Program Files\WinAnt\lib\ant-apache-log4j.jar;C:\Program Files\WinAnt\lib\ant-apache-oro.jar;C:\Program Files\WinAnt\lib\ant-apache-regexp.jar;C:\Program Files\WinAnt\lib\ant-apache-resolver.jar;C:
\Program Files\WinAnt\lib\ant-commons-logging.jar;C:\Program Files\WinAnt\lib\ant-commons-net.jar;C:\Program Files\WinAnt\lib\ant-contrib-1.0b3.jar;C:\Program Files\WinAnt\lib\ant-jai.jar;C:\Program F
iles\WinAnt\lib\ant-javamail.jar;C:\Program Files\WinAnt\lib\ant-jdepend.jar;C:\Program Files\WinAnt\lib\ant-jmf.jar;C:\Program Files\WinAnt\lib\ant-jsch.jar;C:\Program Files\WinAnt\lib\ant-junit.jar;
C:\Program Files\WinAnt\lib\ant-launcher.jar;C:\Program Files\WinAnt\lib\ant-netrexx.jar;C:\Program Files\WinAnt\lib\ant-nodeps.jar;C:\Program Files\WinAnt\lib\ant-starteam.jar;C:\Program Files\WinAnt
\lib\ant-stylebook.jar;C:\Program Files\WinAnt\lib\ant-swing.jar;C:\Program Files\WinAnt\lib\ant-testutil.jar;C:\Program Files\WinAnt\lib\ant-trax.jar;C:\Program Files\WinAnt\lib\ant-weblogic.jar;C:\P
rogram Files\WinAnt\lib\ant.jar;C:\Program Files\WinAnt\lib\servlet-api.jar;C:\Program Files\WinAnt\lib\xercesImpl.jar;C:\Program Files\WinAnt\lib\xml-apis.jar;C:\Sun\SDK\jdk\lib\tools.jar
java.vm.specification.version : 1.0
sun.arch.data.model : 32
java.home : C:\Sun\SDK\jdk\jre
java.specification.vendor : Sun Microsystems Inc.
user.language : en
awt.toolkit : sun.awt.windows.WToolkit
java.vm.info : mixed mode
java.version : 1.6.0_05
java.ext.dirs : C:\Sun\SDK\jdk\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
sun.boot.class.path : C:\Sun\SDK\jdk\jre\lib\resources.jar;C:\Sun\SDK\jdk\jre\lib\rt.jar;C:\Sun\SDK\jdk\jre\lib\sunrsasign.jar;C:\Sun\SDK\jdk\jre\lib\jsse.jar;C:\Sun\SDK\jdk\jre\lib\jce.jar;C:\Sun\SDK
\jdk\jre\lib\charsets.jar;C:\Sun\SDK\jdk\jre\classes
java.vendor : Sun Microsystems Inc.
file.separator : \
java.vendor.url.bug : http://java.sun.com/cgi-bin/bugreport.cgi
sun.cpu.endian : little
sun.io.unicode.encoding : UnicodeLittle
sun.desktop : windows
sun.cpu.isalist : pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
Temp dir
Temp dir is C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\
Temp dir is writeable
Temp dir alignment with system clock is 0 ms
Locale information
Timezone Singapore Time offset=28800000
Proxy information
Java1.5+ proxy settings:
Direct connection
C:\Temp\jcifs_1.2.19>3. run ant -d
C:\Temp\jcifs_1.2.19>ant -d
Apache Ant version 1.7.0 compiled on December 13 2006
Buildfile: build.xml
Adding reference: ant.PropertyHelper
Detected Java version: 1.6 in: C:\Sun\SDK\jdk\jre
Detected OS: Windows 2003
Adding reference: ant.ComponentHelper
Setting ro project property: ant.file -> C:\Temp\jcifs_1.2.19\build.xml
Adding reference: ant.projectHelper
Adding reference: ant.parsing.context
Adding reference: ant.targets
parsing buildfile C:\Temp\jcifs_1.2.19\build.xml with URI = file:/C:/Temp/jcifs_1.2.19/build.xml
Setting ro project property: ant.project.name -> jcifs
Adding reference: jcifs
Setting ro project property: ant.file.jcifs -> C:\Temp\jcifs_1.2.19\build.xml
Project base dir set to: C:\Temp\jcifs_1.2.19
+Target:
+Target: usage
+Target: hasServlet
+Target: dependencies
+Target: compile
+Target: jar
+Target: javadoc
+Target: all
+Target: clean
+Target: allclean
+Target: jcifs
+Target: distrib
+Target: checksum
+Target: docs
[antlib:org.apache.tools.ant] Could not load definitions from resource org/apache/tools/ant/antlib.xml. It could not be found.
Setting project property: version -> 1.2.19
Setting project property: reldate -> Apr 6, 2008
Attempting to create object of type org.apache.tools.ant.helper.DefaultExecutor
Adding reference: ant.executor
Build sequence for target(s) `usage' is [usage]
Complete build sequence is [usage, dependencies, compile, jar, docs, javadoc, all, clean, jcifs, distrib, hasServlet, checksum, allclean, ]
usage:
     [echo]
     [echo] Available Build Targets:
     [echo]
     [echo] dependencies: Checks that all class dependencies are met.
     [echo]      compile: Builds the jCIFS classes.
     [echo]          jar: Packages the jCIFS classes into a .jar file.
     [echo]         docs: XSLT generated website pages
     [echo]      javadoc: Creates the Javadoc API documentation.
     [echo]          all: Performs all of the above.
     [echo]
     [echo]        clean: Removes build artifacts.
     [echo]     allclean: Removes distribution and build artifacts.  This
     [echo]               includes the .jar file, .class files, and
     [echo]               the Javadoc API documentation.
     [echo]
     [echo]        jcifs: Builds the "all" target, followed by "clean".  This
     [echo]               reproduces the distribution package contents.
     [echo]      distrib: Builds the "jcifs" target, and additionally
     [echo]               recreates the .zip and .tgz downloadable
     [echo]               distributions.
     [echo]     checksum: Creates MD5 checksums of the .zip and .tgz
     [echo]               distributions.
     [echo]
     [echo]        usage: Displays this message.
BUILD SUCCESSFUL
Total time: 0 seconds
C:\Temp\jcifs_1.2.19>4. run ant -d dependencies
C:\Temp\jcifs_1.2.19>ant -d dependencies
Apache Ant version 1.7.0 compiled on December 13 2006
Buildfile: build.xml
Adding reference: ant.PropertyHelper
Detected Java version: 1.6 in: C:\Sun\SDK\jdk\jre
Detected OS: Windows 2003
Adding reference: ant.ComponentHelper
Setting ro project property: ant.file -> C:\Temp\jcifs_1.2.19\build.xml
Adding reference: ant.projectHelper
Adding reference: ant.parsing.context
Adding reference: ant.targets
parsing buildfile C:\Temp\jcifs_1.2.19\build.xml with URI = file:/C:/Temp/jcifs_1.2.19/build.xml
Setting ro project property: ant.project.name -> jcifs
Adding reference: jcifs
Setting ro project property: ant.file.jcifs -> C:\Temp\jcifs_1.2.19\build.xml
Project base dir set to: C:\Temp\jcifs_1.2.19
+Target:
+Target: usage
+Target: hasServlet
+Target: dependencies
+Target: compile
+Target: jar
+Target: javadoc
+Target: all
+Target: clean
+Target: allclean
+Target: jcifs
+Target: distrib
+Target: checksum
+Target: docs
[antlib:org.apache.tools.ant] Could not load definitions from resource org/apache/tools/ant/antlib.xml. It could not be found.
Setting project property: version -> 1.2.19
Setting project property: reldate -> Apr 6, 2008
Attempting to create object of type org.apache.tools.ant.helper.DefaultExecutor
Adding reference: ant.executor
Build sequence for target(s) `dependencies' is [dependencies]
Complete build sequence is [dependencies, compile, jar, docs, javadoc, all, clean, jcifs, distrib, hasServlet, checksum, usage, allclean, ]
dependencies:
Setting project property: hasServlet -> true
Setting ro project property: ant.file -> C:\Temp\jcifs_1.2.19\build.xml
Setting ro project property: ant.file.jcifs -> C:\Temp\jcifs_1.2.19\build.xml
Setting ro project property: ant.project.name -> jcifs
Setting project property: java.ext.dirs -> C:\Sun\SDK\jdk\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
Setting project property: sun.desktop -> windows
Setting project property: java.runtime.version -> 1.6.0_05-b13
Setting project property: file.separator -> \
Setting project property: user.country -> US
Setting project property: java.vm.version -> 10.0-b19
Setting project property: line.separator ->
Setting project property: sun.io.unicode.encoding -> UnicodeLittle
Setting project property: user.dir -> C:\Temp\jcifs_1.2.19
Setting project property: file.encoding.pkg -> sun.io
Setting project property: java.specification.name -> Java Platform API Specification
Setting project property: user.variant ->
Setting project property: java.vm.specification.name -> Java Virtual Machine Specification
Setting project property: java.specification.vendor -> Sun Microsystems Inc.
Setting project property: ant.core.lib -> C:\Program Files\WinAnt\lib\ant.jar
Setting project property: path.separator -> ;
Setting project property: sun.arch.data.model -> 32
Setting project property: version -> 1.2.19
Setting project property: os.name -> Windows 2003
Setting project property: java.endorsed.dirs -> C:\Sun\SDK\jdk\jre\lib\endorsed
Setting project property: ant.library.dir -> C:\Program Files\WinAnt\lib
Setting project property: sun.jnu.encoding -> Cp1252
Setting project property: sun.boot.library.path -> C:\Sun\SDK\jdk\jre\bin
Setting project property: ant.version -> Apache Ant version 1.7.0 compiled on December 13 2006
Setting project property: awt.toolkit -> sun.awt.windows.WToolkit
Setting project property: user.name -> Administrator
Setting project property: os.version -> 5.2
Setting project property: hasServlet -> true
Setting project property: sun.java.launcher -> SUN_STANDARD
Setting project property: sun.management.compiler -> HotSpot Client Compiler
Setting project property: reldate -> Apr 6, 2008
Setting project property: java.awt.graphicsenv -> sun.awt.Win32GraphicsEnvironment
Setting project property: java.library.path -> C:\Sun\SDK\jdk\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\MsNfs\;C:\
php-5.2.5-Win32;C:\Sun\SDK\jdk;C:\Sun\SDK\;C:\Program Files\WinAnt;C:\Program Files\WinAnt\bin;C:\Sun\SDK\bin;C:\Sun\SDK\lib;C:\Sun\SDK\jdk\bin;C:\Sun\SDK\jdk\lib;C:\jboss-portal-2.6.4\server\default\
lib;
Setting project property: java.vm.specification.version -> 1.0
Setting project property: user.timezone ->
Setting project property: java.vm.info -> mixed mode
Setting project property: sun.os.patch.level -> Service Pack 2
Setting project property: sun.boot.class.path -> C:\Sun\SDK\jdk\jre\lib\resources.jar;C:\Sun\SDK\jdk\jre\lib\rt.jar;C:\Sun\SDK\jdk\jre\lib\sunrsasign.jar;C:\Sun\SDK\jdk\jre\lib\jsse.jar;C:\Sun\SDK\jdk
\jre\lib\jce.jar;C:\Sun\SDK\jdk\jre\lib\charsets.jar;C:\Sun\SDK\jdk\jre\classes
Setting project property: sun.cpu.isalist -> pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
Setting project property: java.runtime.name -> Java(TM) SE Runtime Environment
Setting project property: java.home -> C:\Sun\SDK\jdk\jre
Setting project property: java.class.path -> C:\Program Files\WinAnt\lib\ant-launcher.jar;C:\Program Files\WinAnt\lib\ant-antlr.jar;C:\Program Files\WinAnt\lib\ant-apache-bcel.jar;C:\Program Files\Win
Ant\lib\ant-apache-bsf.jar;C:\Program Files\WinAnt\lib\ant-apache-log4j.jar;C:\Program Files\WinAnt\lib\ant-apache-oro.jar;C:\Program Files\WinAnt\lib\ant-apache-regexp.jar;C:\Program Files\WinAnt\lib
\ant-apache-resolver.jar;C:\Program Files\WinAnt\lib\ant-commons-logging.jar;C:\Program Files\WinAnt\lib\ant-commons-net.jar;C:\Program Files\WinAnt\lib\ant-contrib-1.0b3.jar;C:\Program Files\WinAnt\l
ib\ant-jai.jar;C:\Program Files\WinAnt\lib\ant-javamail.jar;C:\Program Files\WinAnt\lib\ant-jdepend.jar;C:\Program Files\WinAnt\lib\ant-jmf.jar;C:\Program Files\WinAnt\lib\ant-jsch.jar;C:\Program File
s\WinAnt\lib\ant-junit.jar;C:\Program Files\WinAnt\lib\ant-launcher.jar;C:\Program Files\WinAnt\lib\ant-netrexx.jar;C:\Program Files\WinAnt\lib\ant-nodeps.jar;C:\Program Files\WinAnt\lib\ant-starteam.
jar;C:\Program Files\WinAnt\lib\ant-stylebook.jar;C:\Program Files\WinAnt\lib\ant-swing.jar;C:\Program Files\WinAnt\lib\ant-testutil.jar;C:\Program Files\WinAnt\lib\ant-trax.jar;C:\Program Files\WinAn
t\lib\ant-weblogic.jar;C:\Program Files\WinAnt\lib\ant.jar;C:\Program Files\WinAnt\lib\servlet-api.jar;C:\Program Files\WinAnt\lib\xercesImpl.jar;C:\Program Files\WinAnt\lib\xml-apis.jar;C:\Sun\SDK\jd
k\lib\tools.jar
Setting project property: user.home -> C:\Documents and Settings\Administrator
Setting project property: java.specification.version -> 1.6
Setting project property: os.arch -> x86
Setting project property: java.awt.printerjob -> sun.awt.windows.WPrinterJob
Setting project property: java.vm.specification.vendor -> Sun Microsystems Inc.
Setting project property: java.vendor.url.bug -> http://java.sun.com/cgi-bin/bugreport.cgi
Setting project property: user.language -> en
Setting project property: java.class.version -> 50.0
Setting project property: java.vm.name -> Java HotSpot(TM) Client VM
Setting project property: java.vendor.url -> http://java.sun.com/
Setting project property: java.vendor -> Sun Microsystems Inc.
Setting project property: java.vm.vendor -> Sun Microsystems Inc.
Setting project property: java.io.tmpdir -> C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\
Setting project property: java.version -> 1.6.0_05
Setting project property: ant.home -> C:\Program Files\WinAnt
Setting project property: file.encoding -> Cp1252
Setting project property: sun.cpu.endian -> little
Project base dir set to: C:\Temp\jcifs_1.2.19
  [antcall] calling target(s) [hasServlet] in build file C:\Temp\jcifs_1.2.19\build.xml
Setting ro project property: ant.file -> C:\Temp\jcifs_1.2.19\build.xml
Adding reference: ant.projectHelper
Adding reference: ant.parsing.context
Adding reference: ant.targets
parsing buildfile C:\Temp\jcifs_1.2.19\build.xml with URI = file:/C:/Temp/jcifs_1.2.19/build.xml
Setting ro project property: ant.project.name -> jcifs
Adding reference: jcifs
Setting ro project property: ant.file.jcifs -> C:\Temp\jcifs_1.2.19\build.xml
Project base dir set to: C:\Temp\jcifs_1.2.19
+Target:
+Target: usage
+Target: hasServlet
+Target: dependencies
+Target: compile
+Target: jar
+Target: javadoc
+Target: all
+Target: clean
+Target: allclean
+Target: jcifs
+Target: distrib
+Target: checksum
+Target: docs
Override ignored for property "version"
Override ignored for property "reldate"
Build sequence for target(s) `hasServlet' is [hasServlet]
Complete build sequence is [hasServlet, dependencies, compile, jar, docs, javadoc, all, clean, jcifs, distrib, checksum, usage, allclean, ]
  [antcall] Entering C:\Temp\jcifs_1.2.19\build.xml...
Build sequence for target(s) `hasServlet' is [hasServlet]
Complete build sequence is [hasServlet, dependencies, compile, jar, docs, javadoc, all, clean, jcifs, distrib, checksum, usage, allclean, ]
hasServlet:
Skipped because property 'hasServlet' set.
  [antcall] Exiting C:\Temp\jcifs_1.2.19\build.xml.
BUILD SUCCESSFUL
Total time: 1 second
C:\Temp\jcifs_1.2.19>5. lastly run ant -d all , which complete the build :D
Thank you

Similar Messages

  • Problems building a stand alone application with LV 8.6.1.

    I'm having problems building  a stand alone application with LV8.6.1. I'm using a USB- 6008 DAQ and USB-6501 Digital device in the application. I already have an simple executable on the machine so the Run time Engine is already installed.  For the USB DAQ device, I assume I need to include the DAQmx8.8 as one of the installers. When I attempt to build the application, I'm prompted for several disk, one being a distribuition disk 1. I have the installation disk for the developer package. I did not  see a distribuiton disk as one of the installation disks. When I insert disk 1 I get an error that another application is trying to run. Could someone tell me which installers I need to include and where do I find the "distributor" disk.
    Thank you,

    are you building installer for the first time on this PC?...It usually asks for the drivers CDs and some toolkits if required.
    you just need to use drivers CDs (comes with LabVIEW) from which you installed on this PC. If you have ever upgraded drivers, then you have to use the latest CDs only.......
    another issue may be ...when u insert the driver disk, it has autorun, it will launch drivers installation wizard....close that and then try to build distribution......... 
    Message Edited by Anil Reddy on 09-25-2009 01:22 PM
    Anil Punnam
    CLD
    LV 2012, TestStand 4.2..........

  • Problems building w/ Snow Leopard and iPhone SDK 3.0 Snow Leopard

    Suddenly having problems building and codesigning after upgrading to Snow Leopard and iPhone SDK 3.0 Snow Leopard.
    Profile set to Distribution, Device 2.2.1 Distribution, as has worked in the past.
    The build fails with this error:
    Command <com.apple.tools.product-pkg-utility> failed with exit code -1
    The below section is highlighted in Build Results.
    ProcessingProductPackaging /Users/harvey/Documents/iPhoneApp_Work/Listening-Hiragana/iPhone_Comprehension_timerharvey/entitlements.plist "/Users/harvey/Documents/iPhoneApp_Work/Listening-Hiragana/iPhone_Comprehension_timer_harvey/build/iPhoneComprehension.build/Distribution-iphoneos/Kana Listening.build/iPhone_Comprehension.xcent"
    cd /Users/harvey/Documents/iPhoneApp_Work/Listening-Hiragana/iPhone_Comprehension_timerharvey
    setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/u sr/bin:/bin:/usr/sbin:/sbin"
    <com.apple.tools.product-pkg-utility> /Users/harvey/Documents/iPhoneApp_Work/Listening-Hiragana/iPhone_Comprehension_timerharvey/entitlements.plist -entitlements -format xml -o "/Users/harvey/Documents/iPhoneApp_Work/Listening-Hiragana/iPhone_Comprehension_timer_harvey/build/iPhoneComprehension.build/Distribution-iphoneos/Kana Listening.build/iPhone_Comprehension.xcent"
    Any ideas? This is really strange.
    The same error occurs when trying to build for Device - 3.0, and any other version it seems.
    This is especially frustrating as I'm simply trying to update an app that I released before I upgraded.
    I will love whoever helps me forever and ever.
    saikyo

    Found the new SDK on the CD. Now I am running XCode 3.2.
    I'm talking to myself now for the benefit of future readers.
    On the Dev Center I see the note:
    "Important: You will need to re-install the iPhone SDK for Snow Leopard if you plan on developing iPhone applications after upgrading your Mac to Snow Leopard and installing Xcode 3.2."
    So I'm going to download and install the iPhone SDK 3.0 (Snow Leopard) from the SDK downloads area on the Dev Center page. This seems weird to me as it's 3.0... but I'm running 3.2 now... I guess this will just update my 3.2?
    I also notice that when I run XCode 3.2 I don't have Simulator as an option anymore in my profiles.
    Going to go ahead with the update now and see how it goes.

  • Having problem with the printer with type "PDF Publisher"

    Hi,
    We are having problem with printing PDF reports with print style as "PDF Publishrer". The concurrent program errors out after it generates the report. But when we try that with style "PORTRAIT" then it prints successfully. We have tried with a number of printers and a number of reports. The results are same. So my understanding is it has something to do with the printer configuration from the EBS side.
    Any help in this regard is highly appreciated.
    Pratap

    Hi Hussein ,
    Thanks for the response. The details are provided below.
    The application is R12.1, Database 11.1.0.7, OS is Solaris 10.
    The database characterset is US7ASCII.
    The printer type is --PASTA Universal Printer Type
    The log file does not give any error but the program completes with error. I am coping the log file below.
    Receivables: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    RAXINV_SEL module: Invoice Print Selected Invoices
    Current system time is 20-JUN-2011 14:23:10
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    p_order_by='TRX_NUMBER'
    p_trx_number_low='10100'
    p_trx_number_high='10100'
    p_open_invoice='Y'
    p_check_for_taxyn='N'
    p_choice='SEL'
    p_header_pages='1'
    p_debug_flag='N'
    p_message_level='10'
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.AL32UTF8
    Enter Password:
    MSG-00100: DEBUG: AfterPForm_Trigger +
    MSG-00100: DEBUG: Multi Org established.
    MSG-00100: DEBUG: AfterParam_Procs.Get_Country_Details
    MSG-00100: DEBUG: AfterParam_Procs.Switch_On_Debug
    MSG-00100: DEBUG: AfterParam_Procs.Get_Trx_Number_Low
    MSG-00100: DEBUG: AfterParam_Procs.Get_Trx_Number_High
    MSG-00100: DEBUG: AfterParam_Procs.Get_Tax_Option
    MSG-00100: DEBUG: BeforeReport_Trigger.Build_Where_Clause
    MSG-00100: DEBUG: P_Choice: SEL
    MSG-00100: DEBUG: Choice is other than ADJ, setting ORDER BY.
    MSG-00100: DEBUG: AfterPForm_Trigger -
    MSG-00100: DEBUG: BeforeReport_Trigger +
    MSG-00100: DEBUG: BeforeReport_Procs.Populate_Printing_Option
    MSG-00100: DEBUG: BeforeReport_Procs.Populate_Tax_Printing_Option
    MSG-00100: DEBUG: BeforeReport_Trigger.Get_Message_Details
    MSG-00100: DEBUG: BeforeReport_Trigger.Get_Org_Profile.
    MSG-00100: DEBUG: Organization Id: 96
    MSG-00100: DEBUG: BeforeReport_Trigger -
    MSG-05000: DEBUG: Trx No... 10100
    MSG-00010: 14:23 1 Transaction: 10100
    Report Builder: Release 10.1.2.3.0 - Production on Mon Jun 20 14:23:26 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 895365 on node PAUPRJ01 at 20-JUN-2011 14:23:48.
    Post-processing of request 895365 completed at 20-JUN-2011 14:23:51.
    ------------- 2) PRINT   -------------
    Printing output file.
    Request ID : 895365      
    Number of copies : 1      
    Printer : SPOT
    ##################################################################

  • "Problem building schema" exception in BPEL Designer

    Hi all,
    I use BPEL Designer 10.1.2.0.2 and encounter the following problem:
    I built a web service based on the Oracle Toplink How To demo. The web service has one published method that returns a custom 'Customer' object.
    I deployed the web service on my localhost (AS 10.1.3)
    In my BPEL process, I create a partnerlink based on the WSDL that was generated by JDeveloper and let BPEL Designer create a local copy.
    Then I created an invoke and had the wizard create in- and output variables for the invoke.
    When I select either the input- or output variable in the structure pane, I get an error message when I click on the 'parameters' entry. The message shown is 'Exception - problem building schema!'
    When I check the 'show detailed node information' box no additional info is shown!
    Any Idea what might go wrong?
    The WSDL looks as follows:
    <definitions
    name="updCustWS"
    targetNamespace="http://examples.ox.model/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://examples.ox.model/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:tns0="http://examples.ox.model/types/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns1="http://www.oracle.com/webservices/internal/literal"
    >
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="urn:customer-example" schemaLocation="Customer.xsd"/>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://examples.ox.model/types/"
    elementFormDefault="qualified" xmlns:tns="http://examples.ox.model/types/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:ns1="http://www.oracle.com/webservices/internal/literal">
    <import namespace="http://www.oracle.com/webservices/internal/literal"/>
    <import namespace="urn:customer-example" schemaLocation="Customer.xsd"/>
    <complexType name="getCust">
    <sequence>
    <element name="cust" type="tns:Customer" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="Customer">
    <sequence>
    <element name="gender" type="string" nillable="true"/>
    <element name="dateOfBirth" type="dateTime" nillable="true"/>
    <element name="phoneNumbers" type="ns1:vector" nillable="true"/>
    <element name="shippingAddress" type="tns:Address" nillable="true"/>
    <element name="billingAddress" type="tns:Address" nillable="true"/>
    <element name="firstName" type="string" nillable="true"/>
    <element name="lastName" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="Address">
    <sequence>
    <element name="postalCode" type="string" nillable="true"/>
    <element name="suite" type="string" nillable="true"/>
    <element name="street" type="string" nillable="true"/>
    <element name="province" type="string" nillable="true"/>
    <element name="city" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="getCustResponse">
    <sequence>
    <element name="result" type="tns:Customer" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="version">
    <sequence/>
    </complexType>
    <complexType name="versionResponse">
    <sequence>
    <element name="result" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <element name="getCustElement" type="tns:getCust"/>
    <element name="getCustResponseElement" type="tns:getCustResponse"/>
    <element name="versionElement" type="tns:version"/>
    <element name="versionResponseElement" type="tns:versionResponse"/>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.oracle.com/webservices/internal/literal"
    elementFormDefault="qualified" xmlns:tns="http://www.oracle.com/webservices/internal/literal"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/">
    <import namespace="http://examples.ox.model/types/"/>
    <import namespace="urn:customer-example" schemaLocation="Customer.xsd"/>
    <complexType name="vector">
    <complexContent>
    <extension base="tns:list">
    <sequence/>
    </extension>
    </complexContent>
    </complexType>
    <complexType name="list">
    <complexContent>
    <extension base="tns:collection">
    <sequence/>
    </extension>
    </complexContent>
    </complexType>
    <complexType name="collection">
    <sequence>
    <element name="item" type="anyType" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </schema>
    </types>
    <message name="UpdCustWS_getCust">
    <part name="parameters" element="tns0:getCustElement"/>
    </message>
    <message name="UpdCustWS_getCustResponse">
    <part name="parameters" element="tns0:getCustResponseElement"/>
    </message>
    <message name="UpdCustWS_version">
    <part name="parameters" element="tns0:versionElement"/>
    </message>
    <message name="UpdCustWS_versionResponse">
    <part name="parameters" element="tns0:versionResponseElement"/>
    </message>
    <portType name="updCustWS">
    <operation name="getCust">
    <input message="tns:UpdCustWS_getCust"/>
    <output message="tns:UpdCustWS_getCustResponse"/>
    </operation>
    <operation name="version">
    <input message="tns:UpdCustWS_version"/>
    <output message="tns:UpdCustWS_versionResponse"/>
    </operation>
    </portType>
    <binding name="updCustWSSoapHttp" type="tns:updCustWS">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="getCust">
    <soap:operation soapAction="http://examples.ox.model//getCust"/>
    <input>
    <soap:body use="literal" parts="parameters"/>
    </input>
    <output>
    <soap:body use="literal" parts="parameters"/>
    </output>
    </operation>
    <operation name="version">
    <soap:operation soapAction="http://examples.ox.model//version"/>
    <input>
    <soap:body use="literal" parts="parameters"/>
    </input>
    <output>
    <soap:body use="literal" parts="parameters"/>
    </output>
    </operation>
    </binding>
    <service name="updCustWS">
    <port name="updCustWSSoapHttpPort" binding="tns:updCustWSSoapHttp">
    <soap:address location="http://localhost:7780/toplinkDemo-toplink-context-root/updCustWSSoapHttpPort"/>
    </port>
    </service>
    </definitions>
    any help would be greatly appreciated!
    Thanks in advance,
    Rob

    Hi
    I know it's an old thread, but I'm having the same issue.
    I have created an EJB3 web service that returns an object with 2 nested objects. The autogenerated WSDL looks something like this:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns0="http://www.oracle.com/webservices/internal/literal" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://smbc.crm.persistence.services/" name="CRMBusinessWSService" targetNamespace="http://smbc.crm.persistence.services/">
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns1="http://www.oracle.com/webservices/internal/literal" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://smbc.crm.persistence.services/" elementFormDefault="qualified">
    <import namespace="http://www.oracle.com/webservices/internal/literal"/>
    <complexType name="Businesses">
    <sequence>
    <element name="partyId" type="long" nillable="true"/>
    <element name="businessContactPoints" type="ns1:list" nillable="true"/>
    <element name="businessAddresses" type="ns1:list" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="BusinessAddresses">
    <sequence>
    <element name="locality" type="string" nillable="true"/>
    <element name="paon" type="string" nillable="true"/>
    <element name="siteUseType" type="string" nillable="true"/>
    <element name="locationId" type="long" nillable="true"/>
    <element name="townName" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="BusinessContactPoints">
    <sequence>
    <element name="telCountryCode" type="string" nillable="true"/>
    <element name="partyId" type="long" nillable="true"/>
    <element name="telAreaCode" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <element name="queryBusinessesFindByPartyId" type="tns:queryBusinessesFindByPartyId"/>
    <complexType name="queryBusinessesFindByPartyId">
    <sequence>
    <element name="int_1" type="int"/>
    </sequence>
    </complexType>
    <element name="queryBusinessesFindByPartyIdResponse" type="tns:queryBusinessesFindByPartyIdResponse"/>
    <complexType name="queryBusinessesFindByPartyIdResponse">
    <sequence>
    <element name="return" type="tns:Businesses" nillable="true"/>
    </sequence>
    </complexType>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://www.oracle.com/webservices/internal/literal" targetNamespace="http://www.oracle.com/webservices/internal/literal" elementFormDefault="qualified">
    <import namespace="http://smbc.crm.persistence.services/"/>
    <complexType name="list">
    <complexContent>
    <extension base="tns:collection">
    <sequence/>
    </extension>
    </complexContent>
    </complexType>
    <complexType name="collection">
    <sequence>
    <element name="item" type="anyType" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </schema>
    </types>
    <message name="CRMBusinessWS_queryBusinessesFindByPartyId">
    <part name="parameters" element="tns:queryBusinessesFindByPartyId"/>
    </message>
    <message name="CRMBusinessWS_queryBusinessesFindByPartyIdResponse">
    <part name="parameters" element="tns:queryBusinessesFindByPartyIdResponse"/>
    </message>
    <portType name="CRMBusinessWS">
    <operation name="queryBusinessesFindByPartyId">
    <input message="tns:CRMBusinessWS_queryBusinessesFindByPartyId"/>
    <output message="tns:CRMBusinessWS_queryBusinessesFindByPartyIdResponse"/>
    </operation>
    </portType>
    <binding name="CRMBusinessWSSoapHttp" type="tns:CRMBusinessWS">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="queryBusinessesFindByPartyId">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="CRMBusinessWSService">
    <port name="CRMBusinessSessionEJB" binding="tns:CRMBusinessWSSoapHttp">
    <soap:address location="http://blah.solihull.gov.uk:1234/crm-ws/CRMBusinessSessionEJB"/>
    </port>
    </service>
    </definitions>
    The web service runs fine and returns a valid XML document (like below):
    <?xml version="1.0" encoding="UTF-8"?>
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:ns0="http://smbc.crm.persistence.services/"
    xmlns:ns1="http://www.oracle.com/webservices/internal/literal">
    <env:Body>
    <ns0:queryBusinessesFindByPartyIdResponse>
    <ns0:return>
    <ns0:turnover xsi:nil="1"/>
    <ns0:partyId>551837</ns0:partyId>
    <ns0:employeesLocal xsi:nil="1"/>
    <ns0:employeesNational xsi:nil="1"/>
    <ns0:businessName xsi:nil="1"/>
    <ns0:classificationSic xsi:nil="1"/>
    <ns0:registeredBusinessName>Bob The Builder</ns0:registeredBusinessName>
    <ns0:classificationLacors xsi:nil="1"/>
    <ns0:sbaLinkNumber xsi:nil="1"/>
    <ns0:legalStatus xsi:nil="1"/>
    <ns0:localAuthority xsi:nil="1"/>
    <ns0:bpa>560950</ns0:bpa>
    <ns0:dateCommencedTrading xsi:nil="1"/>
    <ns0:businessDirectoryListing xsi:nil="1"/>
    <ns0:businessStage xsi:nil="1"/>
    <ns0:classificationBcl xsi:nil="1"/>
    <ns0:employeesGlobal xsi:nil="1"/>
    <ns0:descriptionOfBusiness xsi:nil="1"/>
    <ns0:businessContactPoints xsi:type="ns1:vector">
    <ns1:item xsi:type="ns0:BusinessContactPoints">
    <ns0:telCountryCode xsi:nil="1"/>
    <ns0:partyId>551837</ns0:partyId>
    <ns0:contactPointType>EMAIL</ns0:contactPointType>
    <ns0:contactTelephoneNumber xsi:nil="1"/>
    <ns0:bpa>560950</ns0:bpa>
    <ns0:contactPointId>76330</ns0:contactPointId>
    <ns0:telExtensionNumber xsi:nil="1"/>
    <ns0:contactEmailAddress>[email protected]</ns0:contactEmailAddress>
    <ns0:registeredBusinessName>Bob The Builder</ns0:registeredBusinessName>
    <ns0:telAreaCode xsi:nil="1"/>
    </ns1:item>
    <ns1:item xsi:type="ns0:BusinessContactPoints">
    <ns0:telCountryCode>44</ns0:telCountryCode>
    <ns0:partyId>551837</ns0:partyId>
    <ns0:contactPointType>PHONE</ns0:contactPointType>
    <ns0:contactTelephoneNumber>323233</ns0:contactTelephoneNumber>
    <ns0:bpa>560950</ns0:bpa>
    <ns0:contactPointId>76329</ns0:contactPointId>
    <ns0:telExtensionNumber xsi:nil="1"/>
    <ns0:contactEmailAddress xsi:nil="1"/>
    <ns0:registeredBusinessName>Bob The Builder</ns0:registeredBusinessName>
    <ns0:telAreaCode>123</ns0:telAreaCode>
    </ns1:item>
    </ns0:businessContactPoints>
    <ns0:businessAddresses xsi:type="ns1:vector">
    <ns1:item xsi:type="ns0:BusinessAddresses">
    <ns0:partyId>551837</ns0:partyId>
    <ns0:locality>Kingshurst</ns0:locality>
    <ns0:paon>20</ns0:paon>
    <ns0:siteUseType>HEADQUATERS_FOR</ns0:siteUseType>
    <ns0:locationId>34380</ns0:locationId>
    <ns0:townName>Birmingham</ns0:townName>
    <ns0:registeredBusinessName>Bob The Builder</ns0:registeredBusinessName>
    <ns0:saon xsi:nil="1"/>
    <ns0:bpa>560950</ns0:bpa>
    <ns0:country>GB</ns0:country>
    <ns0:uprn>100070950848</ns0:uprn>
    <ns0:dateOfOccupancyAtthisaddr xsi:nil="1"/>
    <ns0:streetDescriptor>Acacia Avenue</ns0:streetDescriptor>
    <ns0:postcode>B37 6AQ</ns0:postcode>
    <ns0:countyName xsi:nil="1"/>
    <ns0:usrn xsi:nil="1"/>
    </ns1:item>
    </ns0:businessAddresses>
    </ns0:return>
    </ns0:queryBusinessesFindByPartyIdResponse>
    </env:Body>
    </env:Envelope>
    The problem is that I'm trying to transform this message in BPEL/ESB but the mapper does not understand the schema as described in the WSDL and will not let me do 'for-each' or 'if' actions on the collections of addresses for example.
    I've tried injecting my own WSDL into the EJB3 web service through annotations, but it will not compile....
    Can anybody help????
    Thanks
    Chris

  • I have installed creative cloud and a trial version of illustrator on my laptop since then my IT department has purchase illustrator but is having problems installing it onto a PC workstation.

    I have installed creative cloud and a trial version of illustrator on my laptop since then my IT department has purchase illustrator but is having problems installing it onto a PC workstation.

    Hi, the problem is that my IT department was sent a link  on his laptop to install Illustrator, however the request was for them to build me a workstation and install it on there. they have built the workstation and is having problem installing the CC desktop app on there, just to clarify would you be able to answer the following:
    1) Do you have to have CC desktop app to install Illustrator from the given link?
    2) If you have signed up & installed  CC on your laptop, can you install illustrator on a workstation by simply installing the CC desktop app on the workstation, log into that with your username & activate the link to install illustrator, basically the provided link should not be specific to a computer or user?
    Thanks

  • Im using xcode 4.6 and im having problems reading files using the fopen function in c

    Im using xcode 4.6 and im having problems reading files using the fopen function in c

    Yes, but that would not cause the "build  failed" message.
    right I missed that part. Looks like two problems then.
    //  main.m
    //  ASCTestFopen
    //  Created by Frank Caggiano on 3/2/13.
    //  Copyright (c) 2013 Frank Caggiano. All rights reserved.
    #import <Foundation/Foundation.h>
    #include <stdio.h> 
    int main(int argc, const char * argv[])
        @autoreleasepool {
            FILE *fp, *fopen();
            // insert code here...
            if((fp = fopen("~/test.txt","r")) == NULL)
                NSLog(@"open failed");
        return 0;
    This will compile ad run in Xcode with a project type of comand line tool

  • For users having problems with Mail functionality...

    Hello! I have been having problems with Mail functionality as well, so, I took a few steps to see if I could solve the problem on my own.
    My problems were:
    Mail would freeze when sending mail, or, when I pressed quit, it would freeze.
    If I toggled between inboxes too much it would freeze up.
    Even after trying the many techniques others offered on this board, Mail still froze up. So.. here's what I did:
    1.) Turn off the auto-retrieve mail function in the preferences/general menu. Set it to a manual check. Just check it yourself every once in awhile. It may not be as convenient, but it works, trust me.
    2.) Under the fonts and colors menu, set all three fonts to the SAME font (mines Century Schoolbook, but anything works) and turn off fixed-width font. Sometimes mail has a tough time decoding and working with texts, and causes it to freeze.
    3.) Clean our your main inbox! Place the emails that you want to keep, but don't need to be in your inbox in a new folder on your inbox bar (mines aptly named 'Saved Messages.' That way, when you open up Mail to your default account, it doesn't have 1,000+ messages to index. Also, try to keep the inboxes from having more than 100-200 messages per. It seems to frown on any more than that.
    After trying these three easy, steps, restart mail and see if things run smoother. I have had no problems since these changes, and mail runs a ton better. Plus you don't have to worry about deleting your library/mail folder anymore. Let me know if things work out so I can see if my theory is a universally proven thing. Thanks and good luck!
    iMac G5 20"   Mac OS X (10.4.5)  

    Good question. I have worked very little with IMAP other than as a testing device, so, on a daily routine I cannot say how it would function. However, I can only expect that by having the option to download all emails for offline viewing selected, you are right in it being a lag creator. Another suggestion would be, if you are running a single-computer setup, to have the account delete emails from the server after recieving them on your computer. Thus, you reduce the risk of repeat downloads or unnecessary build-up on the server end. DO NOT select this option if you run multiple computer set ups on one AppleMail account system or you will cause some discrepancies and/or data loss from system to system. Or, if you have emails redirected from a seperate server to Mail (i.e. I redirect mail from my university email account into Mail so that I don't have to go to the web-mail site to check it--> just like Gmail or Yahoo etc etc) you won't be able to check them from the web-based email system if you have the system delete them. Ok that sounded confusing. Solution: have the system remove emails from the server after a week (or any period of time, just not immediately) so that, in the off-chance you need to use the online system, you will have access, and will give you a chance to check the emails on other systems without a threat of data corruption (by corruption i mean that frustrating feeling you get when you can't find that super important email that was in your inbox just 10 seconds ago on your desktop etc.)
    I will see if I can learn anything more about IMAP Ernie. Its definitley the biggest problem source for Mail, POP and .Mac being simple and functional as long as you don't play with the settings too much. As far as the issue of Offline viewing goes, try turning it off and seeing how Mail functions.
    BEFORE you turn it off, however, I recommend saving all of your emails in your inbox as a text file or something so, in case the server burps and has a brain flatuence, you don't lose anything. Been there, done that, thrown the books against the wall in a frustrated rage.
    My only reserve about the Offline Viewing is whether or not Mail will, when you click "recieve mail," have to re-download the emails from the server each time. If so, then it may end up taking longer and lagging more. The issue here is obviously minimizing the amount of activity between Mail and the email server without jeapordizing information on the server or multiple Mail programs on the same account. When we can find that balance, I think Mail's potential will be realized. Keep the questions coming.

  • I'm having problems with the hyper-links and footer

    I'm having problems with the hyper-links (they flicker and also highlight other text on the page) and also the footer space goes on forever in preview site mode, even though I have made it small in the master and homepage and subsequent pages.  This only happened after I loaded a MUSE file into the current version of Muse CC as it runs upgrades on the imported Muse file.  Please Help Me Adobe Community.

    Hi Brad,
    I'll do what you mentioned about republishing all files, what Adobe Muse seems to to is run and upgrade when you open an older version .muse file, optimising it.
    Hopefully republishing it rather than syncing with the new version might help.  I'll do this Tuesday evening when I am back from my client meeting.
    I was thinking, is there a way of me rolling back to a previous version of Adobe MUSE CC ?  I'm using build Adobe Muse CC (2014.3) but I wish to roll back to Adobe Muse CC (2014.1), as this was the version the site was working properly with.
    Thanks Brad.

  • Having problem with storing data in array

    Hi,
    I'm having problem on storing data in array. My problem is that each time it loops, the array just keep overwrite instead save to the next index. Like at 0 the value is 123, and 1 is 234. But i having that all data capture all overwrite at 0 till the last data it still show at 0. How do i correct this problem?
    Solved!
    Go to Solution.

    How to use array to do comparison? Like Array 1 go thru array 2 to get data Loss out and build an array. Like Array 1 ,1000,1024,1048,etc before 1520 fall in between Array 2 range 1000-1500. So Freq 1000,1024,1048 etc will get Loss value as 1 and 1520 fall in between 1500-2000 will output Loss 2. and so on till the end of the list. How should do this? Need help on this.
    Array 1                                                Array 2
    Freq                                              ​     Freq   Loss
    1000                                              ​    1000      1
    1024                                              ​    1500      2
    1048                                              ​    2000      3
    1100                                              ​     :
    1200                                              ​     :
    :                                                 ​        18000
    1520
    18000

  • Problem building record set using Dreamweaver CS6 Cloud Product

    I am having a problem building a Results Page using Dreamweaver CS6.  I have followed all the steps described in Dreamweaver/Build Search and Results Page Article (multiple times).  It seems that when I save the Results page it does not copy the php used to build the dynamic table.  In fact when I view the source, I do not see any php code. 
    Additionally, when I attempt to bind the record set, it also does not accept the Default Value(s).  Enstead it gives me a list of all data in the colum(s) chosen for the record set (using Where..LIKE..variable definition).
    Any suggestions?
    Regards,
    Norv

    Yes, I will be glad to go through each step.  I will also provide code.
    Step 1:  Built the Search Page by adding Form into exisitng htm page.  Used Insert> Form>Form to insert Form area.  Then added three (3) text fields using Text Icon from the Form Menu Bar (Classic View).
    Step 2: Added a Submit and Reset Button to the Search Page.  Again used the Form Menu Bar to create the Buttons.
    Step 3: Selecte the <form> tag at bottom of Document Window to point Form to the Results Page (using the Action Box.
    Saved page and then began building the Results Page using an existing htm page.  Saved the Results Page as a .php document.
    Results Page:  Here are steps taken to build Results Page (Code will follow):
    1/ On the Results Page created a Recordset using the bindings dialog box.  Used the Advanced Recordset Dialog Box.  In the Advanced Dialog Box I used the Select and Where features to create a Recordset that created a 3 column table (records.County, records.ListPrice, records.PropertyType).  In the Variable box I created 3 variables (varCounty, varListPrice, varPropertyType).  varCounty and varPropertyType parameters are text (Type) and % (for Default Value).  varListPrice parameters are floating point (type) and % (for Default Value).  RunTime Value is $_REQUEST["ColumnName"].
    Here is the Code generated by Dreamweaver.  Note, I am not including the code to access the database, because in all tests I am able to access the table.  In fact first time I built the dynamic table, everything worked and I saw the Colum and default value.  Have never been able to duplicate that effort.  :-)
    Here is code:
    <?php
    if (!function_exists("GetSQLValuestring")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
    if (PHP_VERSION<6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    switch ($theType) {
    case "text":
    $theValue = ($theValue != "") ? "". $theValue ."" : "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
    break;
    case "double":
    $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
    break;
    case "date":
    $theValue = ($theValue != "") ? "".  $theValue ."" : "NULL";
    break;
    case "defined"
    $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
    break;
    return $theValue;
    $varCounty_rslistings = "%";
    if (isset($_GET["County"])) {
    $varCounty_rslistings = $_Get["County"];
    $varListPrice_rslistings = "%";
    if (isset($_GET["ListPrice"])) {
    $varListPrice_rslistings = $_GET["ListPrice"];
    $varPropertyType_rslistings = "%";
    if (isset($_GET["PropertyType"])); {
    $varPropertyType_rslistings = $_GET["PropertyType"];
    mysql_select_db($database_MyDB, $MyDB);
    $query_reslistings = sprintf("SELECT records.County, records.ListPrice, records.PropertyType FROM records WHERE records.County LIKE %s AND records.ListPrice LIKE %s AND records.PropertyType LIKE %s", GetSQLValueString($varCounty_rslistings, "text"),GetSQLValueString($varListPrice_rslistings,"double"),
    GetSQLValueString($varPropertyType_rslistings,"text"));
    $rslistings = mysql_query($query_rslistings, $MyDB) or die(mysql_error());
    $row_rslistings = mysql_fetch_assoc($rslistings);
    $totalRows_rslistings = mysql_num_rows($rslistings);
    ?>
    That's the code that was generated by Dreamweaver. 
    Thanks in advance for your assistance

  • Having problems opening an SSIS solution file

    I have to make some changes to an SSIS package that was last modified in 2009 by a person who has left the company.
    I am having problems finding a version of Visual Studio that will open the SLN file. I do not know how the package was originally maintained.
    Yesterday, I was able to right-click on the SLN file and select 'version selector', that opened the solution in VS 2005 without me having to select a program. I made some changes and saved, rebuilt and ran the package.
    Today when I try to open the SLN the same way, it displays the screen with the various VS version icons on it, but no VS 2005 listed!
    The bottom line, is I now cannot open the solution with any version of Visual Studio. If I can find another SLN file that will open, can I copy the modified dtsx file to that solution so all my work is not wasted? It took me 3 days work to modify this package.
    Can someone please help, my deadline for this task is TODAY.
    Here is the message I get if opening with VS 2005:
    Here is the message I get if opening with VS 2010:
    Here is the SLN file (It looks like it got modified because I'm pretty sure yesterday it said VS 2005 at the top):
    Microsoft Visual Studio Solution File, Format Version 11.00
    # Visual Studio 2010
    Project("{D183A3D8-5FD8-494B-B014-37F57B35E655}") = "HPAddress_ExportData", "HPAddress_ExportData.dtproj", "{7EB5909F-6836-4B23-A121-9F623FB1C932}"
    EndProject
    Global
     GlobalSection(SolutionConfigurationPlatforms) = preSolution
      Development|Default = Development|Default
     EndGlobalSection
     GlobalSection(ProjectConfigurationPlatforms) = postSolution
      {7EB5909F-6836-4B23-A121-9F623FB1C932}.Development|Default.ActiveCfg = Development
      {7EB5909F-6836-4B23-A121-9F623FB1C932}.Development|Default.Build.0 = Development
     EndGlobalSection
     GlobalSection(SolutionProperties) = preSolution
      HideSolutionNode = FALSE
     EndGlobalSection
    EndGlobal

    Hi AllTheGoodNamesWereTaken,
    Based on my test, if we open a solution file with lower version in a higher version Visual Studio (VS), it will use Visual Studio Conversion Wizard to update the solution to current version of VS. Then the solution file will also change to current version
    of VS. If we open a solution file with higher version in a lower version Visual Studio (VS), it causes an error that “The version number in the package is not valid. The version number cannot be greater than current version number”. And the solution file still
    use the original version of VS.
    So it seems that the original version of solution file is lower than or equal to VS 2010. Since the VS is backwards compatible, we should use a higher version of VS (VS2010 and later) to open the solution file. Notice that we need open the solution file,
    not the project file.
    Besides, we can also create a new SSIS project in a higher version of VS, then add the packages with “Add existing package” option from File System. Reference:
    https://www.blackbaud.com/files/support/guides/infinitydevguide/Subsystems/bbdw-developer-help/content/tkaddpackagefromexisting.htm
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Is anyone else having problems with safari crashing?

    Is anyone else having problems with the iphone 3GS freezing, and in particular, Safari and anything else that relies on the internet crashing since the 4.3.2 update? Everytime I open safari it crashes within 10 seconds.  I've tried restoring the phone but that hasn't worked.  Any other suggestions?

    The exact same thing happened to me. On the recommendation of various news articles, I manually upgraded the Flash Player plug-in from 10.0.23.1 to 10.0.32.18. Initially, I had no problems, but when I started viewing ESPN Flash-based videos, the entire browser would hang (this was true of Safari, Firefox, and Opera - all of which I tried and had the most updated version of). I then force quit and rebooted. After I rebooted, the problems disappeared for a while, but after some more browsing, I encountered the same problem with any page containing flash. I turned off the Flash plug-in in Firefox and I've had no problems so far. So I know for sure that it's a Flash problem.
    I tried to uninstall Flash and downgrade, but I couldn't find any previous versions of the Flash player plug-in. I did find some experimental builds, but they still crashed all three browsers.
    Flash is pretty miserable. If I didn't have to use it to watch ESPN videos, I would have no purpose in using Flash at all.

  • Firefox is having problems in opening some Web Sites

    == Issue
    ==
    Firefox is having problems with certain web sites
    == Description
    ==
    When I open my Home Page, I get the following message: A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: http://04.nscdn.optusnet.com.au/common/js/30062010/app.main.js:1415
    == URL of affected sites
    ==
    http://optuszoo.com.au
    == Troubleshooting information
    ==
    Application Basics
    Name
    Firefox
    Version
    3.6.3
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Microsoft .NET Framework Assistant
    1.1
    false
    {20a82645-c095-46ed-80e3-08825760534b}
    ZoneAlarm Toolbar
    1.5.53.4
    false
    MSN Toolbar
    4.0
    false
    [email protected]
    Search Helper Extension
    1.0
    false
    {27182e60-b5f3-411c-b545-b44205977502}
    Adobe DLM (powered by getPlus(R))
    1.6.2.63
    true
    Modified Preferences
    Name
    Value
    browser.history_expire_days.mirror
    180
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage
    http://www.optuszoo.com.au/
    browser.startup.homepage_override.mstone
    rv:1.9.2.3
    extensions.lastAppVersion
    3.6.3
    network.cookie.prefsMigrated
    true
    places.last_vacuum
    1276732365
    privacy.cpd.formdata
    false
    privacy.cpd.sessions
    false
    privacy.sanitize.migrateFx3Prefs
    true
    security.warn_viewing_mixed
    false
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows Vista
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-getplusplusadobe16263
    *Google Update
    *Adobe PDF Plug-In For Firefox and Netscape

    I had posted the problem previously & accidently marked the problem as solved.
    I received the following message since:
    "I am not sure how my previous post solved the problem but since then I think I have found the answer.
    I simply enabled Shockwave Flash 10.0.32.18
    From the Firefox Homepage it is located under:
    Tools\Add Ons then select the PlugIns Tab
    Select Shockwave Flash then enable it.
    Regards,
    Phil "
    This has fixed the problem. Thanks Phil.

  • Bpel variables return Http 503 (problem building schema) error

    First of all if I have posted this in the wrong forum, I apologise in advance.
    I have recently installed the Oracle SOA suite and I have downloaded JDeveloper 10.1.3.3, I am running the (http://download.oracle.com/otndocs/products/bpel/orderbooking.pdf) Oracle® BPEL Process Manager Tutorial and when attempting to create a copy rule I have noticed that some of my variables return the following error:
    Exception - Problem building schema
    expanded error:
    Exception: Server returned HTTP response code: 503 for URL: http://MYID.MYDOMAIN.com:80/orabpel/default/CreditRatingService/CreditRatingService?wsdl
    I can access the WSDL directly and it is visible in my Bpel console window too, yet JDeveloper seems to be having trouble with it. I have setup an integration server connection to the BPEL server and from there, when I attempt to validate WSDL I don't get any problems.
    I was wondering if anyone could help as this has got me stuck and I can't continue any further.
    Edited by: Saheem on Jun 8, 2009 3:33 PM

    Disable the proxy settings in JDeveloper.
    Marc

Maybe you are looking for

  • What are the best Voice to Text app's for use in business meetings?

    What are the best Voice to Text app's for use in business meetings?

  • Please help me in xi scenario

    Hi Experts, I am new to XI . my requirement is like this .please give me a brief  idea how to go forward and which are all the scenarios i can decide .client is asking and  iam in trouble.please tell me which scenarios are suitable .immedietly i will

  • Webdynpro for ABAP - interactive Adobe form - drop down lists not working

    Hi all, I'm trying to create an interactive form for a client using webdynpro for ABAP and I've viewed the demo "Create SAP Interactive Forms by Adobe with Web Dynpro for ABAP" by Thomas Jung, but when I implement it the form following similar steps

  • Stored Procedure call from JDBC sender for Oracle Database

    Hi, I have a requirement to call stored procedure using JDBC sender adapter for retriving data from an Oracle database. I need to execute first stored procedure call from Querry SQL statement and then trigger second stored procedure call for confirmi

  • Ford Navigation System USB Sync Problem

    Hi I have a Ford with the factory fitted Ford Navigation system Stereo with the Sat Nav, Bluetooth and USB port. When I connect my iphone 4 to it using the USB cable, it recognises the song, and displays the tracks and folder on the screen and plays