[jwsc] error: Response wrapper bean names must be unique ?

I am trying to use wsdlc and jwsc on my existing WSDL file, with "type=JAXWS", I am getting this error
"[jwsc] error: Response wrapper bean names must be unique and must not clash with other generated classes"
What does it mean? And how can I resolve this?
Here is the full stack trace:
build-service:
[jwsc] JWS: processing module /com/covergence/ws/callouts/CallOutsServiceImpl
[jwsc] Parsing source files
[jwsc] Parsing source files
[jwsc] 1 JWS files being processed for module /com/covergence/ws/callouts/CallOutsServiceImpl
[jwsc] JWS: C:\source_tree\b3.3\ss\java\ws\sdk\build\weblogic\src\com\covergence\ws\callouts\CallOutsServiceImpl.java Validated.
[jwsc] Processing 1 JAX-WS web services...
[jwsc] error: Response wrapper bean names must be unique and must not clash with other generated classes. Class: com.covergence.ws.callouts.CallOutsPortType method getConfig(javax.xml.ws.Holder<java.util.List<com.covergence.ws.callouts.ConfigClassesType>>)
[jwsc] Problem encountered during annotation processing;
[jwsc] see stacktrace below for more information.
[jwsc] [failed to localize] modeler.nestedGeneratorError(java.lang.IllegalArgumentException: trying to create the same field twice: config)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceWrapperGenerator.generateWrappers(WebServiceWrapperGenerator.java:302)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceWrapperGenerator.processMethod(WebServiceWrapperGenerator.java:154)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceVisitor.visitMethodDeclaration(WebServiceVisitor.java:449)
[jwsc] at com.sun.tools.apt.mirror.declaration.MethodDeclarationImpl.accept(MethodDeclarationImpl.java:41)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceVisitor.processMethods(WebServiceVisitor.java:374)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceVisitor.postProcessWebService(WebServiceVisitor.java:338)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceWrapperGenerator.postProcessWebService(WebServiceWrapperGenerator.java:125)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceVisitor.visitInterfaceDeclaration(WebServiceVisitor.java:120)
[jwsc] at com.sun.tools.apt.mirror.declaration.InterfaceDeclarationImpl.accept(InterfaceDeclarationImpl.java:32)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceVisitor.inspectEndpointInterface(WebServiceVisitor.java:420)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceVisitor.visitClassDeclaration(WebServiceVisitor.java:141)
[jwsc] at com.sun.tools.apt.mirror.declaration.ClassDeclarationImpl.accept(ClassDeclarationImpl.java:95)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceAP.buildModel(WebServiceAP.java:300)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceAP.process(WebServiceAP.java:224)
[jwsc] at com.sun.mirror.apt.AnnotationProcessors$CompositeAnnotationProcessor.process(AnnotationProcessors.java:60)
[jwsc] at com.sun.tools.apt.comp.Apt.main(Apt.java:454)
[jwsc] at com.sun.tools.apt.main.JavaCompiler.compile(JavaCompiler.java:448)
[jwsc] at com.sun.tools.apt.main.Main.compile(Main.java:1075)
[jwsc] at com.sun.tools.apt.main.Main.compile(Main.java:938)
[jwsc] at com.sun.tools.apt.Main.processing(Main.java:95)
[jwsc] at com.sun.tools.apt.Main.process(Main.java:43)
[jwsc] at com.sun.tools.apt.Main.main(Main.java:34)
[jwsc] Caused by: java.lang.IllegalArgumentException: trying to create thesame field twice: config
[jwsc] at com.sun.codemodel.JDefinedClass.field(JDefinedClass.java:392)
[jwsc] at com.sun.codemodel.JDefinedClass.field(JDefinedClass.java:363)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceWrapperGenerator.writeMembers(WebServiceWrapperGenerator.java:419)
[jwsc] at com.sun.tools.ws.processor.modeler.annotation.WebServiceWrapperGenerator.generateWrappers(WebServiceWrapperGenerator.java:299)

I am starting from WSDL and below are the corresponding elements from WSDL
    <message name="getConfig">
        <part name="parameters" element="tns:getConfig"/>
    </message>
    <message name="getConfigResponse">
        <part name="result" element="tns:getConfigResponse"/>
    </message>
    <portType name="CallOutsPortType">
        <operation name="getConfig">
            <input message="tns:getConfig">
            </input>
            <output message="tns:getConfigResponse">
            </output>
            <fault name="callOutFault" message="tns:callOutFault"/>
        </operation>
    <binding name="CallOutsBinding" type="tns:CallOutsPortType">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
        <operation name="getConfig">
            <soap:operation soapAction="getConfig"/>
            <input>
                <soap:body use="literal"/>
            </input>
            <output>
                <soap:body use="literal"/>
            </output>
            <fault name="callOutFault">
                <soap:fault name="callOutFault" use="literal"/>
            </fault>
        </operation>

