Problem to generate classes from a gsoap server's wsdl with wsimport

Hello,
I trie for a long time to generate my client classes from a wsdl file with wsimport. The wsdl file was generated by gsoap.
Here, the wsdl file :
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="form"
targetNamespace="https://enterprise-name-masked.com/form.wsdl"
xmlns:tns="https://enterprise-name-masked.com/form.wsdl"
xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope"
xmlns:SOAP-ENC="http://www.w3.org/2003/05/soap-encoding"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:generic="generic"
xmlns:xop="http://www.w3.org/2004/08/xop/include"
xmlns:xmime4="http://www.w3.org/2004/11/xmlmime"
xmlns:form="form"
xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap12/"
xmlns:MIME="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:DIME="http://schemas.xmlsoap.org/ws/2002/04/dime/wsdl/"
xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<schema targetNamespace="generic"
  xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope"
  xmlns:SOAP-ENC="http://www.w3.org/2003/05/soap-encoding"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:generic="generic"
  xmlns:xop="http://www.w3.org/2004/08/xop/include"
  xmlns:xmime4="http://www.w3.org/2004/11/xmlmime"
  xmlns:form="form"
  xmlns="http://www.w3.org/2001/XMLSchema"
  elementFormDefault="unqualified"
  attributeFormDefault="unqualified">
  <import namespace="http://www.w3.org/2004/08/xop/include"/>
  <import namespace="http://www.w3.org/2004/11/xmlmime"/>
  <import namespace="http://www.w3.org/2003/05/soap-encoding"/>
  <simpleType name="service">
   <restriction base="xsd:string">
    <enumeration value="service-none"/><!-- enum const = 0 -->
    <enumeration value="service-ident"/><!-- enum const = 1 -->
    <enumeration value="service-pool"/><!-- enum const = 2 -->
    <enumeration value="service-hwr"/><!-- enum const = 3 -->
    <enumeration value="service-form"/><!-- enum const = 4 -->
    <enumeration value="service-document"/><!-- enum const = 5 -->
   </restriction>
  </simpleType>
  <simpleType name="result-code">
   <restriction base="xsd:string">
    <enumeration value="ok"/><!-- enum const = 0 -->
    <enumeration value="already-exists"/><!-- enum const = 1 -->
    <enumeration value="not-found"/><!-- enum const = 2 -->
    <enumeration value="cant-connect"/><!-- enum const = 3 -->
    <enumeration value="exception"/><!-- enum const = 4 -->
    <enumeration value="bad-conversion"/><!-- enum const = 5 -->
    <enumeration value="bad-values"/><!-- enum const = 6 -->
    <enumeration value="session-not-found"/><!-- enum const = 7 -->
    <enumeration value="initialization-failed"/><!-- enum const = 8 -->
   </restriction>
  </simpleType>
  <complexType name="result">
   <sequence>
     <element name="code" type="generic:result-code" minOccurs="1" maxOccurs="1"/>
     <element name="details" type="xsd:string" minOccurs="1" maxOccurs="1"/>
   </sequence>
  </complexType>
