Problems building flex_sdk_3.0.0.477 compiler

I've found a bug in the Flex compiler and want to test my fix.
From the flex_sdk_3.0.0.477\modules\compiler directory, I ran 'ant jar', but got this error:
S:\adobe\flex\flex_sdk_3.0.0.477\modules\compiler>ant jar
Buildfile: build.xml
[taskdef] Could not load definitions from resource net/sf/antcontrib/antcontrib.properties. It could not be found.
Google told me that I needed to get cpptasks.jar so I downloaded cpptasks-1.0b5 and built it by simply typing 'ant'. That yielded cpptasks.jar, but inside the net/sf/antcontrib directory there was nothing except another directory called cpptasks. Seems the layout has changed. SourceForge doesn't show any other version of cpptasks available for download.
I tried a bunch of other things (all afternoon). I won't bore you with the details.
I'm in ant hell. Could someone just send me cpptasks.jar with net/sf/antcontrib/antcontrib.properties present?
TIA,
Mike
[email protected]

I want to create a swf file with many frames and each frame
should contain different images and similary each frame should have
some button which will be used for navigation or other purpose.some
of these frames will contain a movieclip which may have some 20 or
more frames.what i am planning is to, write the code for acheiving
above using as3 .
My appilication will have different .as file for achieving
this.But all this i can do after getting
as3 method for inserting frames dynamically to timeline or
movieclip.
Please provide your thoughts.

