WSDL is not working in Jdeveloper

Hi ,
I got a WSDL from Informatica team .It's working in soap UI but not wokring in Jdev 11.1.1.5.
Please help it's urgent.
WSDL--------------------------
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:n="http://www.informatica.com/wsdl/"
xmlns:infa="http://www.informatica.com/"
targetNamespace="http://www.informatica.com/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<xsd:schema targetNamespace="http://www.informatica.com/wsdl/" xmlns="http://www.informatica.com/wsdl/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:infatype="http://www.informatica.com/types/" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xsd:import namespace="http://schemas.xmlsoap.org/wsdl/http/"/>
<xsd:element name="INFORM_WEBSERVICE_1Request" type="INFORM_WEBSERVICE_1RequestType"/>
<xsd:element name="INFORM_WEBSERVICE_1Response" type="INFORM_WEBSERVICE_1ResponseType"/>
<xsd:complexType name="INFORM_WEBSERVICE_1RequestType">
<xsd:sequence>
<xsd:element name="INFORM_WEBSERVICE_1RequestElement">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="ProjectNumber" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="ProjectName" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="ProjectGUID" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="INFORM_WEBSERVICE_1ResponseType">
<xsd:sequence>
<xsd:element name="INFORM_WEBSERVICE_1ResponseElement">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="ProjectNumber" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="ProjectName" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="ProjectGUID" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</wsdl:types>
<wsdl:message name="INFORM_WEBSERVICE_1In">
<wsdl:part name="parameters" element="n:INFORM_WEBSERVICE_1Request" />
</wsdl:message>
<wsdl:message name="INFORM_WEBSERVICE_1Out">
<wsdl:part name="parameters" element="n:INFORM_WEBSERVICE_1Response" />
</wsdl:message>
<wsdl:portType name="INFORM_WEBSERVICE_1Port">
<wsdl:operation name="INFORM_WEBSERVICE_1Operation">
<wsdl:input message="infa:INFORM_WEBSERVICE_1In"/>
<wsdl:output message="infa:INFORM_WEBSERVICE_1Out"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="INFORM_WEBSERVICE_1Binding" type="infa:INFORM_WEBSERVICE_1Port">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
<wsdl:operation name="INFORM_WEBSERVICE_1Operation">
<soap:operation soapAction="" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="INFORM_WEBSERVICE_1">
<wsdl:port name="INFORM_WEBSERVICE_1Port" binding="infa:INFORM_WEBSERVICE_1Binding">
<soap:address location="http://griddev.oneabbott.com:7335/wsh/services/RealTime/INFORM_WEBSERVICE_1" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

In your wsdl file the following are missing.
soap:operation soapAction="" style=""/ and
soap:binding transport="http://schemas.xmlsoap.org/soap/http"
style=""
In any wsdl file, style should be like style=document or style=rpc.
Hope this helps.
Valid WSDL is pasted below.
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:n="http://www.informatica.com/wsdl/"
xmlns:infa="http://www.informatica.com/"
targetNamespace="http://www.informatica.com/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<xsd:schema targetNamespace="http://www.informatica.com/wsdl/"
xmlns="http://www.informatica.com/wsdl/"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:infatype="http://www.informatica.com/types/"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xsd:import namespace="http://schemas.xmlsoap.org/wsdl/http/"/>
<xsd:element name="INFORM_WEBSERVICE_1Request"
type="INFORM_WEBSERVICE_1RequestType"/>
<xsd:element name="INFORM_WEBSERVICE_1Response"
type="INFORM_WEBSERVICE_1ResponseType"/>
<xsd:complexType name="INFORM_WEBSERVICE_1RequestType">
<xsd:sequence>
<xsd:element name="INFORM_WEBSERVICE_1RequestElement">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="ProjectNumber" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="ProjectName" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="ProjectGUID" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="INFORM_WEBSERVICE_1ResponseType">
<xsd:sequence>
<xsd:element name="INFORM_WEBSERVICE_1ResponseElement">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="ProjectNumber" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="ProjectName" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="ProjectGUID" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</wsdl:types>
<wsdl:message name="INFORM_WEBSERVICE_1In">
<wsdl:part name="parameters" element="n:INFORM_WEBSERVICE_1Request"/>
</wsdl:message>
<wsdl:message name="INFORM_WEBSERVICE_1Out">
<wsdl:part name="parameters" element="n:INFORM_WEBSERVICE_1Response"/>
</wsdl:message>
<wsdl:portType name="INFORM_WEBSERVICE_1Port">
<wsdl:operation name="INFORM_WEBSERVICE_1Operation">
<wsdl:input message="infa:INFORM_WEBSERVICE_1In"/>
<wsdl:output message="infa:INFORM_WEBSERVICE_1Out"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="INFORM_WEBSERVICE_1Binding"
type="infa:INFORM_WEBSERVICE_1Port">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"
style="document"/>
<wsdl:operation name="INFORM_WEBSERVICE_1Operation">
<soap:operation soapAction="http://griddev.oneabbott.com:7335/wsh/services/RealTime/INFORM_WEBSERVICE_1" style="document"/>
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="INFORM_WEBSERVICE_1">
<wsdl:port name="INFORM_WEBSERVICE_1Port"
binding="infa:INFORM_WEBSERVICE_1Binding">
<soap:address location="http://griddev.oneabbott.com:7335/wsh/services/RealTime/INFORM_WEBSERVICE_1"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Thanks,
Vijay
Edited by: veejai24 on 14-Jun-2012 04:14