</schema>
<schema targetNamespace="form"
  xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope"
  xmlns:SOAP-ENC="http://www.w3.org/2003/05/soap-encoding"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:generic="generic"
  xmlns:xop="http://www.w3.org/2004/08/xop/include"
  xmlns:xmime4="http://www.w3.org/2004/11/xmlmime"
  xmlns:form="form"
  xmlns="http://www.w3.org/2001/XMLSchema"
  elementFormDefault="unqualified"
  attributeFormDefault="unqualified">
  <import namespace="http://www.w3.org/2004/08/xop/include"/>
  <import namespace="http://www.w3.org/2004/11/xmlmime"/>
  <import namespace="http://www.w3.org/2003/05/soap-encoding"/>
  <simpleType name="area-type">
   <restriction base="xsd:string">
    <enumeration value="area-type-text"/><!-- enum const = 0 -->
    <enumeration value="area-type-numeric"/><!-- enum const = 1 -->
    <enumeration value="area-type-date"/><!-- enum const = 2 -->
    <enumeration value="area-type-checkbox"/><!-- enum const = 3 -->
    <enumeration value="area-type-slider"/><!-- enum const = 4 -->
    <enumeration value="area-type-draw"/><!-- enum const = 5 -->
    <enumeration value="area-type-identifier"/><!-- enum const = 6 -->
   </restriction>
  </simpleType>
  <simpleType name="format">
   <restriction base="xsd:string">
    <enumeration value="A5"/><!-- enum const = 0 -->
    <enumeration value="A4"/><!-- enum const = 1 -->
    <enumeration value="A3"/><!-- enum const = 2 -->
    <enumeration value="A2"/><!-- enum const = 3 -->
    <enumeration value="A1"/><!-- enum const = 4 -->
    <enumeration value="A0"/><!-- enum const = 5 -->
   </restriction>
  </simpleType>
  <complexType name="area">
   <sequence>
     <element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
     <element name="x" type="xsd:double" minOccurs="1" maxOccurs="1"/>
     <element name="y" type="xsd:double" minOccurs="1" maxOccurs="1"/>
     <element name="width" type="xsd:double" minOccurs="1" maxOccurs="1"/>
     <element name="height" type="xsd:double" minOccurs="1" maxOccurs="1"/>
     <element name="comments" type="xsd:string" minOccurs="1" maxOccurs="1"/>
     <element name="area-type" type="form:area-type" minOccurs="1" maxOccurs="1"/>
   </sequence>
  </complexType>
  <complexType name="area-with-string">
   <sequence>
     <element name="area" type="form:area" minOccurs="1" maxOccurs="1"/>
     <element name="string" type="xsd:string" minOccurs="1" maxOccurs="1"/>
   </sequence>
  </complexType>
  <complexType name="area-with-integer">
   <sequence>
     <element name="area" type="form:area" minOccurs="1" maxOccurs="1"/>
     <element name="integer" type="xsd:int" minOccurs="1" maxOccurs="1"/>
   </sequence>
  </complexType>
  <complexType name="area-with-range">
   <sequence>
     <element name="area" type="form:area" minOccurs="1" maxOccurs="1"/>
     <element name="lower" type="xsd:double" minOccurs="1" maxOccurs="1"/>
     <element name="upper" type="xsd:double" minOccurs="1" maxOccurs="1"/>
   </sequence>
  </complexType>
  <complexType name="areas">
   <sequence>
     <element name="areas" type="form:area" minOccurs="0" maxOccurs="unbounded"/>
     <element name="string-areas" type="form:area-with-string" minOccurs="0" maxOccurs="unbounded"/>
     <element name="integer-areas" type="form:area-with-integer" minOccurs="0" maxOccurs="unbounded"/>
     <element name="range-areas" type="form:area-with-range" minOccurs="0" maxOccurs="unbounded"/>
   </sequence>
  </complexType>
  <complexType name="group">
   <sequence>
     <element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
     <element name="areas" type="form:areas" minOccurs="1" maxOccurs="1"/>
     <element name="groups" type="form:group" minOccurs="0" maxOccurs="unbounded"/>
   </sequence>
  </complexType>
  <complexType name="background">
   <sequence>
     <element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
     <element name="md5" type="xsd:string" minOccurs="1" maxOccurs="1"/>
     <element name="mime" type="xsd:string" minOccurs="1" maxOccurs="1"/>
     <element name="num-page" type="xsd:int" minOccurs="1" maxOccurs="1"/>
   </sequence>
  </complexType>
  <complexType name="pattern-type">
   <sequence>
     <element name="print-once" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
     <element name="has-identifier" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
   </sequence>
  </complexType>
  <complexType name="page">
   <sequence>
     <element name="num-page" type="xsd:int" minOccurs="1" maxOccurs="1"/>
     <element name="format" type="form:format" minOccurs="1" maxOccurs="1"/>
     <element name="is-portrait" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
     <element name="background" type="form:background" minOccurs="1" maxOccurs="1"/>
     <element name="areas" type="form:areas" minOccurs="1" maxOccurs="1"/>
     <element name="groups" type="form:group" minOccurs="0" maxOccurs="unbounded"/>
   </sequence>
  </complexType>
  <complexType name="document-new">
   <sequence>
     <element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
     <element name="pattern-type" type="form:pattern-type" minOccurs="1" maxOccurs="1"/>
     <element name="form-pages" type="form:page" minOccurs="0" maxOccurs="unbounded"/>
   </sequence>
  </complexType>
  <complexType name="document">
   <sequence>
     <element name="uuid" type="xsd:string" minOccurs="1" maxOccurs="1"/>
     <element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
     <element name="pattern-type" type="form:pattern-type" minOccurs="1" maxOccurs="1"/>
     <element name="form-pages" type="form:page" minOccurs="0" maxOccurs="unbounded"/>
   </sequence>
  </complexType>
  <complexType name="document-info">
   <sequence>
     <element name="uuid" type="xsd:string" minOccurs="1" maxOccurs="1"/>
     <element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
     <element name="page-count" type="xsd:int" minOccurs="1" maxOccurs="1"/>
   </sequence>
  </complexType>
  <complexType name="Data">
   <sequence>
     <element ref="xop:Include" minOccurs="1" maxOccurs="1"/>
   </sequence>
     <attribute ref="xmime4:contentType" use="optional"/>
  </complexType>
  <complexType name="login-response">
   <sequence>
     <element name="result" type="generic:result" minOccurs="1" maxOccurs="1"/>
     <element name="session" type="xsd:string" minOccurs="1" maxOccurs="1"/>
   </sequence>
  </complexType>
  <!-- operation request element -->
  <element name="login" type="xsd:string"/>
  <!-- operation request element -->
  <element name="password" type="xsd:string"/>
  <!-- operation response element -->
  <element name="result" type="generic:result"/>
  <!-- operation response element -->
  <element name="uuid" type="xsd:string"/>
  <!-- operation request element -->
  <element name="session" type="xsd:string"/>
  <!-- operation request element -->
  <element name="aform" type="form:document-new"/>
  <!-- operation response element -->
  <element name="form" type="form:document"/>
  <!-- operation request element -->
  <element name="md5" type="xsd:string"/>
  <!-- operation response element -->
  <element name="data" type="form:Data"/>
  <!-- operation response element -->
  <element name="exists" type="xsd:boolean"/>
  <!-- operation response element -->
  <element name="backgrounds" type="form:background"/>
  <!-- operation response element -->
  <element name="forms" type="form:document"/>
  <!-- operation response element -->
  <element name="forms-info" type="form:document-info"/>