Similar Messages

  • "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

  • Forms builder 6i close suddenly when compiling form with dblink refenece

    Dear Oracle developer
    We have encountered this problem today. We develop a form module using forms 6i. Within the form module we have a procedure with a cursor which uses database link.When we try to compile the form module the form builder just close immediately.
    e.g. I have create a procedure program unit within my form as ivan and a dblink called test:-
    PROCEDURE IVAN IS
    cursor c_ivan
    IS select ce_code
    from cr_emp_info@test;
    BEGIN
    OPEN c_ivan;
    LOOP
         EXIT WHEN c_ivan%notfound;
         null;
    END LOOP;
    close c_ivan;
    END;
    I have tried the same with all my colleagues machine, the same problem occur.
    I have tried with oracle 10g forms it give the following:-
    ora01041: Internal error. hostdef extension doesn't exist
    many thanks in advance
    Message was edited by:
    ISWC

    We have encountered this problem todayYou didn't have this kind of problem in this form...yesterday...???
    Have you checked the log of Forms6i when it crashes.....???
    This same problem occurs when you select "Program->Compile PL/SQL->Incremental/All"...??? as well...???? or when for example press the <Ctrl>+<T> combination of buttons...????
    Simon

  • Assertion problem while using C++ 5.0 compiler

    Hi,
    we are using C++ compiler 5.0 on sparc solaris 2.6 machine.
    when we tried to build the debug version of a particular exe with -g
    option , we are getting the following error message
    Assertion : ( ../links/dgb_cstabs.cc line 1516)
    while compiling a .cc file.
    without the -g option ,the file compiles successfully.
    so please throw some light on this problem and help us to getout of
    this problem.
    regards
    tunga

    Assertion problem while using C++ 5.0 compiler on solaris 2.6

  • Assertion problem while using C++ 5.0 compiler on Solaris 2.6

    Hi,
    we are using C++ compiler 5.0 on sparc solaris 2.6 machine.
    when we tried to build the debug version of a particular exe with -g
    option , we are getting the following error message
    Assertion : ( ../links/dgb_cstabs.cc line 1516)
    while compiling a .cc file.
    Compiler options we used is
    /opt/SUNWspro/bin/CC -c -compat=4 -g -KPIC -w -features=namespace,no%except,bool,mutable -verbose=template -DOS_USE_SHORT_NAMES -DINCLUDEALL +d  -DRWSTD_MULTI_THREAD  -D_REENTRANT -D_THREAD_SAFE           -D_POSIX_C_SOURCE=199506L -DOS_NEW_CHECK -DOS_STL_ASSERT     -DOS_NO_WSTRING  -DOS_ALTERNATIVE_STL_NAMES     -DRWSTD_NO_CONST_INST             -DNO_ALLOCATOR_STL -DOS_OMIT_BOOL               -DEXE_HANDLING -DNO_CPLM -DALO_ON -DSUBPROC_ON  -DCANCEL_ON                                     -D__EXTENSIONS__  -DEXPLICIT_OPERATOR_INVOKE            -DSTL_SUPPORT_OPERATOR                   -DSUNSOLARIS    -DWHAT_TIME_DATE="\"Build Date Time Not Set\"" -I/opt/orbplus/include   -I/opt/orbplus/include/naming  -I/opt/SUNWspro/SC5.0/include/CC4 -I/opt/SUNWspro/SC5.0/include/CC -I/usr/include/reentrant                      -I../.. -I../../include                        -I../inc  -I.                            -I/opt/odbc/include                    -I/oracle/home/oracle/include  -I/oracle/home/oracle/rdbms/demo pdl.tab.c -o ../../bin/hpux/obj/pdl.tab.o
    without the -g option ,the file compiles successfully.
    so please throw some light on this problem and help us to getout of
    this problem.
    regards
    tunga

    Assertion problem while using C++ 5.0 compiler on solaris 2.6

  • Problem building Java adventure.

    Hi,
    I just installed Java adventure. It runs correctly, I can do a setup and deploy the application.
    But when it cames to build it, i got the follwing errors, does someone have an idea where this problem come from ???
    ================================================
    banner:
         [echo] +---------------------------------------+
         [echo] +    Building Service Locator Component
         [echo] +---------------------------------------+
    compile:
    clientjar:
        [mkdir] Created dir: E:\Dev\Tools\j2eesdk1.4b2\samples\blueprints\adventure1.0ea3.1\src\components\servicelocator\build\jar
         [copy] Copying 3 files to E:\Dev\Tools\j2eesdk1.4b2\samples\blueprints\adventure1.0ea3.1\src\components\servicelocator\build\jar
          [jar] Building jar: E:\Dev\Tools\j2eesdk1.4b2\samples\blueprints\adventure1.0ea3.1\src\components\servicelocator\build\servicelocator.jar
       [delete] Deleting directory E:\Dev\Tools\j2eesdk1.4b2\samples\blueprints\adventure1.0ea3.1\src\components\servicelocator\build\jar
    core:
    tools:
    compile-core:
         [echo] Running wscompile for the OPC PURCHASE ORDER endpoint:
         [echo] e:\DevToolsj2eesdk1.4b2/share/bin/wscompile.bat
    BUILD FAILED
    file:E:/Dev/Tools/j2eesdk1.4b2/samples/blueprints/adventure1.0ea3.1/src/apps/opc/src/build.xml:128: Execute failed: java.io.IOException: CreateProcess: e:\DevToolsj2eesdk1.4b2\share\bin\wscompile.bat
    -classpath ../build/classes -gen:server -keep -mapping ../build/OpcPurchaseOrderServiceMap.xml -d ../build/classes po-jaxrpc-config.xml error=3
    Total time: 14 seconds
    E:\Dev\Tools\j2eesdk1.4b2\samples\blueprints\adventure1.0ea3.1\src>
    [\code]
    ================================================

    I believe you have to edit your src/config/app-server-ant.xml file to reflect the location of wscompile.
    the error says it can't create the process
    e:\DevToolsj2eesdk1.4b2\share\bin\wscompile.bat
    in src/config/app-server-ant.xml their is a line:
    <property name="wscompile" value="${j2ee.home}/share/bin/wscompile${j2ee-script-suffix}"/>
    change the value in between the $'s to be the location of wscompile.bat
    their is some problem with the way it reads j2ee home. good luck!

  • 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

  • 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..........

  • Error "Problem building schema" while invoking external webservice

    Hi,
    I have following problem:
    I created 2 BPEL processes.
    One of these processes should be called from the other as a partnerlink.
    When I create the partnerlink, pointing to the deployed wsdl, I get following error "Problem building schema" when I try to access the input variable that was created by the invoke activity.
    I have tried a lot of things but keep on getting this error.
    When I create a new, empty BPEL process, and do exactly the same it does work!
    any help would be greatly appreciated.....

    Hi,
    I have given this URL 'http://ws.cdyne.com/WeatherWS/Weather.asmx?WSDL'.
    Now it is showing the following error
    Exception occured in library handler.Not implemented.
    Exception of class CX_SIDL_INTERNAL_ERROR
    Please have a look into it
    Regards,
    Dhana

  • Problem building schema in provider ABCS

    Hi
    I imported AccountWSEndPointCRMOnDemand from AIA_HOME\PIP to my jdeveloper(10.1.3.4).but i am getting problem building schema error for one of the partnerlinks.nothing is getting dispalyed if i click on 'show detailed node information'.
    I took that wsdl & created a sample bpel which works perfectly fine but with the actual PIP bpel its not working.I pasted the link in IE, it shows the contents corretly.
    Please advice!
    Thanks

    The accountAdapter.wsdl contents is as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
    targetNamespace="urn:crmondemand/ws/account/10/2004"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="urn:crmondemand/ws/account/10/2004"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    >
    <import namespace="urn:crmondemand/ws/account/10/2004" location="http://host:port/AIAComponents/ApplicationObjectLibrary/CRMOD/ODR15/wsdls/account.wsdl"/>
    <plnk:partnerLinkType name="Default_Binding_Account_PL">
    <plnk:role name="Default_Binding_Account_Role">
    <plnk:portType name="tns:Default_Binding_Account"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>
    wherein account.wsdl has xsd info which is working fine in the browser.
    Also which checkbox i need to check in jdeveloper to see the error details.

  • Partnerlink - Problem building schema

    Hi,
    I have following problem:
    I created 2 BPEL processes.
    One of these processes should be called from the other as a partnerlink.
    When I create the partnerlink, pointing to the deployed wsdl, I get following error "Problem building schema" when I try to access the input variable that was created by the invoke activity.
    I have tried a lot of things but keep on getting this error.
    When I create a new, empty BPEL process, and do exactly the same it does work!
    any help would be greatly appreciated.....

    Hello,
    please be careful with the "Problem building schema"-error not to mix up the reasons. As far as I know this error can be caused by different ways, e. g. schema is not valid, wsdl is not accesible...
    Therefore please check at first of a local copy of the wsdl is working or not. In lather case there might be a trouble in the wsdl, more preciously in type definition.
    @Ruerd: If you want I can have a look at your wsdl to see if it is valid - just post the code here.
    BR,
    Hansi

  • 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

  • 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

  • Exception:Problem building schema

    Hi all,
    I want to make a web service call to a service deployed in weblogic, I copied the wsdl to a local file and I created a PartnerLink referring to the wsdl in my local file. I put an Invoke action, create an input variable, everything work fine. However when I try to explore the input variable I got exception:Problem building schema.
    Is there anything wrong with the WSDL? I've validate it and it was ok.
    Thanks in advance,
    santoso
    Here is the WSDL of the service:
    <?xml version='1.0' encoding='UTF-8'?>
    <definitions name="ProposalWSServiceDefinitions" targetNamespace="http://com/my/ws" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:s0="http://com/my/ws" xmlns:s1="http://schemas.xmlsoap.org/wsdl/soap/">
    <types>
    <schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://www.my.com/opl" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://com/my/ws" xmlns:s1="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.my.com/opl">
    <complexType name="Proposal">
    <sequence>
    <element name="id" type="int"/>
    <element name="title" type="string"/>
    <element name="creator" type="string"/>
    <element name="status" type="string"/>
    <element name="customerId" type="int"/>
    </sequence>
    </complexType>
    <element name="ProposalData" type="tns:Proposal"/>
    </schema>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://com/my/ws" xmlns:s0="http://com/my/ws" xmlns:s1="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="insertProposal">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="proposal" type="opl:Proposal" xmlns:opl="http://www.my.com/opl"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    </types>
    <message name="insertProposal">
    <part element="s0:insertProposal" name="parameters"/>
    </message>
    <portType name="ProposalWS">
    <operation name="insertProposal" parameterOrder="parameters">
    <input message="s0:insertProposal"/>
    </operation>
    </portType>
    <binding name="ProposalWSServiceSoapBinding" type="s0:ProposalWS">
    <s1:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="insertProposal">
    <s1:operation soapAction="" style="document"/>
    <input>
    <s1:body parts="parameters" use="literal"/>
    </input>
    </operation>
    </binding>
    <service name="ProposalWSService">
    <port binding="s0:ProposalWSServiceSoapBinding" name="ProposalWSSoapPort">
    <s1:address location="http://172.16.208.45:7001/SBSWebService/ProposalWS"/>
    </port>
    </service>
    </definitions>

    I've solved it just by upgrading to BPEL 10.1.3.1 (was 10.1.2.0)

  • Problem building schema on WSDL for Partnerlink

    Hi,
    We use PL/SQL webservices, which are being generated with JDeveloper. As long as it contains single Object Types, there's no problem with defining the WS as Partnerlink and using it.
    However, we've made one service that returns several occurrences (array). That shouldn't be a problem. But, ... I can define the partnerlink on the basis of the WSDL, but when I try to access the variables it generates with it, i get an exception with the following message: Problem building schema. Detailed node information shows: 'Invalid reference: 'http://schemas.xmlsoap.org/soap/encoding/:Array'
    <!--
    Generated by the Oracle JDeveloper 10g Web Services WSDL Generator
    -->
    <!--Date Created: Tue Sep 13 15:03:40 CEST 2005-->
         <definitions name="aanvraagWS" targetNamespace="http://nl/nak/aanvraagService/aanvraagWS.wsdl">
         <types>
         <schema targetNamespace="http://nl.nak.services/AanvraagWS.xsd">
         <complexType name="nl_nak_services_AvrgAvrgOtUser" jdev:packageName="nl.nak.services">
         <all>
    <element name="id" type="decimal"/>
    <element name="oogstjaar" type="decimal"/>
    <element name="aanvraagNummer" type="decimal"/>
    <element name="rleId" type="decimal"/>
    <element name="kotId" type="decimal"/>
    <element name="aantalVerpakkingen" type="decimal"/>
    <element name="verpakkingsvorm" type="string"/>
    <element name="totaalGewicht" type="decimal"/>
    <element name="indBemonsterdNaDrogen" type="string"/>
    <element name="partijnummerHandelaar" type="string"/>
    <element name="opmerkingen" type="string"/>
    <element name="datumBemonstering" type="dateTime"/>
    <element name="plombenummer" type="string"/>
    <element name="indSpoedonderzoek" type="string"/>
    <element name="bemonsterdDoor" type="string"/>
    <element name="pdtId" type="decimal"/>
    <element name="procesInstanceId" type="decimal"/>
    </all>
    </complexType>
         <complexType name="nl_nak_services_AanvraagWSImpl_addaanvraag_Out" jdev:packageName="nl.nak.services">
         <all>
    <element name="paanvraagotInout" type="ns1:nl_nak_services_AvrgAvrgOtUser"/>
    <element name="pserviceberichttypeOut" type="ns1:nl_nak_services_AvrgServiceBerichtOtUser"/>
    </all>
    </complexType>
         <complexType name="nl_nak_services_AvrgServiceBerichtOtUser" jdev:packageName="nl.nak.services">
         <all>
    <element name="serviceCode" type="decimal"/>
    <element name="serviceBericht" type="string"/>
    </all>
    </complexType>
         <complexType name="nl_nak_services_AanvraagWSImpl_getaanvraag_Out" jdev:packageName="nl.nak.services">
         <all>
    <element name="paanvraagotOut" type="ns1:nl_nak_services_AvrgAvrgOtUser"/>
    <element name="pserviceberichttypeOut" type="ns1:nl_nak_services_AvrgServiceBerichtOtUser"/>
    </all>
    </complexType>
         <complexType name="nl_nak_services_AanvraagWSImpl_findaanvraag_Out" jdev:packageName="nl.nak.services">
         <all>
    <element name="paanvraagotOut" type="ns1:nl_nak_services_AvrgAvrgOtUser"/>
    <element name="pserviceberichttypeOut" type="ns1:nl_nak_services_AvrgServiceBerichtOtUser"/>
    </all>
    </complexType>
         <complexType name="nl_nak_services_AvrgWngOtUser" jdev:packageName="nl.nak.services">
         <all>
    <element name="id" type="decimal"/>
    <element name="wmrId" type="decimal"/>
    <element name="prrId" type="decimal"/>
    <element name="avrgId" type="decimal"/>
    <element name="waardeNumeriek" type="decimal"/>
    <element name="waardeAlfanumeriek" type="string"/>
    <element name="datumUitvoering" type="dateTime"/>
    <element name="uitvoerder" type="string"/>
    <element name="istId" type="decimal"/>
    </all>
    </complexType>
         <complexType name="nl_nak_services_AanvraagWSImpl_addwaarneming_Out" jdev:packageName="nl.nak.services">
         <all>
    <element name="pwaarnemingotInout" type="ns1:nl_nak_services_AvrgWngOtUser"/>
    <element name="pserviceberichttypeOut" type="ns1:nl_nak_services_AvrgServiceBerichtOtUser"/>
    </all>
    </complexType>
         <complexType name="nl_nak_services_AanvraagWSImpl_getwaarneming_Out" jdev:packageName="nl.nak.services">
         <all>
    <element name="pwaarnemingotOut" type="ns1:nl_nak_services_AvrgWngOtUser"/>
    <element name="pserviceberichttypeOut" type="ns1:nl_nak_services_AvrgServiceBerichtOtUser"/>
    </all>
    </complexType>
         <complexType name="nl_nak_services_AanvraagWSImpl_findwaarneming_Out" jdev:packageName="nl.nak.services">
         <all>
    <element name="pwaarnemingotInout" type="ns1:nl_nak_services_AvrgWngOtUser"/>
    <element name="pserviceberichttypeOut" type="ns1:nl_nak_services_AvrgServiceBerichtOtUser"/>
    </all>
    </complexType>
         <complexType name="nl_nak_services_AanvraagWSImpl_listwaarnemingperaanvraag_Out" jdev:packageName="nl.nak.services">
         <all>
    <element name="pwaarnemingctOut" type="ns1:nl_nak_services_AvrgWngCt"/>
    <element name="pserviceberichttypeOut" type="ns1:nl_nak_services_AvrgServiceBerichtOtUser"/>
    </all>
    </complexType>
         <complexType name="nl_nak_services_AvrgWngCt" jdev:packageName="nl.nak.services">
         <all>
    <element name="array" type="ns1:ArrayOfnl_nak_services_AvrgWngOtUser"/>
    </all>
    </complexType>
         <complexType name="ArrayOfnl_nak_services_AvrgWngOtUser">
         <complexContent>
         <restriction base="SOAP-ENC:Array">
    <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns1:nl_nak_services_AvrgWngOtUser[]"/>
    </restriction>
    </complexContent>
    </complexType>
         <complexType name="nl_nak_services_AanvraagWSImpl_listwaarnemingperwerkmonster_Out" jdev:packageName="nl.nak.services">
         <all>
    <element name="pwaarnemingctOut" type="ns1:nl_nak_services_AvrgWngCt"/>
    <element name="pserviceberichttypeOut" type="ns1:nl_nak_services_AvrgServiceBerichtOtUser"/>
    </all>
    </complexType>
    </schema>
    </types>
         <message name="addaanvraag0Request">
    <part name="xxpAanvraagOt_inoutxx" type="ns1:nl_nak_services_AvrgAvrgOtUser"/>
    </message>
         <message name="addaanvraag0Response">
    <part name="return" type="ns1:nl_nak_services_AanvraagWSImpl_addaanvraag_Out"/>
    </message>
         <message name="getaanvraag1Request">
    <part name="pAanvraagid" type="xsd:decimal"/>
    </message>
         <message name="getaanvraag1Response">
    <part name="return" type="ns1:nl_nak_services_AanvraagWSImpl_getaanvraag_Out"/>
    </message>
         <message name="findaanvraag2Request">
    <part name="pOogstjaar" type="xsd:decimal"/>
    <part name="pAanvraagNummer" type="xsd:decimal"/>
    </message>
         <message name="findaanvraag2Response">
    <part name="return" type="ns1:nl_nak_services_AanvraagWSImpl_findaanvraag_Out"/>
    </message>
         <message name="addwaarneming3Request">
    <part name="xxpWaarnemingOt_inoutxx" type="ns1:nl_nak_services_AvrgWngOtUser"/>
    </message>
         <message name="addwaarneming3Response">
    <part name="return" type="ns1:nl_nak_services_AanvraagWSImpl_addwaarneming_Out"/>
    </message>
         <message name="getwaarneming4Request">
    <part name="pWerkmonsterId" type="xsd:decimal"/>
    <part name="pAanvraagId" type="xsd:decimal"/>
    <part name="pBepalingId" type="xsd:decimal"/>
    </message>
         <message name="getwaarneming4Response">
    <part name="return" type="ns1:nl_nak_services_AanvraagWSImpl_getwaarneming_Out"/>
    </message>
         <message name="findwaarneming5Request">
    <part name="xxpWaarnemingOt_inoutxx" type="ns1:nl_nak_services_AvrgWngOtUser"/>
    </message>
         <message name="findwaarneming5Response">
    <part name="return" type="ns1:nl_nak_services_AanvraagWSImpl_findwaarneming_Out"/>
    </message>
         <message name="listwaarnemingperaanvraag6Request">
    <part name="pAanvraagId" type="xsd:decimal"/>
    </message>
         <message name="listwaarnemingperaanvraag6Response">
    <part name="return" type="ns1:nl_nak_services_AanvraagWSImpl_listwaarnemingperaanvraag_Out"/>
    </message>
         <message name="listwaarnemingperwerkmonster7Request">
    <part name="pWerkmonsterId" type="xsd:decimal"/>
    </message>
         <message name="listwaarnemingperwerkmonster7Response">
    <part name="return" type="ns1:nl_nak_services_AanvraagWSImpl_listwaarnemingperwerkmonster_Out"/>
    </message>
         <portType name="AanvraagWSPortType">
         <operation name="addaanvraag">
    <input name="addaanvraag0Request" message="tns:addaanvraag0Request"/>
    <output name="addaanvraag0Response" message="tns:addaanvraag0Response"/>
    </operation>
         <operation name="getaanvraag">
    <input name="getaanvraag1Request" message="tns:getaanvraag1Request"/>
    <output name="getaanvraag1Response" message="tns:getaanvraag1Response"/>
    </operation>
         <operation name="findaanvraag">
    <input name="findaanvraag2Request" message="tns:findaanvraag2Request"/>
    <output name="findaanvraag2Response" message="tns:findaanvraag2Response"/>
    </operation>
         <operation name="addwaarneming">
    <input name="addwaarneming3Request" message="tns:addwaarneming3Request"/>
    <output name="addwaarneming3Response" message="tns:addwaarneming3Response"/>
    </operation>
         <operation name="getwaarneming">
    <input name="getwaarneming4Request" message="tns:getwaarneming4Request"/>
    <output name="getwaarneming4Response" message="tns:getwaarneming4Response"/>
    </operation>
         <operation name="findwaarneming">
    <input name="findwaarneming5Request" message="tns:findwaarneming5Request"/>
    <output name="findwaarneming5Response" message="tns:findwaarneming5Response"/>
    </operation>
         <operation name="listwaarnemingperaanvraag">
    <input name="listwaarnemingperaanvraag6Request" message="tns:listwaarnemingperaanvraag6Request"/>
    <output name="listwaarnemingperaanvraag6Response" message="tns:listwaarnemingperaanvraag6Response"/>
    </operation>
         <operation name="listwaarnemingperwerkmonster">
    <input name="listwaarnemingperwerkmonster7Request" message="tns:listwaarnemingperwerkmonster7Request"/>
    <output name="listwaarnemingperwerkmonster7Response" message="tns:listwaarnemingperwerkmonster7Response"/>
    </operation>
    </portType>
         <binding name="AanvraagWSBinding" type="tns:AanvraagWSPortType">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
         <operation name="addaanvraag">
    <soap:operation soapAction="" style="rpc"/>
         <input name="addaanvraag0Request">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </input>
         <output name="addaanvraag0Response">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </output>
    </operation>
         <operation name="getaanvraag">
    <soap:operation soapAction="" style="rpc"/>
         <input name="getaanvraag1Request">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </input>
         <output name="getaanvraag1Response">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </output>
    </operation>
         <operation name="findaanvraag">
    <soap:operation soapAction="" style="rpc"/>
         <input name="findaanvraag2Request">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </input>
         <output name="findaanvraag2Response">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </output>
    </operation>
         <operation name="addwaarneming">
    <soap:operation soapAction="" style="rpc"/>
         <input name="addwaarneming3Request">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </input>
         <output name="addwaarneming3Response">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </output>
    </operation>
         <operation name="getwaarneming">
    <soap:operation soapAction="" style="rpc"/>
         <input name="getwaarneming4Request">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </input>
         <output name="getwaarneming4Response">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </output>
    </operation>
         <operation name="findwaarneming">
    <soap:operation soapAction="" style="rpc"/>
         <input name="findwaarneming5Request">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </input>
         <output name="findwaarneming5Response">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </output>
    </operation>
         <operation name="listwaarnemingperaanvraag">
    <soap:operation soapAction="" style="rpc"/>
         <input name="listwaarnemingperaanvraag6Request">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </input>
         <output name="listwaarnemingperaanvraag6Response">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </output>
    </operation>
         <operation name="listwaarnemingperwerkmonster">
    <soap:operation soapAction="" style="rpc"/>
         <input name="listwaarnemingperwerkmonster7Request">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </input>
         <output name="listwaarnemingperwerkmonster7Response">
    <soap:body use="encoded" namespace="aanvraagWS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </output>
    </operation>
    </binding>
         <service name="aanvraagWS">
         <port name="AanvraagWSPort" binding="tns:AanvraagWSBinding">
    <soap:address location="http://nak3.nak.nl:7779/aanvraagService/AanvraagWS"/>
    </port>
    </service>
    </definitions>

    Well, the problem is caused by the fact that BPEL does not yet support soapenc:Array types. We've created a workaround by defining two Services, one that has only single returntypes and one that has the multiple returntypes (which are defined using soapenc:Array). There are other solutions, but those are very complicated. Hope this helps!