Similar Messages

  • Error : The label 'http' has already been declared. Label names must be unique within a query batch or stored procedure.

    Hi all,
        I have created one SP for sending mail with formatting the HTML code inside script whenever i am individually declaring it and printing its expected but the problem at time of executing SP its giving error like this
    Msg 132, Level 15, State 1, Line 47
    The label 'http' has already been declared. Label names must be unique within a query batch or stored procedure.
    what is the possibilities to overcome this problem follwing is my stored procedure code 
    ALTER PROCEDURE [dbo].[USP_DataLoadMailsend_essRules]
    AS
    BEGIN
    SET NOCOUNT ON;
    SET XACT_ABORT ON;
    BEGIN TRY
    ---BEGIN TRANSACTION T1
    DECLARE @packagelogid INT
    DECLARE @batchlogid INT
    DECLARE @packagestatus CHAR(2)
    select @batchlogid =19870
    --print(@batchlogid)
    DECLARE @script VARCHAR(MAX)
    DECLARE @tableHTML VARCHAR(MAX)
    DECLARE @mailheader VARCHAR(50)
    DECLARE @count INT
    DECLARE @recipients1 VARCHAR(50)
    DECLARE @subject1 VARCHAR(200)
    DECLARE @sql VARCHAR(MAX)
    Declare @UserId varchar(Max)
    Declare @Information varchar(max)
    Declare @TableHTML1 varchar(max)
    Declare @TableHTML2 varchar(max)
    SET @mailheader = ''
    SET @mailheader = (select case
    WHEN FileUpload = 'F'
    THEN 'BussinessRules is Aborted'
    WHEN (InRule = 'S')
    AND (
    SELECT sum(isnull(ErrorRecords, 0)) tot
    FROM abc.FileUploadSummary z
    WHERE z.BatchId = bts.BatchId
    GROUP BY BatchId
    ) > 0
    THEN 'BussinessRules is Processed with Errors'
    WHEN InRule = 'F'
    THEN 'BussinessRules is Failed'
    WHEN (InRule = 'S')
    AND (
    SELECT sum(isnull(ErrorRecords, 0)) tot
    FROM abc.FileUploadSummary z
    WHERE z.BatchId = bts.BatchId
    GROUP BY BatchId
    ) = 0
    THEN 'BussinessRules is Succeeded'
    end
    from abc..BatchStatus bts where BatchId=@batchlogid)
    /* Selecting Person Mail as Recipient */
    SELECT TOP 1 @recipients1 = EmailId FROM abc.PersonEmail
    WHERE PersonId = ( SELECT TOP 1 personid FROM abc.FileUploadSummary WHERE BatchId = @batchlogid )AND EmailTypeId = 1
    /* Selecting UserId*/
    select top 1 @UserId=loginid from abc.FUS where BatchId=@batchlogid
    /*Selecting Information about the Status */
    Set @Information=
    (select case
    WHEN FileUpload = 'F'
    THEN 'BussinessRules is Aborted'
    WHEN (InRule = 'S')
    AND (
    SELECT sum(isnull(ErrorRecords, 0)) tot
    FROM abc.FileUploadSummary z
    WHERE z.BatchId = bts.BatchId
    GROUP BY BatchId
    ) > 0
    THEN 'BussinessRules is Processed with Errors'
    WHEN InRule = 'F'
    THEN 'BussinessRules is Failed'
    WHEN (InRule = 'S')
    AND (
    SELECT sum(isnull(ErrorRecords, 0)) tot
    FROM abc.FileUploadSummary z
    WHERE z.BatchId = bts.BatchId
    GROUP BY BatchId
    ) = 0
    THEN 'BussinessRules is Succeeded'
    end + N' <br> <B>BatchId= '+ convert(varchar(250),(select @batchlogid)) +'</B>'
    from abc..BatchStatus bts where BatchId=@batchlogid )
    /*Selecting the Error Reason*/
    if exists (select 1 from BatchStatus where BatchId=@batchlogid and ( InRule='f'))
    begin
    set @TableHTML1 = '<table border=1><tr><th>Sr.No.</th><th><P>Error Reason :</th></tr>'+
    cast((select td= ROW_NUMBER()over (order by (select 1)),'',
    td=isnull(e.ErrorDescription, '')
    from abc.x.tbPackageErrorLog e --50594
    join abc.x.tbPackageLog p -- 10223
    on p.PackageLogID=e.PackageLogID
    where p.BatchLogID= @batchlogid FOR XML PATH('tr'), TYPE )
    as NVarchar(max)) +'</table>'
    -- print @tableHTML
    if not exists (select 1 from BatchStatus where BatchId=@batchlogid and ( InRule='f'))
    set @TableHTML2 = 'Error Reason :N/A'
    end
    -- insert into #tmp values ( @TableHTML1)
    --select * from #tmp
    Set @tableHTML= 'Hello '+@UserId+', <br>Information:'+isnull(@Information,'') +
    '<Table Border=1><Tr><th>Sr No</th><th>Uploaded files </th>:'+
    CAST ((select td= ROW_NUMBER()over(order by f.FileUploadId), '',
    td = f.TableName , ''
    from abc.FileUploadSummary F where BatchId=@batchlogid
    FOR XML PATH('tr'), TYPE ) AS NVARCHAR(max) )
    +'</table>'+
    'Error Reason :'+isnull(isnull(@TableHTML1,'')+ isnull(@TableHTML2,''),'N/A')+ --concat (isnull(@TableHTML1,''),isnull(@TableHTML2,'')
    '<br> Please login to Your Account for further Details..!'
    +'<br>@Note: This is system generated message, Do not reply to this mail. <br>Regards,<br>'+
    'Admin'
    print @tableHTML
    SET @sql = ' EXEC msdb.dbo.sp_send_dbmail @profile_name = ''DBA_mail_test''
    ,@recipients = ''' + isnull(@recipients1,'''') + ''',@subject = ''' + isnull(@mailheader,'''') + ''',
    @body = ''' +isnull(@tableHTML,'''')+ ''',
    @body_format = ''HTML'''
    Exec(@sql)
    END TRY
    BEGIN CATCH
    PRINT error_message()
    -- Test whether the transaction is uncommittable.
    -- IF (XACT_STATE()) = - 1
    -- ROLLBACK TRANSACTION --Comment it if SP contains only select statement
    DECLARE @ErrorFromProc VARCHAR(500)
    DECLARE @ErrorMessage VARCHAR(1000)
    DECLARE @SeverityLevel INT
    SELECT @ErrorFromProc = ERROR_PROCEDURE()
    ,@ErrorMessage = ERROR_MESSAGE()
    ,@SeverityLevel = ERROR_SEVERITY()
    --INSERT INTO dbo.ErrorLogForUSP (
    -- ErrorFromProc
    -- ,ErrorMessage
    -- ,SeverityLevel
    -- ,DateTimeStamp
    --VALUES (
    -- @ErrorFromProc
    -- ,@ErrorMessage
    -- ,@SeverityLevel
    -- ,GETDATE()
    END CATCH
    END
    please help me to solve this problem
    Niraj Sevalkar

    This is no string http in your procedure. Then again the error message points to a line 47 outside a stored procedure. I can't tell it is outside, since there is no procedure name.
    But I see that you have this piece of dynamic SQL:
    SET @sql = ' EXEC msdb.dbo.sp_send_dbmail @profile_name = ''DBA_mail_test''
    ,@recipients = ''' + isnull(@recipients1,'''') + ''',@subject = ''' + isnull(@mailheader,'''') + ''',
    @body = ''' +isnull(@tableHTML,'''')+ ''',
    @body_format = ''HTML'''
     Exec(@sql)
    Why is this dynamic SQL at all? Why not just make plain call to sp_send_dbmail?
     EXEC msdb.dbo.sp_send_dbmail @profile_name = 'DBA_mail_test'
    ,@recipients = @recipients1, @subject = @mailheader, @body = @tableHTML
    Erland Sommarskog, SQL Server MVP, [email protected]

  • 'Error 30644: Page Group name should be unique' after page group is removed

    Hi, I have removed a page group with name 'X'. But when i tried to create a new page group with the same name 'X', i encountered the following error message:
    'Error 30644: Page Group name should be unique'
    What could i do to create page group with the same name 'X'?
    Thanks for any replies!

    I just tried this on a 9.0.2.2.14 version and was able to add, delete, and add again witout an error. It is possible that there was some kind of error during the delete which caused a row in the DB to remain. Unfortunately, there is no way to be sure without delving into the tables and looking for the 'deleted' page group. Not recommended unless absolutely critical. Given that the display name is what is typically shown in most screens, is it reasonable for you to name the new one X1 with a display name of X? If so, that's the safest bet.

  • Account name must be unique

    I have a Mac Pro running OS X 10.7.2 Server (fresh install).
    I created a user in the system preferences, then realized I should've added that user using the Server admin application.
    So I deleted the user in the System Preferences, launched the Server app and when I tried to add the user I get the message "The account name must be unique".  It must be seeing some residual from the account created/deleted in System Preferences because I only have 3 accounts in the Server app and this isn't one of them.
    Can anyone shed some light on how to troubleshoot this?
    -lh

    I have the same Problem. Why did no one respond? Even from Apple? This new Admin software is the biggest pos I think I have ever seen. And if Apple techs aren't going to rerspond for support, what good is it?
    I have a unique account name in the field, even though this pos software keeps saying it has to be unique. Uggghhhhhh. I guess Open Directory is not an option anymore

  • Creating a view on KONA & KONH -  Failed with 'Field name DATAB not unique'

    Hi all,
        I am creating a view on KONA (Rebate Agreement) & KONH (Conditions Header) tables. The link is KONA-KNUMA = KONH-KNUMA_AG.
       The field 'DATAB' exists in both tables and I have included those two fields under 'View Fields' . When I tried to activate the View, it fails with 'Field name DATAB not unique'.
       The following is the complete error message:
    Message no. MC060
    Diagnosis
    When you define aggregates (views, lock objects or matchcode objects), you can assign the aggregate fields your own names (the system assigns names to the basic fields automatically). These names must be unique.
    System response
    The system has established that the names assigned to the aggregate fields in an aggregate definition are not unique and issues an error message.
    Procedure
    Assign unique names to the aggregate fields in question.
       Why I am not able to create the view after including a field that EXISTS in two tables, PLEASE ?
    Thanks,
    Venkat.

    Hi,
    you can include both fields (but what for??); most likely KNUMH will also complain after fixing DATAB (just a guess...).
    You can include both fields if you name them differently (different aliases):
    In the view fields tab, enter two different names in the column "view field".
    this will work.
    hope this helps...
    Olivier.
    Message was edited by:
            Olivier Cora

  • "Field name BUKRS not unique"  ???

    Hi,
    I am trying to create a view based on two tables. One is T001 and other is custom table. When i tried to activate, it gives error message like "Field names BUKRS not unique".
    Can anyone please tell me about this ?
    Thanks,
    Regards,
    aarthi
    [email protected]

    The description of the message given by the system is like below
    Field name BUKRS not unique
    Message no. MC 060
    Diagnosis
    When you define aggregates (views, lock objects or matchcode objects), you can assign the aggregate fields your own names (the system assigns names to the basic fields automatically). These names must be unique.
    System Response
    The system has established that the names assigned to the aggregate fields in an aggregate definition are not unique and issues an error message.
    Procedure
    Assign unique names to the aggregate fields in question.
    Regards,
    aarthi
    [email protected]

  • 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);
    %>

  • Error while invoking bean "delivery": Waiting for response has timed out.

    Hello,
    I am running a process that currently catches an exception from a partnerlink. When the exception is caught I send an email and the process exits. When I submit a request from the BPEL console, I have to wait until the JTA timeout before the page returns. However, the instance completes successfully and I receive the email before the timeout happens. This is what I see in the logs. When I look at the audit and activity flow, all of the activities were timestamped prior to the exception being thrown. Has anyone seen this behavior or know what is going on. Is there a problem sending email in a catch or catchAll block?
    <2009-04-19 22:33:41,859> <ERROR> <iCareTest.collaxa.cube> <BaseCubeSessionBean::logError> Error while invoking bean "delivery": Waiting for response has timed out. The conversation id is cf9324c9be114336:513ede58:120c17e1922:-7fc0. Please check the process instance for detail.
    com.oracle.bpel.client.delivery.ReceiveTimeOutException: Waiting for response has timed out. The conversation id is cf9324c9be114336:513ede58:120c17e1922:-7fc0. Please check the process instance for detail.
    Thanks in advance
    Jim

    There is no issue the reason why it times out is because you don't have a reply back to the client in your catch all.
    If you look at your process you will see that the defaul reply is in the main scope. When the catch all is invoked this reply is by passed, therefore no reply is sent.
    PLease a reply in your catch all back to the client and it will work.
    cheers
    James

  • TFS Build Error - Exception Message: The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters

    I am trying to set-up CI of Orchard CMS and deploy it on Azure using TF service. I am stuck at following error for path being
    longer than 260 characters. However, when counted the total characters in path are 235. Please see the below error :
    Other Errors and Warnings
    1 error(s), 1 warning(s)
    Exception Message: TF400889: The following path contains more than the allowed 259 characters: drop/_PublishedWebsites/Orchard.Web_Package/Archive/Content/C_C/a/src/projects/Orchard/dev/DevAltaf/Orchard/src/Orchard.Web/obj/Debug/Package/PackageTmp/Modules/BrentApart.BannerManager/Scripts/controllers/bannerAssignmentController.js. Specify a shorter path. (type VssServiceException)
    Exception Stack Trace: at Microsoft.TeamFoundation.Build.Workflow.Activities.FileContainerDropProvider.EndCopyDirectory(IAsyncResult result)
    at Microsoft.TeamFoundation.Build.Workflow.Activities.CopyDirectory.EndExecute(AsyncCodeActivityContext context, IAsyncResult result)
    at System.Activities.AsyncCodeActivity.CompleteAsyncCodeActivityData.CompleteAsyncCodeActivityWorkItem.Execute(ActivityExecutor executor, BookmarkManager bookmarkManager)
    Inner Exception Details:
    Exception Message: The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters. (type PathTooLongException)
    Did anyone came across such issue while deploying Orchard on Azure with TF service? If yes, how did you sort this freaking error?
    Thanks,
    Altaf B.

    Hi AltafB,
    For your situation, you can short the path for the source code. Or use a short path for build agent folder in your build definition. You can refer to the links below to solve your problem:
    http://blogs.msdn.com/b/aaronhallberg/archive/2007/06/20/team-build-and-260-character-paths.aspx
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/1638a5f0-9321-4ff9-9ee7-6d347badb972/please-some-solution-to-the-specified-path-file-name-or-both-are-too-long?forum=tfsbuild
    Besides, since you deploy Orchard to Azure, you can also publish it directly using publish profile in Visual Stduio or WebMatrix directly.
    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.

  • Using Response Oneway bean in PI7.1 throwing error

    Hi Folks
    Has any body used Response One way bean  in  PI 7.1 ? . I have a scenariofor File-RFC -File  in which  I am trying to Implement it    I have gone through the blogs for File-RFC -File without BPM .
    i have also gone through the documentation for adding the request response bean and one way response bean  for PI 7.1 on help.sap.com . But unfortunately  that blog is not working and  also   i tried all permutations and combinations for  adding parameters  as per help.sap.com  for Pi7.1
    I followed these links
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/45/20cc5dc2180733e10000000a155369/content.htm
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/45/20c210c20a0732e10000000a155369/content.htm
    File-RFC-File Synchronous scenario error
    I am getting a null pointer exception error  in sender communication channel monitoring
    Error: java.lang.NullPointerException
    Please help in this regard
    Thanks
    Ninad

    Has anybody used  Response Oneway bean for File-RFC-File scenario in PI 7.1
    My Response  file is getting created but I ma unbale to delete my request input file  even though my  Sender communication channel  is in delete mode and In communication channel monitoring  its giving null pointer exception error
    Can anyone check whats the issue in this  ,
    I am running this scenario on service pack 8  Pi 7.1
    Regards
    Ninad

  • Database not found/Error: ORA-16621: database name for ADD DATABASE must be

    I am new to Data Guard and am trying to set up Data Guard Broker. I had created a configuration file with both my primary and standby databases and at one time I could show both databases. But now I can no longer show the standby database nor can I enable, disable or reinstate it. Here is what I have:
    Primary Database: orcl10g
    Standby Database: 10gSB
    DGMGRL> show configuration
    Configuration
    Name: orcl10g
    Enabled: YES
    Protection Mode: MaxPerformance
    Fast-Start Failover: DISABLED
    Databases:
    orcl10g - Primary database
    10gSB - Physical standby database
    Current status for "orcl10g":
    SUCCESS
    DGMGRL> show database verbose orcl10g
    Database
    Name: orcl10g
    Role: PRIMARY
    Enabled: YES
    Intended State: ONLINE
    Instance(s):
    orcl10g
    Properties:
    InitialConnectIdentifier = 'orcl10g'
    LogXptMode = 'ASYNC'
    Dependency = ''
    DelayMins = '0'
    Binding = 'OPTIONAL'
    MaxFailure = '0'
    MaxConnections = '1'
    ReopenSecs = '300'
    NetTimeout = '180'
    LogShipping = 'ON'
    PreferredApplyInstance = ''
    ApplyInstanceTimeout = '0'
    ApplyParallel = 'AUTO'
    StandbyFileManagement = 'AUTO'
    ArchiveLagTarget = '0'
    LogArchiveMaxProcesses = '30'
    LogArchiveMinSucceedDest = '1'
    DbFileNameConvert = '10gSB, orcl10g'
    LogFileNameConvert = '/oracle/oracle/product/10.2.0/oradata/orcl10g/redo01.log, /oracle/oracle/product/10.2.0/oradata/10gSB/redo01.log, /oracle/oracle/product/10.2.0/oradata/orcl10g/redo02.log, /oracle/oracle/product/10.2.0/oradata/10gSB/redo02.log, /oracle/oracle/product/10.2.0/oradata/orcl10g/redo03.log, /oracle/oracle/product/10.2.0/oradata/10gSB/redo03.log'
    FastStartFailoverTarget = ''
    StatusReport = '(monitor)'
    InconsistentProperties = '(monitor)'
    InconsistentLogXptProps = '(monitor)'
    SendQEntries = '(monitor)'
    LogXptStatus = '(monitor)'
    RecvQEntries = '(monitor)'
    HostName = 'remarkable.mammothnetworks.com'
    SidName = 'orcl10g'
    LocalListenerAddress = '(ADDRESS=(PROTOCOL=tcp)(HOST=remarkable.mammothnetworks.com)(PORT=1521))'
    StandbyArchiveLocation = '/oracle/flash_recovery_area/orcl10g/archivelog'
    AlternateLocation = ''
    LogArchiveTrace = '1024'
    LogArchiveFormat = '%t_%s_%r.arc'
    LatestLog = '(monitor)'
    TopWaitEvents = '(monitor)'
    Current status for "orcl10g":
    SUCCESS
    DGMGRL> show database verbose 10gSB
    Object "10gsb" was not found
    DGMGRL>
    DGMGRL> remove database 10gSB
    Object "10gsb" was not found
    DGMGRL>
    DGMGRL> reinstate database 10gSB
    Object "10gsb" was not found
    DGMGRL>
    DGMGRL> enable database 10gSB
    Object "10gsb" was not found
    DGMGRL>
    DGMGRL> add database '10gSB' as
    connect identifier is 10gSB
    maintained as physical;Error: ORA-16621: database name for ADD DATABASE must be unique
    Failed.
    How can I get Data Guard to see the standby database correctly again?

    Thank you for the constructive feedback. I have been able to make progress on this issue.
    I did check the Data Guard Log files as you suggested. I did not find anything when I checked them before but this time I found the following:
    DG 2011-06-16-17:23:18 0 2 0 RSM detected log transport problem: log transport for database '10gSB' has the following error.
    DG 2011-06-16-17:23:18 0 2 0 RSM0: HEALTH CHECK ERROR: ORA-16737: the redo transport service for standby database "10gSB" has an error
    DG 2011-06-16-17:23:18 0 2 0 NSV1: Failed to connect to remote database 10gSB. Error is ORA-12514
    DG 2011-06-16-17:23:18 0 2 0 RSM0: Failed to connect to remote database 10gSB. Error is ORA-12514
    DG 2011-06-16-17:23:18 0 2 753988034 Operation CTL_GET_STATUS cancelled during phase 2, error = ORA-16778
    DG 2011-06-16-17:23:18 0 2 753988034 Operation CTL_GET_STATUS cancelled during phase 2, error = ORA-16778
    I verified that I am able to connect to both the primary and standby databases via external connections:
    -bash-3.2$ lsnrctl status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 17-JUN-2011 12:41:03
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date 17-JUN-2011 01:40:30
    Uptime 0 days 11 hr. 0 min. 32 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /oracle/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Listener Log File /oracle/oracle/product/10.2.0/db_1/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=remarkable.mammothnetworks.com)(PORT=1521)))
    Services Summary...
    Service "10gSB" has 1 instance(s).
    Instance "10gSB", status READY, has 1 handler(s) for this service...
    Service "10gSB_DGB" has 1 instance(s).
    Instance "10gSB", status READY, has 1 handler(s) for this service...
    Service "10gSB_XPT" has 1 instance(s).
    Instance "10gSB", status READY, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "orcl10g" has 1 instance(s).
    Instance "orcl10g", status READY, has 1 handler(s) for this service...
    Service "orcl10gXDB" has 1 instance(s).
    Instance "orcl10g", status READY, has 1 handler(s) for this service...
    Service "orcl10g_DGB" has 1 instance(s).
    Instance "orcl10g", status READY, has 1 handler(s) for this service...
    Service "orcl10g_XPT" has 1 instance(s).
    Instance "orcl10g", status READY, has 1 handler(s) for this service...
    The command completed successfully
    -bash-3.2$
    -bash-3.2$
    -bash-3.2$ sqlplus system/dbas4ever@orcl10g
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jun 17 12:43:41 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    -bash-3.2$ sqlplus system/dbas4ver@10gSB
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jun 17 12:43:59 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-01033: ORACLE initialization or shutdown in progress <== I think this is normal since the database is in mount mode
    Enter user-name:
    I also checked the listener log file and did see and error associated with a known bug:
    WARNING: Subscription for node down event still pending
    So I added the following to the listener.ora file and bounced the listener:
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER=OFF
    That seems to have taken care of the error.
    The following is my listener.ora file:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /oracle/oracle/product/10.2.0/db_1)
    (PROGRAM = extproc)
    (SID_DESC = ( GLOBAL_DBNAME = 10gsb_DGMGRL.remarkable.mammothnetworks.com )
    ( SERVICE_NAME = 10gsb.remarkable.mammothnetworks.com )
    ( SID_NAME = 10gsb )
    ( ORACLE_HOME = /oracle/oracle/product/10.2.0/db_1 )
    (SID_DESC = ( GLOBAL_DBNAME = orcl10g_DGMGRL.remarkable.mammothnetworks.com )
    ( SERVICE_NAME = orcl10g.remarkable.mammothnetworks.com )
    ( SID_NAME = orcl10g )
    ( ORACLE_HOME = /oracle/oracle/product/10.2.0/db_1 )
    (SID_DESC = ( GLOBAL_DBNAME = orcl10g.remarkable.mammothnetworks.com )
    ( SERVICE_NAME = orcl10g.remarkable.mammothnetworks.com )
    ( SID_NAME = orcl10g )
    ( ORACLE_HOME = /oracle/oracle/product/10.2.0/db_1 )
    (SID_DESC = ( GLOBAL_DBNAME = 10gsb.remarkable.mammothnetworks.com )
    ( SERVICE_NAME = 10gsb.remarkable.mammothnetworks.com )
    ( SID_NAME = 10gsb )
    ( ORACLE_HOME = /oracle/oracle/product/10.2.0/db_1 )
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER=OFF
    I again tried connecting externally to the standby database:
    -bash-3.2$ sqlplus system/dbas4ever@10gSB
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jun 17 13:09:00 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-01033: ORACLE initialization or shutdown in progress
    Enter user-name:
    and see this in the listener.log file:
    17-JUN-2011 13:10:22 * (CONNECT_DATA=(SERVICE_NAME=10gSB_XPT)(SERVER=dedicated)(CID=(PROGRAM=oracle)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=199.187.124.130)(PORT=11357)) * establish * 10gSB_XPT * 0
    17-JUN-2011 13:10:22 * (CONNECT_DATA=(SERVICE_NAME=10gSB_XPT)(SERVER=dedicated)(CID=(PROGRAM=oracle)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=199.187.124.130)(PORT=11358)) * establish * 10gSB_XPT * 0
    17-JUN-2011 13:10:24 * service_update * 10gSB * 0
    17-JUN-2011 13:10:30 * (CONNECT_DATA=(SID=orcl10g)(CID=(PROGRAM=perl)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=25119)) * establish * orcl10g * 0
    17-JUN-2011 13:10:30 * (CONNECT_DATA=(SID=orcl10g)(CID=(PROGRAM=perl)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=25120)) * establish * orcl10g * 0
    17-JUN-2011 13:10:30 * (CONNECT_DATA=(SID=orcl10g)(CID=(PROGRAM=emagent)(HOST=localhost.localdomain)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=25121)) * establish * orcl10g * 0
    17-JUN-2011 13:11:22 * (CONNECT_DATA=(SERVICE_NAME=10gSB_XPT)(SERVER=dedicated)(CID=(PROGRAM=oracle)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=199.187.124.130)(PORT=11420)) * establish * 10gSB_XPT * 0
    17-JUN-2011 13:11:22 * (CONNECT_DATA=(SERVICE_NAME=10gSB_XPT)(SERVER=dedicated)(CID=(PROGRAM=oracle)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=199.187.124.130)(PORT=11422)) * establish * 10gSB_XPT * 0
    17-JUN-2011 13:11:24 * service_update * 10gSB * 0
    I tried again to see the database in Data Guard Broker:
    DGMGRL> show database 10gSB
    Object "10gsb" was not found
    however, I then was able to add the database in Data Guard Broker:
    DGMGRL> add database 10gSB
    as connect identifier is 10gSB
    maintained as physical;Database "10gsb" added <== this is progress!!!
    However the configuration shows the following:
    DGMGRL> show database 10gSB
    Database
    Name: 10gsb
    Role: PHYSICAL STANDBY
    Enabled: NO
    Intended State: OFFLINE
    Instance(s):
    10gSB
    Current status for "10gsb":
    DISABLED <=====
    So I tried to enable the database:
    DGMGRL> enable database 10gSB
    Error: ORA-16626: failed to enable specified object
    Failed.
    and I tried to reinstate the database:
    DGMGRL> reinstate database 10gSB
    Reinstating database "10gsb", please wait...
    Error: ORA-16653: failed to reinstate database
    Failed.
    Reinstatement of database "10gsb" failed
    So I checked the configuration and now see two entries for the standby database but with case differences:
    DGMGRL> show configuration
    Configuration
    Name: orcl10g
    Enabled: YES
    Protection Mode: MaxPerformance
    Fast-Start Failover: DISABLED
    Databases:
    orcl10g - Primary database
    10gSB - Physical standby database
    10gsb - Physical standby database (disabled)
    Current status for "orcl10g":
    SUCCESS
    Question: How do I get rid of 10gSB and enable 10gsb?

  • Jwsc Ant task generates [ERROR] - A document style operation must not have

    If the wsdlc Ant task is run on a WSDL file to generate the JWSC file and subsequently the jwsc task is run an error gets generated:
    [ERROR] - A document style operation must not have a non header INOUT or OUT Parameter.

    If the wsdlc Ant task is run on a WSDL file to generate the JWSC file and subsequently the jwsc task is run an error gets generated:
    [ERROR] - A document style operation must not have a non header INOUT or OUT Parameter.

  • Both type and assembly name must be specified

    Hi All,
    I have 3rd party dll, I am adding the ref to it in my project.
    I have created a wrapper class for one of the 3rd part dll class, my wrapper class is inheriting for IPofSerializer and serilizing the object.
    In my pof-config.xml file I have created a new user-type for the class in the 3rd party dll.
    <pof-config xmlns="http://schemas.tangosol.com/pof">
    <user-type-list>
    <!-- include all "standard" Coherence POF user types -->
    <include>assembly://Coherence/Tangosol.Config/coherence-pof-config.xml</include>
    <!-- include all application POF user types -->
    <user-type>
    <type-id>1002</type-id>
    <class-name>DCBOMLib.DCStockMarketClass</class-name>
    </user-type>
    </user-type-list>
    </pof-config>
    While starting the Cache i am getting the error "Both type and assembly name must be specified", where so i find the assembly info for the type DCBOMLib.DCStockMarketClass(its a 3rd party dll)
    Regards,
    Akhil

    Hi,
    Thanks for the reply, pls find some more details below:
    1. Contents of pof-config.xml
    <pof-config xmlns="http://schemas.tangosol.com/pof">
    <user-type-list>
    <!-- include all "standard" Coherence POF user types -->
    <include>assembly://Coherence/Tangosol.Config/coherence-pof-config.xml</include>
    <!-- include all application POF user types -->
    <user-type>
    <type-id>1001</type-id>
    <class-name>Examples.ContactInfo,ContactCache.Windows </class-name>
    <serializer>
    <class-name>Examples.ContactInfoSer, ContactCache.Windows</class-name>
    </serializer>
    </user-type>
    <user-type>
    <type-id>1002</type-id>
    <class-name>DCBOMLib.DCStockMarketClass, Interop.DCBOMLib</class-name>
    </user-type>
    </user-type-list>
    <allow-interfaces>true</allow-interfaces>
    <allow-subclasses>true</allow-subclasses>
    </pof-config>
    If i dont specify type-id 1002 it says unknown user type DCBOMLib.DCStockMarketClass
    2. Pls find the code
    public class ContactInfoSer : IPofSerializer
    public object Deserialize(IPofReader reader)
    string Name = reader.ReadString(0);
    string Street = reader.ReadString(1);
    string City = reader.ReadString(2);
    string State = reader.ReadString(3);
    string Zip = reader.ReadString(4);
    DCBOMLib.DCStockMarketClass DCSCM = (DCBOMLib.DCStockMarketClass)reader.ReadObject(5);
    reader.ReadRemainder();
    return new ContactInfo(Name, Street, City, State, Zip, DCSCM);
    public void Serialize(IPofWriter outo, object o)
    ContactInfo cinfo = (ContactInfo) o;
    outo.WriteString(0, cinfo.Name);
    outo.WriteString(1, cinfo.Street);
    outo.WriteString(2, cinfo.City);
    outo.WriteString(3, cinfo.State);
    outo.WriteString(4, cinfo.Zip);
    outo.WriteObject(5, cinfo.DCSCM);
    outo.WriteRemainder(null);
    During runtime I am getting following exception for the below code
    DCBOMLib.DCStockMarketClass dc = new DCBOMLib.DCStockMarketClass();
    ContactInfo contact = new ContactInfo(txtName.Text,
    txtStreet.Text,
    txtCity.Text,
    txtState.Text,
    txtZip.Text,dc);
    cache.Insert("124", contact);
    Exception -
    {"Missing IPofSerializer configuration (Config=file://Config\\pof-config.xml, Type-Id=1002, Type-Name=DCBOMLib.DCStockMarketClass, Interop.DCBOMLib)"}
    Is it required that the 3rd party dll having DCBOMLib.DCStockMarketClass should be inheriting from Serializable or Object?
    Regards,
    Akhil

  • WSRM Adapter replaced with soap in PO7.4. Getting error "Response message contains an errorXIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 500 Internal Server Error"

    Hello All,
    We have scenario proxy->pi->webservice. In older versions of PI system they used wsrm adapter at receiver side and it's working fine.
    Receiver interface is asynchronous. So no response structute is present and receiver service is business component(since receiver is a third party).
    During migration, we have replaced the receiver adapter with SOAP adapter and used message protocol as SOAP 1.1 but the message is failing and in communication channel it is showing error "Response message contains an errorXIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 500 Internal Server Error". In this case the receiver interface is stateless xi 3.0 compatible(re using the old), after changing it to just stateless also issue persists.
    In target url field if i prefix the url with "http" then above mentioned error is occurring otherwise if i use the hostname:port/path.. then it is giving error
    "soap: Call failed: com.sap.aii.af.sdk.xi.srt.BubbleException: Unsupported protocol". So maintaing the url as http://hostname:port/pat.....
    As in old channel wsrm channel there is no userid and password, i haven't given any userid/pwd in receiver channel.
    used the bean sap.com/com.sap.aii.af.soapadapter/XISOAPAdapterBean with  parameters
    Module Key  =  soap
      Parameter Name  =  noSOAPMakeSysErrFromResponseFault
    Parameter Value  =  false
    and
    xmbws.No SOAPIgnoreStatus = true
    but not successful.
    Please help me. I got stcuk here.

    Hello Jannus,
    The connectivity is working fine. Network team has confirmed it. I doubt that any strucutre(header) difference might be present in message when sending with wsrm adapter compared to sending with soap adapter.
    Please let me know the exact difference between soap and wsrm functionality in receiving end.
    By considering the structure issue, i have checked the "do not use soap envelope" check box, then i got error "Response message contains an errorXIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 415 Unsupported Media Type"
    Then i used message transform bean, but not successful.
    Regards,
    Ch.Venkat.

  • The entity name must immediately follow the '&' in the entity reference.

    Hello Group,
    I have been receiving below such org.xml.sax.SAXParseException exceptions.
    Could you anyone please advise me what could be the reason for these issues and any probable solution thereby.
    NOTE:
    Eg1: Below string is causing error:
    USER Given: funnicity is funny. isn't it. true. well go to "funnicity" today.
    Escaped String : funnicity is funny. isn&#039;t it. true. well go to "funnicity" today.
    Eg2: Below string successfully generated spell suggestions:
    USER Given: funnicity is funny. isn ' t it. true. well go to " funnicity " today.
    Escaped String : funnicity is funny. isn &#039; t it. true. well go to " funnicity " today.
    The difference between above two example strings is, characters to be escaped were separated from other chars with a single whitespace.
    In the below notes "TEXT:" is the string sent by ERXGoogleSpell to org.w3c.dom.Document.parse(InputStream) method and "ERROR:" is the error received from ERXGoogleSpell:
    TEXT:
    funnicity is funny. isn't it. true. well go to " funnicity " today.
    ERROR:
    The entity name must immediately follow the '&' in the entity reference.
    00:43 DEBUG text is : funnicity is funny. isn t it. true. well go to "funnicity" today.
    [Fatal Error] :1:244: The reference to entity "quot" must end with the ';' delimiter.
    er.extensions.ERXGoogleSpell$CorrectionException: Failed to correct spelling of 'funnicity is funny. isn t it. true. well go to "funnicity" today.'.
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:172)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:114)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:99)
    at com.mtj.DirectAction.checkSpellingAction(DirectAction.java:1872)
    at sun.reflect.GeneratedMethodAccessor68.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.webobjects.appserver.WODirectAction.performActionNamed(WODirectAction.java:128)
    at com.webobjects.appserver._private.WOActionRequestHandler._handleRequest(WOActionRequestHandler.java:240)
    at com.webobjects.appserver._private.WOActionRequestHandler.handleRequest(WOActionRequestHandler.java:145)
    at com.webobjects.appserver.WOApplication.dispatchRequest(WOApplication.java:1306)
    at com.mtj.Application.dispatchRequest(Application.java:669)
    at com.webobjects.appserver._private.WOWorkerThread.runOnce(WOWorkerThread.java:173)
    at com.webobjects.appserver._private.WOWorkerThread.run(WOWorkerThread.java:254)
    at java.lang.Thread.run(Thread.java:613)
    Caused by: org.xml.sax.SAXParseException: The reference to entity "quot" must end with the ';' delimiter.
    at org.apache.xerces.parsers.DOMParser.parse(DOMParser.java:267)
    at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:201)
    at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:98)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:148)
    ... 14 more
    TEXT:
    funnicity is funny. tell me isn't it true.
    ERROR:
    07:29 DEBUG text is : funnicity is funny. tell me isn't it true.
    [Fatal Error] :1:187: The entity name must immediately follow the '&' in the entity reference.
    er.extensions.ERXGoogleSpell$CorrectionException: Failed to correct spelling of 'funnicity is funny. tell me isn't it true.'.
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:172)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:114)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:99)
    at com.mtj.DirectAction.checkSpellingAction(DirectAction.java:1872)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.webobjects.appserver.WODirectAction.performActionNamed(WODirectAction.java:128)
    at com.webobjects.appserver._private.WOActionRequestHandler._handleRequest(WOActionRequestHandler.java:240)
    at com.webobjects.appserver._private.WOActionRequestHandler.handleRequest(WOActionRequestHandler.java:145)
    at com.webobjects.appserver.WOApplication.dispatchRequest(WOApplication.java:1306)
    at com.mtj.Application.dispatchRequest(Application.java:669)
    at com.webobjects.appserver._private.WOWorkerThread.runOnce(WOWorkerThread.java:173)
    at com.webobjects.appserver._private.WOWorkerThread.run(WOWorkerThread.java:254)
    at java.lang.Thread.run(Thread.java:613)
    Caused by: org.xml.sax.SAXParseException: The entity name must immediately follow the '&' in the entity reference.
    at org.apache.xerces.parsers.DOMParser.parse(DOMParser.java:267)
    at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:201)
    at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:98)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:148)
    ... 15 more
    Please let me know, if this email is not clear or need any information.
    Thanks in advance.
    Thank You,
    Shravan

    Thanks so much for all your responses.
    I have actually passed-in properly escaped text to document parser, but it is behaving vaguely.
    I see the text I have posted in my initial post is parsed by forum.
    Here is the text that is reported as error:
    Actual Text: Hello "World"
    Escaped Text passed to parser: Hello & quot;World& quot; (note: & and quot are indeed not separated)
    Here is the text that is working fine:
    Actual Text: Hello " World "
    Escaped Text passed to parser: Hello & quot; World & quot; (note: & and quot are indeed not separated)
    The difference in above two versions of text input is: quotes and word are separated by a space to work fine.
    Please advise a solution.

Maybe you are looking for

  • Video to vector flash

    I will be getting a series of 10 second video's for a website. They would like me to recreate the video as animated silhouettes of the people in the video. To show basic fight moves. Is it possible to take the supplied video into Flash, remove the ba

  • RMAN Automatic backup/recovery with oracle fail safe, windows cluster

    Hello, I have question, 1) Whether it is possible to do "RMAN Automatic Backup and recovery" in environment as ? Environment: - a. Windows clustering with windows server 2003 Enterprise Edition R2 (Two Node Clustering) b. Shared disk ( RAID ) c. Orac

  • Error in MDM to SAPR3 scenario

    Hi, i am configuring a scenario where my sender is MDM 7.1 and receiver is SAPR3 system. i am getting a error as Configuration error: unknown for the MDM adapter which is sender. Kindly let me know what can be the issue. It will be of great help Best

  • Highlighting specific plots in chart

    I have a line chart with several lines.  Each line is a day of week.  All seven days of the week are plotted.  Is there a way to click one day of week (in the legend) and have it bold or something so it is more predominant?  The lines are all mixed t

  • Openoffice spreadsheet draw combination charts  programatically

    hi all, we need to develop a project that is an extension in OO so that it could display a mutitype chart we have drawn in Excel. Essentially, we have a combination chart consists of a candle stick chart and a line chart appearing together. OO could