</schema>
</types>
<message name="login">
<part name="login" element="form:login"/>
<part name="password" element="form:password"/>
</message>
<message name="uuid-response">
<part name="result" element="form:result"/>
<part name="uuid" element="form:uuid"/>
</message>
<message name="quit">
<part name="session" element="form:session"/>
</message>
<message name="response">
<part name="result" element="form:result"/>
</message>
<message name="new-form">
<part name="session" element="form:session"/>
<part name="aform" element="form:aform"/>
</message>
<message name="free-form">
<part name="session" element="form:session"/>
<part name="uuid" element="form:uuid"/>
</message>
<message name="get-form">
<part name="session" element="form:session"/>
<part name="uuid" element="form:uuid"/>
</message>
<message name="document-response">
<part name="result" element="form:result"/>
<part name="form" element="form:form"/>
</message>
<message name="get-file">
<part name="session" element="form:session"/>
<part name="md5" element="form:md5"/>
</message>
<message name="data-response">
<part name="result" element="form:result"/>
<part name="data" element="form:data"/>
</message>
<message name="set-file">
<part name="session" element="form:session"/>
<part name="md5" element="form:md5"/>
<part name="data" element="form:data"/>
</message>
<message name="file-exists">
<part name="session" element="form:session"/>
<part name="md5" element="form:md5"/>
</message>
<message name="exists-response">
<part name="result" element="form:result"/>
<part name="exists" element="form:exists"/>
</message>
<message name="list-form-backgrounds">
<part name="session" element="form:session"/>
<part name="uuid" element="form:uuid"/>
</message>
<message name="list-backgrounds-response">
<part name="result" element="form:result"/>
<part name="backgrounds" element="form:backgrounds"/>
</message>
<message name="list-forms">
<part name="session" element="form:session"/>
</message>
<message name="list-forms-response">
<part name="result" element="form:result"/>
<part name="forms" element="form:forms"/>
</message>
<message name="list-forms-info">
<part name="session" element="form:session"/>
</message>
<message name="list-forms-info-response">
<part name="result" element="form:result"/>
<part name="forms-info" element="form:forms-info"/>
</message>
<portType name="formPortType">
<operation name="login">
  <documentation>Service definition of function form__login</documentation>
  <input message="tns:login"/>
  <output message="tns:uuid-response"/>
</operation>
<operation name="quit">
  <documentation>Service definition of function form__quit</documentation>
  <input message="tns:quit"/>
  <output message="tns:response"/>
</operation>
<operation name="new-form">
  <documentation>Service definition of function form__new_form</documentation>
  <input message="tns:new-form"/>
  <output message="tns:uuid-response"/>
</operation>
<operation name="free-form">
  <documentation>Service definition of function form__free_form</documentation>
  <input message="tns:free-form"/>
  <output message="tns:response"/>
</operation>
<operation name="get-form">
  <documentation>Service definition of function form__get_form</documentation>
  <input message="tns:get-form"/>
  <output message="tns:document-response"/>
</operation>
<operation name="get-file">
  <documentation>Service definition of function form__get_file</documentation>
  <input message="tns:get-file"/>
  <output message="tns:data-response"/>
</operation>
<operation name="set-file">
  <documentation>Service definition of function form__set_file</documentation>
  <input message="tns:set-file"/>
  <output message="tns:response"/>
</operation>
<operation name="file-exists">
  <documentation>Service definition of function form__file_exists</documentation>
  <input message="tns:file-exists"/>
  <output message="tns:exists-response"/>
</operation>
<operation name="list-form-backgrounds">
  <documentation>Service definition of function form__list_form_backgrounds</documentation>
  <input message="tns:list-form-backgrounds"/>
  <output message="tns:list-backgrounds-response"/>
</operation>
<operation name="list-forms">
  <documentation>Service definition of function form__list_forms</documentation>
  <input message="tns:list-forms"/>
  <output message="tns:list-forms-response"/>
</operation>
<operation name="list-forms-info">
  <documentation>Service definition of function form__list_forms_info</documentation>
  <input message="tns:list-forms-info"/>
  <output message="tns:list-forms-info-response"/>
</operation>
</portType>
<binding name="form" type="tns:formPortType">
<SOAP:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="login">
  <SOAP:operation style="rpc"/>
  <input>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </output>
</operation>
<operation name="quit">
  <SOAP:operation style="rpc"/>
  <input>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </output>
</operation>
<operation name="new-form">
  <SOAP:operation style="rpc"/>
  <input>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </output>
</operation>
<operation name="free-form">
  <SOAP:operation style="rpc"/>
  <input>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </output>
</operation>
<operation name="get-form">
  <SOAP:operation style="rpc"/>
  <input>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </output>
</operation>
<operation name="get-file">
  <SOAP:operation style="rpc"/>
  <input>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </output>
</operation>
<operation name="set-file">
  <SOAP:operation style="rpc"/>
  <input>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </output>
</operation>
<operation name="file-exists">
  <SOAP:operation style="rpc"/>
  <input>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </output>
</operation>
<operation name="list-form-backgrounds">
  <SOAP:operation style="rpc"/>
  <input>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </output>
</operation>
<operation name="list-forms">
  <SOAP:operation style="rpc"/>
  <input>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </output>
</operation>
<operation name="list-forms-info">
  <SOAP:operation style="rpc"/>
  <input>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal" namespace="form"/>
  </output>
</operation>
</binding>
<service name="form">
<documentation>gSOAP 2.7.10 generated service definition</documentation>
<port name="form" binding="tns:form">
  <SOAP:address location="https://enterprise-name-masked.com/cgi-bin/form.fcgi"/>
</port>
</service>
</definitions>And here, you can find the generated errors :
wsimport -s Sources -b http://www.w3.org/2004/08/xop/includ
e -b http://www.w3.org/2004/11/xmlmime form.wsdl
parsing WSDL...
[WARNING] src-resolve: Cannot resolve the name 'xmime4:contentType' to a(n) 'attribute declaration' component.
  line 215 of file:/C:/Documents%20and%20Settings/Hopi_1/Mes%20documents/Alexandre/Recherche%20SOAP/WSImport/Test/Form/form.wsdl#types?schema2