Similar Messages

  • ADF is not working in JDeveloper 10g

    Hi all,
    I've been trying to get ADF to work with JDeveloper 10g but to no avail. I've followed the steps from the following link: http://www.oracle.com/technetwork/developer-tools/jdev/how-to-adf-faces-10gjdev-085657.html
    the only thing that i fail to follow is in creating the library. I have only the adf-faces-api.jar and adf-faces-impl.jar but not the share-1_1_18.jar
    I do not know whether this is creating the problem as my error message is not helpful.
    part of the error msg:
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Long,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Long)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Float,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Float)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Double,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Double)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(oracle.adf.DateTimeRange)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(oracle.adf.RegExp)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(oracle.adf.ByteLength)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(oracle.adf.Color,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.awt.Color)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.DateTime,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(oracle.adf.DateTime,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.util.Date)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.util.Calendar)
    I've been trying to resolve this by creating a new project but once i input adf tags the problem arise again.
    Please help. Thanks!
    Edited by: 1003893 on May 7, 2013 9:28 PM

    Now that I've looked at the linked article...
    That was showing you how to use a very early version of ADF Faces (a pre-release, in fact) with a very old version of JDeveloper. That document is nearly 9 years old.
    Starting with JDeveloper 10.1.3, ADF Faces is "built-in"
    And since JDeveloper 10.1.3.x, we have had both the JDeveloper 11.1.1.x and 11.1.2.x series released.
    Why are you still using 10.1.2.x?

  • Programatical checking of checkbox is not working in Jdeveloper 11.1.1.3.0

    Hi,
    I've a table whose first column is a checkbox bound to a ViewObject attribute(SelectFlag).
    I've another checkbox placed on column header for Select-All feature.
    The functionality is that when we check Select-All checkbox, it should check checkboxes for all the rows(first column) and when we uncheck Select-All checkbox, it should uncheck checkboxes for all the rows.
    I've the partial trigger on table for the Select-All checkbox.
    Here is the ValueChangeListener code for Select-All checkbox:
    public void checkAll(ValueChangeEvent valueChangeEvent) {
    Boolean isSelected = ((Boolean)valueChangeEvent.getNewValue()).booleanValue();
    System.out.println("New Check Value:"+isSelected);
    ViewObject vo = getIteratorBoundVO("KrcCapabilitiesVO1Iterator");
    vo.clearCache();
    vo.reset();
    vo.setWhereClause("KrcCapabilitiesEO.ACTIVITY_ID = 446");
    vo.executeQuery();
    while(vo.hasNext())
    Row row = vo.next();
    if(isSelected){
    row.setAttribute("SelectFlag",true);
    System.out.println("Checked Value for CapabilityId :: " + row.getAttribute("CapabilityId"));
    else{
    row.setAttribute("SelectFlag",false);
    System.out.println("Unchecked Value for CapabilityId :: " + row.getAttribute("CapabilityId"));
    This code is not working in latest Jdeveloper version 11.1.1.3.0 which uses WebLogic Server Version: 10.3.3.0
    It's working fine in Jdeveloper version 11.1.1.1.0 which uses WebLogic Server Version: 10.3.1.0
    Is this a bug? Can anyone help me on this please.
    Thanks,
    Bhaskar

    Hi Frank,
    Thanks for your response.
    You are right, the selection state is not shown in the table.
    I'm taking the ViewObject from Iterator Binding.
    Here is the entire code:
    public static Object evaluateEL(String el){
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ELContext elContext = facesContext.getELContext();
    ExpressionFactory expressionFactory = facesContext.getApplication().getExpressionFactory();
    ValueExpression exp = expressionFactory.createValueExpression(elContext,el,Object.class);
    return exp.getValue(elContext);
    public static ViewObject getIteratorBoundVO(String voIterator)
    DCBindingContainer dcb = (DCBindingContainer)evaluateEL("#{bindings}");
    DCIteratorBinding dciter = dcb.findIteratorBinding(voIterator);
    dciter.invalidateCache();
    ViewObject vo = dciter.getViewObject();
    return vo;
    public void checkAll(ValueChangeEvent valueChangeEvent) {
    Boolean isSelected = ((Boolean)valueChangeEvent.getNewValue()).booleanValue();
    System.out.println("New Check Value:"+isSelected);
    ViewObject vo = getIteratorBoundVO("KrcCapabilitiesVO1Iterator");
    vo.clearCache();
    vo.reset();
    vo.setWhereClause("KrcCapabilitiesEO.ACTIVITY_ID = 446");
    vo.executeQuery();
    while(vo.hasNext())
    Row row = vo.next();
    if(isSelected){
    row.setAttribute("SelectFlag",true);
    System.out.println("Checked Value for CapabilityId :: " + row.getAttribute("CapabilityId"));
    else{
    row.setAttribute("SelectFlag",false);
    System.out.println("Unchecked Value for CapabilityId :: " + row.getAttribute("CapabilityId"));
    Thanks,
    Bhaskar

  • BizTalk WCF service over SSL -WSDL is not working

    we are exposed BizTalk Schema as Service and deployed in both IIS servers.BTW IIS cluster working as a loadbalancer.
    First Question:
    The service is exposed over SSL and shared URL like https://DNSName/abc.svc.When they browse the URL with WSDL nothing is getting (i.e.https://DNSName/abc.svc?wsdl).
    Please help me why WSDL is not generating
    Second Question:
    Exposing service over SSL and in web.config making httpgetenabled=true and endpoint name="HttpMexEndpoint enabled.
    Then when we browse URL(i.e.https://DNSName/abc.svc) it displaying like http://ipadress/abc.service?wsdl.
    So when we click on http://ipadress/abc.service?wsdl ,the wsdl is generated.
    Why when we try http://DNSName/abc.service?wsdl ,wsdl not generated.
    Instead of  displaying IPAddress to end user, we want to display DNSName.how to do it?
    Regards BizTalkWorship

    Hi,
    For the problem of SVC file changing to WSDL when you bowse, this normally happens when "httpsHelpPageEnabled" property (in case of HTTPS as your case otherwise httpHelpPageEnabled) of you service is set to "false"
    in service's web.config file. When the help page option is set to "false" in the service's web.config file, this happens. Change it to  "true"
    <serviceDebug httpHelpPageEnabled="true"
    Regards,
    M.R.Ashwin Prabhu
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Jdbc tracking does not work in JDeveloper 10.1.2

    My project consists of a single jsp file, and two libraries: JSP Runtime, and DebugJDBC. The latter simply includes ojdbc14_g.zip
    The JSP FIle is
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>untitled</title>
    </head>
    <body>
    <%
    oracle.jdbc.driver.OracleLog.startLogging();
    %>
    </body>
    </html>
    The error I get is:
    Oracle Jdbc tracing is not avaliable in a non-debug zip/jar file
    Should I log a bug about this?
    Thanks,
    -Robert

    I just verified that the problem does not exist in JDeveloper 10.1.3.0.4.
    Regards,
    -Robert

  • "Edit Task Definition" not working in JDeveloper for Order Booking tutorial

    Hi,
    When I click 'Edit Task Definition' in JDeveloper in the BPEL Process Designer, nothing happens. It should display the task definition...
    What am I doing wrong?

    I figured out the issue with my installation of the SOA demo. I had originally unzipped the demo to a folder in the 'My Documents' directory and had been accessing the files for the demo directly from this location. After I copied the SOADEMO files to the standard location for my other jdeveloper applications (C:\jdeveloper\jdev\mywork) it worked fine.
    I think this is related to the standard warnings included in the installation of jdeveloper regarding not having spaces in any of the folder names under which jdeveloper is installed.
    Best of luck. Hope this helps.

  • Preview pane is not working in Jdeveloper

    Hi Experts , I need your help in resolving my issue. i am developing adf mobile application and during this development when i click on the 'preview' button nothing is displayed on the preview pane.
    I don't see any error message as well.
    I am able to deploy the application to the android emulator and its working fine there.
    Jdev details :
    Build JDEVADF_11.1.2.4.0_GENERIC_130421.1600.6436.1
    Java(TM) Platform : 1.6.0_24

    Now that I've looked at the linked article...
    That was showing you how to use a very early version of ADF Faces (a pre-release, in fact) with a very old version of JDeveloper. That document is nearly 9 years old.
    Starting with JDeveloper 10.1.3, ADF Faces is "built-in"
    And since JDeveloper 10.1.3.x, we have had both the JDeveloper 11.1.1.x and 11.1.2.x series released.
    Why are you still using 10.1.2.x?

  • Go to declaration does not work with JDeveloper 10.1.3.3

    I have just installed JDeveloper 10.3.3.3 and I'm trying to use the option go to declaration. I created an interface and a class implementation for this interface. When I highlight a method and right click to 'Go to Declaration' I get 'Browsing of method or constructor declarations is not allowed'.
    Can anybody help me?
    Thanks in advance.

    Hi,
    this is the same in 10.1.3.1 as well. This means that you cannot browse on a method in a class but only its usage. If you have a method call and browse it then this brings you to the method definition. However, you cannot select the method definition and browse
    Frank

  • JSP Design view not working in JDeveloper 10.1.3.3

    Hi,
    The problem I have is that my JSPs all throw a class not found error in design view when I load them. The problem is related to the useBean tag (see error example).
    Error exercising tag : jsp:useBean
    java.lang.Exception: java.lang.ClassNotFoundException: com......client.jsp.testclass
    The application is divided into a web project, an EJB project, and a server classes project. The JSPs are in the web project and the problem classes are in the server classes project. I'm limited to source view editing of JSPs due to this and the problem is only in the IDE, deployment of the code to the server is fine.
    Any suggestions would be appreciated.
    Kaitain

    I think they are but I could be mistaken, as the libraries list for the web project shows the server classes as a library.

  • Hello Word Struts 2.0 Application not working in JDeveloper 10.1.3.2

    Dear All,
    I have created Hello Word Application in Struts 2.0 in JDeveloper. It gives following Exception:
    java.net.ProtocolException: Server redirected too many times (20)
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:3181)
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:3207)
         at org.apache.commons.digester.Digester.resolveEntity(Digester.java:1617)
         at oracle.xml.parser.v2.NonValidatingParser.pushExternalDTD(NonValidatingParser.java:533)
         at oracle.xml.parser.v2.NonValidatingParser.parseDoctypeDecl(NonValidatingParser.java:491)
         at oracle.xml.parser.v2.NonValidatingParser.parseProlog(NonValidatingParser.java:323)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:302)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:205)
         at org.apache.commons.digester.Digester.parse(Digester.java:1745)
         at org.apache.struts.action.ActionServlet.parseModuleConfigFile(ActionServlet.java:745)
         at org.apache.struts.action.ActionServlet.initModuleConfig(ActionServlet.java:686)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:353)
         at javax.servlet.GenericServlet.init(GenericServlet.java:256)
         at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2361)
         at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4810)
         at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4734)
         at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4922)
         at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1134)
         at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:738)
         at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
         at com.evermind.server.Application.getHttpApplication(Application.java:571)
         at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1990)
         at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1973)
         at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.getHttpApplication(HttpSite.java:1925)
         at com.evermind.server.http.HttpSite.getApplication(HttpSite.java:424)
         at com.evermind.server.http.HttpRequestHandler.resolveApplication(HttpRequestHandler.java:392)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:433)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    Aug 3, 2010 5:17:29 PM com.opensymphony.xwork2.config.providers.XmlConfigurationProvider register
    INFO: Parsing configuration file [struts-default.xml]
    Please give your inputs as early as possible.
    Thanks & Regards

    Dear John,
    Yes, Jdev 10.X only support Struts 1.0 but i have configure Struts 2.0 supported all Lib files in JDev and also please find entries of Struts-config.xml and web.xml file below:
    Struts-config.xml :_
    <!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">
    <struts-config>
    <message-resources parameter="view.ApplicationResources"/>
    <!--constant name="struts.enable.DynamicMethodInvocation" value="false"/>
    <constant name="struts.devMode" value="false"/>
    <constant name="struts.custom.i18n.resources" value="ApplicationResources"/-->
    <package name="default" extends="struts-default" namespace="/">
    <action name="login" class="net.viralpatel.struts2.LoginAction">
    <result name="success">Welcome.jsp</result>
    <result name="error">Login.jsp</result>
    </action>
    </package>
    </struts-config>
    And Web.xml file :_
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <description>Empty web.xml file for Web Application</description>
    <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <filter>
    <filter-name>struts2</filter-name>
    <filter-class>
    org.apache.struts2.dispatcher.FilterDispatcher
    </filter-class>
    </filter>
    <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>
    <welcome-file-list>
    <welcome-file>Login.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    Also as par your last reply, eventhough i got the same exception.
    Please give your inputs and let me know if you want more information.
    Thanks,

  • SQL*PLUS not work in JDeveloper 10.1.3

    The Log message is :
    Invoking SQL*Plus...
    F:\oracle\ora92\bin\sqlplus.exe SCOTT@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))(CONNECT_DATA=(SID=W2G)))
    java.io.IOException: CreateProcess: START.EXE F:\oracle\ora92\bin\sqlplus.exe SCOTT@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))(CONNECT_DATA=(SID=W2G))) error=2
    I need a help ! thanks .

    Hi,
    This is a known issue (bug 4774715) on Windows 2003 and is due to the fact that START does not exist on that OS. It is currently fixed in the next release but I will open a bug and see if we can get the fix backported to a 10.1.3 patchset for you.
    Regards,
    Lisa
    JDev QA

  • Java 1.3 not working with JDeveloper 10.1.3.2

    Hi all,
    I'm trying to run an application with Java 1.3 and JDeveloper 10.1.3.2. When I start up the application, I get this error message below. Can anyone please help?
    OC4J startup failed
    java.lang.NoClassDefFoundError: java/util/IdentityHashMap
         at oracle.classloader.ConfigurationType.createManifestTypeFor(ConfigurationType.java:290)
         at oracle.classloader.ClassLoaderScope.<init>(ClassLoaderScope.java:59)
         at oracle.classloader.ClassLoaderScope.<clinit>(ClassLoaderScope.java:31)
         at oracle.classloader.ConfigurationType.<clinit>(ConfigurationType.java:27)
         at oracle.classloader.util.ClassLoadEnvironment.<clinit>(ClassLoadEnvironment.java:247)
         at oracle.classloader.util.ClassLoadLogger.<clinit>(ClassLoadLogger.java:36)
         at oracle.classloader.query.ReportQuery.<clinit>(ReportQuery.java:56)
         at oracle.oc4j.loader.boot.BootConfigurationFactory.<init>(BootConfigurationFactory.java:64)
         at oracle.oc4j.loader.boot.BootConfigurationFactory.create(BootConfigurationFactory.java:58)
         at oracle.oc4j.loader.boot.BootStrap.main(BootStrap.java:22)

    You need to use the JDK 5.0 Update 6 or higher - see the Installation Guide:
    http://www.oracle.com/technology/products/jdev/htdocs/10.1.3.2/install.html#java_sdk
    You can still use JDK 1.4.2 to compile your project, in case you have to deploy it in an Application Server still using JDK 1.4.2.
    See "JDeveloper 10.1.3 Applications Deployed in the Oracle Application Server 10.1.2":
    http://blogs.oracle.com/Didier/newsItems/departments/adf/2006/06/15#a79
    Regards,
    Didier.

  • Connection to database under JDeveloper 10.0.1 is not working

    Full version of Oracle 10g (including Oracle JDeveloper 9.0.4) is instaled in Oracle-home directory "c:\DevSuiteHome".
    I have instaled Oracle JDeveloper 10.1.2 in other Non-Oracle directory "c:\JDev102", so I have both version of JDeveloper instaled.
    The same connection to database is working correctly under JDeveloper 9.0.4, and not working under JDeveloper 10.0.1.
    When I test connection under JDeveloper 10.0.1, next message is displayed:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-12705: invalid or unknown NLS parameter value specified

    Hi,
    This exception is thrown when different versions of the dependencies are being picked up and loaded by the process.
    Are you deploying the application or a specific machine?
    What type of application is being tested here? i.e console, ASP.NET, etc.
    Make sure you are referencing the 11.2.0.1.1 assembly and that DLLPATH in the registry to pointing to the proper location for its dependencies.
    Make sure there are no old versions of the ODP dependencies in the application/bin directory and that you are picking up the assembly from the GAC.
    HTH
    Jenny

  • JDev 10.1.2 - JWE Extension Does not work

    When using JDev 10.1.2 I get an error on startup the indicates that the JWE extension is not working:
    C:\jdeveloper\jdev\lib\ext\jwe.jar!\meta-inf\jdev-ext.xml
    Error: <Line 2, Column 71>: XML-24538: (Error) Can not find definition for element 'extensions'
    Converting JDeveloper 9.0.5 extension manifest to 10.1.2
    Help!
    Thanks, Oscar

    Thanks a lot.
    In the jdev-ext.xml file, i have replaced
    <extensions xmlns="http://xmlns.oracle.com/jdeveloper/905/extensions">
    with
    <extensions xmlns="http://xmlns.oracle.com/jdeveloper/1012/extensions">
    Oscar

  • JDeveloper 11.1.1.5.0 - Button not working

    Hi Team,
    Am using Jdev 11.1.1.5.0 in windows 7 machine. Below are my issues.
    1. When i am creating a SOA project, Finish button is not working in the ProjectCreationWizard. But the project is being created. Then i had to click on cancel and continue.
    2. While selecting MDS XSD/WSDL file from Resource Palette, the OK button is not functioning. I had to got source mode and edit the code.
    Any idea about this behavior. Thanks in advance.
    -Sudheer

    check out http://tompeez.wordpress.com/2011/08/13/how-to-find-and-reset-the-system11-x-x-x-folder-for-a-jdeveloper-installation/ for finding the systme folder...
    Timo

