JMS-137: Payload factory must be specified for destinations with ADT payloa

How do I create Payload factory in Java?
Is there any reference guide?
Thanks,
Chintan

What is the scenario?

Similar Messages

  • How do I do this to use OVerdrive media on deviceThe Apple device must be formatted for use with Microsoft Windows.  The iTunes setting 'Manually manage music-' must be enabled for the device before you can complete the transfer.

    I cannot make these directions work
    I downloaded media on Overdrive MEdia on my PC
    I have the overdrive media ap on my I pod touch 4g
    this media is suppossed to be compatible w/I pd touch
    Notes on Transferring OverDrive MP3 Audiobooks…
    Most MP3 capable devices should play OverDrive MP3 Audiobooks.
    If you intend to transfer OverDrive MP3 Audiobooks to an Apple® device, note the following…
    iTunes® v9.0.2 (or newer) is required.
    The Apple device must be formatted for use with Microsoft® Windows®.
    The iTunes setting 'Manually manage music…' must be enabled for the device before you can complete the transfer. Adjust this setting in iTunes as follows…
    Connect the iPod® to your computer.
    If it does not launch automatically, open iTunes v9.0.2 (or newer).
    In iTunes, locate the device in the left vertical navigation panel (under heading 'DEVICES'), and click the device.
    The 'Summary' screen is displayed. 
    Place a checkmark next to 'Manually manage music…'.
    Click the 'Apply' button.
    The iTunes 'Summary' screen refreshes, and the changes are saved.
    If desired, close iTunes.
    Note that if an Apple device is connected to your computer, you can choose to simultaneously transfer a title to the iTunes Library and the Apple device. If you wish to only transfer a title to the iTunes Library, you must first disconnect the Apple device

    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities
    Also you said " I want to add them to my iCloud, and also back to my computer.   " Note that unless  subscribe to iTunes match, only iTunes purchases are stored in iCloud.
    Also,
    You can redownload most iTunes purchases by:
      Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Payload Factory for ADT

    oracle.jms.AQjmsException: JMS-137: Payload factory must be specified for destinations with ADT payloads
    I get this exception when i try to create the receiver with :
    session.createReceiver(inQueue)
    Where can i get the Payload Factory for ADT?
    thanks

    What is the scenario?

  • Setting a Payload Factory

    Hi All,
    I am currently looking integrating a pretty standard Message Driven Bean with an OJMS(AQ) Queue that is using a custom ADT payload type.
    Everything was working relatively well following various manuals and blogs until it came to deploying the Bean on an app server where the deployer started complaining that the JMS-137: Payload factory must be specified for destinations with ADT payloads
    As close as I can tell there is no documentation on how to set the payload factory when using a MDB (I have a working non-mdb implementation that interacts reasonably well with the queue but is not scallable). So how do you set a Payload Factory (can you when using a MDB?)
    The system is using Oracle 10g R2 DB and a Oracle 10.1.3.1.0 Application Server.

    Hello,
    From what I have found so far MDBs running in OC4J only have support for standard JMS Message types and this is the reason for the error.
    Standalone JMS clients do support ADTs.
    Struggling to find this in the documentation but it probably is somewhere.
    Thanks
    Peter

  • ORA-24333: zero iteration count  Cause: An iteration count of zero was specified for the statement Action: Specify the number of times this statement must be executed

    Get the following error from Oracle 
    ORA-24333: zero iteration count
    Cause: An iteration count of zero was specified for the statement
    Action: Specify the number of times this statement must be executed
    Any suggestions on whether is this a Oracle bug or if not what should be set to avoid this failure.

    Hello get this from executing the following.
    Occurs intermitently.
    select MAX(LENGTH(lxVal)) from lxString_74501fb6 where lxType=910231053
    Find the MaxLenght(LxVal) returned is null for this query.
    Did google it but says the iterator not initialized. But not the case here
    Thanks

  • 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

  • Exception caught by adapter framework: No configuration / default adapter specified for EDISeparator

    Hello Experts,
    I am configuring the scenario ( AS2 to EDISeparator and EDISeparator to IDOC ).
    Can you please help me with the error below which is from the either the EDISeparator Receiver channel or the EDISeparator Sender channle.
    09.06.2014 17:52:18.709
    Information
    Message is encrypted with 1.3.14.3.2.7 algorithm
    09.06.2014 17:52:18.778
    Information
    AS2 Message is signed with SHA1 (1.3.14.3.2.26) algorithm
    09.06.2014 17:52:18.779
    Information
    AS2 Message message signature is validated, signer ID is X509CertSelector: [ Serial Number: 1624063516 Issuer: CN=Mendelson AS2 TEST,OU=Integration,O=Mendelson,L=Berlin,ST=Unknown,C=GE matchAllSubjectAltNames flag: true ]
    09.06.2014 17:52:18.784
    Information
    AS2 document size is 350 Bytes
    09.06.2014 17:52:18.784
    Information
    Payload charset converted from ISO-8859-15 to ISO-8859-15
    09.06.2014 17:52:18.785
    Information
    B2B EdifactConverterModule : EDI format detected as EANCOM
    09.06.2014 17:52:18.785
    Information
    B2B EdifactConverterModule: Message will be read as ISO-8859-1.
    09.06.2014 17:52:18.785
    Information
    MP: processing local module localejbs/EdifactConverterModule
    09.06.2014 17:52:18.785
    Information
    0}: The module-paramteter "eancom.subversion.prefix" is not set. Using default value "false"
    09.06.2014 17:52:18.786
    Information
    0}: The module-paramteter "eancom..audit" is not set. Using default value "false"
    09.06.2014 17:52:18.791
    Information
    MP: processing local module localejbs/CallSapAdapter
    09.06.2014 17:52:18.791
    Information
    Application attempting to send an XI message asynchronously using connection AS2_http://sap.com/xi/XI/AS2
    09.06.2014 17:52:18.792
    Information
    Trying to put the message into the send queue
    09.06.2014 17:52:18.831
    Information
    Message successfully put into the queue
    09.06.2014 17:52:18.831
    Information
    The application sent the message asynchronously using connection AS2_http://sap.com/xi/XI/AS2. Returning to application
    09.06.2014 17:52:18.836
    Information
    MIC (DeJYUIusqQj6aaYRASdHhAo+4J0=) is calculated using SHA1 algorithm.
    09.06.2014 17:52:18.838
    Information
    The message was successfully retrieved from the send queue
    09.06.2014 17:52:18.843
    Information
    Message status set to DLNG
    09.06.2014 17:52:18.845
    Information
    MDN is succcessfully signed with SHA1 (1.3.14.3.2.26) algorithm
    09.06.2014 17:52:18.859
    Information
    Trying to put the message into the send queue
    09.06.2014 17:52:18.912
    Information
    Message successfully put into the queue
    09.06.2014 17:52:18.913
    Information
    The message was successfully retrieved from the send queue
    09.06.2014 17:52:18.918
    Information
    Message status set to DLNG
    09.06.2014 17:52:18.961
    Information
    Trying to put the message into the send queue
    09.06.2014 17:52:19.001
    Information
    Message successfully put into the queue
    09.06.2014 17:52:19.001
    Information
    The message was successfully retrieved from the send queue
    09.06.2014 17:52:19.006
    Error
    MP: exception caught with message No configuration / default adapter specified for EDISeparator
    09.06.2014 17:52:19.006
    Information
    Delivering to channel: B2BSE00002_O2C_ORDERS_VANS_PO_WRITE_EDISeparator
    09.06.2014 17:52:19.006
    Information
    Message status set to DLNG
    09.06.2014 17:52:19.009
    Error
    Exception caught by adapter framework: No configuration / default adapter specified for EDISeparator
    09.06.2014 17:52:19.010
    Error
    Transmitting the message to endpoint <local> using connection AS2_http://sap.com/xi/XI/AS2 failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.lang.Exception: No configuration / default adapter specified for EDISeparator
    09.06.2014 17:52:19.015
    Information
    The asynchronous message was successfully scheduled to be delivered at Mon Jun 09 17:57:19 CEST 2014
    09.06.2014 17:52:19.015
    Information
    Message status set to WAIT

    Hello Ruchir Sinha and Dimitri Sannen,
    I think I have progressed a bit. Just unsure of the usage of the Module configuration .I now get a new error (see below) and the updated config details are :
    Sender Interface :
    Receiver Interface :
    Sender AS2 config :
    Receiver EDISeparator config :
    Sender EDISeparator config :
    Receiver IDOC config :
    IDoc details configured but not added in this document
    16.06.2014 11:52:35.414
    Information
    The message was successfully retrieved from the send queue
    16.06.2014 11:52:35.420
    Information
    Delivering to channel: B2BSE00002_O2C_ORDERS_VANS_PO_WRITE_EDISeparator
    16.06.2014 11:52:35.420
    Information
    MP: processing local module localejbs/ModuleProcessorExitBean
    16.06.2014 11:52:35.420
    Information
    Message entered AF MP exit bean and will now be passed to the JCA adapter
    16.06.2014 11:52:35.420
    Information
    Message status set to DLNG
    16.06.2014 11:52:35.433
    Information
    UNA segment UNA found
    16.06.2014 11:52:35.444
    Information
    Parsed UNB segment 333333333/014 to 111111111/014
    16.06.2014 11:52:35.445
    Information
    Parsed UNH segment ORDERS D96A
    16.06.2014 11:52:35.514
    Information
    Searching sender channel for Eancom message part message with Message type ORDERS, Message version number D, Message release number 96A, Interchange sender identification 333333333, Interchange sender identification code qualifier 014, Interchange recipient identification 111111111, Interchange recipient identification code qualifier 014, Message Subversion EAN008, Message Agency UN
    16.06.2014 11:52:35.579
    Information
    Sender channel (Channel) keys: ObjectId=7abf551ddbb638268f91af80ec1c04c8 values: ToPartySchema= Attributes=(Attributes:Channel:EDISeparator:INBOUND) values: edisep.advanced=false snd.interchangeSenderId=.* snd.tradacommessagetype=.* snd.xpath= snd.xpath.value= snd.filterCondition=equal snd.edifactMessageReleaseNumTxt= snd.tradacomMessageTypeUsingFreeText=false snd.eancomMessageReleaseUsingFreeText=false snd.eancomMessageVersionFreeText= snd.odetteMessageType=.* snd.edifactMessageVersion=.* snd.xml.splitPath=null snd.eancomMessageVersion=.* snd.odetteMessageVersion=.* snd.edifactMessageRelNumUsingFreeText=false snd.otherVersionReleaseIndustryIdentifierCodeEnabled=false adapterStatus=active snd.vdaMessageType=.* snd.eancomCONTRLMessageRelease=3 snd.odetteMessageTypeTxt= snd.tradacommessageversion=.* snd.edifactMessageVerNumUsingFreeText=false snd.edifactMessageTypeUsingFreeText=false snd.xpathUsingFreeText=false snd.interchangeSenderIdCode=.* snd.otherVersionReleaseIndustryIdentifierCode=.* snd.odetteMessageTypeUsingFreeText=false snd.tradacomreccode=.* snd.edifactMessageVersionFreeText= snd.edifactInterchangeRecipientIdentification=.* eoio.sequenceId= snd.edifactMessageTypeTxt= snd.odetteMessageVerNumUsingFreeText=false snd.eancomMessageVerNumUsingFreeText=false snd.interchangeReceiverId=.* snd.eancomMessageRelease=.* snd.tradacomsendername=.* snd.tradacomMessageTypeTxt= snd.vdaLieferantenNummer=.* snd.interchangeReceiverIdCode=.* snd.edifactInterchangeSenderIdentificationCode=.* snd.odetteMessageVersionFreeText= snd.versionReleaseIndustryIdentifierCode=.* snd.edifactInterchangeSenderIdentification=.* snd.edifactMessageType=.* snd.eancomMessageType=.* snd.xpathTxt= snd.vdaMessageTypeTxt= deliverySemantics=eo snd.eancomMessageReleaseTxt= snd.plainmessagetype=.* snd.xml.split=false snd.edifactMessageRelease=.* snd.vdaMessageTypeUsingFreeText=false snd.tradacomrecname=.* edisep.addParameterParams=TableData: edisep.addParameterParams {} snd.encoding=iso885915 snd.vdaKundenNummer=.* snd.tradacomsendercode=.* snd.edifactCONTRLMessageRelease=3 snd.edifactInterchangeRecipientIdentificationCodeQualifier=.* snd.transactionSetIdentifierCode=.* Service=ASJAVA_DX5 Channel=B2BSE00002_O2C_ORDERS_PO_ECC_READ_EDISeparator EngineType=CA Party= TransProt=XI TransProtVers=1.0.0 FromPartySchema= FromPartyAgency= Direction=I MsgProt=EANCOM MsgProtVers=1.0.0 EngineName= AdapterType=EDISeparator AdapterSWCV=06c536e6fafe11e0bb1cea8f0a4290b1 ToPartyAgency= AdapterNamespace=http://sap.com/xi/XI/EDISeparator found. New message ID is f18894a8-f53b-11e3-a748-00001e96c7e2
    16.06.2014 11:52:35.586
    Error
    MP: exception caught with cause javax.resource.ResourceException: com.sap.aii.adapter.ediseparator.ra.integration.DispatchException: Message cannot be dispatched: Message cannot be dispatched: Error during processing local class: localejbs/GenericConverterModule
    16.06.2014 11:52:35.586
    Error
    Message could not be forwarded to the JCA adapter. Reason: com.sap.aii.adapter.ediseparator.ra.integration.DispatchException: Message cannot be dispatched: Message cannot be dispatched: Error during processing local class: localejbs/GenericConverterModule
    16.06.2014 11:52:35.590
    Error
    Exception caught by adapter framework: com.sap.aii.adapter.ediseparator.ra.integration.DispatchException: Message cannot be dispatched: Message cannot be dispatched: Error during processing local class: localejbs/GenericConverterModule
    16.06.2014 11:52:35.591
    Error
    Transmitting the message to endpoint <local> using connection AS2_http://sap.com/xi/XI/AS2 failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: javax.resource.ResourceException: com.sap.aii.adapter.ediseparator.ra.integration.DispatchException: Message cannot be dispatched: Message cannot be dispatched: Error during processing local class: localejbs/GenericConverterModule

  • 7206 G1 boot issue: No interface specified for interface_command

    I can't seem to find out what this command means? I am pasting a config into a new router, do I need to paste in a certain order?
    It boots just fine after it decompresses again, but it leaves me with a very lengthy boot time.
    Core_7206_1#write mem
    Building configuration...
    [OK]
    Core_7206_1#reload
    Proceed with reload? [confirm]
    *Jun  7 01:16:43.547: %SYS-5-RELOAD: Reload requested by console. Reload Reason: Reload Command.
    System Bootstrap, Version 12.3(4r)T3, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 2004 by cisco Systems, Inc.
    C7200 platform with 1048576 Kbytes of main memory
    Readonly ROMMON initialized
    Self decompressing the image : ########################################################################### [OK]
    % No interface specified for interface_command
    % No interface specified for interface_command
    % No interface specified for interface_command
    % No interface specified for interface_command
    % No interface specified for interface_command
    % No interface specified for interface_command
    % No interface specified for interface_command
    % No interface specified for interface_command
    % No interface specified for interface_command
    % No interface specified for interface_command
    % No interface specified for interface_command
    % No interface specified for interface_command
    % Cannot set multilink group. Interface Multilink2 does not exist
    % Cannot set multilink group. Interface Multilink2 does not exist
    % Cannot set multilink group. Interface Multilink2 does not exist
    % Cannot set multilink group. Interface Multilink9 does not exist
    % Cannot set multilink group. Interface Multilink9 does not exist
    % Cannot set multilink group. Interface Multilink10 does not exist
    % Cannot set multilink group. Interface Multilink10 does not exist
    % Cannot set multilink group. Interface Multilink3 does not exist
    % Cannot set multilink group. Interface Multilink3 does not exist
    % Cannot set multilink group. Interface Multilink3 does not exist
    % Cannot set multilink group. Interface Multilink3 does not exist
    % Cannot set multilink group. Interface Multilink3 does not exist
    % Cannot set multilink group. Interface Multilink3 does not exist
    % Cannot set multilink group. Interface Multilink7 does not exist
    % Cannot set multilink group. Interface Multilink7 does not exist
    % Cannot set multilink group. Interface Multilink4 does not exist
    % Cannot set multilink group. Interface Multilink4 does not exist
    % Cannot set multilink group. Interface Multilink5 does not exist
    % Cannot set multilink group. Interface Multilink5 does not exist
    % Cannot set multilink group. Interface Multilink8 does not exist
    % Cannot set multilink group. Interface Multilink8 does not exist
    % Cannot set multilink group. Interface Multilink11 does not exist
    % Cannot set multilink group. Interface Multilink11 does not exist
    % Cannot set multilink group. Interface Multilink6 does not exist
    % Cannot set multilink group. Interface Multilink6 does not exist
    % Cannot set multilink group. Interface Multilink6 does not exist
    % Cannot set multilink group. Interface Multilink12 does not exist
    % Cannot set multilink group. Interface Multilink12 does not exist
    Self decompressing the image : ###################################################################################################################################################################################################################################################### [OK]
                  Restricted Rights Legend
    Use, duplication, or disclosure by the Government is
    subject to restrictions as set forth in subparagraph
    (c) of the Commercial Computer Software - Restricted
    Rights clause at FAR sec. 52.227-19 and subparagraph
    (c) (1) (ii) of the Rights in Technical Data and Computer
    Software clause at DFARS sec. 252.227-7013.
               cisco Systems, Inc.
               170 West Tasman Drive
               San Jose, California 95134-1706
    Cisco IOS Software, 7200 Software (C7200-ADVIPSERVICESK9-M), Version 12.4(15)T7, RELEASE SOFTWARE (fc3)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2008 by Cisco Systems, Inc.
    Compiled Thu 14-Aug-08 03:06 by prod_rel_team
    Image text-base: 0x600089D8, data-base: 0x632911A0
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    If you require further assistance please contact us by sending email to
    [email protected].
    Cisco 7206VXR (NPE-G1) processor (revision B) with 983040K/65536K bytes of memory.
    Processor board ID 31651452
    SB-1 CPU at 700MHz, Implementation 1025, Rev 0.2, 512KB L2 Cache
    6 slot VXR midplane, Version 2.7
    Last reset from power-on
    PCI bus mb1 (Slots 1, 3 and 5) has a capacity of 600 bandwidth points.
    Current configuration on bus mb1 has a total of 90 bandwidth points.
    This configuration is within the PCI bus capacity and is supported.
    PCI bus mb2 (Slots 2, 4 and 6) has a capacity of 600 bandwidth points.
    Current configuration on bus mb2 has a total of 490 bandwidth points.
    This configuration is within the PCI bus capacity and is supported.
    Please refer to the following document "Cisco 7200 Series Port Adaptor
    Hardware Configuration Guidelines" on Cisco.com <http://www.cisco.com>
    for c7200 bandwidth points oversubscription and usage guidelines.
    2 FastEthernet interfaces
    3 Gigabit Ethernet interfaces
    4 Channelized T1/PRI ports
    2 Channelized T3 ports
    509K bytes of NVRAM.
    Installed image archive
    250880K bytes of ATA PCMCIA card at slot 2 (Sector size 512 bytes).
    16384K bytes of Flash internal SIMM (Sector size 256K).
    Press RETURN to get started!
    *Jun  7 01:21:56.191: %LINK-3-UPDOWN: Interface GigabitEthernet0/1, changed state to up
    *Jun  7 01:21:56.195: %LINEPROTO-5-UPDOWN: Line protocol on Interface VoIP-Null0, changed state to up
    *Jun  7 01:21:56.195: %LINK-3-UPDOWN: Interface GigabitEthernet0/2, changed state to up
    *Jun  7 01:21:56.195: %LINK-3-UPDOWN: Interface GigabitEthernet0/3, changed state to up
    *Jun  7 01:21:56.199: %LINK-3-UPDOWN: Interface T3 1/0, changed state to down
    *Jun  7 01:21:56.199: %LINK-3-UPDOWN: Interface T3 2/0, changed state to down
    *Jun  7 01:21:56.199: %LINEPROTO-5-UPDOWN: Line protocol on Interface IPv6-mpls, changed state to up
    *Jun  7 01:21:56.199: %LINK-3-UPDOWN: Interface FastEthernet4/0, changed state to down
    *Jun  7 01:21:56.199: %LINK-3-UPDOWN: Interface FastEthernet4/1, changed state to down
    *Jun  7 01:21:56.199: %ENVM-4-ENVWARN: NPE Inlet measured at 54C/129F
    *Jun  7 01:21:56.207: %ENVM-4-ENVWARN: NPE Outlet measured at 54C/129F
    *Jun  7 01:21:56.535: %SYS-6-CLOCKUPDATE: System clock has been updated from 01:21:56 UTC Mon Jun 7 2004 to 20:21:56 GMT Sun Jun 6 2004, configured from console by console.
    *Jun  7 01:21:57.319: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/1, changed state to up
    *Jun  7 01:21:57.319: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/2, changed state to down
    *Jun  7 01:21:57.319: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/3, changed state to down
    *Jun  7 01:21:57.319: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet4/0, changed state to down
    *Jun  7 01:21:57.319: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet4/1, changed state to down
    *Jun  7 01:21:57.851: %LINEPROTO-5-UPDOWN: Line protocol on Interface Tunnel3, changed state to down
    *Jun  7 01:21:57.851: %LINEPROTO-5-UPDOWN: Line protocol on Interface Tunnel10, changed state to down
    *Jun  7 01:21:57.851: %LINEPROTO-5-UPDOWN: Line protocol on Interface Tunnel11, changed state to down
    *Jun  7 01:21:57.851: %LINEPROTO-5-UPDOWN: Line protocol on Interface Tunnel13, changed state to down
    *Jun  7 01:21:57.851: %LINEPROTO-5-UPDOWN: Line protocol on Interface Tunnel20, changed state to down
    *Jun  7 01:21:57.851: %LINEPROTO-5-UPDOWN: Line protocol on Interface Tunnel30, changed state to down
    *Jun  7 01:21:57.851: %LINEPROTO-5-UPDOWN: Line protocol on Interface Tunnel40, changed state to down
    *Jun  7 01:21:58.199: %LINK-3-UPDOWN: Interface GigabitEthernet0/1, changed state to down
    *Jun  7 01:21:58.451: %SYS-5-CONFIG_I: Configured from memory by console
    *Jun  7 01:21:59.359: %SYS-5-RESTART: System restarted --
    Cisco IOS Software, 7200 Software (C7200-ADVIPSERVICESK9-M), Version 12.4(15)T7, RELEASE SOFTWARE (fc3)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2008 by Cisco Systems, Inc.
    Compiled Thu 14-Aug-08 03:06 by prod_rel_team
    *Jun  7 01:21:59.399: %ENTITY_ALARM-6-INFO: ASSERT CRITICAL GBIC Slot 0/1 GBIC is missing
    *Jun  7 01:21:59.399: %ENTITY_ALARM-6-INFO: ASSERT CRITICAL GBIC Slot 0/2 GBIC is missing
    *Jun  7 01:21:59.399: %ENTITY_ALARM-6-INFO: ASSERT CRITICAL GBIC Slot 0/3 GBIC is missing
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/1:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/2:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/3:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/4:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/7:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/8:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/9:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/10:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/11:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/12:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/14:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/15:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/16:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/17:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/18:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/19:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/20:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/21:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/23:0, changed state to down
    al1/0/24:0, changed state to downOWN: Interface Seri
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/25:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/26:0, changed state to down
    *Jun  7 01:21:59.619: %LINK-3-UPDOWN: Interface Serial1/0/27:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial1/0/28:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/1:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/2:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/4:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/5:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/6:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/7:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/8:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/9:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/10:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/11:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/12:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/13:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/14:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/15:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/16:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/17:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/18:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/19:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/20:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/22:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/24:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/25:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/26:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/27:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial2/0/28:0, changed state to down
    *Jun  7 01:21:59.623: %LINK-3-UPDOWN: Interface Serial3/3:0, changed state to down
    *Jun  7 01:21:59.631: %CRYPTO-6-ISAKMP_ON_OFF: ISAKMP is OFF
    *Jun  7 01:21:59.631: %CRYPTO-6-GDOI_ON_OFF: GDOI is OFF
    *Jun  7 01:21:59.663: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/1, changed state to down
    *Jun  7 01:21:59.663: %LINEPROTO-5-UPDOWN: Line protocol on Interface NVI0, changed state to up
    *Jun  7 01:21:59.695: %ENTITY_ALARM-6-INFO: ASSERT MAJOR T31/0 Physical Port Link Down
    *Jun  7 01:21:59.695: %ENTITY_ALARM-6-INFO: ASSERT MAJOR T32/0 Physical Port Link Down
    *Jun  7 01:21:59.695: %ENTITY_ALARM-6-INFO: ASSERT INFO Fa4/0 Physical Port Administrative State Down
    *Jun  7 01:21:59.695: %ENTITY_ALARM-6-INFO: ASSERT INFO Fa4/1 Physical Port Administrative State Down
    *Jun  7 01:21:59.695: %SNMP-5-COLDSTART: SNMP agent on host Core_7206_1 is undergoing a cold start
    *Jun  7 01:22:00.239: %SYS-6-BOOTTIME: Time taken to reboot after reload =  318 seconds
    *Jun  7 01:22:00.783: %LINK-3-UPDOWN: Interface GigabitEthernet0/2, changed state to down
    *Jun  7 01:22:00.783: %LINK-3-UPDOWN: Interface GigabitEthernet0/3, changed state to down
    *Jun  7 01:22:06.667: %ENTITY_ALARM-6-INFO: ASSERT MAJOR T31/0 Transmitter is sending remote alarm
    *Jun  7 01:22:06.667: %ENTITY_ALARM-6-INFO: ASSERT MAJOR T31/0 Receiver has loss of signal
    *Jun  7 01:22:07.915: %ENTITY_ALARM-6-INFO: ASSERT MAJOR T32/0 Transmitter is sending remote alarm
    *Jun  7 01:22:07.915: %ENTITY_ALARM-6-INFO: ASSERT MAJOR T32/0 Receiver has loss of signal
                                                                                               Core_7206_1>
    Core_7206_1>

    Those must be coming from the boot image, which doesn't have all the feature support as the regular IOS image.  The messages are just warnings when configuring some of the features that the boot images doesn't understand.

  • VS2013 Update 1 install failing: The form specified for the subject is not one supported or known by the specified trust provider.

    Hi
    I just tried to install VS2013 update 1 ("Run As Administrator") from the ISO image and the installation finishes with a lot of messages like these:
    "JavaScript Tooling: The form specified for the subject is not one supported or known by the specified trust provider."
    "Microsoft Visual Studio 2013 IntelliTrace core x86: The form specified for the subject is not one supported or known by the specified trust provider"
    I have 19 of these messages.
    I had a quick look at the log file and I see this block of messages repeated quite a lot (for different files, not just "PerfTools_CORE_x86.msi"):
    [8C10:9AC4][2014-01-23T07:46:04]i338: Acquiring package: PerfTools_CORE_x86.msi, payload: PerfTools_CORE_x86.msi, copy from: C:\Users\<removed>\Downloads\Microsoft\VS2013.1\packages\PerfTools_CORE\x86\PerfTools_CORE_x86.msi
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed authenticode verification of payload: C:\ProgramData\Package Cache\.unverified\PerfTools_CORE_x86.msi
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed to verify signature of payload: PerfTools_CORE_x86.msi
    [95A4:996C][2014-01-23T07:46:04]e310: Failed to verify payload: PerfTools_CORE_x86.msi at path: C:\ProgramData\Package Cache\.unverified\PerfTools_CORE_x86.msi, error: 0x800b0003. Deleting file.
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed to cache payload: PerfTools_CORE_x86.msi
    [8C10:9AC4][2014-01-23T07:46:04]i000: MUX:  Verify Failed.  Retry acquiring, Retry Count: 1 of 3
    [8C10:9AC4][2014-01-23T07:46:04]i000: MUX:  Set Result: Return Code=-2146762749 (0x800B0003), Error Message=, Result Detail=, Vital=False, Package Action=Verify, Package Id=PerfTools_CORE_x86.msi
    [8C10:9AC4][2014-01-23T07:46:04]e314: Failed to cache payload: PerfTools_CORE_x86.msi from working path: C:\Users\<removed>\AppData\Local\Temp\{2f6f0fc4-5f66-4635-a4d2-1dd8d9481c63}\PerfTools_CORE_x86.msi, error: 0x800b0003.
    [8C10:9AC4][2014-01-23T07:46:04]e349: Application requested retry of payload: PerfTools_CORE_x86.msi, encountered error: 0x800b0003. Retrying...
    [8C10:9AC4][2014-01-23T07:46:04]i338: Acquiring package: PerfTools_CORE_x86.msi, payload: PerfTools_CORE_x86.msi, copy from: C:\Users\<removed>\Downloads\Microsoft\VS2013.1\packages\PerfTools_CORE\x86\PerfTools_CORE_x86.msi
    [8C10:9AC4][2014-01-23T07:46:04]i000: MUX:  Reset Result
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed authenticode verification of payload: C:\ProgramData\Package Cache\.unverified\PerfTools_CORE_x86.msi
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed to verify signature of payload: PerfTools_CORE_x86.msi
    [95A4:996C][2014-01-23T07:46:04]e310: Failed to verify payload: PerfTools_CORE_x86.msi at path: C:\ProgramData\Package Cache\.unverified\PerfTools_CORE_x86.msi, error: 0x800b0003. Deleting file.
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed to cache payload: PerfTools_CORE_x86.msi
    [8C10:9AC4][2014-01-23T07:46:04]i000: MUX:  Verify Failed.  Retry acquiring, Retry Count: 2 of 3
    My Visual Studio still seems to load following the failed installation, but I'm not sure if anything is broken yet.
    Does anyone have any idea what the problem is?
    Thanks, Greg

    Hi Greg,
    Most of the same error as far as I see are due to corrupt installer. Please try use fciv.ext tool from this site:
    http://support.microsoft.com/kb/841290/en-us
    Then use sha-1 number to compare it with the one listed here:
    http://www.microsoft.com/en-us/download/details.aspx?id=41650
    SHA-1: 51403CAF8E5E9799ACF1F3A0DA0E46390CD2FB16
    If it is not the same, you have to redownload your ISO, it is corrupt.
    Regards,
    Barry Wang
    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.

  • Topic must be specified error

    I am new to Oracle ESB.
    I created a flow locally and just ported it to AIX server and conducted some integration tests. But eneded up getting error like this:
    Any suggestion is appreciated .
    <SUPPL_DETAIL><![CDATA[ORABPEL-12134
    ERRJMS_ERR_CR_TOPIC_CONS.
    Error while creating Topic consumer:.
    Please examine the log file to determine the problem.
         at java.lang.Throwable.<init>(Throwable.java:57)
         at java.lang.Throwable.<init>(Throwable.java:68)
         at javax.resource.ResourceException.<init>(ResourceException.java:49)
         at oracle.tip.adapter.api.exception.PCResourceException.<init>(PCResourceException.java:90)
         at oracle.tip.adapter.api.exception.PCRetriableResourceException.<init>(PCRetriableResourceException.java:66)
         at oracle.tip.adapter.jms.JmsDomainResourceException.<init>(JmsDomainResourceException.java:71)
         at oracle.tip.adapter.jms.JMS.JMSConnection.createConsumer(JMSConnection.java:466)
         at oracle.tip.adapter.jms.JMS.JMSConnection.createConsumer(JMSConnection.java:386)
         at oracle.tip.adapter.jms.JMS.JMSMessageConsumer.createConsumer(JMSMessageConsumer.java:282)
         at oracle.tip.adapter.jms.JMS.JMSMessageConsumer.init(JMSMessageConsumer.java:223)
         at oracle.tip.adapter.jms.inbound.JmsConsumer.init(JmsConsumer.java:159)
         at oracle.tip.adapter.jms.JmsEndpoint.run(JmsEndpoint.java:151)
         at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
         at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
         at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
         at java.lang.Thread.run(Thread.java:797)
    Caused by: javax.jms.InvalidDestinationException: JMS-166: Topic must be specified
         at java.lang.Throwable.<init>(Throwable.java:57)
         at java.lang.Throwable.<init>(Throwable.java:68)
         at javax.jms.JMSException.<init>(JMSException.java:65)
         at javax.jms.InvalidDestinationException.<init>(InvalidDestinationException.java:46)
         at oracle.jms.AQjmsSession.createDurableSubscriber(AQjmsSession.java:2366)
         at oracle.jms.AQjmsSession.createDurableSubscriber(AQjmsSession.java:2330)
         at oracle.jms.AQjmsSession.createDurableSubscriber(AQjmsSession.java:2228)
         at oracle.tip.adapter.jms.JMS.JMSConnection.createConsumer(JMSConnection.java:441)
         ... 10 more
    ]]></SUPPL_DETAIL>

    Hi Kumaran Alagu,
    You have to post your Query in any one Forum
    IS-Retail: Material description in MM41and MM42 transactions
    Bye,
    Muralidhara

  • Report Painter: CO area must be specified

    Dear Gurus,
    I am new to Report Painter, now I want to create a new report for  Actual expanses and Budget expanses. But after I create my variable and my Row and Column, it come out error 'CO area must be specified --> Add in general data selections or rows/column' when I want to save it.
    Any idea what had I missed out ?
    Can you please provided my any  study material or step by step guide? I was quite confusing regarding this report painter.
    Thank you very much.
    Warm regards

    Hi,
    Perameters in General Data Selection apply to the entire repost (every column and row). Since the four columns of your report are having different period and possibly different FY, you can not put these two parameters in General Data Selection. As my previous posting explained, in addition of standard variable &1PERIV and 1CGJAHE,  you will need to define 3 more variables for period FY respectively:
    Period Variable 1 - ZPERI2 - Formula: IF '&1PERIV' < 12 THEN '&1PERIV' + 1 ELSE 1
    Period Variable 2 - ZPERI3 - Formula: IF '&ZPERI2' < 12 THEN '&ZPERI2' + 1 ELSE 1
    Period Variable 3 - ZPERI4 - Formula: IF '&ZPERI3' < 12 THEN '&ZPERI3' + 1 ELSE 1
    FY Variable 1 - ZGJAHR2 - Formula: IF '&1PERIV' < 12 THEN '&CGJAHE'  ELSE '&CGJAHE' + 1
    FY Variable 2 - ZGJAHR3 - Formula: IF '&1PERIV' < 11 THEN '&CGJAHE'  ELSE '&CGJAHE' + 1
    FY Variable 3 - ZGJAHR4 - Formula: IF '&1PERIV' < 10 THEN '&CGJAHE'  ELSE '&CGJAHE' + 1
    You then use variable 1PERIV and 1CGJAHE for column 1, ZPERI2 and ZGJAHR2 for column 2, ZPERI3 and ZGJAHR3 for column 3, and ZPERI4 and ZGJAHR4 for column 4.
    Regards,
    Ming

  • New to JMS and JBOSS , what value to set for following

    hello friends ,
    I have following things for MQSeries , can u please tell me what would be the corresponding values for jboss.
    JMS.QueueConnectionFactoryImpl.classname = For IBM MQ its com.ibm.mq.jms.MQQueueConnectionFactory
    What would be the classname for jboss ?
    JMS.QueueImpl.classname =     For IBM MQ its com.ibm.mq.jms.MQQueue
    what for Jboss
    similarly i am writing for all the MQStuff , could u please let me know for jboss
    JMS.QueueImpl.method.setTargetClient =      java.lang.Integer {com.ibm.mq.jms.JMSC.MQJMS_CLIENT_NONJMS_MQ}
    JMS.QueueConnectionFactoryImpl.method.setTransportType =      java.lang.Integer {com.ibm.mq.jms.JMSC.MQJMS_TP_CLIENT_MQ_TCPIP}
    JMS.QueueConnectionFactoryImpl.method.setChannel =      java.lang.String {JAVA.CHANNEL}
    Kindly do help if you know
    thanks

    Thanks for the reply to my questions.
    I have another that can be hopefully answered in regards to the client side ping.
    1. With the client side ping, if the clients computers network cable is disconnected and then reconnected will the ping properly re-establish its connection or is it up to the client application to do this process?
    2. Will the client side ping resolve the issue with half-open connections that 3.5 had?
    2. When creating the persistent queue objects on the server are there any special settings to set to properly configure the queues. When working with 3.5 I previously had the following:
    cmdtype=add
    obj.type=qf
    obj.lookupName=QueueConnectionFactory
    obj.attrs.imqBrokerHostName=localhost
    obj.attrs.imqBrokerHostPort=7676
    objstore.attrs.java.naming.factory.initial=com.sun.jndi.fscontext.RefFSContextFactory
    objstore.attrs.java.naming.provider.url=file:///C:/Temp
    Thanks in advance for any sugestions

  • Retrieving the COM class factory for component with CLSID {85DE1C45-2C66-101B-B02E-04021C009402} fai

    I get the following error when i try and access a site I'm working on through internet explorer, but it works fine when i run it in the visual studio 2005 environment.<br /><br />(I'm trying to complete a pdf with form fields)<br /><br />======<br /><br />Retrieving the COM class factory for component with CLSID {85DE1C45-2C66-101B-B02E-04021C009402} failed due to the following error: 80070005. <br />Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. <br /><br />Exception Details: System.UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {85DE1C45-2C66-101B-B02E-04021C009402} failed due to the following error: 80070005. <br /><br />ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user. <br /><br />To grant ASP.NET access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.<br /><br />======<br /><br />       // Initialize Acrobat by creating App object.<br />        CAcroApp acroApp = new AcroAppClass();      //<- Break happens here  <br /><br />       // Create an AVDoc object<br />        CAcroAVDoc avDoc = new AcroAVDocClass();<br /><br />Does anyone know of a way to solve this? I'm trying to swap over from iTextSharp to the actual adobe sdk, as I've had some bugs with iText.

    A lot to try and cover here.
    >I saw that the one pdf was created in Adobe Designer 7.1 and the other in Amgraf OneForm Designer Plus.
    Ok, we can only say anything about the first one. But you must find
    out what kind of form it is if you want to work with it
    programmatically: they are utterly unlike each other.
    You cannot use FDF format with an a form made with Designer (also
    called an XFA form or XML form). But you can import an XML file in
    Acrobat.
    >
    >Based on the second part of your reply i'm assuming the way i'm currently passing the data to the pdf is the reason i get the following message
    >
    >"This document enabled extended features in Adobe Reader. The document has been changed since it was created and use of extended features is no longer available"
    No, completely different issue. This file has been prepared specially
    so it can be saved in Adobe Reader. Any change to the file will break
    this. The only exception is Acrobat, which you cannot use.
    No third party product can repair this, but Adobe's server product
    LiveCycle Reader Extensions can put back the rights. You might use
    this in conjunction with LiveCycle Forms.
    Aandi Inston

  • BAM-00533: Resource open for destination jms/demoQueue failed

    I have some BPM processes (11.1.1.5). I need to connect BAM 11.1.1.5.
    However, I get BAM-00533 error.
    How to fill in
    Topic/Queue Connection Factory Name:
    Topic/Queue Name.
    JNDI Username:
    JNDI Password:
    The official doc is about how to add BAM to BPEL.
    How to configure EMS? Please paste detail steps.
    Name: EMS
    Owner: weblogic
    Created: 6/20/2011 4:30:27 PM
    Last modified: 6/20/2011 5:16:11 PM
    Status: Test failed - oracle.bam.common.messaging.api.exception.OpenFailedException: BAM-00533: Resource open for destination jms/demoQueue failed.
    Initial Context Factory: weblogic.jndi.WLInitialContextFactory.
    JNDI Service Provider URL: t3://192.168.1.190:9001.
    Topic/Queue Connection Factory Name: weblogic/jms/ConnectionFactory.
    Topic/Queue Name: jms/demoQueue.
    JNDI Username: weblogic.
    JNDI Password: ***************************************************************.
    JMS Message Type: TextMessage.
    Durable Subscriber Name (Optional): .
    Message Selector (Optional): .
    Data Object Name: /Samples/myDataObject3.
    Operation: Insert.
    Batching: No.
    Transaction: No.
    Start when BAM Server starts: Yes.
    JMS Username (Optional): .
    JMS Password (Optional): .

    Seems like the same issue is still there, that WebLogic does not allow a connection consumer
    to be created if it is not running from modules in WebLogic. (see http://dlc.sun.com/pdf//816-5904-10/816-5904-10.pdf section 8.2.4)
    Maybe you can try, as a workaround, the synchronous delivery mode of the generic resource adapter,
    which is not dependent on the interfaces described in section 8.2.4 of the JMS specification.
    deliverytype=synchronousYou can also try posting this in the JMS forum - maybe TomB can put a light on the issue.

  • ORA-24333 An iteration count of zero was specified for the statement

    Hi all,
    in example below oracle generate error ORA-24333,
    Cause: An iteration count of zero was specified for the statement
    Action: Specify the number of times this statement must be executed
    On Error GoTo errHandler:
    Dim pOraStmt As OraSqlStmt 'obiekt OO4O
    Dim stat As Long
    aWystapilBlad = False
    gOraDatabase.LastServerErrReset
    gOraDatabase.BeginTrans
    Set pOraStmt = gOraDatabase.CreateSql("begin " & _
    NAZWA_PAKIETU & "." & NAZWA_PROCEDURY & _
    "; END;", ORASQL_NONBLK)
    stat = pOraStmt.NonBlockingState
    While stat = ORASQL_STILL_EXECUTING
    DoEvents
    stat = pOraStmt.NonBlockingState
    Wend
    '>>>>>>>>>>>>>>>>>ERROR ORA-24333 zero iteration count!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1
    If gOraDatabase.LastServerErr > 0 Then
    aWystapilBlad = True
    GenerujKomunikaty BLAD_SYSTEMOWY_NR & Err.Number & vbNewLine & BLAD_OPIS_BLEDU & gOraDatabase.LastServerErrText, WyswietlNaEkran, blad, TYTUL_APLIKACJA
    PrzeniesDanychCODGiK = False
    End If
    gOraDatabase.CommitTrans
    PrzeniesDanych = True
    Exit Function
    errHandler:
    aWystapilBlad = True
    gOraDatabase.Rollback
    PrzeniesDanych = False
    Can anybody help me?
    Regards
    Zbyszek

    Hello get this from executing the following.
    Occurs intermitently.
    select MAX(LENGTH(lxVal)) from lxString_74501fb6 where lxType=910231053
    Find the MaxLenght(LxVal) returned is null for this query.
    Did google it but says the iterator not initialized. But not the case here
    Thanks

Maybe you are looking for

  • Macbook Air wont's open PDF in Safari browser Version 7.1 (9537.85.10.17.1)

    Hi Guys, can anyone help me out here i bought a new 2014 Macbook Air with a maverick's OS X Version 10.9.5 and it wont's open PDF in Safari browser Version 7.1 (9537.85.10.17.1). I have a adobe reader Version IX 11.0.09 this is the message i get when

  • OSX 10.7, SSDs, TRIM, and so on...

    Okay, so I have played with Windows 7 Home Premium on this wonderful little Booklet 3g for some time now. I hate it. I am a Mac guy, through and through, and this will never change. I have been running both Linux Mint 11 and Ubuntu 11.04 for the past

  • Order of photos

    How do I put the photos on the iPod in a particular order? I am using iTunes on Windows to synchronize the photos from a folder. They do not appear in alphabetic order on the iPod, which is what I would want. The intention to have a map on my iPod, s

  • I can't download OS X Lion from the purchases tab in app store

    I bought a "new" used imac running Snow Leopard. I want to upgrade to OS X Lion that I have purchased in app store. I can see it in the list, but when I click on download, it keeps telling me to sign into the account you used to purchase it.......umm

  • Can I use my IPad to print on my Canon MX860 and do I need to download an App ?

    I have a Canon MX860 printer and want to print using my IPad. Do I need to download an App ? AirPrint lists printers which are compatable but the MX860 is not on the list. Will it still work or do I need a different App ? Thanks Sarah