[WARNING] s4s-elt-invalid-content.1: The content of 'Data' is invalid.  Element 'attribute' is invalid, misplaced, or occurs too often.
  line 215 of file:/C:/Documents%20and%20Settings/Hopi_1/Mes%20documents/Alexandre/Recherche%20SOAP/WSImport/Test/Form/form.wsdl#types?schema2
[WARNING] src-resolve.4.2: Error resolving component 'generic:result'. It was detected that 'generic:result' is in namespace 'generic', but components
from this namespace are not referenceable from schema document 'file:/C:/Documents%20and%20Settings/Hopi_1/Mes%20documents/Alexandre/Recherche%20SOAP
/WSImport/Test/Form/form.wsdl#types?schema2'. If this is the incorrect namespace, perhaps the prefix of 'generic:result' needs to be changed. If this
is the correct namespace, then an appropriate 'import' tag should be added to 'file:/C:/Documents%20and%20Settings/Hopi_1/Mes%20documents/Alexandre/Re
cherche%20SOAP/WSImport/Test/Form/form.wsdl#types?schema2'.
  line 230 of file:/C:/Documents%20and%20Settings/Hopi_1/Mes%20documents/Alexandre/Recherche%20SOAP/WSImport/Test/Form/form.wsdl#types?schema2
[WARNING] src-resolve: Cannot resolve the name 'xop:Include' to a(n) 'element declaration' component.
  line 213 of file:/C:/Documents%20and%20Settings/Hopi_1/Mes%20documents/Alexandre/Recherche%20SOAP/WSImport/Test/Form/form.wsdl#types?schema2
[WARNING] Ignoring SOAP port "form": it uses non-standard SOAP 1.2 binding.
You must specify the "-extension" option to use this binding.
  line 533 of file:/C:/Documents%20and%20Settings/Hopi_1/Mes%20documents/Alexandre/Recherche%20SOAP/WSImport/Test/Form/form.wsdl
[WARNING] Service "form" does not contain any usable ports. try running wsimport with -extension switch.
  line 531 of file:/C:/Documents%20and%20Settings/Hopi_1/Mes%20documents/Alexandre/Recherche%20SOAP/WSImport/Test/Form/form.wsdl
generating code...
compiling code...Could you tell me how to correctly generate my classes in this case ?
Thank you.
Edited by: morphet on May 30, 2008 6:12 AM

Alchemista,
Not sure if you were able to solve your problem..but I was trying to do exactly what you were trying to do.. access a datasource from a simple Java client. However, you cannot do so by simply writing the Java class and running it. The simple Java client has to be deployed as a J2EE Application Client. The following tutorial shows how to create a J2EE Application Client using the non-J2EE Java class you have written.
http://developer.java.sun.com/developer/technicalArticles/J2EE/appclient
The article talks about accessing EJBs from a J2EE App. Client.. but since you only want to access the DataSource, just skip all the screens until it asks you to register the JNDI DataSource resources...
Let me know if you have any questions. You can email me at [email protected]
I hope this helps.