Maybe you are looking for

  • Question about imported file

    Hi, I was taking a look to the tutorial provided by the otn web site about TopLink and I saw that we have to import the source.jar file. I'm working with JBuilder and I have imported as a library toplink.jar, antlr.jar and xerces.jar and it works fin

  • Slave dual G5 to Macbook Pro

    Hi all, appologies, but wasnt sure where to post this. I am wanting to slave my dual G5 to my new Macbook pro to share the processing power. Is it the same as apple-T to link to link the 2 macs? I remember reading about it ages ago and assume this is

  • How do I remove "read-only" from images transferred from a PC so that I can add keywords?

    I switched to a Mac from a PC a year ago and have been using PSE 9 + Organizer with no problems.  I transferred all my images from the PC at that time.  Now, I want to transition to using Bridge and have been assigning keywords to the newer photos ad

  • Provision Process Form - Propopulate Field Problem

    Hi everyone, I mentioned this problem last week in OTN. AD provisioning - Prepopulate  Attributes My problem is a bug and I found this bug. Bug id : 14761208 in Oracle Support. But there is no detail information on Oracle Support. If this is bug and

  • Failed to open CoreMidi message

    hi out of the blue, when i launch any of my music applications, i get this error message. all my equipment is connected properly. when i go in Audio-Midi Set Up (Applications/Utilities), and i click on the MIDI tab, the application suddenly quits. Th