Failure while unmarshalling message: Failed to transform MFL content

hi ,
I am performing Flat to XML message transformation using OSB.
I have made a MFL using format builder and imported that MFL into my proxy service (Request Message type).
now when i am trying to run my proxy service.its Showing error "Failure while unmarshalling message: Failed to transform MFL content from binary to XML".
I have tested my MFL Using format tester and it is giving desired transformed output(FLAT to XML).
Please let me know if anybody knows the possible cause.
Thanks in advance.

http://biemond.blogspot.com/2008/12/flat-file-to-xml-with-oracle-service.html
OSB: issue with MFLTransform: Error transforming CSV file to XML
http://kr.forums.oracle.com/forums/thread.jspa?threadID=867859
Regards,
Anuj

Similar Messages

  • Node failed to join the cluster because it ould not send and receive failure detection network messages

    One of my customers has a Windows Server 2008 R2 cluster for an Exchange 2010 Mailbox Database Availability Group.  Lately, they've been having problems with one of their nodes (the one node that is on a different subnet in a different datacenter) where
    their Exchange databases aren't replicating.  While looking into this issue it seems that the problem is the Network Manager isn't started because the cluster service is failing.  Since the issue seems to be with the cluster service, and not Exchange,
    I'm asking here. 
    When the cluster service starts, it appears to start working, but within a few minutes the following is logged in the system event log.
    FailoverClustering
    1572
    Critical
    Cluster Virtual Adapter
    Node 'nodename' failed to join the cluster because it could not send and receive failure detection network messages with other cluster nodes. ...
    It seems that the problem is with the 169.254 address on the cluster virtual adapter.  An entry in the cluster.log file says: Aborting connection because NetFT route to node nodename on virtual IP 169.254.1.44:~3343~ has failed to come up. 
    In my experience, you never have to mess with the cluster virtual adapter.  I'm not sure what happened here, but I doubt it has been modified.  I need the cluster to communicate with its other nodes on our routed 10. network.  I've never experienced
    this before and found little in my searches on the subject.  Any idea how I can fix this?
    Thanks,
    Joe
    Joseph M. Durnal MCM: Exchange 2010 MCITP: Enterprise Messaging Administrator, Exchange 2010 MCITP: Enterprise Messaging Administrator, MCITP: Enterprise Administrator

    Hi,
    I suspected an issue with communication on UDP port 3343. Please confirm the set rules for port 3343 on all the nodes in firewall and enabled all connections for all the profiles
    in firewall on all the nodes are opened, or confirm the connectivity of all the node.
    Use ipconfig /flushdns to update all the node DNS register, then confirm the DNS in your DNS server entry is correct.
    The similar issue article:
    Exchange 2010 DAG - NetworkManager has not yet been initialized
    https://blogs.technet.com/b/dblanch/archive/2012/03/05/exchange-2010-dag-networkmanager-has-not-yet-been-initialized.aspx?Redirected=true
    Hope this helps.
    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.

  • After a power failure while iPhoto was running, I get the message "Your photo library is either in use by another application or has become unreadable"  and iPhoto will not open????

    After a power failure while iPhoto was running, I get the message "Your photo library is either in use by another application or has become unreadable"  and iPhoto will not open???? held down the option and the command and tried to run what was ticked off and it just sits there with a spinning wheel and does nothing, can I throw the app away and download a new one? or will it still not open?

    , can I throw the app away and download a new one? or will it still not open?
    You could, but the error message is indicating that your iPhoto library needs repairing.
    Check, if iPhoto will run, if you launch it on a new library. Hold down the alt/option key, while you launch iPhoto. Select to create a new library from the panel that will show. Can you create a new library? If yes, try again to fix the library. Which options have you tried from the Library First Aid panel, when you launched iPhoto with the option and command key held down?
    If you have not tried "Rebuild"; do that next. But be sure to make a backup of your iPhoto library, before you try this.

  • Using Document form varable results in failed unmarshalling message java.io.eofexception

    Hi,
      I'm on LiveCycle ES 8.2. For PDF submit forms from workspace, I assigned the servername for submit as URL:
    http://adobe1234:8080/workspace-server/submit.
    We are using Document Form variable for this process. The reason is the forms will be digitally signed at each stage and we dont want to loose their signatures if forms go next stage.
    This works perfect when I submit the form.
    Now, we will be moving all the existing instances to new server and I want this URL to be server independent.
    I take off this URL and kept it blank and try to submit from workspace. Nothing happens if I click submit and the form stays at the same place.
    I see the following error in the log file:
    2012-03-29 15:07:17,541 ERROR [org.jgroups.protocols.UDP] failed unmarshalling message
    java.io.EOFException
              at java.io.DataInputStream.readShort(Unknown Source)
              at org.jgroups.Message.readFrom(Message.java:630)
              at org.jgroups.protocols.TP.bufferToMessage(TP.java:973)
              at org.jgroups.protocols.TP.handleIncomingPacket(TP.java:829)
              at org.jgroups.protocols.TP.access$400(TP.java:45)
              at org.jgroups.protocols.TP$IncomingPacketHandler.run(TP.java:1296)
              at java.lang.Thread.run(Unknown Source)
    I have to avoid using this URL in the form as I will be moving my system to new domain & DNS and for any existing process instances, if they try to submit the form, that will error out as the URL is pointing to another server.
    Your help is highly appreciated.
    Thanks,
    kc

    I don't think I read your first post thoroughly. I see now you are setting the URL to prevent the form from appearing altered. I don't use digital signatures, but can see the potential problem. My first thought was to put JavaScript in the form to set the URL, but that would likely cause the same problem. I probably can't be of much help with no experience using the digital signatures. Our forms are considered 'Signed' if a logged in user clicks approve. Have you deleted the Form Bridge and readded? There may be differences with the one in ES2.
    I think you are also saying you can't set the URL server side before rendering the form because processes will launch under one domain then get changed later.
    If you were able to use JavaScript to determine which URL to submit to, you could put that code in the Form Bridge code and I would think that would submit. The form is not being altered by the code. This is assuming the code snippet I copied out of the form bridge is really what is called.
    /** Invoke the standard Submit action */
    function submitAction(doc, url, type) {
        if ( BRIDGE_SUBMIT_URL  != null ) url  = BRIDGE_SUBMIT_URL;
        if ( BRIDGE_SUBMIT_TYPE != null ) type = BRIDGE_SUBMIT_TYPE;
        if ( type == null ) type = "PDF";
        if (url != null) {
            setFocus(null);  // force current field focus out in 8.1 + readers (null op in previous versions)
    //      doc.submitForm({cURL: url, bEmpty: true, cSubmitAs: type, cCharset: "utf-8"});   
            doc.submitForm({cURL: url, cSubmitAs: type});   

  • Fail error when opening cd and dvd: 'director player error: internal error: unexpected failure while compositing bitmap 5 of PLAYER-CAST 2'. How do I fix this?

    I have a new laptop acer aspire e17, running windows 8.1. I have downloaded flash, shockwave and java. Everytime i try to run an interactive cd i use for study, the error message in the title comes up.
    'director player error: internal error: unexpected failure while compositing bitmap 5 of PLAYER-CAST 2'
    I have checked that all the browsers on my computer support shockwave (the cartoon is playing on chrome, mozilla and IE).
    The interactive cd and dvds work on other laptop, not working on this one.
    How can I fix this?
    Thanks.

    It will now play audio cds and dvds. The computer asks me what to do with them first. The problem is still the cd i use for study. Its is an interactive cd - it is its own application - clicking on images and animations to teach vowel sounds, sentences etc.
    The disc works on my other laptop, which is running in windows 7. All discs are recognised by my windows 7 and 8.1 dvd/cd player/writer, but when the title page for the interactive cd pops up on windows 8.1, the director error message pops up and the homepage shuts down with the message.
    I feel like Im sure there is a package or a patch I can download to fix this issue, I just need to know what. Please help.

  • I have suddenly started getting "A Bluetooth Serial Failure Has Occurred" message suggesting the computer failed to open an RFCOMM serial channel: what do I do?

    I have suddenly started getting "A Bluetooth Serial Failure Has Occurred" message suggesting the computer failed to open an RFCOMM serial channel: what do I do? This "opens" multiple times: three or four 'tiles.' It seems like the computer is looking for something, but can't find it. I'm not sure why this would start all of a sudden, but it concerns me. What should I do or what should I look for? Are there settings that need to be changed?

    I have suddenly started getting "A Bluetooth Serial Failure Has Occurred" message suggesting the computer failed to open an RFCOMM serial channel: what do I do? This "opens" multiple times: three or four 'tiles.' It seems like the computer is looking for something, but can't find it. I'm not sure why this would start all of a sudden, but it concerns me. What should I do or what should I look for? Are there settings that need to be changed?

  • BEA-381511 Unexpected failure while processing an incoming message.

    Hi ,
    <BEA-381511> <Unexpected failure while processing an incoming message. - "This may have happened due mis-configuration of the service".
    On OSB log, We are facing the above error in a clustered environment. we are using 2 managed servers and one server is right now up and running without any problem. But when we bring up the second server, the messages are not processed and we are receiving the above issue. If it is misconfiguration problem, can you please let me know the issue exactly or any possible solution to fix this issue.
    Thank you.
    Edited by: 856907 on May 28, 2011 7:46 AM

    It will now play audio cds and dvds. The computer asks me what to do with them first. The problem is still the cd i use for study. Its is an interactive cd - it is its own application - clicking on images and animations to teach vowel sounds, sentences etc.
    The disc works on my other laptop, which is running in windows 7. All discs are recognised by my windows 7 and 8.1 dvd/cd player/writer, but when the title page for the interactive cd pops up on windows 8.1, the director error message pops up and the homepage shuts down with the message.
    I feel like Im sure there is a package or a patch I can download to fix this issue, I just need to know what. Please help.

  • Error while using Message transform Bean

    Hi All,
    I am using message transform bean in the receiver channel. The structure I have used is as follows.
    Transform.Class    com.sap.aii.messaging.adapter.Conversion
    Transform.ContentType    text/xml;charset=utf-8
    xml.conversionType   SimplePlain2XML
    xml.documentName      MT_DataExtract
    xml.documentNamespace    http://ce.corp.com/xi/ACA/HR_INT_XXX/EmployerReporting
    xml.endSeperator   'nl'
    xml.fieldNames     pernr,l_name,f_name,m_name,perid,p_subarea,e_group,e_subgroup,status,c_code,pa_text,str_add,h_city,h_state,h_zcode,z1_org,z2_org,rep_hours
    xml.fieldSeperator   ,
    xml.singleRecordType      Employee_Details
    XML structure would be as
    <Employee_Details> 
    <pernr></pernr>
    - <l_name></l_name>  <f_name></f_name>
    <m_name />
    <perid></perid>
    <p_subarea></p_subarea>
    <e_group></e_group>
    <e_subgrp></e_subgrp>
    <status></status>
    <c_code></c_code>
    <pa_text></pa_text>
    <str_add></str_add>
    <h_city></h_city>
    <h_state></h_state>
    <h_zcode></h_zcode>
    <z1_org></z1_org>
    <z2_org></z2_org>
    <rep_hours></rep_hours>
    </Employee_Details>
    I am getting error as Delivering the message to the application using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.af.lib.util.configuration.ConfigurationExceptionSet: The following configuration errors were detected: - Either recordTypes or singleRecordType needs to be set .
    Please help me to resolve this error.
    Thanks,
    Shankul

    It's not just that parameter, Please change your configuration as explained in the blog i shared.
    There is a example which has expected structure and the conversion parameters.
    Your target xml should be like below.
    The XML structure of the source file should follow the same structure as the result of the SimplePlain2XML conversion.
    <resultset>
    <row>
    <column-name1>ABC</column-name1>
    <column-name2>12345</column-name2>
    <column-name3>Text1</column-name3>
    </row>
    <row>
    <column-name1>XYZ</column-name1>
    <column-name2>67890</column-name2>
    <column-name3>Text2 Text3</column-name3>
    </row>
    </resultset>
    Examples of Content Conversion Using MessageTransformBean (SAP Library - SAP Exchange Infrastructure)

  • Jdev11.1.1.6.0-Error while translating message to native format-FileWrite

    Im reading a file from a service and transforming the data and writing them into a file through the external reference using a Mediator component.
    I have no problem while building or deploying.
    But while executing I get an error as follows:
    Non Recoverable System Fault :
    Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'WriteAppointmentRequestInLogFile' failed due to: Translation Error. Translation Error. Error while translating message to native format. Please make sure that the payload for the outbound interaction conforms to the schema. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    My input is a File Adpater Read operation and output is File Adapter Write operation.
    The schemas are as below:
    Input schema:
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
    xmlns:tns="http://stmatthews.hospital.com/ReadFileDoctorsAppointmentRequest"
    targetNamespace="http://stmatthews.hospital.com/ReadFileDoctorsAppointmentRequest"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified"
    nxsd:version="NXSD"
    nxsd:stream="chars"
    nxsd:encoding="US-ASCII"
    <xsd:element name="doctorAppointmentRequestRoot"><xsd:complexType>
    <xsd:sequence>
    <xsd:element name="doctorAppointmentRequest" minOccurs="1" maxOccurs="unbounded">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="C1" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C2" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C3" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C4" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C5" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C6" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C7" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C8" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C9" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C10" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C11" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C12" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C13" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C14" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C15" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}" nxsd:quotedBy="&quot;" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    Output Schema:
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
    xmlns:tns="http://stmatthews.hospital.com/LogDoctorAppointmentRequests"
    targetNamespace="http://stmatthews.hospital.com/LogDoctorAppointmentRequests"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified"
    nxsd:version="NXSD"
    nxsd:stream="chars"
    nxsd:encoding="US-ASCII"
    <xsd:element name="AppointmentRequestsLog"><xsd:complexType>
    <xsd:sequence>
    <xsd:element name="AppointmentRequest" minOccurs="1" maxOccurs="unbounded">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="C1" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C2" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C3" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C4" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C5" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C6" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C7" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C8" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;" />
    <xsd:element name="C9" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}" nxsd:quotedBy="&quot;" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    <!--NXSDWIZ:C:\SOAHandbook\DoctorsAppointmentRequestProcessor\DoctorAppointmentRequestProcessor\samples\Logged_DoctorsAppointmentRequestFile.txt:-->
    <!--USE-HEADER:false:-->
    Transformation XSL used in Mediator:
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsl:stylesheet version="1.0"
    xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/file/DoctorsAppointmentRequestProcessor/DoctorAppointmentRequestProcessor/ReadFileDoctorsAppointmentRequest"
    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:pc="http://xmlns.oracle.com/pcbpel/"
    xmlns:bpm="http://xmlns.oracle.com/bpmn20/extensions"
    xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:socket="http://www.oracle.com/XSL/Transform/java/oracle.tip.adapter.socket.ProtocolTranslator"
    xmlns:mhdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.mediator.service.common.functions.MediatorExtnFunction"
    xmlns:oraext="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
    xmlns:imp1="http://stmatthews.hospital.com/ReadFileDoctorsAppointmentRequest"
    xmlns:dvm="http://www.oracle.com/XSL/Transform/java/oracle.tip.dvm.LookupValue"
    xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
    xmlns:med="http://schemas.oracle.com/mediator/xpath"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
    xmlns:ns1="http://stmatthews.hospital.com/LogDoctorAppointmentRequests"
    xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
    xmlns:xdk="http://schemas.oracle.com/bpel/extension/xpath/function/xdk"
    xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:bpmn="http://schemas.oracle.com/bpm/xpath"
    xmlns:ns0="http://xmlns.oracle.com/pcbpel/adapter/file/DoctorsAppointmentRequestProcessor/DoctorAppointmentRequestProcessor/LogDoctorAppointmentRequests"
    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
    exclude-result-prefixes="xsi xsl tns pc plt wsdl imp1 jca xsd ns1 ns0 xp20 bpws bpel bpm ora socket mhdr oraext dvm hwf med ids xdk xref bpmn ldap">
    <xsl:template match="/">
    <ns1:AppointmentRequestsLog>
    <ns1:AppointmentRequest>
    <ns1:C1>
    <xsl:value-of select="xp20:current-date()"/>
    </ns1:C1>
    <ns1:C2>
    <xsl:value-of select='substring-before("doctor1234_20120926_helloworld","_")'/>
    </ns1:C2>
    <ns1:C4>
    <xsl:value-of select="concat(/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C2,/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C3)"/>
    </ns1:C4>
    <ns1:C5>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C4"/>
    </ns1:C5>
    <ns1:C6>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C5"/>
    </ns1:C6>
    <ns1:C7>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C12"/>
    </ns1:C7>
    <ns1:C8>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C14"/>
    </ns1:C8>
    <ns1:C9>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C15"/>
    </ns1:C9>
    </ns1:AppointmentRequest>
    </ns1:AppointmentRequestsLog>
    </xsl:template>
    </xsl:stylesheet>
    Just in case if you are aware, Im trying the example in Lucas Jellema's book Chapter 7 and Im getting the error there in the first example project.
    I have seen few very old threads on this problem in the forum but none of them had any answers so opening up a new one.
    Thanks.

    Your transformation with for-each look is incorrect.
    This is what you have right now:
    <ns1:AppointmentRequestsLog>
    <xsl:for-each select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest">
    <ns1:AppointmentRequest>
    <ns1:C1>
    <xsl:value-of select="xp20:current-date()"/>
    </ns1:C1>
    <ns1:C2>
    <xsl:value-of select='substring-before("doctor1234_20120926_helloworld","_")'/>
    </ns1:C2>
    <ns1:C3>
    <xsl:value-of select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest/imp1:C2"/>
    </ns1:C3>This is the correct way to write for-each within XSLT:
    <ns1:AppointmentRequestsLog>
    <xsl:for-each select="/imp1:doctorAppointmentRequestRoot/imp1:doctorAppointmentRequest">
    <ns1:AppointmentRequest>
    <ns1:C1>
    <xsl:value-of select="xp20:current-date()"/>
    </ns1:C1>
    <ns1:C2>
    <xsl:value-of select='substring-before("doctor1234_20120926_helloworld","_")'/>
    </ns1:C2>
    <ns1:C3>
    <xsl:value-of select="imp1:C2"/>
    </ns1:C3>Also, check the flow trace in the EM console for the instance which errored out and paste here the data which is being sent to the FileWrite Adapter. Also, you need to ensure that any elements which are defined as xs:int should not have empty string as values. For example in your write schema C3 has int. So you should map C3 in XSLT like following:
    <xsl:choose>
    <xsl:when test="imp1:C2 and string-length(imp1:C2) > 0">
    <ns1:C3>
    <xsl:value-of select="imp1:C2"/>
    </ns1:C3>
    </xsl:when>
    <xsl:otherwise>
    <ns1:C3>0</ns1:C3>
    </xsl:otherwise>
    </xsl:choose>

  • SharePoint 2013 Configuration Wizard failure while joining a WFE to the existing server farm.

    Dears,
    I've been troubleshooting an issue while trying to join a new WFE server to an existing SharePoint 2013 farm.
    Issue Description: 
    When we run the wizard it runs for almost 30 to 45 minutes on the step 3 itself and eventually fails at the end with an error message "Failed to connect to the configuration Database..... Value doesn't fall within the expected range"
    First I thought this is a connectivity issue with the config DB and monitored the complete operation very closely after checking the permissions and SQL server connection and happened to see that the server was able to connect to the farm and all the web
    applications and the related solutions were pushed to the server and apparently the failure of the Wizard at below point: Followed by the error, all web sites and solutions were retracted and a complete roll back happens. 
    Can someone pls help me here at the earliest as I'm stuck ???
    0
    02/19/2015 11:36:41.60 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology bmt5
    High Creating new application pool 'SecurityTokenServiceApplicationPool'.
    02/19/2015 11:36:41.60 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group IIS_WPG.
    02/19/2015 11:36:41.60 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group WSS_WPG.
    02/19/2015 11:36:41.60 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group PerformanceMonitorUsers.
    02/19/2015 11:36:41.60 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 9sis
    Medium Attempting to give SE_ASSIGNPRIMARYTOKEN_NAME privilege to application pool user Domain\Account
    02/19/2015 11:36:41.60 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 9sit
    Medium Attempting to give SE_INCREASE_QUOTA_NAME privilege to application pool user Domain\Account
    02/19/2015 11:36:41.62 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology fx74
    High An exception occured while committing IIS configuration changes: Value does not fall within the expected range.
    02/19/2015 11:36:43.35 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology bmt5
    High Creating new application pool 'SecurityTokenServiceApplicationPool'.
    02/19/2015 11:36:43.35 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group IIS_WPG.
    02/19/2015 11:36:43.35 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group WSS_WPG.
    02/19/2015 11:36:43.35 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group PerformanceMonitorUsers.
    02/19/2015 11:36:43.35 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 9sis
    Medium Attempting to give SE_ASSIGNPRIMARYTOKEN_NAME privilege to application pool user Domain\Account
    02/19/2015 11:36:43.35 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 9sit
    Medium Attempting to give SE_INCREASE_QUOTA_NAME privilege to application pool user Domain\Account
    02/19/2015 11:36:43.35 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology fx74
    High An exception occured while committing IIS configuration changes: Value does not fall within the expected range.
    02/19/2015 11:36:45.09 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology bmt5
    High Creating new application pool 'SecurityTokenServiceApplicationPool'.
    02/19/2015 11:36:45.09 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group IIS_WPG.
    02/19/2015 11:36:45.10 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group WSS_WPG.
    02/19/2015 11:36:45.10 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group PerformanceMonitorUsers.
    02/19/2015 11:36:45.10 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 9sis
    Medium Attempting to give SE_ASSIGNPRIMARYTOKEN_NAME privilege to application pool user Domain\Account
    02/19/2015 11:36:45.10 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 9sit
    Medium Attempting to give SE_INCREASE_QUOTA_NAME privilege to application pool user Domain\Account
    02/19/2015 11:36:45.10 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology fx74
    High An exception occured while committing IIS configuration changes: Value does not fall within the expected range.
    02/19/2015 11:36:46.82 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology bmt5
    High Creating new application pool 'SecurityTokenServiceApplicationPool'.
    02/19/2015 11:36:46.82 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group IIS_WPG.
    02/19/2015 11:36:46.82 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group WSS_WPG.
    02/19/2015 11:36:46.82 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group PerformanceMonitorUsers.
    02/19/2015 11:36:46.82 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 9sis
    Medium Attempting to give SE_ASSIGNPRIMARYTOKEN_NAME privilege to application pool user Domain\Account
    02/19/2015 11:36:46.82 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 9sit
    Medium Attempting to give SE_INCREASE_QUOTA_NAME privilege to application pool user Domain\Account
    02/19/2015 11:36:46.82 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology fx74
    High An exception occured while committing IIS configuration changes: Value does not fall within the expected range.
    02/19/2015 11:36:48.52 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology bmt5
    High Creating new application pool 'SecurityTokenServiceApplicationPool'.
    02/19/2015 11:36:48.52 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group IIS_WPG.
    02/19/2015 11:36:48.52 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group WSS_WPG.
    02/19/2015 11:36:48.52 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 96ft
    Medium Adding Domain\Account to local group PerformanceMonitorUsers.
    02/19/2015 11:36:48.54 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 9sis
    Medium Attempting to give SE_ASSIGNPRIMARYTOKEN_NAME privilege to application pool user Domain\Account
    02/19/2015 11:36:48.54 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 9sit
    Medium Attempting to give SE_INCREASE_QUOTA_NAME privilege to application pool user Domain\Account
    02/19/2015 11:36:48.54 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology fx74
    High An exception occured while committing IIS configuration changes: Value does not fall within the expected range.
    02/19/2015 11:36:48.54 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology fx75
    Unexpected Reached the retry limit for committing IIS configuration changes, the operation must be rerun.
    02/19/2015 11:36:48.65 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology eru1
    Medium Released mutex 'Global\Microsoft.SharePoint.SPIisProvisioningLock'
    02/19/2015 11:36:48.65 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology aj4j4
    Unexpected Joining Farm failed. The exception is Value does not fall within the expected range. StackTrace is    at Microsoft.Web.Administration.Interop.AppHostWritableAdminManager.CommitChanges()  
      at Microsoft.Web.Administration.Configuration.CommitChanges()     at Microsoft.Web.Administration.ConfigurationManager.CommitChanges()     at Microsoft.Web.Administration.ServerManager.CommitChanges()     at Microsoft.SharePoint.Administration.SPIisServerManager.CommitChanges(ApplyChanges
    applyChanges)     at Microsoft.SharePoint.Administration.SPIisProvisioningAssistant.ProvisionApplicationPool(String name, SecurityIdentifier sid, String password, SPIisApplicationPoolSettings settings)     at Microsoft.SharePoint.Administration.SPIisManager.ProvisionApplicationPool(String
    name, SecurityIdentifier sid, SecureString password, SPIisApplicationPoolSettings settings)     at Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool.ProvisionLocal(SPIisWebServiceApplicationPoolProvisioningOptions options)  
      at Microsoft.SharePoint.Administration.SPIisWebServiceApplication.ProvisionApplicationInstance()     at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceApplication.ProvisionLocal(SPServiceInstance serviceInstance)    
    at Microsoft.SharePoint.Administration.SPIisWebServiceInstance.Provision()     at Microsoft.SharePoint.Administration.SPFarm.Join(Boolean skipRegisterAsDistributedCacheHost)
    02/19/2015 11:36:48.65 psconfigui.exe (0x0FA4)
    0x2D28 SharePoint Foundation
    Topology 88ah
    High Unjoining the farm.
    BR,
    Mukesh

    Hi Pradeep, this wasn't due to any permission issue.. I was trying with the farm account which is a local admin group member as well as being a member of IIS_WPG.. on a continues investigation happened to find that the IIS config file was corrupted and which
    encountered issues in the creation of app pool.. I had to tweak around some settings with the config file by considering the other WFE as a reference.. this actually fixed the issue.. 
    BR,
    Mukesh
    Regards Mukesh

  • Error while Inserting message in JMS

    Version : SOA 11G
    I am getting following error while inserting message in JMS.
    rror Message: {http://schemas.oracle.com/bpel/extension}bindingFault
    Fault ID     default/TestingSOA!2.0*soa_3b8b3493-6062-457c-8213-5dd613c95dd3/TransformData/30014-BpInv0-BpSeq0.3-4
    Fault Time     06-Dec-2010 03:25:10
    Non Recoverable System Fault :
    <bpelFault><faultType>0</faultType><bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'Produce_Message' failed due to: ERRJMS_ERR_CR_QUEUE_PROD. ERRJMS_ERR_CR_QUEUE_PROD. Unable to create Queue producer due to JMSException. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </summary></part><part name="detail"><detail>[JMSExceptions:045103]While trying to find a topic or a queue we could not find the specific JMSServer requested. The linked exception may contain more information about the reason for failure.</detail></part><part name="code"><code>null</code></part></bindingFault></bpelFault>
    Steps followed while creating JMS
    1. Login to weblogic console
    2. Click Services>Messaging>JMS Module
    3. Select SOAJMSModule
    4. Click new, select Queue and press Next
    5. Give JMS Name and JNDI
    5. Pick Subdepolyment as "SOASUBDeployment" from dropdown and select JMS Server as "SOAJMSServer" and click "Finish"

    Steps followed while creating JMS
    +1. Login to weblogic console+
    +2. Click Services>Messaging>JMS Module+
    +3. Select SOAJMSModule+
    +4. Click new, select Queue and press Next+
    +5. Give JMS Name and JNDI+
    +5. Pick Subdepolyment as "SOASUBDeployment" from dropdown and select JMS Server as "SOAJMSServer" and click "Finish"+
    Next u need to create Connection Factory and u need to update or create(if doesnt exist) a new plan.xml
    Follow the below link:
    http://www.packtpub.com/article/installation-configuration-oracle-soa-suite-11g-2

  • LIBTUX_CAT:681: ERROR: Failure to create message queue

    I am getting the following error while starting PeopleSoft Application server for demo data base on Oracle Enterprise Linux 5.5 64 bit.
    Can someone please help me what am I doing wrong here?
    075417.localhost.localdomain!PSANALYTICSRV.4065.3909714272.0: LIBTUX_CAT:262: INFO: Standard main starting
    075418.localhost.localdomain!PSRENSRV.4072.491399232.-2: 11-19-2010: Tuxedo Version 10.3.0.0, 64-bit
    075418.localhost.localdomain!PSRENSRV.4072.491399232.-2: LIBTUX_CAT:681: ERROR: Failure to create message queue
    075418.localhost.localdomain!PSRENSRV.4072.491399232.-2: LIBTUX_CAT:248: ERROR: System init function failed, Uunixerr = : msgget: No such file or directory
    075418.localhost.localdomain!tmboot.4023.3569636960.-2: CMDTUX_CAT:825: ERROR: Process PSRENSRV at localhost.localdomain failed with /T tperrno (TPEOS - operating system error)
    075418.localhost.localdomain!tmboot.4023.3569636960.-2: tmboot: CMDTUX_CAT:827: ERROR: Fatal error encountered; initiating user error handler
    075422.localhost.localdomain!BBL.4020.2558671968.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
    075425.localhost.localdomain!PSADMIN.4014: End boot attempt on domain fdmo91

    Never mind, I changed the kernel.msgmni to 1024, rebooted the server and then it started just fine.

  • If message failed at communication channel, then need to send idoc to R/3

    Hi folks,
    i got a requirment like .....If message failed at communication channel, then need to send idoc to R/3.
    can anybody suggest the possible solution.

    HI
    If you use a catching a MAIL - PI ALERT and based on that alert if u creating an IDOC then it is good if u really supress the alert immediately once the ALERT comes but if u really check and supress the ALERT fine Otherwise a CONTINOUS IDOCs will get created at SAP system.
    Also there might be some natural generic reasons for communication channel fails
    a)  somtimes if the target FTP is down
    b)  if there is some issue with FILE ENOUGH
    c)  If File adpater is placing same file already exists or with already Opened by some target application
    d)  Dynamica file naming issue. (technical issue)
    WHy cant u do scenario in the below steps without keeping BPM, CATCHING ALERTS which doesnt give exact QUARANTEE
    Do one thing make a technical design in such a way into 1 flow or 2 flows in worst case
    In INTERFACE MAPPING-->
    a) Insert your current Normal Graphical mapping
    b) Javamapping:- This code will take the first mapping output as Input through Stream Transformation and create a same FILE through JAVA FTP Comments at specified Cleint Location. I recommend in order to avoid direct interraction of writing a file at client FTP better always write at your Local PI NFS Application outbound directory which doesnt require host name and user and pwd. Even if it requires you can do a RFC lookup and maintain a host, Port, User ID, pwd, Directory, FIle naming pattern in that table or else simply DO VALUE MAPPIING and pass it through XML INPUT from FIrst mapping as additional fields
    c) WITH IN THE SAME JAVAMAPPING: -
       If it successfully writes a file - wRite a TRACE log ("FILE NAME+ Sucecssfully written+ File Bytes")
       Then create an simple small XML OUTPUT and PASS that JAVA MAPPING OUTPUT To 3rd Grahical Mapping as Input it might be less than 5KB.
    Note: - Remember that this output XML should be ina Multmapping SPLIT MERGET FORMAT with 1 FIELD or required INFO
    as KEY FIELD INFO using DOM FACTORY
    d) GRAPHICAL MAPPING: -
      SOURCE IS JAVAMAPPING OUTPUT and TARGET HAS 2 messages
                           Message 1) SAME INPUT SMALL XML OUTPUT COMING FROM JAVA MAPPING OUTPUT
                           Message 2) IDOC TY{E STRUCTURE
    Keep a Condition based on KEY VALUE Coming from source field execute either 1 Message1 or Message 2
    In this way you can complete in a single Flow. 
    Later you can deifnee a simple flow to PICK and DROP from SOURCE file  Writing through javamapping to client location Or else
    WRITE A small OS SCRIPT and CALL in Receiver FILE COMMUNICATION at OS Command so that while writing a LOG file it will move the file from Source FTP to CLient FTP location.
    Regards
    Amar Srinivas Eli

  • Why routing failures create two messages in BizTalk admin

    hi,
    can some one help me to understand why routing failures create two messages in BizTalk admin, one with suspended(resumable) and one with suspended(non resumable)?
    Regards, Amit More

    One of the non-resumable Message contains the message context properties which is passe when message is passed for the first time . It varies for with each message retry .
    While the second message contains your actual data i.e incoming message or the message which has failed to route to the destination system .You can resume it when ever the down stream system is available .
    Below links can guide you
    Scenarios Leading to Suspended (Non-Resumable) Messages
    Types of Message Failures
    Thanks
    Abhishek

  • Send Message Fails

    When I try to send a message, a dialog appears that says "Status: Assembling message . . .", then after a few seconds, a Send Message Error dialog appears that says "Sending of message failed. Please verify that your Mail & Newsgroups account settings are correct and try again."
    1. The "Status: Assembling message..." dialog never used to appear and the emails went out fine.
    2. I have checked the account server settings and they ARE correct. I tested them and the server likes them. Error message fails to specify exact cause of failure, so it is of no help.
    3. I removed my user account and recreated it. Same problem, except now my archives and inbox are empty. (Fortunately, I copied my Profile files to a backup location, so I suspect I may not have lost everything if I can figure out how to restore the data files and get TB to recognize the restored files.)
    4. I uninstalled the program and reinstalled it. Same problem, didn't fix it.
    5. I created a new account on a different server. Access codes test out properly. Same problem, doesn't send. My hairstyle looks terrible now after my pulling numerous patches of it out.
    I have done everything except give up and go to another email program and try to import my data or just start over. Solution is probably simple, but so deep in the hidden guts of the program that I can't find it.
    Where's the problem, and how do I correct it??

    To diagnose your problems with Thunderbird, try he following:
    *Restart the operating system in '''[http://en.wikipedia.org/wiki/Safe_mode safe mode with Networking]'''. This loads only the very basics needed to start your computer while enabling an Internet connection. Click on your operating system for instructions on how to start in safe mode: [http://windows.microsoft.com/en-us/windows-8/windows-startup-settings-including-safe-mode Windows 8], [http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-7 Windows 7], [http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-vista Windows Vista], [http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/boot_failsafe.mspx?mfr=true" Windows XP], [http://support.apple.com/kb/ht1564 OSX]
    ; If safe mode for the operating system fixes the issue, there's other software in your computer that's causing problems. Possibilities include but not limited to: AV scanning, virus/malware, background downloads such as program updates.
    In this case I would put money on it being the anti virus. The most troublesome at the moment is Avast, but they all block outgoing connections from Thunderbird at different times and disabling email scanning, or SPAM filters, or enabling access in the firewall component or a combination of all of the above can be required.
    Safe mode identifies the probable source if things would as they should. It may also only be the account setup process the A/V messes up as well. Thunderbird makes many connection attempts when scanning for settings when they are not in the database (Or connection to the database is blocked by the Anti virus program) and the anti virus just does not faithfully report the results so you get silly error messages.

Maybe you are looking for

  • Time Capsule won't back up, privilege message error HELP!

    Time Capsule used to work, now it doesn't. 1) I go to System Preferences > Time Machine 2) I click on Change Disk... 3) Window drops down and I select my Time Capsule, then click on Use for Backup 4) Window pops up saying "Enter your user name and pa

  • Interactive Report. Cell highlight.

    Hello, I'm using highlight functionality in Interactive Report actively and appreciate for this feature. Question: is it possible to define ONE highlight rule to ALL cells in every column. for example I need that any cell in the report which contains

  • New account assignment category for GR Non Valuated

    Hi Friends, I want to make a New account assignment category for GR Non Valuated. I created the same in SPROMMPurchasingAccount assignmentMaintain account assignment categories. I selected followig: AA Changeable at IR - X Consumption account -V Acct

  • Deleting tank dips in O4_tiger.

    How do I delete a Tank dip entry  in Transaction 04_TIGER. I created tank dip but when I go to change tank dip option and bring up the selected dip that need deleting, I tick the DD box , select delete line option and save. Tank dip disapperes but wh

  • Issue when creating production order

    Hi I encountered below error message when creating the production order: error or warning occurrred during master data transfer,I had checked BOM and operation,all is ok (validty date),what's wrong?