Similar Messages

  • Jaxb. Problem in generating classes

    I am using wsad 5.1.1 and java web services developers pack 1.5.
    I am trying to generate classes from xml schema but i am getting following error. please help.
    parsing a schema...
    compiling a schema...
    generated\impl\runtime\ContentHandlerAdaptor.java
    generated\impl\runtime\GrammarInfo.java
    generated\impl\runtime\SAXUnmarshallerHandler.java
    generated\impl\runtime\GrammarInfoFacade.java
    generated\impl\runtime\UnmarshallingEventHandlerAdaptor.java
    generated\impl\runtime\SAXMarshaller.java
    generated\impl\runtime\ValidatingUnmarshaller.java
    generated\impl\runtime\AbstractUnmarshallingEventHandlerImpl.java
    generated\impl\runtime\GrammarInfoImpl.java
    generated\impl\runtime\Util.java
    generated\impl\runtime\ValidationContext.java
    generated\impl\runtime\UnmarshallerImpl.java
    generated\impl\runtime\UnmarshallingEventHandler.java
    generated\impl\runtime\NamespaceContext2.java
    generated\impl\runtime\SAXUnmarshallerHandlerImpl.java
    generated\impl\runtime\XMLSerializable.java
    generated\impl\runtime\DefaultJAXBContextImpl.java
    generated\impl\runtime\UnmarshallableObject.java
    generated\impl\runtime\PrefixCallback.java
    generated\impl\runtime\NamespaceContextImpl.java
    generated\impl\runtime\ErrorHandlerAdaptor.java
    generated\impl\runtime\ValidatableObject.java
    generated\impl\runtime\Discarder.java
    generated\impl\runtime\MSVValidator.java
    generated\impl\runtime\UnmarshallingContext.java
    generated\impl\runtime\ValidatorImpl.java
    generated\impl\runtime\InterningUnmarshallerHandler.java
    generated\impl\runtime\MarshallerImpl.java
    generated\impl\runtime\XMLSerializer.java
    generated\impl\CommentImpl.java
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
         at java.lang.reflect.Method.invoke(Method.java:391)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: java.lang.NullPointerException
         at com.ibm.nio.cs.SBCS_Encoder.canEncode(SBCS_Encoder.java:199)
         at com.sun.codemodel.JPackage$1.requireEscaping(JPackage.java:356)
         at com.sun.codemodel.util.UnicodeEscapeWriter.write(UnicodeEscapeWriter.java:28)
         at com.sun.codemodel.util.UnicodeEscapeWriter.write(UnicodeEscapeWriter.java:54)
         at com.sun.codemodel.util.UnicodeEscapeWriter.write(UnicodeEscapeWriter.java:66)
         at java.io.PrintWriter.newLine(PrintWriter.java(Compiled Code))
         at java.io.PrintWriter.println(PrintWriter.java(Compiled Code))
         at com.sun.codemodel.JFormatter.nl(JFormatter.java:159)
         at com.sun.codemodel.JPackageMemberClass.declare(JPackageMemberClass.java:60)
         at com.sun.codemodel.JPackage.build(JPackage.java:364)
         at com.sun.codemodel.JCodeModel.build(JCodeModel.java:157)
         at com.sun.tools.xjc.Driver.run(Driver.java:235)
         at com.sun.tools.xjc.Driver._main(Driver.java:80)
         at com.sun.tools.xjc.Driver.access$000(Driver.java:46)
         at com.sun.tools.xjc.Driver$1.run(Driver.java:60)

    Use the Sun 1.4.2 JDK instead of the IBM WSAD 5.1.1 built-in JDK.

  • Problem in generate Java  from PL SQL package in Jdeveloper

    Hi
    i have problem in create java class from PL SQL package in JDeveloper.
    I use Database navigator of jdeveloper and right click on a package and choose Generate Java then in Jpublisher window choose my view Controller and accept other default values.
    I call methods of generated class in the Action of a button in my JSP page, but when I click the button it  throw null pointer exception !!! i fund one of generated method return null and it lead to this exception.
    protected DefaultContext __tx = null;
    public DefaultContext getConnectionContext() throws SQLException  {
    if (__tx==null){
    __tx = (getConnection()==null) ? DefaultContext.getDefaultContext() : new DefaultContext(getConnection());
        return __tx;
      public Connection getConnection() throws SQLException
        if (__onn!=null) return __onn;
         else if (__tx!=null) return __tx.getConnection();
         else if (__dataSource!=null) __onn= __dataSource.getConnection();
         return __onn;
    i try to generate class in Model project and create DataControl for that and use method action but noting change and i get null pointer again!!
    Jdeveloper Versino = 11.1.1.7.0

    Let me ask you another question: Why do you generate java from the package at all?
    Where do you want to call the package?
    Back to your question: you should see code like
        public void setDataSourceLocation(String dataSourceLocation) throws SQLException {
            javax.sql.DataSource dataSource;
            try {
                Class cls = Class.forName("javax.naming.InitialContext");
                Object ctx = cls.newInstance();
                java.lang.reflect.Method meth = cls.getMethod("lookup", new Class[] { String.class });
                dataSource = (javax.sql.DataSource) meth.invoke(ctx, new Object[] { "java:comp/env/" + dataSourceLocation });
                setDataSource(dataSource);
            } catch (Exception e) {
                throw new java.sql.SQLException("Error initializing DataSource at " + dataSourceLocation + ": " + e.getMessage());
    in the generated code. This code look up a datasource (which you have defined e.g. on the Weblogic Server) by calling the method
    setDataSourceLocaltion("jdbc/HRConnDS");
    This look up the datasource nad stores it in the class variable.
    Timo

  • Re: Problems Invoking Ebiz Webservice from 11g FMW Server

    Hi All,
    We need to invoke a Webservice deployed on Ebiz host from 11g FMW Server in our PIP.
    I created a simple BPEL process to invoke Ebiz Webservice and deployed the bpel process on 11g Server.
    While executing the bpel process Iam getting Null Pointer Exception from Ebiz Webservice.
    After checking the logs of Ebiz it was understood that SOA Provider is unable to recognize wsa header tags in the soap message used to invoke Ebiz Webservice.
    Error message from logs is "An error occurred for port: AppsWSProvider: oracle.webservices.provider.ProviderException: java.lang.NullPointerException."
    Unexpected header encountered: NameImpl: [localName: To, prefix:wsa, uri:http://www.w3.org/2005/08/addressing]
    oracle.apps.fnd.wf.ws.common.WSException: InvalidHeader: Unexpected header encountered.
    at oracle.apps.fnd.wf.ws.common.SOAPUtils.extractHeaders(SOAPUtils.java:92)
    at oracle.apps.fnd.wf.ws.server.AppsWSProvider.processMessage(AppsWSProvider.java:470)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:958)
    at oracle.j2ee.ws.server.WebServiceProcessor$1.run(WebServiceProcessor.java:388)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:396)
    at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:385)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:481)
    at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
    at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
    at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:200)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    11g FMW Server is automatically adding these WSA Header tags in the soap message to invoke Webservice deployed on Ebiz host.
    Have anyone encountered similar kind of issue?
    Regards,
    Sunitha.M

    I'm using Weblogic 7.0.
    You must use two jars:
    - webserviceclient+ssl.jar, which you can find somewhere in the
    weblogic distribution, and
    - the jar containing the proxy classes, which is created by the
    tool jwsCompile when you compile the webservice (edited with Workshop). For this
    latter you may follow the instructions in
    http://e-docs.bea.com/workshop/docs70/help/index.html#guide/
    tutorial/tutFirstWebServiceIntro.html at step 8
    Still, if you happen to understand what my problem is, hints for
    me are really welcome.

  • Problem loading modified classes from CLASSPATH using system class loader

    Hi,
    I am facing problem to load the modified classes from CLASSPATH.
    I have set my CLASSPATH to a directory whose classes will be modified frequently. After the server(web/app) is started, the system class loader, using which am trying to load the classes from the directory where the CLASSPATH is set, am not able to load the modified files without the server restart.
    Do I need to have a custom class loader to fix this.
    Please help me.
    Thanks,
    Sureddy

    Do I need to have a custom class loader to fix this.Yes.

  • Not to reguest classes from the codebase server if not found in archive?

    i am not sure but i recall since 1.6 there is some applet tag parameter to switch off class/resource retrival from the codebase server after looking in the archive jar...
    i.e. i do not want my browser to flood my www server with small reguests since the appled in fact does not need anything but the jar file content...
    what is this parameter?

    i've recovered it :)
    <PARAM name="codebase_lookup" value="false">

  • Problems Invoking Ebiz Webservice from 11g FMW Serve

    Hi All,
    We need to invoke a Webservice deployed on Ebiz host from 11g FMW Server in our PIP.
    I created a simple BPEL process to invoke Ebiz Webservice and deployed the bpel process on 11g Server.
    While executing the bpel process Iam getting Null Pointer Exception from Ebiz Webservice.
    After checking the logs of Ebiz it was understood that SOA Provider is unable to recognize wsa header tags in the soap message used to invoke Ebiz Webservice.
    Error message from logs is "An error occurred for port: AppsWSProvider: oracle.webservices.provider.ProviderException: java.lang.NullPointerException."
    Unexpected header encountered: NameImpl: [localName: To, prefix:wsa, uri:http://www.w3.org/2005/08/addressing]
    oracle.apps.fnd.wf.ws.common.WSException: InvalidHeader: Unexpected header encountered.
    at oracle.apps.fnd.wf.ws.common.SOAPUtils.extractHeaders(SOAPUtils.java:92)
    at oracle.apps.fnd.wf.ws.server.AppsWSProvider.processMessage(AppsWSProvider.java:470)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:958)
    at oracle.j2ee.ws.server.WebServiceProcessor$1.run(WebServiceProcessor.java:388)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:396)
    at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:385)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:481)
    at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
    at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
    at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:200)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    11g FMW Server is automatically adding these WSA Header tags in the soap message to invoke Webservice deployed on Ebiz host.
    Have anyone encountered similar kind of issue?
    Regards,
    Sunitha.M

    Hi
    Hope below URL will resolve your issue
    URL: https://cn.forums.oracle.com/forums/thread.jspa?threadID=1099613
    Regards,
    Phanikanth

  • How to delete a row from a SQL Server CE Table with multiple JOINs?

    I want to delete a record from a SQL Server CE table.
    There are 3 tables scripts, options and results. I would like to remove a record from the results table. The where clause contains dynamic information which retrieved via other queries to different tables in the same database. These queries work fine and deliver
    the desired data.
    The Compact server is a clone of a remote table created using the sync framework. The same query to the remote table works fine.
    The error I get is:
    There was an error parsing the query. [ Token line number = 1,Token line offset = 10,Token in error = from ]
    The code that throws the exception is as follows:
    Dim connLoc As SqlCeConnection = New SqlCeConnection(My.Settings.ConnectionString)connLoc.Open()     Dim strDel As String = "Delete r from ResultsTable r inner join OptionsTable o ON o.TestName=r.TestName inner join ScriptTable c ON r.TestName=c.TestName WHERE r.TestName = '" & ds1Loc.Tables(0).Rows(0)(1) & "' AND [Index] = '" & lstIndex & "'"Dim cmdDel As SqlCeCommand = New SqlCeCommandcmdDel.CommandText = strDelcmdDel.Connection = connLoccmdDel.ExecuteNonQuery()
    The values held in ds1Loc.Tables(0).Rows(0)(1) and lstIndex are
    correct so should not be the problem.
    I also tried using parameterised queries
    Dim strDel As String = "Delete r from [ResultsTable] r inner join [OptionsTable] o ON o.TestName=r.TestName inner join [ScriptTable] c ON r.TestName=c.TestName WHERE r.TestName = @TestName AND [Index] = @lstIndex"
    Dim cmdDel As SqlCeCommand = New SqlCeCommand        cmdDel.CommandText = strDel       
    With cmdDel.Parameters           
    .Add(New SqlCeParameter("@TestName", ds1Loc.Tables(0).Rows(0)(1)))           
    .Add(New SqlCeParameter("@lstIndex", lstIndex))       
    End With 
    cmdDel.Connection = connLoc        cmdDel.ExecuteNonQuery()
    I have tried replacing the "=" with "IN" in the the WHERE clause but this has not worked.
    Is it the join that is causing the problem? I can do a select with the same search criteria and joins from the same database.
    Also this query works with SQL Server. Is it perhaps that SQL CE does not support the Delete function the same as SQL Server 2008? I have been looking at this for a while now and cannot find the source of the error. Any help would be greatly appreciated.

    Hello,
    In SQL Server Compact, we can use join in FROM clause. The DELETE statement fail may be caused by the FOREIGN KEY constraint.
    Please refer to:
    DELETE (SQL Server Compact)
    FROM Clause (SQL Server Compact)
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Calling Managed CLR Stored Procedure from C++ SQL Server 2008 fails with Msg 2809

    I am trying to call a stored procedure from C++ (VS 2010).
    Here is what the stored procedure looks like:
    public class Validate
    [Microsoft.SqlServer.Server.SqlProcedure(Name = "ClientTest")]
    public static void ClientTest(out String res )
    { res = "50";}
    To create a stored procedure I deploy at first the assembly
    USE [test]
    GO
    CREATE ASSEMBLY ClientTestAssembly
    AUTHORIZATION testLogin
    FROM 'C:\Users\test\Documents\Visual Studio 2010\Projects\TestCreationAssemblyCSharp\TestCreationAssemblyCSharp\bin\x64\Debug\TestCreationAssemblyCSharp.dll'
    and call 
    USE test
    GO
    CREATE PROCEDURE ClientTest (@res NVARCHAR(40) OUTPUT)
    AS
    EXTERNAL NAME ClientTestAssembly.Validate.ClientTest
    I can call my procedure direct in SQL Server Management Studio without any errors
    declare @res nvarchar(10)
    execute ClientTest @res OUTPUT
    print @res
    But when I try to call this procedure from C++ using CALL syntax
    SQLBindParameter(sqlstatementhandle, 1, SQL_PARAM_OUTPUT, SQL_C_CHAR,
    SQL_VARCHAR , 40, 0, version, sizeof(version) ,
    &pcbValue);
    res = SQLExecDirect(sqlstatementhandle, (SQLCHAR*)("{CALL ClientTest(?) }"), SQL_NTS);
    I get the Error 2809 with SQLSTATE 42000 and with statement 
    The request for 'ClientTest'
    (procedure) failed because 'ClientTest' is a procedure object.
    However, if I wrap my CLR stored procedure into a T-SQL stored procedure, like
    CREATE PROCEDURE myProc (@res NVARCHAR(40) OUTPUT)
    AS
    EXEC ClientTest @res OUTPUT
    and call then myProc instead of ClientTest
    res = SQLExecDirect(sqlstatementhandle, (SQLCHAR*)("{CALL myProc(?) }"), SQL_NTS);
    everithing works fine and I get 50 as result.
    I have no ideas what is the reason for that behavior.
    Thanks very much for any suggestion. 
    Christina

    I'm not an ODBC expert, but you might try following the sample here:
    Process Return Codes and Output Parameters (ODBC)
    To see if it also behaves differently for your CLR proc.
    David
    David http://blogs.msdn.com/b/dbrowne/

  • Jikes compiler problem when importing class from a jar

    hi everyone,
    I'm new there so please excuse me if i post a pb that have been already answered...
    I've a pb with jikes that is encountering a problem and so closing when compiling. I use ant to build my project.
    In my classpath I have, among others, a jar named 'kepler.jar' in which I use the following class 'WSResult;'
    In my java class I have the following import :
    'import com._4d.kepler.model.WSResult;'
    Do you think it is the character "_" that makes jikes to bug ?
    What else can be the problem of not compiling and stopping building the project ?
    Thank you very much for your help, looking forward to your answer...!
    Florence.

    Editing material is vastly different from just playing it.
    With Audio, a player is accessing the actual file on the HDD, and reading the info from there.
    The big difference is that with PrE (and PrPro), those files are not being used directly. When Imported, a couple of things happen:
    PrE creates links to those files, for later use, when one Exports/Shares
    PrE creates "proxy files," to display the Video on the Timeline, based on those links. It also creates proxy files for better display, when one Renders the Timeline, or portions of it.
    PrE creates a CFA (Conformed Audio) and a PEK (Waveform Display) file, that are used - the CFA is to allow for critical editing and the PEK is what one sees on the Audio Track. The actual files are NOT directly accessed - only the CFA file.
    For a bit more info on Conforming, see this ARTICLE.
    Now, there have been some problems reported, where the Audio was Linear PCM/WAV. I do not know what there is about the LPCM, that causes the issue, but the "plain vanilla" PCM/WAV's seem to be trouble-free. I would love to read, from an Adobe employee, or audio engineer, explaining on why there might be issues.
    For the red, and as there is some "earthiness" to it, I like the Acacia Carneros Pinot Noir. I pick it up at Costco for about US $22. It has proved to be about the best inexpensive PN, that I have encountered. Another, is the Peachy Canyon Incredible Red, which I have picked up "on sale" for around US $ 9. Their Peachy Canyon East Side Zinfandel, is even better, and I've found it as low as US $ 15. If you can find the Glen Carlou Grand Classique (South Africa), it is about the best cheap Bordeaux Blend, that I have ever found at ~ US $ 12.
    Good luck,
    Hunt

  • Problem in extracting data from another BW server

    Hello Experts
    I have two BW servers in landscape. One is used as stagins server and second server exctracts data form this server and is used as reporting server.
    I can see data in DSOs in stagins server, also checked export datasources in RSA3 in staging server and works fine.
    In reporting server delta infopackage runs fine but extracts 0 records. i tryied deleting and redoing init still dosent help. its not throwing any error.
    what could be problem and how can i troubleshoot and correct it?
    Thanks in advance
    Regards
    Sudeep

    Try these Steps:
    1.Replicate and activate the datasource(if BI 7) else activate Transfer Rules.
    2.Create an infopackage without selections as Full update and run..
    3.If no records are still coming (0)  then check the RFC connection b/n Staging & Reporting BI.
    Go to SM59 ,first in Reporting BI and chk the :authorizaiton test & rfc test
    again go to Staging BI and test for RFC connection to Reporting BI -->authorization test & rfc test
    Sometimes password etc are changed just be careful and chk them properly.
    4.create a Dummy DSO and load data to it from flat file on staging server.Now replicate its export datasource to Reporting BI.
    If you can load data to PSA of this dummy datasource then there is some other problem.If there is no record comign then definately you need to go through step-1 to 3.
    Regards,
    RK

  • Problems when generating forms from Module Generator

    I am trying to generate a form from a module in Module Generator. The form is generating OK, but when design editor tries to show the form in the browser it doesn't work.
    This is the URL it is trying to use:
    http://127.0.0.1:8888/forms90/f90servlet/?form=/\MANAGE_ACCOUNTS&userid=adam/xxxxxxx@oraserve
    When I run a form from Form Builder, I get something like this:
    http://127.0.0.1:8888/forms90/f90servlet?form=C:\Temp\Dev\WOOL_MAIN.fmx&userid=ADAM/xxxxxx@oraserve&buffer_records=NO&debug_messages=NO&array=YES&query_only=NO&quiet=NO&RENDER=YES
    My server based URL is:
    http://127.0.0.1:8888/forms90/f90servlet
    I'm trying to set the generator preferences but just can't seem to get it right :(
    can anyone help?
    thx
    adam

    Try the following solutions :
    1) Check on in IE -> Tools -> Internet Options -> advanced -> allow active content to run in files on My Co
    mputer
    2) Make sure that you have in the Internet Explorer Tools -> Internet Options -> Advanced tab -> Check the check box
    Enable third party Browser extensions. It will be under browsing.

  • How to extend/ replace generated classes from JAXB

    Hello Experts,
    In our application (Which uses Java Webdynpro as the UI and RFC’s for the backend access- an R/3 System), there is a need to construct an XML file (from the data entered by the user) which will be later accepted by the backend system. Now to avoid manual creation of the XML document, what we did is that we created an XSD file based on the back end structure (This XSD contains definition for all the possible fields and structures in the back end).
    Then we used the JAXB implementation to automatically create Java Objects from the XSD file. We populate this JAXB generated Java objects and then use the Serialization framework to serialize them into an XML file.
    This all works well, provided that the structure of the back end system does not change, but unfortunately it can, customer can add additional attributes to the existing structures (They do not create new structures, just add new attributes to it so I do not need to create new Java Object classes at runtime, I need only to add attributes to them). If they do so, the XSD and corresponding Java Objects (which are shipped as part of the source code) do not remain valid anymore as the automatically generated Objects (which correspond to the structures in the back end) would not have the definition of the newly added attributes.
    Can anyone please suggest how to overcome this limitation with JAXB.
    The needed functionality is that somehow I should be able to add fields (corresponding to the customer added attributes) to the automatically created Java objects and thus pass the data in the additional attribute to the backend. (Please note that at runtime using an RFC, I can find out the current structure of the backend but the structure at the Webdynpro end (set of Java objects generated from the JAXB) is static and is a part of the code).
    Any comments/suggestions could be of great help.
    Thanks
    Amit Kapoor

    You cannot do that. TheJAVA language does not allow a class to "extend" more than one upper class.
    Typically, the solution is to modify your architecture a little bit. Just use the "has a" relationship instead of "is a". That means something like that:public class MyFraisMessage
        extends MyOtherClass
        private FraisMessage message;
      etc...You write an extension "MyFraisMessage" of your upper class "MyOtherClass", which has the JAXB generated object as an attribute. This structure is often useful, when you think you would need multiple inheritance.

  • Problem in generating acknowledgement no in production server

    am generating the 40ack feature by giving the Transaction Code :- Pe03.
    2.When i going to change option after generating the 40ack feature, i am unable to get the change option and the activate option in the production server.
    I want to update the acknowledgement no for Form 16 in the production server directly.
    Can you please let me know how to get the change node and the activate node in the production server so that i can directly update in production server.
    Regards
    Ansuman Mohanty.

    thanz

  • Problems to generate JAVA from SQLJ

    Hi, i work with Developer 10.1.3, and I try to generate files .java from files .sqlj. I generate java files from de packages in data base, but don´t generate me files .java from the .sqlj generated. Can anyone help me?
    Regards.

    Hi,
    Does it happen for a particular work area or any workarea?
    Can you give the detail of the Designer client you are using?
    The following steps should be follwed:
    Select Database as "Source of Design Capture"
    Give the correct database connection detail
    Give the correct Target Container, Capture Implementation Info and User.
    Select the object(s) to be captured
    Click the Start button

