Problem intergrating clearcase in jdev EA1.

I can't intergrate clearcase with jdev EA1. The version option only display CVS. The earler version displayed clearcase and CVS.
Thanks,
Tony

Hi Shay, I am not able to check for updates at my client site. Is there a download url for the clearcase extension?
Thanks,
Tony

Similar Messages

  • Jdev EA1 return error in running an already tested war file (imported war )

    Hi
    Thank you for reading my post.
    I have an Odd problem with Jdev EA1
    I have a war file , I import it into Jdev (new /project/projects from war file)
    I should mention that this war file developed in Rational application developer (Struts based ,database, higly use of other Taglibs)
    Now when i try to run my imported application , it does not run at all, it stops with some errors :
    for example in compiler log it return error for following line :
         <logic:redirect page="<%=session.getAttribute("LastPage").toString() %>" />
    [/Code]
    the  error is :
         Error(29): Attribute: LastPage").toString() is not a valid attribute name
            Error(29): Attribute: % is not a valid attribute name
            Error(30): Encountered end tag </logic:present> without corresponding start tag.
    Also it returns :
         Error(32): Tag attempted to define a bean which already exists: currentModel
            Error(33): Tag attempted to define a bean which already exists: currentName
    for the following code :
    [CODE]
    <logic:equal name="Language" value="en">
         <SCRIPT SRC="language-en.js"></SCRIPT>    /////line 32
         <SCRIPT SRC="ctst.js"></SCRIPT>               ////line 33          
    </logic:equal>I import it into netbeans and it run correctly on tomcat, i deploy it inot sun Java apps and it works ok.
    Even i tried Jboss , geronimo to test my application corectness
    Can you tell me what is wrong ?

    Hi
    I think its serious , Jdev Does not works correctly with a correct war file ,
    some one from Jdev team should think about it.

  • JDev EA1 Error with JAZN/Security Roles/Authentication

    I have a current JSF application created under JDev 10.1.3 Preview which runs fine, but under JDev EA1 it crashes.
    The application has a JAZN definition with a realm and user defined. The user is also tied to a security role.
    In the web.xml I have a security role defined and security constraints. I also have the security-role-mappings in the orion-application.xml for deployment which uses OID to authenticate.
    This all works fine in JDev 10.1.3 preview.
    When I run the application in JDev EA1, the login dialog does not appear and the application crashes because it can't authenticate who is using the application. I have deleted and recreated the Jazn user and security roles under EA1.
    I have noticed that JDev is now reporting the "<security-constraint>" tag in web.xml is an error now.
    Any ideas on what's wrong?
    Thanks

    We're using SSO, so we haven't written our own login handler. The orion-application.xml has the "<jazn-web-app auth-method="SSO"/>" tag in it. We let SSO handle the login. You can write your own login handler if you wanted to. I think there's several threads about doing it. We wanted to try and use SSO and not have to write the piece to do the login.
    orion-application.xml:
    <jazn provider="LDAP"
    location="ldap://my.company.com:<port number>"
    default-realm="my_realm_here">
    <jazn-web-app auth-method="SSO"/>
    </jazn>
    The way we approached it, we have a User and Visit object. The User object just holds some data:
    public class User implements Serializable
    private String userid;
    private String name;
    private String email;
    private Date loginTime;
    The faces-config.xml is like this:
    <!--========User Bean=========-->
    <managed-bean>
    <managed-bean-name>user</managed-bean-name>
    <managed-bean-class>com.mycompany.User</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    <managed-property>
    <property-name>queryService</property-name>
    <value>#{queryservicebean}</value>
    </managed-property>
    </managed-bean>
    We're using Spring to inject the "queryservicebean". You may not need this section. We're having to grab data from a database table. So you can probably skip that "<managed-property>" section.
    The section I think you are really asking about is the ViewHandler. You probably need to look at extending the ViewHandler to populate your user object.
    public class AuthenticatingViewHandler extends ViewHandler{...}
    You will probably need to look at adding code in the createView and restoreView methods.
    Something like:
    public class AuthenticatingViewHandler extends ViewHandler
    private final ViewHandler _base;
    public AuthenticatingAurepViewHandler(ViewHandler base)
    _base = base;
    public UIViewRoot createView(FacesContext facesContext, String viewId)
    viewId = loadUser(facesContext,viewId);
    return _base.createView(facesContext, viewId);
    } //END createView(FacesContext facesContext, String viewId)
    public UIViewRoot restoreView(FacesContext facesContext, String viewId)
    viewId = loadUser(facesContext,viewId);
    return _base.restoreView(facesContext,viewId);
    } //END restoreView(FacesContext facesContext, String viewId)
    --Then "loadUser" would populate your User object:
    public String loadUser(FacesContext facesContext, String viewId)
    String userId = facesContext.getExternalContext().getRemoteUser();
    User user = (User) JSFUtils.getManagedBean(ViewConstants.USER);
    -- Set the userid from OID in your User object
    user.setUserid(userId);
    -- Note: You may need to do some parsing on your user id string from OID.
    -- Do more stuff here, may switch to a differnt viewId if needed, like an error page.
    return viewId;
    } // END loadUser(FacesContext facesContext, String viewId)
    } //END AuthenticatingViewHandler
    The "JSFUtils.getManagedBean" uses the valuebinding to get the User bean from the FacesContext. We also carry a boolean isUserLoaded in the User object so we're not executing the loadUser code each time a view is rendered. The Visit object just has a navigation trace and other things of interest to us, so you may not care about it.
    A lot of this is from Adam Wiener's post on Sun's JSF forum. I think there's a couple of ways to approach this, with our requirements this works out better. If anybody else has any suggestions, it would be great to hear about them.
    As always, hope it helps out with what you are doing and thanks for the chocolate.

  • Remote Debugging in Jdev EA1.

    Hey guys, what happen to remote debugging in Jdev EA1?
    Thanks,
    Tony

    The remote debugging was moved to tools/project properties select run/Debug and then edit.
    Thanks,
    Tony

  • Jdev ea1 database manual reconciling problem

    The offline database object manual reconciling wizard compare off-line defintion with a target schema in a target database. The reconciling comparison take care of the schema name and declare an object has dropped in the off-line list and new in the target schema if the object is not store in the same schema in both off-line and on-line list.
    This is a problem because we have very ofter different implementation (deployment) of the off-line objects and it is not possible to use the alter option in this case, just to add, change or remove some part of the corresponding object.
    I think that the wizard has to take care of one option that ask it not to take care of the schema and just compare the object definition.

    yes we never use the reconciling against the database directly because the installation/deployment is done by the dba. We use jdev to prepare, check and complete the scripts.
    Do you remember the problem we have with physical metadata added when we import a table definition from the database ? I think definitively that these physical metadata are very interesting but they are to be associated with a deployment connection and added when the tables are generated for this location. We may have one to many relationships between the logical object definition (table name, attributes, ...) and physical object definition (tablespace, size, parallel option, partition, ...) depending on the deployment platform and release.

  • Problem with toplink in jdev 10.1.3.1.0

    I was use toplink 10.1.3, and used aggregate mapping and every thing is ok! but when I migrate to jdeveloper 10.1.3.1.0 I have a problem with aggregate mapping, I got this error
    Error: TopLink deployment descriptor generation failed for IndicadoresMap. Please verify that reported problems are corrected and that the deployment descriptor path and name are valid.
    I tried change the toplink library in jdeveloper, but nothing change. please help me, because I need user Jdeveloper 10.1.3.1.0. it's very fast than Jdeveloper 10.1.3. thanks for some help
    Best Regards.
    Vander Litaiff

    Vander,
    Please open a support request if you can. It will allow us to track this important issue better and provide us a channel in case we need to see you JDev files.
    Doug

  • Problems with migration to jdev 11 tp3 (severeExceptionThrownByContextList)

    Hello everybody,
    I'm trying to migrate an application from jdev 10.3.3.1 to jdev 11 tp3. The problem is when I try to run it (message bellow).
    The application runs normally in jdev 10 and compiles in jdev 11. I Maybe something with OC4j ?
    Any clue ?
    Regards,
    Markolla
    Target URL -- http://192.168.0.247:8988/TOPP-ERP/index.jsp
    06/03/2008 15:48:30 com.evermind.server.http.HttpMessages severeExceptionThrownByContextListener
    SEVERE: An exception was thrown by the contextInitialized method of the com.sun.faces.config.ConfigureListener class belonging to the TOPP-ERP application.
    java.lang.NullPointerException
    at com.sun.faces.config.JSFVersionTracker.publishInstanceToApplication(JSFVersionTracker.java:264)
    at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:404)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1347)
    at com.evermind.server.http.HttpApplication.init(HttpApplication.java:873)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:699)
    at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:502)
    at com.evermind.server.Application.getHttpApplication(Application.java:778)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.doCreateHttpApplicationFromReference(HttpSite.java:2315)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:2295)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:2284)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.getHttpApplication(HttpSite.java:2212)
    at com.evermind.server.http.HttpSite.getApplication(HttpSite.java:475)
    at com.evermind.server.http.HttpRequestHandler.resolveApplication(HttpRequestHandler.java:565)
    at com.evermind.server.http.HttpRequestHandler.initRequest(HttpRequestHandler.java:372)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequestOpen(HttpRequestHandler.java:283)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:162)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:149)
    at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:275)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:237)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:29)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:877)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
    at java.lang.Thread.run(Thread.java:595)
    06/03/2008 15:48:30 com.evermind.server.http.HttpMessages logApplicationStartupFailedMessage
    SEVERE: The application named, current-workspace-app, could not start due to an error.
    java.lang.NullPointerException
    at com.sun.faces.config.JSFVersionTracker.publishInstanceToApplication(JSFVersionTracker.java:264)
    at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:404)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1347)
    at com.evermind.server.http.HttpApplication.init(HttpApplication.java:873)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:699)
    at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:502)
    at com.evermind.server.Application.getHttpApplication(Application.java:778)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.doCreateHttpApplicationFromReference(HttpSite.java:2315)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:2295)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:2284)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.getHttpApplication(HttpSite.java:2212)
    at com.evermind.server.http.HttpSite.getApplication(HttpSite.java:475)
    at com.evermind.server.http.HttpRequestHandler.resolveApplication(HttpRequestHandler.java:565)
    at com.evermind.server.http.HttpRequestHandler.initRequest(HttpRequestHandler.java:372)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequestOpen(HttpRequestHandler.java:283)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:162)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:149)
    at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:275)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:237)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:29)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:877)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
    at java.lang.Thread.run(Thread.java:595)

    Hi,
    I guess maybe some kind of missconfiguration with OC4J 11.
    My solution by the moment was to install TRINIDAD 1.0.6 in JDEV 10.3 and use the migrated application. After some corrections on the code the application is working =).
    Next I'll try to use JDEV 11T3 with 1.2.6 Trinidad components.
    My best regards

  • Problems debugging PL/SQL [JDev 9.0.3.1035 Prod]

    When debugging a PL/SQL procedure/function JDev creates a temporary procedure, usually called JDEV_TMP_PROC_n. From time to time it happens, that this procedure remains in the database after termination. In this case, it can not be dropped neither with JDev nor with SQL*Plus. Any ideas?

    Assuming the Debug session runs to completion or successfully "terminates" the temporary procedure should be dropped. If the client is abnormally terminated (for example, killing the client from the task manager), the temporary procedure may remain until the database discovers that the client is no longer connected and cleans up its session. Once that happens, the locks on the procedure should be removed, and you should be able to drop the procedure.
    Is your debugging session not running to completion for some reason?
    -- Brian (JDev Team)

  • Parallel development with ClearCase and Jdev

    I am looking for information on "best practices", howtos, etc for configuring a ClearCase VOB repository to support parallel development of J2EE applications/components using JDeveloper in a large development team.
    In particular, I am not sure how to set up the code repository (AND JDeveloper) to deal with JDeveloper's project file structure and the various metadata that are created for each developer at the same time as you need to work transparently with an exisiting repository of Java components which have already been developed and are managed outside of JDeveloper and ADF.
    Unless I have missed it...documentation seems to be a bit thin in this area so...
    TIA for any help/advice/pointers
    Jim

    Mike.S wrote:
    I'm searching for other peoples experience developing an application that could run with either postgres 8 or Oracle 10g.
    The reason of course is that many of our customers don't have the money for Oracle, but we do want to use and RDBMS.
    The logical thought is that as long as the database objects are the same, the application isn't going to be that different.The other logical thought is that if you don't use any Oracle specific features then customers who have paid money for Oracle will have just wasted that investment when it comes to running such an application.
    So why bother with Oracle.
    The simplest way to have a single code base is to develop for a single database, the cheapest lowest common denominator and just give the customer the database with the application.
    If that is true that it would greatly help the development team since they would not have to have separate teams for each type of database.But it will not be a great help to the development team if they can only use functionality that is available on both databases and works the same way on both databases. It will be a really big hindrance to the development team, increase development time and lead to more code that needs to be written.
    >
    But before we start down that path we are trying to find out if anyone else is doing something similar, and what the overall experience has been.
    I have seen several applications developed using this single code base for multiple database approach and they have all been inefficient when running on Oracle to the extent that you wish they had used a flat file and hadn't bothered with a database at all.

  • PROBLEM BUILDING WSDL USING JDEV BPEL DESIGNER

    I have a WSDL that has been generated for MS SQLServer stored proc. I have created SOAP request using XML Spy and posted request to server succesfully.
    Imported the same WSDL and created Partner Link in BPEL process successfully but When i try to assign values to Input variable (XSD), I am getting Error : Problem Building Schema.
    Then I clicked on check box for details, it shows :
    Exception: Invalid reference: 'http://www.w3.org/2001/XMLSchema:schema'
    I appreciate any help in this.
    Thanks.
    Here WSDL file :
    <?xml version="1.0"?>
    <!-- edited with XMLSpy v2007 (http://www.altova.com) by Move (Move) -->
    <wsdl:definitions xmlns:tns="http://DWLV06ENG030/Deleteme/deleteme" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:sql="http://schemas.microsoft.com/SQLServer/2001/12/SOAP" xmlns:sqltypes="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types" xmlns:sqlmessage="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types/SqlMessage" xmlns:sqlresultstream="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types/SqlResultStream" name="deleteme" targetNamespace="http://DWLV06ENG030/Deleteme/deleteme">
         <wsdl:types>
              <xsd:schema targetNamespace="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types" elementFormDefault="qualified" attributeFormDefault="qualified">
                   <xsd:simpleType name="nonNegativeInteger">
                        <xsd:restriction base="xsd:int">
                             <xsd:minInclusive value="0"/>
                        </xsd:restriction>
                   </xsd:simpleType>
                   <xsd:attribute name="IsNested" type="xsd:boolean"/>
                   <xsd:complexType name="SqlRowSet">
                        <xsd:sequence>
                             <xsd:element ref="xsd:schema"/>
                             <xsd:any/>
                        </xsd:sequence>
                        <xsd:attribute ref="sqltypes:IsNested"/>
                   </xsd:complexType>
                   <xsd:complexType name="SqlXml" mixed="true">
                        <xsd:sequence>
                             <xsd:any/>
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:simpleType name="SqlResultCode">
                        <xsd:restriction base="xsd:int">
                             <xsd:minInclusive value="0"/>
                        </xsd:restriction>
                   </xsd:simpleType>
              </xsd:schema>
              <xsd:schema targetNamespace="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types/SqlMessage" elementFormDefault="qualified" attributeFormDefault="qualified">
                   <xsd:import namespace="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types"/>
                   <xsd:complexType name="SqlMessage">
                        <xsd:sequence minOccurs="1" maxOccurs="1">
                             <xsd:element name="Class" type="sqltypes:nonNegativeInteger"/>
                             <xsd:element name="LineNumber" type="sqltypes:nonNegativeInteger"/>
                             <xsd:element name="Message" type="xsd:string"/>
                             <xsd:element name="Number" type="sqltypes:nonNegativeInteger"/>
                             <xsd:element name="Procedure" type="xsd:string"/>
                             <xsd:element name="Server" type="xsd:string"/>
                             <xsd:element name="Source" type="xsd:string"/>
                             <xsd:element name="State" type="sqltypes:nonNegativeInteger"/>
                        </xsd:sequence>
                        <xsd:attribute ref="sqltypes:IsNested"/>
                   </xsd:complexType>
              </xsd:schema>
              <xsd:schema targetNamespace="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types/SqlResultStream" elementFormDefault="qualified" attributeFormDefault="qualified">
                   <xsd:import namespace="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types"/>
                   <xsd:import namespace="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types/SqlMessage"/>
                   <xsd:complexType name="SqlResultStream">
                        <xsd:choice minOccurs="1" maxOccurs="unbounded">
                             <xsd:element name="SqlRowSet" type="sqltypes:SqlRowSet"/>
                             <xsd:element name="SqlXml" type="sqltypes:SqlXml"/>
                             <xsd:element name="SqlMessage" type="sqlmessage:SqlMessage"/>
                             <xsd:element name="SqlResultCode" type="sqltypes:SqlResultCode"/>
                        </xsd:choice>
                   </xsd:complexType>
              </xsd:schema>
              <xsd:schema targetNamespace="http://DWLV06ENG030/Deleteme/deleteme" elementFormDefault="qualified" attributeFormDefault="qualified">
                   <xsd:import namespace="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types"/>
                   <xsd:import namespace="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types/SqlMessage"/>
                   <xsd:import namespace="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types/SqlResultStream"/>
                   <xsd:element name="sp_deleteme">
                        <xsd:complexType>
                             <xsd:sequence>
                                  <xsd:element minOccurs="0" maxOccurs="1" name="name" type="xsd:string" nillable="true"/>
                             </xsd:sequence>
                        </xsd:complexType>
                   </xsd:element>
                   <xsd:element name="sp_deletemeResponse">
                        <xsd:complexType>
                             <xsd:sequence>
                                  <xsd:element minOccurs="1" maxOccurs="1" name="sp_deletemeResult" type="sqlresultstream:SqlResultStream"/>
                             </xsd:sequence>
                        </xsd:complexType>
                   </xsd:element>
              </xsd:schema>
         </wsdl:types>
         <wsdl:message name="sp_deletemeIn">
              <wsdl:part name="parameters" element="tns:sp_deleteme"/>
         </wsdl:message>
         <wsdl:message name="sp_deletemeOut">
              <wsdl:part name="parameters" element="tns:sp_deletemeResponse"/>
         </wsdl:message>
         <wsdl:portType name="SXSPort">
              <wsdl:operation name="sp_deleteme">
                   <wsdl:input message="tns:sp_deletemeIn"/>
                   <wsdl:output message="tns:sp_deletemeOut"/>
              </wsdl:operation>
         </wsdl:portType>
         <wsdl:binding name="SXSBinding" type="tns:SXSPort">
              <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
              <wsdl:operation name="sp_deleteme">
                   <soap:operation soapAction="http://DWLV06ENG030/Deleteme/deleteme/sp_deleteme" 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="deleteme">
              <wsdl:port name="SXSPort" binding="tns:SXSBinding">
                   <soap:address location="http://DWLV06ENG030/Deleteme/deleteme"/>
              </wsdl:port>
         </wsdl:service>
    </wsdl:definitions>

    Hi,
    i tried a bit with your xsds in the wsdl. The only way to get jdeveloper work with the xsd is to put them in one file (see below). Another way is perhaps using 4 files with real imports and location attributes...
    Like you see, i had to change the xmlns:xsd to xmlns.
    <schema targetNamespace="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types"
    xmlns="http://www.w3.org/2001/XMLSchema"
    xmlns:this="http://schemas.microsoft.com/SQLServer/2001/12/SOAP/types"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified">
    <simpleType name="nonNegativeInteger">
    <restriction base="int"/>
    </simpleType>
    <attribute name="IsNested" type="boolean"/>
    <complexType name="SqlRowSet">
    <sequence>
    <element ref="schema"/>
    <any/>
    </sequence>
    <attribute ref="IsNested"/>
    </complexType>
    <complexType name="SqlXml" mixed="true">
    <sequence>
    <any/>
    </sequence>
    </complexType>
    <simpleType name="SqlResultCode">
    <restriction base="int"/>
    </simpleType>
    <complexType name="SqlMessage">
    <sequence minOccurs="1" maxOccurs="1">
    <element name="Class" type="this:nonNegativeInteger"/>
    <element name="LineNumber" type="this:nonNegativeInteger"/>
    <element name="Message" type="string"/>
    <element name="Number" type="this:nonNegativeInteger"/>
    <element name="Procedure" type="string"/>
    <element name="Server" type="string"/>
    <element name="Source" type="string"/>
    <element name="State" type="nonNegativeInteger"/>
    </sequence>
    <attribute ref="IsNested"/>
    </complexType>
    <complexType name="SqlResultStream">
    <choice minOccurs="1" maxOccurs="unbounded">
    <element name="SqlRowSet" type="this:SqlRowSet"/>
    <element name="SqlXml" type="this:SqlXml"/>
    <element name="SqlMessage" type="this:SqlMessage"/>
    <element name="SqlResultCode" type="this:SqlResultCode"/>
    </choice>
    </complexType>
    <element name="sp_deleteme">
    <complexType>
    <sequence>
    <element minOccurs="0" maxOccurs="1" name="name" type="string" nillable="true"/>
    </sequence>
    </complexType>
    </element>
    <element name="sp_deletemeResponse">
    <complexType>
    <sequence>
    <element minOccurs="1" maxOccurs="1" name="sp_deletemeResult"
    type="this:SqlResultStream"/>
    </sequence>
    </complexType>
    </element>
    </schema>

  • Problem running application on JDev on linux machine

    i get the following exception when i try to run my application from JDev on my linux machine
    oracle.jsp.parse.JspParseException:
    /adflib/sdk/templateDefNoForm.jspx: Line # 175, <jsp:directive.include file="/sdk/requiredJavaScript.jspx" xmlns:jsp="http://java.sun.com/JSP/Page"/>
    Error: Include file not found: /sdk/requiredJavaScript.jspx
    Can I do something to get rid of it?

    Confirmed:
    I'm seeing intermittent IOExceptions with beta1 and beta2. These never happened in Java 1.4.2.
    There are no stack traces available on the server (tomcat logs + jnlpDownloadServlet.log).
    All the client sees is:
    An error occurred while launching/running the application.
    Title: ScheduleWorldLocalhost
    Vendor: Web Service Solutions, Inc.
    Category: Download Error
    Unable to load resource: http://localhost/sw/ScheduleWorldLocalhost.jnlp
    Exception:
    JNLPException[category: Download Error : Exception: java.io.IOException: Stream closed. : LaunchDesc: null ]
    at com.sun.javaws.cache.DownloadProtocol$RetrieveAction.actionDownload(DownloadProtocol.java:425)
    at com.sun.javaws.cache.DownloadProtocol.doDownload(DownloadProtocol.java:602)
    at com.sun.javaws.cache.DownloadProtocol.getLaunchFile(DownloadProtocol.java:684)
    at com.sun.javaws.LaunchDownload.getUpdatedLaunchDesc(LaunchDownload.java:145)
    at com.sun.javaws.Launcher.downloadResources(Launcher.java:946)
    at com.sun.javaws.Launcher.handleApplicationDesc(Launcher.java:335)
    at com.sun.javaws.Launcher.handleLaunchFile(Launcher.java:218)
    at com.sun.javaws.Launcher.run(Launcher.java:165)
    at java.lang.Thread.run(Thread.java:595)

  • Problem with WebCenter tutorial - JDev 11.1.1.3, WCF 11.1.1.3.0.100707.1000

    Hi,
    I'm working through the WebCenter tutorial in the FMW documentation. All has worked fine until I reached step 8 (Add the People Connections Service to Your Application) in chapter 5 (Adding Oracle WebCenter Services to Your Application).
    When I add the Connections task flow (parts 6 - 9 in step 8) and try to run the page, I consistently get the following exception from the embedded WLS. This happens when I run the page (the app compiles and deploys successfully).
    <ProfileViewsBean><initViews>
    java.net.URISyntaxException: Illegal character in opaque part at index 16: zip:C:/Documents and Settings/pjeynes/Application Data/JDeveloper/system11.1.1.3.37.56.60/DefaultDomain/servers/DefaultServer/tmp/_WL_user/oracle.webcenter.framework.view/qvdb18/WEB-INF/lib/peopleconnections-profile-view.jar!/oracle/webcenter/peopleconnections/profile/default-profile-config.xml
         at java.net.URI$Parser.fail(URI.java:2809)
         at java.net.URI$Parser.checkChars(URI.java:2982)
    <UIXRegion><getRegionModel>
    java.lang.IllegalStateException: The expression "#{bindings.connectionsmainviewuntabbedtaskflow1.regionModel}" (that was specified for the RegionModel "value" attribute of the region component with id "r4") evaluated to null.
    This is typically due to an error in the configuration of the objects referenced by this expression.
    If it helps, the expression "#{bindings.connectionsmainviewuntabbedtaskflow1}" evaluates to "null".
    If it helps, the expression "#{bindings}" evaluates to "oracle_webcenter_peopleconnections_connections_view_jsf_fragments_ConnectionsMainView_untabbedPageDef".  Now using an empty RegionModel instead.
         at oracle.adf.view.rich.component.fragment.UIXRegion.getRegionModel(UIXRegion.java:439)
         at oracle.adf.view.rich.component.fragment.UIXRegion._beginInterruptibleRegion(UIXRegion.java:671)
    <UIXRegion$RegionSiteImpl><validate> Attempt to validate an already invalid RegionSite:
    <UIXRegion><getRegionModel>
    java.lang.IllegalStateException: The expression "#{bindings.searchtoolbar1.regionModel}" (that was specified for the RegionModel "value" attribute of the region component with id "r1") evaluated to null.
    This is typically due to an error in the configuration of the objects referenced by this expression.
    If it helps, the expression "#{bindings.searchtoolbar1}" evaluates to "null".
    If it helps, the expression "#{bindings}" evaluates to "oracle_webcenter_peopleconnections_connections_view_jsf_fragments_ConnectionsMainView_untabbedPageDef".  Now using an empty RegionModel instead.
         at oracle.adf.view.rich.component.fragment.UIXRegion.getRegionModel(UIXRegion.java:439)
         at oracle.adf.view.rich.component.fragment.UIXRegion._beginInterruptibleRegion(UIXRegion.java:671)
    ...If I remove the Connections task flow and re-run the page, it works fine again. I've retried a number of times, all with the same result.
    Anyone any ideas?
    Thanks.

    I've resolved this thanks to Error Configuring Peopel Connection Task flows
    I created a JDEV_USER_HOME environment variable, pointed it at a folder without a space in the name, restarted JDeveloper from that folder and the task flow now works.

  • JDEV 10.1.3 EA1 - Error in running Imported war file (war file is correct)

    Hi
    Thank you for reading my post.
    I have an Odd problem with Jdev EA1
    I have a war file , I import it into Jdev (new /project/projects from war file)
    I should mention that this war file developed in Rational application developer (Struts based ,database, higly use of other Taglibs)
    Now when i try to run my imported application , it does not run at all, it stops with some errors :
    for example in compiler log it return error for following line :
         <logic:redirect page="<%=session.getAttribute("LastPage").toString() %>" />
    the error is :
         Error(29): Attribute: LastPage").toString() is not a valid attribute name
    Error(29): Attribute: % is not a valid attribute name
    Error(30): Encountered end tag </logic:present> without corresponding start tag.
    Also it returns :
         Error(32): Tag attempted to define a bean which already exists: currentModel
    Error(33): Tag attempted to define a bean which already exists: currentName
    for the following code :
    <logic:equal name="Language" value="en">
         <SCRIPT SRC="language-en.js"></SCRIPT>    /////line 32
         <SCRIPT SRC="ctst.js"></SCRIPT>               ////line 33          
    </logic:equal>
    I import it into netbeans and it run correctly on tomcat, i deploy it inot sun Java apps and it works ok.
    Even i tried Jboss , geronimo to test my application corectness
    Can you tell me what is wrong ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Allen,
    A JSP with web.xml web-app element
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
    runs in JDeveloper 10.1.3
    thanks,
    Deepak

  • Problem with jdev and running projects

    I have been using jdev for about 3 months, and this is the first time I saw this problem.
    I opened jdev 9.0.2.829, and tried to run a project in a workspace. The run target is in this project, the source path is separate from the other projects, everything is as it should be and was the last time I ran this project. When I build the project, it only compiles source from this project. When I try to run it, or any other project in the workspace, it compiles all source in all the projects in the workspace, and will not continue because of compilation errors. The single project builds fine. I even tried running after building, since usually it will see that it has a good build, and skip that step. Is this a configuration issue that I inadvertantly overlooked?
    Help!

    I have been using jdev for about 3 months, and this is the first time I saw this problem.
    I opened jdev 9.0.2.829, and tried to run a project in a workspace. The run target is in this project, the source path is separate from the other projects, everything is as it should be and was the last time I ran this project. When I build the project, it only compiles source from this project. When I try to run it, or any other project in the workspace, it compiles all source in all the projects in the workspace, and will not continue because of compilation errors. The single project builds fine. I even tried running after building, since usually it will see that it has a good build, and skip that step. Is this a configuration issue that I inadvertantly overlooked?
    Help!

  • 2 problems with jDev 11.1.1.4.0

    Hi,
    I'm using JDev 11.1.1.4.0 and I'm developing a portal that consumes some portlets.
    I have 2 problems:
    1) The first one is shown when JDev starts:
    AM oracle.webcenter.portal.dt.config.PortalConfigUtil getPageTemplateFromConfig
    SEVERE:
    java.lang.NullPointerException
    +     at oracle.webcenter.portal.dt.config.PortalConfigUtil.getPageTemplateFromConfig(PortalConfigUtil.java:69)+
    +     at oracle.webcenter.portal.dt.config.PortalConfigUtil.getDefaultPageTemplate(PortalConfigUtil.java:55)+
    +     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)+
    +     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)+
    2) The second one is about the automatic code that JDev generates when the portal calls the portlet. He generates some HTML (or ADF) code that alterates the HTML page tamplate that I have. It creates a class for the body tag and, doing this, my page can't show the background image.
    It puts the portlet code into a html talble's row, and above that row it creates a row with a border (1px). In this situation I have a blue line shown that I don't want and I don't need.
    Somebody could help me to fix these problems?
    Thanks in advance

    You can't, just open a new thread on the other forum.
    The problem might be a jdev problem, the reason I would post it on the other forum is that the portal version does things not well known here...
    Timo

