OC4J  10.1.3 WSA -assemble "Duplicate type name" error

I am trying to expose a Java class as a web service using the WSA tool assemble command. The return result of one of the methods is reasonably complex and includes two variables the classes of which both extend the same base class e.g. (bean bits missing for brevity)
public class Value extends DatasetMember {
private double value;
public class Text extends DatasetMember {
private String value;
When I attempt to assemble the web service wsa spits out
Error: uk.gov.ecoconnect.webservices.datatypes.DatasetMember - Duplicate type name "uk.gov.ecoconnect.webservices.datatypes.DatasetMember" for Java type "{http://uk.gov.ecoconnect.webservices.datatypes/}DatasetMember" found. To remove this error do not specify a single typeNamespace for all value types or specify a mapping file. This error could also be caused when an erroneous type has been used more than once.
If I use AXIS against the same classes I get at correctly generated wsdl file.
Is there any way to get wsa to generate as wsdl that utilises the <extension> element?
Is there an alternative OC4J mechanism that I could use to achieve this?
I'm guessing that if the answer to the above questions is no I guess I'm going to have to move to using AXIS instead.

Hi Tzhang,
Thanks for the udpate.
What spcific changes you made to make this work? can you please share that with us?
By looking at the exception, it looks like it's failing when trying to clear the datasource connection cache. I even opened the admin_ejb app. All it has is some MDB using JMS queues. But I didn't find any datasource references in that application.
Regards,
Rajesh

Similar Messages

  • ValidationException: Duplicate type name