Maybe you are looking for

  • Is there a way to bring back the "Open a New Tab" option via right-clicking on the Tab?

    I just upgraded to latest version of Firefox (6.0). Yesterday it informed me that an upgrade to Firefox 5.(something) was available and asked if I wanted to upgrade. I went for it. However, I hadn't used it since then till today. Now when I opened it

  • View All sessions in Oracle 10.2.0.1.0

    Hi, I am newbie using Oracle Version 10.2.0.1.0 How to view all the sessions similar to 9i EM Thanks.

  • 5.7.1 Relaying not allowed

    Hi All, We have messaging server 7.3,We are able to get the messages for out site.But we are not able to send mail from in site to out site. just today we have change the server after chinging the server this problem came. Sun Java(tm) System Messagi

  • Designing ABAP webdynpro to XI

    Hi I want to design an ABAP webdynpro with two fields; one field with an ID and another field to display a result. I enter the filename/ID then XI fetches the file and returns the content to display in Webdynpro. Please do the needfull. Regards, Varu

  • Mac OS X Combo Update 10.4.11

    I recently upgraded my iTunes to 7.6. The problem is my version of Mac OS X is 10.4.8. It will not allow iTunes to open without 10.4.9 or later. I trield to download the update Mac OS X Combo Update 10.4.11. and it says it cannot be installed on this