Maybe you are looking for

  • Error while creating Configuration for SLT replication

    Hi All, I have got Hana trial version system and I am trying to do data replication using SLT. While doing the configuration using transaction LTR, I am getting error as attached. Though I am getting an error, entry is getting into the DBCON table bu

  • Upgrade from 10.39 to 10.4 problem on a Power Mac G4

    I'm trying to upgrade from 10.39 to 10.4 using the Tiger install DVD . - When I d insert the dvd, it immediatle pops it back out.. - I tried transfering the dvd data on to a usb drive. When I did this, I cilicked on the "install icon" get the install

  • "Insufficient Store Credit" message.

    Okay, so I am trying to download an app in the Itunes store that cost's $9.99, however every time I try to download it, Itunes says that I have insuffient store credit, even though I have $10.33, anybody know whats going on here?

  • Improved Performance after MacBook Pro Software Update 1.0

    Anyone else see an improvement in Aperture performance after this update? I think the 1:1 zoom and Full screen response is better. At least that is my impression. Slider are still hit and miss depending on the adjustments and which order they are app

  • Error RFC_ERROR_PROGRAM

    Hi gurus, when i am giving ID and Password in BEx Analyzer, it is giving an error massage. RFC_ERROR_PROGRAM How can i solve this....? regards. Raaz