    I am trying to deploy an ejb web service to oc4j 10.1.3.1.1 from JDeveloper 10.1.3.2. During deployment I get this exception thrown:
    07/04/19 09:53:03 oracle.j2ee.ws.common.tools.api.ValidationException: gov.mi.mdch.mcirhl7.data.Select - Duplicate type name "gov.mi.mdch.mcirhl7.data.Select" for Java type "{http://service.ejb.mcirhl7.mdch.mi.gov/}Select" found. To remove this error do not specify a single typeNamespace for all value types or specify a mapping file. This error could also be caused when an erroneous type has been used more than once.
    07/04/19 09:53:03      at oracle.j2ee.ws.common.processor.modeler.rmi.RmiModeler.buildModel(RmiModeler.java:247)
    07/04/19 09:53:03      at oracle.j2ee.ws.common.processor.config.ModelInfo.buildModel(ModelInfo.java:173)
    07/04/19 09:53:03      at oracle.j2ee.ws.common.processor.Processor.runModeler(Processor.java:72)
    07/04/19 09:53:03      at oracle.j2ee.ws.common.metadata.annotation.DeploymentGenerator$DeploymentCompileTool.run(DeploymentGenerator.java:200)
    07/04/19 09:53:03      at oracle.j2ee.ws.common.metadata.annotation.DeploymentGenerator.generateDeploymentArtifacts(DeploymentGenerator.java:131)
    07/04/19 09:53:03      at oracle.j2ee.ws.common.metadata.annotation.EJBWebServiceAnnotationParser.parseAnnotatedBean(EJBWebServiceAnnotationParser.java:165)
    07/04/19 09:53:03      at sun.reflect.GeneratedMethodAccessor20.invoke(Unknown Source)
    07/04/19 09:53:03      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    07/04/19 09:53:03      at java.lang.reflect.Method.invoke(Method.java:585)
    07/04/19 09:53:03      at oracle.j2ee.ws.server.deployment.oc4j.WebServiceAnnotationListener.parseAnnotatedClass(WebServiceAnnotationListener.java:85)
    07/04/19 09:53:03      at com.evermind.server.ejb.AnnotationParser.notifyAnnotationListeners(AnnotationParser.java:201)
    07/04/19 09:53:03      at com.evermind.server.ejb.AnnotationParser.parseAnnotations(AnnotationParser.java:73)
    07/04/19 09:53:03      at com.evermind.server.ejb.EJBPackageDeployment.parseMetaData(EJBPackageDeployment.java:939)
    07/04/19 09:53:03      at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:832)
    07/04/19 09:53:03      at com.evermind.server.ApplicationStateRunning.initializeApplication(ApplicationStateRunning.java:217)
    07/04/19 09:53:03      at com.evermind.server.Application.setConfig(Application.java:439)
    07/04/19 09:53:03      at com.evermind.server.Application.setConfig(Application.java:340)
    07/04/19 09:53:03      at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:1853)
    07/04/19 09:53:03      at oracle.oc4j.admin.internal.ApplicationDeployer.addApplication(ApplicationDeployer.java:512)
    07/04/19 09:53:03      at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:196)
    07/04/19 09:53:03      at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    07/04/19 09:53:03      at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    07/04/19 09:53:03      at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    07/04/19 09:53:03      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    07/04/19 09:53:03      at java.lang.Thread.run(Thread.java:595)
    My interface looks like this:
    package gov.mi.mdch.mcirhl7.ejb.service;
    @WebService
    public interface CodeDataServiceWebService extends Remote {
    List<ServiceType> queryServiceTypeFindAll()
    throws RemoteException;
    List<Version> queryVersionFindAll()
    throws RemoteException;
    This interface is implemented with a simple stateless session bean (where I do not have any web service specific annotations, mainly because JDeveloper did insert any there when it auto-generated the web service interface). Both Version and ServiceType are EJB 3.0 entity beans which extend gov.mi.mdch.mcirhl7.data.Select. If I change ServiceType so that it does not extend Select, then it deploys fine. Same if I just comment out queryServiceTypeFindAll() altogether. However, when I successfully deploy the web service, the generated WSDL and mapping file make no mention of the Select class, so I don't see why there's a problem with that class when more than one of my List types extends it.
    I've been searching for a solution to this problem for most of the week to no avail. Any thoughts? Thanks.
    Joel
    Subject was edited by: user570454

    Joel,
    You may have some encounter some backward incompatibility between the code generated for 10.1.3.2, when you run the application in the embedded container and when you deploy on a remote instance using 10.1.3.1.
    It may be worth trying to re-assemble the application using JDev 10.1.3.1 or use the command line (or ant integration) of WSA to build the application that you target at the 10.1.3.1 instance using the same version of the tooling.
    Chapter 18 of the user guide provide details about ant commands.
    http://download.oracle.com/docs/cd/B32110_01/web.1013/b28974/wsassemble.htm#CHDDBCCA
    You may also want to report this using the metalink/support channel, so that the potential bugs behind this can be addressed for you.
    -Eric

  • Duplicate type name

    Hi all!
    I am trying to deploy a WebService with apstract classes/methods
    but I get error:
    <2007-05-11 12:09:00,698> <INFO> <collaxa> <ServerManager::loadProcesses> Done loading processes for all domains
    07/05/11 12:11:16 oracle.j2ee.ws.common.tools.api.ValidationException: com.boss.wita.types.order._1.AbstractProduct - Duplicate type name "com.boss.wita.types.order._1.AbstractProduct" for Java type "{http://xmlns.oracle.com/TryWitaAbstractWS}AbstractProduct" found. To remove this error do not specify a single typeNamespace for all value types or specify a mapping file. This error could also be caused when an erroneous type has been used more than once.
    07/05/11 12:11:16      at oracle.j2ee.ws.common.processor.modeler.rmi.RmiModeler.buildModel(RmiModeler.java:247)
    07/05/11 12:11:16      at oracle.j2ee.ws.common.processor.config.ModelInfo.buildModel(ModelInfo.java:173)
    07/05/11 12:11:16      at oracle.j2ee.ws.common.processor.Processor.runModeler(Processor.java:72)
    07/05/11 12:11:16      at oracle.j2ee.ws.common.metadata.annotation.DeploymentGenerator$DeploymentCompileTool.run(DeploymentGenerator.java:200)
    07/05/11 12:11:16      at oracle.j2ee.ws.common.metadata.annotation.DeploymentGenerator.generateDeploymentArtifacts(DeploymentGenerator.java:131)
    07/05/11 12:11:16      at oracle.j2ee.ws.common.metadata.annotation.EJBWebServiceAnnotationParser.parseAnnotatedBean(EJBWebServiceAnnotationParser.java:165)
    07/05/11 12:11:16      at sun.reflect.GeneratedMethodAccessor79.invoke(Unknown Source)
    07/05/11 12:11:16      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    07/05/11 12:11:16      at java.lang.reflect.Method.invoke(Method.java:585)
    07/05/11 12:11:16      at oracle.j2ee.ws.server.deployment.oc4j.WebServiceAnnotationListener.parseAnnotatedClass(WebServiceAnnotationListener.java:85)
    07/05/11 12:11:16      at com.evermind.server.ejb.AnnotationParser.notifyAnnotationListeners(AnnotationParser.java:201)
    07/05/11 12:11:16      at com.evermind.server.ejb.AnnotationParser.parseAnnotations(AnnotationParser.java:73)
    07/05/11 12:11:16      at com.evermind.server.ejb.EJBPackageDeployment.parseMetaData(EJBPackageDeployment.java:939)
    07/05/11 12:11:16      at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:832)
    07/05/11 12:11:16      at com.evermind.server.ApplicationStateRunning.initializeApplication(ApplicationStateRunning.java:217)
    07/05/11 12:11:16      at com.evermind.server.Application.setConfig(Application.java:413)
    07/05/11 12:11:16      at com.evermind.server.Application.setConfig(Application.java:314)
    07/05/11 12:11:16      at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:1853)
    07/05/11 12:11:16      at oracle.oc4j.admin.internal.ApplicationDeployer.addApplication(ApplicationDeployer.java:512)
    07/05/11 12:11:16      at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:196)
    07/05/11 12:11:16      at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    07/05/11 12:11:16      at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    07/05/11 12:11:16      at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    07/05/11 12:11:16      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    There are some similar posts but without any suggestion until now.
    I am not even sure what was ment by Duplicate type name
    or "do not specify a single typeNamespace for all value types or specify a mapping file".
    How could I write mapping file?
    In WSDL I have declared following namespaces:
    xmlns:o="http://wita.boss.com/types/order/1"
    xmlns:np="http://wita.boss.com/types/newproduct/1"
    Anybody help??

    Hello,
    Currently Oracle does not have a supported configuration to deploy JAX-WS based WS and the Reference Implementation, this should come in a patch later on.
    Also in a general manner when you need to manipulate the class loader of your container and application you should use the OracleAS ClassLoader Framework
    Regards
    Tugdual Grall

  • Duplicate type name with abstrac inherited type

    The problem I'm facing is that Oracle tools fail to assemble web services because my model classes inherit from an abstract class and the assembler does not seem to recognize this:
    build.xml:90: oracle.j2ee.ws.common.tools.api.ValidationException: com.util.model.audit.AbstractAuditModelJdk14 - Duplicate type name "com.util.model.audit.AbstractAuditModelJdk14" for Java
    type "{http://model.security.com/}AbstractModeloAuditoriaJdk14" found. To remove this error do not specify a single typeNamespace for all value types or specify a mapping file. This error could also be caused when an
    erroneous type has been used more than once.
    Is there a way to solve this issue?
    This thread is related to an old one: I'm writing the thread to refer to an old one: Re: Duplicate type name
    Edited by: NuMegathor on Oct 7, 2011 12:03 PM
    Edited by: NuMegathor on Oct 7, 2011 1:15 PM

    Hello,
    Currently Oracle does not have a supported configuration to deploy JAX-WS based WS and the Reference Implementation, this should come in a patch later on.
    Also in a general manner when you need to manipulate the class loader of your container and application you should use the OracleAS ClassLoader Framework
    Regards
    Tugdual Grall

  • How to solve 'Microsoft.Advertising.WinRT.UI.winmd' contains duplicate type names.

    Hi,
    I am developing windows store 8.1 app. I need to perform unit testing of my app . When I add the project (to be tested) to unit test
    library project by using Add reference I am getting these errors:
    Error
    5
     The .winmd file 'Microsoft.Advertising.WinRT.UI.winmd' contains duplicate type names. Type 'Microsoft.Advertising.WinRT.UI.AdControl'
    is already registered with the in-process server 'CLRHost.dll'.
    UnitTestLibrary
    Error
    6
     The .winmd file 'Microsoft.Advertising.WinRT.UI.winmd' contains duplicate type names. Type 'Microsoft.Advertising.WinRT.UI.AdSettingsFlyout'
    is already registered with the in-process server 'CLRHost.dll'.
    UnitTestLibrary
    Error
    7
     The .winmd file 'Microsoft.Advertising.WinRT.UI.winmd' contains duplicate type names. Type 
    I found a blog here . I tried it but i coudn't see the xml file in this path C:\Program
    Files (x86)\Microsoft SDKs\Windows\v8.0\ExtensionSDKs\MSAdvertisingXaml\6.1\SDKManifest.xml
    I found the file in C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1\ExtensionSDKs\MSAdvertisingXaml\8.1 . But when i tried to update it is displaying an access denied  message  

    Hi Alok,
    Thank you for posting in MSDN forum.
    Based on your issue, to check if the issue is related to the specified unit test or the VS IDE issue. I suggest you can refer the following document to re-create a simple new unit test with windows store app and then add the windows store app as reference
    to the Unit test project check this issue.
    https://msdn.microsoft.com/en-us/library/windows/apps/jj159318.aspx
    (1)If you did not get same error message in the new unit test project, I doubt that maybe you did not reference the windows store app successfully. So please refer the above document to reference it again check this issue.
    If you still could not reference successfully, please share me the mainly code for the windows store and unit test project.
    Or you could share me your solution include the reference project and unit test project.
    You could upload your sample to the OneDrive and then copy link here.
    (2) If you get same error message in the new unit test, I suggest you could try to repair or re-install the VS IDE and then check this issue again.
    Hope it help you!
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Duplicate Object Name Error When Publishing Crystal Reports from BW to BOE

    Hi,
    We recently upgraded our systems (all client and server) to SP2.7 in order to solve a problem with saving Crystal Reports to BW.  Now we are experiencing a new error when trying to publish a Crystal Report from BW to BOE (either all in one step from Crystal Reports application or directly from within BW).
    Upon trying to publish a Crystal Report from BW to BOE, we get the following error:
    "An error occurred while saving and / or publishing.  The return code 1 was returned from the server.  Logon to Crystal Enterprise failed.  Unable to commit the changes to Enterprise.  Reason: Failed to commit objects to server : Duplicate object name in the same folder."
    We have repeated this issue numerous time with different reports, users and logon credentials and have verified that there are NOT any duplicate object names.
    Additionally, in some cases, the report ultimately publishes to BOE, but with the above error interruption along the way.
    Any ideas?
    Thanks,
    Josh
    Edited by: Josh Crawford on May 10, 2010 9:46 AM

    Ingo,
    Apologies for the delayed response.  We've spent a few days poking around with this issue, and had even opened a customer message for it (13641).
    In the end, it seems that the problem was somehow associated with the "Prepare this report for translation." flag in the "Save to BW Options" dialog box of Crystal Reports.  If we try to Save & Publish with the Translation flag selected, we get the duplicate entry error.  If we Save & Publish without the Translation flag selected, everything is fine.
    There are still some details we need to look into, but for the time being it looks like we don't have an issue anymore(assuming we ever did) as we're not concerned with Translation capabilities.
    If we come across the problem again, I'll post again.
    Thanks,
    Josh

  • Cannot use duplicate table name error in AMDP

    Hi Experts,
    I'm developing an application which has the following architecture
    SAP UI5->Gateway->ABAP Managed DB procedures(AMDP)->HANA SP(Stored Procedure)
    We are having a very peculiar problem where the gateway service works inconsistently for the same input data.
    i.e If I execute the same service n number of times, I get the results successfully for say n-3 times but the other 3 times I get a "RFC Error :Error while executing Database procedure"
    There is no change in the input data or DB table data during all the executions.
    Running the stored procedure stand alone in HANA studio works all the time.
    We tried executing the AMDP from SE24 and the same behavior occurred.
    When trouble shooting we found that the exception occurs inside the AMDP when the call db procedure statement is executed.
    Could you please advise what could be the possible reason for this any tuning parameter/unavailability of db connections?
    Or could you please suggest some other troubleshooting mechanism by which we can zero in on the cause?
    When I go in the debug mode I can see the exact error as
    cannot use duplicate table name:  [288] SAPXXX.ZCL_PLAN_MAINTENANCE=>GET_COMP_TYPE#stub#20140905055908: line 15 col 3 (at pos 492): cannot use duplicate table name exception:
    where ZCL_PLAN_MAINTENANCE=>GET_COMP_TYPE is the AMDP class and method. SAPXXXis the schema.

    I reported this to Adobe customer support on 11/29, and here is their response:
    Wednesday, December 5, 2007 12:51:27 PM PST
    Hello John,
    Thank you for contacting Adobe® Web Support for assistance with Adobe
    Photoshop Elements® 6.0.
    I understand that images are deleted if you accidentally try to move
    them to a folder that already includes a file of the same name.
    Thank you for bringing this to our attention. I was able to replicate
    this behavior as well. The best method to report errors of this nature
    is using the following form on our website:
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    I will report this to the product team through my channels. You may want to submit this issue through the web form as it goes directly to the product development team.
    I hope this information helps to resolve your issue. If you require
    further assistance with this issue, please update your web case with
    complete details, including what steps you have applied and any error
    messages you are receiving.
    You may also call Technical Support at (800) 642-3623. We are available from 6:00 am to 5:00 pm Monday - Friday, Pacific Time.
    Kind regards,
    Alan C.
    Adobe Web Support

  • Urgent help please : useBean: Duplicate bean name error

    hi,
    i am trying to add a record to data base and my bean name is
    DBConn. when i try instantiate it is giving error. help imm.
    code:
    <%@ page import="java.sql.*" %>
    <jsp:useBean id="DConn" scope="request" class="src.DBConn" />
    <%
         try {
         ResultSet rsa;
         String sclName = request.getParameter("SclName");
         String sclMissing = request.getParameter("SclMissing");
         int intMeasure= Integer.parseInt(request.getParameter("SclMeasure"));
         String sclMeasure = "";     
         boolean     flag=false;
         switch(intMeasure) {
         case 0:     
              sclMeasure="O";
              break;
         case 1:
              sclMeasure="M";     
              break;
         case 2:
              sclMeasure="N";
              break;
         String RecValue[]= new String [3];
         RecValue[0]=sclName;
         RecValue[1]=sclMeasure;
         RecValue[2]=sclMissing;
         flag=DConn.Execute("SCAMI1", new String[] { RecValue[0], RecValue[1],RecValue[2]});
         if (flag) {
         catch(Exception e) {
              System.out.println(e);
    %>

    i am mention the same bean in this page and after this, when i press the add button, i will move for another html page and from that page it will go to the bean which is given error.
    Code: Page1:
    =============
    <html><head><title>JSP Page</title>
    <%@ page language="java" import="java.sql.*" session ="true" %>
    <script type="text/javascript" >
         function AddSubmit()
         document.OutCome.action = "OutAddScale.html";
         document.OutCome.submit();
         function openModHtml()
              window.open ("OutModScale.html");          
         function openDelHtml()
              window.open ("OutDelScale.html");          
         function getRecord(thecaller) {
              (thecaller.value);
    </script>
    </head>
    <body>
    <FORM name=OutCome method="GET" >
    <P align=center><STRONG><FONT color=#000000>Out Come</FONT></STRONG> </P>
    <INPUT id=btnAdd name=btnAdd type=button value=Add onclick ="AddSubmit()" style="HEIGHT: 24px; WIDTH: 65px">
    <INPUT id=btnMod name=btnMod type=submit value=Modify style="LEFT: 136px; TOP: 381px" > 
    <STRONG><FONT color=#000000> </FONT></STRONG>
    <INPUT id=btnDelete name=btnDelete onclick ="openDelHtml()" type=button value=Delete style="LEFT: 190px; TOP: 381px">
    <p></p>
    <!-- data base connection. ->
    <jsp:useBean id="DConn" scope="page" class="src.DBConn" />
    <%
         DConn.DBConnect("MSSql","sun.jdbc.odbc.JdbcOdbcDriver","jdbc:odbc:ews","sa","sakshi123");
         response.setContentType("text/html");
         ResultSet rsa;
         String PSId="";
         String CSId="";
         try {
    %>
         <Table border="1" width=400>
         <tr>
         <td><b>Select</b></td>
         <td><b>Scale</b></td>
              <td><b>Measure</b></td>
              <td><b>Missing</b></td>
              <td><b>Options</b></td>
         </tr>     
    <%
              rsa=DConn.getRs("SCAMS1",new String[]{""});
              while(rsa.next()) {
                   CSId=     rsa.getString("ScaleId");
                   String id= rsa.getString("ScaleId");
                   String name= rsa.getString("ScaleName");
                   String measure= rsa.getString("Measure");
                   int missing = rsa.getInt("Missing");
                   String label= rsa.getString("Label");
                   int sclIndex = rsa.getInt("ScaleIndex");
                   if (measure.equals("O")) {
                        measure="Ordinal";
                   }else if ( measure.equals("M") ) {
                        measure="Metric";
                   }else if ( measure.equals("N") ) {
                        measure="Nominal";
                   if (!CSId.equals(PSId)) {
                        PSId=CSId;
    %>
                   <tr >
                        <Td><Input Type="Radio" name ="RSel" id="RSel" value= <%= CSId %> onClick="return getRecord(this )" ></td>
                        <td> <%= name %></td>
                        <td> <%= measure %></td>          
                        <td> <%= missing %></td>
                        <td> <%= sclIndex %> - <%= label %></td>
                   </tr>
    <%                         
                   }else {
    %>     
                   <tr>
                        <td></td>
                        <td></td><td></td><td></td>
                        <td><%= sclIndex %> - <%= label %></td>
                   </tr>
    <%
                   }     // else condition close          
         }     // while loop
    %>
         </table>
    <%
         }catch(Exception e){
              System.out.println(e);
              // e.printStackTrace();
    finally{      
    %> </form></body></html>
    code page2:
    ============
    <HTML><HEAD><TITLE>Add Scale</TITLE>
    <script language=javascript src="..\JScript\Validation.js">     
    </script>
    <script language=javascript src="..\JScript\Common.js">     
    </script>
    </HEAD>
    <body >
    <FORM name=AddScale method="GET" >
    <P align=center><STRONG>Add Scale</STRONG></P>
    <FONT color=darkblue>Scale Name 
    </FONT>   
    <INPUT id=SclName name=SclName onkeypress="return validateCharKeyPress(event)" style="WIDTH: 160px; HEIGHT: 18px"><P>
    <FONT color=darkblue>Scale Measure </FONT>
    <SELECT id=SclMeasure name=SclMeasure style="LEFT: 105px; WIDTH: 92px; TOP: 96px; HEIGHT: 22px">
                        <OPTION selected>ORDINAL</OPTION>
                        <OPTION>NOMINAL</OPTION>
                        <OPTION>METRIC</OPTION>
                        </SELECT></P>
    <p><FONT color=darkblue>Scale Missing</FONT>  
    <INPUT id=SclMissing name=SclMissing onkeypress="return validateNumberKeyPress(event)" style="LEFT: 98px; WIDTH: 155px; TOP: 101px; HEIGHT: 19px" align=right></p>
    <HR>
    <P><FONT color=darkblue><STRONG> Scale Options</STRONG></FONT></P>
    <SELECT id=SelScaleOpt name=SelScaleOpt onClick="SelList()" onChange="SelList()" size=2 style="WIDTH: 313px; HEIGHT: 114px" >
    <OPTION selected>1=Male</OPTION>
    <OPTION >2=FeMale</OPTION>
    </SELECT> 
    <p><FONT color=darkblue>                        
    <INPUT id=btnUp name=btnUp type=button value=UP onclick="LstUp()" style="WIDTH: 45px; HEIGHT: 24px" >
    <INPUT id=btnDown name=btnDown type=button value=Down onclick="LstDown()" style="LEFT: 67px; TOP: 436px" > </FONT></p>
    <p><FONT color=darkblue>Scale Option    </FONT>
    <INPUT id=txtScaleOpt name=txtScaleOpt onkeypress="return validateCharKeyPress(event)" style="WIDTH: 152px; HEIGHT: 20px"></p>
    <p>  
    <INPUT id=SclOptAdd name=SclOptAdd type=button value=Add onclick="addToList()" style="WIDTH: 65px; HEIGHT: 24px"> 
    <INPUT id=btnMod name=button1 style="LEFT: 136px; TOP: 381px" type=button value=Modify onclick="ModToList()" >
    <INPUT id=SclOptRemove name=SclOptRemove type=button value=Remove onClick="DelList()" style="LEFT: 190px; TOP: 381px"></p>
    <HR>
    <P>         
    <INPUT id=SclOk name=Ok type=button value=Save OnClick="ChkFields()" style ="WIDTH: 64px; HEIGHT: 24px">
    <INPUT id=SclCan name=Cancel style="WIDTH: 64px; HEIGHT: 24px" type=reset value=Cancel></P>
    </FORM>
    </body>
    </HTML>
    code page3 in this page its giving error
    ====================================================
    it is saying
    <jsp:useBean id="DConn" scope="page" class="src.DBConn" />
    <%     
         try {
         ResultSet rsa;
         String sclName = request.getParameter("SclName");
         String sclMissing = request.getParameter("SclMissing");
         String sclMeasure= request.getParameter("SclMeasure");
         if (sclMeasure.equals("ORDINAL")) {
              sclMeasure="O";
         }else if (sclMeasure.equals("METRIC")) {
              sclMeasure="M";     
         }else if (sclMeasure.equals("NOMINAL")) {
              sclMeasure="N";     
         String RecValue[]= new String [3];
         RecValue[0]=sclName;
         RecValue[1]=sclMeasure;
         RecValue[2]= sclMissing;          
    flag=DConn.Execute("SCAMI1", new String[]{RecValue[0],RecValue[1],RecValue[2]});
         if (flag) {
              out.println("tru");
         }else {
              out.write("false");
         catch(Exception e) {
              System.out.println(e);
    %>

  • Duplicate File Name error for Unicode file names

    I am trying to rip my music collection from CDs to iTunes. I have decided to use my local language (Bangla/Bengali) as Track/Artist names using Unicode. I can edit the CD Info perfectly. The problem started when I try to import the tracks to iTunes as AAC/mp3. The first track is always imported ok but subsequent tracks fails to be imported. iTunes gave an error message saying the file name already exists where as it was not.
    Please help.

    I reported this to Adobe customer support on 11/29, and here is their response:
    Wednesday, December 5, 2007 12:51:27 PM PST
    Hello John,
    Thank you for contacting Adobe® Web Support for assistance with Adobe
    Photoshop Elements® 6.0.
    I understand that images are deleted if you accidentally try to move
    them to a folder that already includes a file of the same name.
    Thank you for bringing this to our attention. I was able to replicate
    this behavior as well. The best method to report errors of this nature
    is using the following form on our website:
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    I will report this to the product team through my channels. You may want to submit this issue through the web form as it goes directly to the product development team.
    I hope this information helps to resolve your issue. If you require
    further assistance with this issue, please update your web case with
    complete details, including what steps you have applied and any error
    messages you are receiving.
    You may also call Technical Support at (800) 642-3623. We are available from 6:00 am to 5:00 pm Monday - Friday, Pacific Time.
    Kind regards,
    Alan C.
    Adobe Web Support

  • DCR Add Device shows Duplicate Device Name

    When manually adding some devices via DCR Device Management I get the "Duplicate Device Name" error.
    The names do not show in the DCR Device Management Selector. I have also done an Export of All Devices and the names are not in there either.
    I have confirmed that the forward and reverse names and IP addresses resolve corerctly in DNS.
    How/why would it complain of a duplicate name that doesn't seem to be in there?
    This is LMS v3.2  CS v3.3.0
    Thanks for any help,

    The devices are as you suspect in the "Devices not configured in ACS report"
    I think I see what's happenned. Looks like the devices were orginally added to LMS but at the time they were not correctly configured in ACS.
    What has happened since is that the ACS configuration is now correct, but the devices have also been deleted from the LMS DCR.
    So they are not showing in the DCR but they are showing in the "Devices not configured in ACS report".
    I presume this is what is preventing them from being re-added, will they naturally age out of the ACS report somehow?

  • SQL Developer 2.1.0.63 duplicate TNS names displayed in the Connection Type

    I'm running SQL Developer 2.1.0.63. The New Connection window displays duplicate Alias names when you select the Connection Type of TNS. I've made sure that the TNS_ADMIN variable name is all in upper case in the Environment Settings but I haven't had any luck eliminating the duplicates. I've tried filling in the TNSNames directory on the preferences setting but this didn't help either. I've also checked my system and I don't have multiple version of TNSNAMES (we keep a public copy on a network share). Does anybody have any suggestions?
    We also have SQL Developer 1.5.5 and we don't have this duplicate problem in that version.

    I found the problem, it was in the TNSNames file. SQL Developer 2.1 is more sensitive to a messy TNSNames file. This past fall we reworked our environment with new hardware and OS software, during the multiple rounds of testing we created various temporary test databases. The entries that were added to the TNSNames file never got cleaned up and in some cases were added in a random fashion. After I went in and cleaned up some of the old, dead entries I noticed that there were duplicate entries for one of our Development databases. After I removed the duplicate entry in the TNSNAMES file all of the duplicates displayed on the Connection Type screen disappeared. Problem solved.

  • Each time i try to connect my ipod it keeps coming up with a duplicate file name was specified,

    can some one help me,  each time i plug my ipod into the computor it keeps saying ,, a duplicate file name was specified, how can i change this file name ,,it seems to be the name of the ipod ,,?

    Hi stelincs,
    You should be able to change the name of your iPod classic in the iTunes application.   Here's how:
    Change the name of your iPhone, iPad, or iPod - Apple Support
    https://support.apple.com/en-us/HT201997
    Use your computer
    Connect your device and open iTunes.
    Click the Device button in the upper right corner. (If viewing the iTunes Store, click the Library button in the upper-right corner first.) If you don't see your device, choose Hide Sidebar from the View menu.
    Next to the picture of your device, double-click the name of your device.
    Type the new name for your device and press Return on the keyboard.
    Sync the device (press Sync in the bottom right corner of the screen).
    Last Modified: Feb 4, 2015
    Cheers,
    - Judy

  • Type of error in the log file while using using call transaction mode u2018Eu2019

    Hi Gurus,
    Please Answer for this qusetion urgently
    what type of error exactly  you will be seeing in the log file while using call transaction mode u2018Eu2019?
    Thanks/
    Radha.

    Hi,
    Can you be clear.
    In call transaction , no error logs  are created, you have to handle the errors explicitly using the structure BDCMSGCOLL.
    Whenever you use E mode then if the transaction encounters any of the errors i.e. data type mismatching or invalid values etc, it will stop at that screen.
    You can handle the errors in call transaction in the following method.
    create a table using the structure BDCMSGCOLL.
    then
    loop at ......
          CALL TRANSACTION 'XK01' USING I_BDCDATA MODE 'N' UPDATE 'S' MESSAGES INTO I_MESGTAB.
    endloop.
      SORT I_MESGTAB BY MSGID MSGV1 ASCENDING.
      DELETE ADJACENT DUPLICATES FROM I_MESGTAB.
      LOOP AT I_MESGTAB.
        CALL FUNCTION 'FORMAT_MESSAGE'
          EXPORTING
            ID   = I_MESGTAB-MSGID
            LANG = I_MESGTAB-MSGSPRA
            NO   = I_MESGTAB-MSGNR
            V1   = I_MESGTAB-MSGV1
            V2   = I_MESGTAB-MSGV2
            V3   = I_MESGTAB-MSGV3
            V4   = I_MESGTAB-MSGV4
          IMPORTING
            MSG  = MESG1.
        IF I_MESGTAB-MSGTYP = 'S' .
          WA_SUCCMESG-MESG = MESG1.
          APPEND WA_SUCCMESG TO I_SUCCMESG.
    else     IF I_MESGTAB-MSGTYP = 'E' .
          WA_ERRMESG-MESG = MESG1.
          APPEND WA_ERRMESG TO I_ERRMESG.
        ENDIF.
      ENDLOOP.
    Hope this is clear.
    Thanks and Regards.

  • Oracle BIEE installation issue: Application Server default OC4J name error

    Hi all,
    I am installing OBIEE 10.1.3.3.2 windows 32bit version on windows 2003 sp2. Before the installation I have installed the JDK 5 and Application Server 10.1.3.1.0(J2EE Server and Web Server) on the same server according to the pre-install section in the OBIEE installation guide.
    When I install OBIEE (advanced installation), I got the error when I specify the Oracle Application server location:
    Please specify a valid Oracle Application Server 10g installation location. A valid Oracle Application Server 10g installation must have the default OC4J instance named home and that home OC4J instance must be enabled.
    When I install the Application Server 10.1.3.1.0, I have change the default OC4J name to "oc4j-soa", I think this is the root reason I got the error. I have tried to create another OC4J instance named "home", but failed coz the name is used for another directory.
    Then can I have another way to continue the installation? Why OBIEE installer have this strange constrain while not any words about this issue in the installation guide (coz I follow the each steps in the guild before I take action)? I have search some threads and the only information is to install a simple installation, but it would create another application server..... and the simple installation type is not what I want.
    Can anybody give me some hint or information about this issue? otherwise I have to purge and reinstall the server...... Thanks
    Scott

    Reinstalling the App Server and naming oc4j instance to be called "home" resolves the issue but this is an odd requirement. I have an OC4J instance already running and it is named something else. Is there any other alternative to make this work?
    Swapan.
    PS. I can always create a new oc4j instance named "home" but this is wasting of server resources.

  • French character is causing duplicate attribute key errors, why and how to overcome?

    hi there:
      I have a retailerproductname called  'Meilleurs vœux' , this character 'œ' is causing headache  as  it's causing the classic duplicate attribute key errors.  When I replaced it with 'e', error goes away... 
    The thing is that I do not want to correct  datawarehouse everyday for this type of work... plus there might be other non-english characters that may pop up depends on what consumers  bought. 
    Is there anyway other than manual intervention? 
    thanks
    --Currently using Reporting Service 2000; Visual Studio .NET 2003; Visual Source Safe SSIS 2008 SSAS 2008, SVN --

    yes, try use nvarchar instead of varchar.
    Using varchar Spree-Neiße <> Spree-Neisse. Using nvarchar Spree-Neiße = Spree-Neisse.
    And one more specifying quiestion about your data source. Imagine you have two retailproductname, such as
    Spree-Neiße and Spree-Neisse. In your case is it the same product and you should leave only one record? 

Maybe you are looking for

  • Accounts receivables - Cross company cash application - Need help

    Hello,   They are applying cash to an invoice to a diff  company- code . For e.g if there is an invocie in comp A ( cust debit and Rev :  credit ) but the cash account is of company B. These are the documents which it creates Original Invoice : COMPA

  • Text or Grep in Find.change script by list?

    Would like to use the grep formating in this query (instead of text) but the script shows error: text {findWhat:" )"} {changeTo:")"} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false} Why here coexist two ways

  • The App store app crashed while installing 10.8.3 ...

    and now won't install it. How do I fix this? I am on an 11" macbook air.

  • Since this last update (7.1.4) I can't edit in iPhoto

    I just want to crop, constraining to 4X6. As soon as I hit apply, the picture disappears, replaced sometimes by tv snow, or just white. I tried rebuilding the library, it didn't help, it made things worse. Now, when I'm editing in Photoshop Elements

  • Part of screen not responding to touch

    The right-hand side of the screen does not react when I touch it, e.g. if I want to write a not or message, the P, Backspace and 0 dont work anymore. It seems tho have a hardware problem (screen sensitivity).