Maybe you are looking for

  • My Macbook 15" Retina display is sparkling?!

    Hi all. I've had my macbook for about 6 months and all of a sudden the screen has started 'sparkling' all over with little white pixels, it looks kinda like static on an old TV but less obvious. I use a separate monitor and the image is fine on that.

  • Help me please  !  Trying to publish NEW site to .mac

    HIya Not sure if anyone out there can help me but I tried to make changes to my web site. I keep getting the error message an erroe occured while publishing file 'Web/Sites/iWeb/Site'. Was working fine last night and yet this morning nothing happens.

  • Private Folder

    I did a restore some time back and after it created a folder labeled "private". Inside this folder looks like this private/tmp/tempVM/vm/swapfile0 What is this and is it safe to delete?

  • Extraction of Workflow Approver

    Hello, We need to extract information about who is the approver for a workflow object. Any information you can provide will be appreciated. Specifically, we need to determine who is designated to approve an SRM shopping cart.  We've run SQL trace (ST

  • CREATE SINGLE INSTANCE DBCA WITH ASM GET ERRO "The netwok adapter cold not

    Hi all, Im try to create single instacne im ASM, but get erro when i need to put password of SYS from ASM. The erro is: "Cannot verify passord Ioexception: The network adapter cold not establish the connection" But my ASm are OK and all disk appear f