MODULE NOT INVOKED

Dear ALL
we have developed a ejb adapter module for converting edi 997 format to xml .we are using file adapter as callsapadapter.
Getting stuck up as module is not being invoked.
What might be the problem..? and how to overcome this..??
Helpful answers will be given reward points
Regards
Deepak

Hi Abhishek,
We are also using one adapter module to convert EDI using Conversion Agent, we have deployed all the Modules and these are in XI System.
When we are giving the settings as given by you :
Using the Module
• If you want to use the module in an adapter, open the Integration Directory and
create a new communication channel.
• Enter the adapter-specific parameters and choose the Module tab page.
A default entry contains the required adapter module.
• Apply your module before the specific-adapter module:
o Enter localebjs/<JNDI-Name> as module name.
o Choose the type Locale Enterprise Bean.
o Choose any module key. Using your module key, you can assign
parameters to your module in the Module Configuration table.
The system is not picking up the file from FTP Server, but when we are not using this module then default adapter is going at FTP server and picking up file, but we want to use this conversion module for converting the data.
We have checked all JNDI name also in Visual Admin, all the paths are correct.
But it is not picking up file from FTP Server, is there any other setting which we are not doing, please help,
Regards,
Study SAP

Similar Messages

  • Custom login module - Not invoked...

    Hi All
    I have developed a custom login module and the necessary configuration steps in VA are performed. However, the custom login module is not called...
    1. Developed a Java DC as a Child DC in a Library DC.
    2. Added all the relevant jars needed as Used DC and Public Parts as required. Also updated the provider.xml with relevant references.
    3. Build and Deployed. (No errors found here..)
    4. In VA - Created a new Login Module.... updated the property LoginModuleClassLoaders to library:xyz where xyz is the name of the folder for deployed sda as found in cluster\j2ee\serverx\bin\ext...next updated the config tool for the same.... next modified the sap.com/irj*irj authentication as:
    Basic - Requisite
    CustomModule - Optional.
    Then performed server restart. Yet, login module not called. Any ideas as to where I am going wrong..?? (In my login module, just trying to retrieve the user name and change their attributes like lastname etc... )
    Thanks
    Deepak

    Issue solved....
    Had forgot to add the module to the ticket stack...

  • Adapter Module is not Invoking

    Hi
    I have done one adapter module and i have given that in Sender Communication Channel. I have written audit log as well. But its not invoking.I am not getting any thing on Audit Log. My Scenario is working normally. Actually i have to get Host name at destination side but i am not getting
    I ave created on jar file. I have extrancted that jar file and i found the following files
    <javafile>.class
    <javafile>.java
    ejb-j2ee-engine.xml
    ejb-jar.xml
    but i have extract other in built adapter module jar file their i found manifest.mf apart from above mention files.
    I have create the jar files using nwds version 7.0
    My Adapter module is not working. I have done everything fine.Can anyone tell me the solution
    Best Regards
    Ravi Shankar B
    Message was edited by:
            RaviShankar B

    Hi,
    Ur module name shud b like this
    localejbs/<yourEJBClassName>
    If you specify an incorrect or non-existing module name, it is simply ignored.
    Check the following:
    1. Your stateless session bean should implement SessionBean and Module.
    2. The bean should have the following method
        public ModuleData process()
    Try to create a file in XI Server directory from your adapter module code and this way check whether your module is called or not.
    <i>[Reward if helpful]</i>
    Regards,
    Prateek

  • Adapter Module not working in Sender Communication Channel working in recie

    Hi
    I have written one adapter module. IF i give that Adapter Module in Sender Communication channel its not working. If i give that in Reciever Communication Channel its working. If i mention in both the channels then its working in sender communication channel also.But in only sender communication channel its not working in only reciever communication channel its working Can any one tell me why its happening
    Thanks & Regards
    Ravi Shankar B
    Message was edited by:
            RaviShankar B
    Message was edited by:
            RaviShankar B
    Message was edited by:
            RaviShankar B

    hi
    if its problem with my code why its working if i give the adapter module in both the communication channels?If i give in only sender communication channel the module is not invoking. its not showing any auditlogs.Can any one please help me
    OUTBOUND is for sender
    INBOUND is for reciever right.?
    the following code i have written
    public ModuleData process(
              ModuleContext moduleContext,
              ModuleData inputModuleData)
              throws ModuleException {
              String SIGNATURE =
                   "process(ModuleContext moduleContext, ModuleData inputModuleData)";
              Object obj = null;
              Message msg = null;
              String filename = null;
              AuditMessageKey amk = null;
              try {
                   obj = inputModuleData.getPrincipalData();
                   msg = (Message) obj;
                   System.out.println("&&&&&&&&&&&&&&&&&" + msg);
                   if (msg.getMessageDirection().equals(MessageDirection.OUTBOUND)){
                        amk = new AuditMessageKey(msg.getMessageId(),AuditDirection.OUTBOUND);
                        Audit.addAuditLogEntry(amk,AuditLogStatus.SUCCESS,">>>>>>>>>>>>>>> etHostName: Module called"+ i++);
                   }else{
                        File filename1 = new File("
    10.7.1.43
    XI
    source","text.txt");
                        filename1.createNewFile();
                        amk = new AuditMessageKey(msg.getMessageId(),AuditDirection.INBOUND);
                        Audit.addAuditLogEntry(amk,AuditLogStatus.SUCCESS,">>>>>>>>>>>>>>> etHostName: Module called"+ i++);
                   System.out.println("**************" + amk + "***********");
              } catch (Exception e) {
                   Audit.addAuditLogEntry(amk,AuditLogStatus.SUCCESS,">>>>>>>>>>>>>>> GetHostName: Error Module called");
                   e.printStackTrace(System.err);
                   ModuleException me = new ModuleException(e);
                   throw me;
              // Read the channel ID, channel and the module configuration
              try {
                   Hashtable mp = (Hashtable)inputModuleData.getSupplementalData("module.parameters");
                   if(mp != null){
                        filename = (String)mp.get("FileName");
                        Audit.addAuditLogEntry(amk,AuditLogStatus.SUCCESS,"Host >>>  Element Name is set to {0}"+filename );
                   }else{               
                        Audit.addAuditLogEntry(amk,AuditLogStatus.WARNING,"HostElementName parameter is not set. Default used: HostName.");
                        filename = "FileName";
              } catch (Exception e) {
                   e.printStackTrace(System.err);
                   Audit.addAuditLogEntry(amk,AuditLogStatus.ERROR,"Cannot read the module context and configuration data");
                   ModuleException me = new ModuleException(e);
                   throw me;
              try {
                   XMLPayload xmlpayload = msg.getDocument();
                   DocumentBuilderFactory factory;
                   factory = DocumentBuilderFactory.newInstance();
                   DocumentBuilder builder = factory.newDocumentBuilder();
                   Document document =
                        builder.parse((InputStream) xmlpayload.getInputStream());
                   Element rootNode = document.getDocumentElement();
                   if (rootNode != null) {
                        Element childElement = document.createElement("filename");
                        childElement.appendChild(document.createTextNode(filename));
                        rootNode.appendChild(childElement);
                   // Transforming the DOM object to Stream object.
                   TransformerFactory tfactory = TransformerFactory.newInstance();
                   Transformer transformer = tfactory.newTransformer();
                   Source src = new DOMSource(document);
                   ByteArrayOutputStream myBytes = new ByteArrayOutputStream();
                   Result dest = new StreamResult(myBytes);
                   transformer.transform(src, dest);
                   byte[] docContent = myBytes.toByteArray();
                   if (docContent != null) {
                        xmlpayload.setContent(docContent);
                        inputModuleData.setPrincipalData(msg);
              } catch (Exception e) {
                   e.printStackTrace(System.err);
                   Audit.addAuditLogEntry(amk,AuditLogStatus.ERROR,"Cannot read the module context and configuration data");
                   ModuleException me = new ModuleException(e);
                   throw me;
              return inputModuleData;
    Best Regards
    Ravi Shankar B
    Message was edited by:
            RaviShankar B
    Message was edited by:
            RaviShankar B

  • "A technical error during invocation : Could not invoke service reference" Error message while calling a service from BPM

    Hi Experts,
    We are facing a issue while calling a Automated activity from BPM process, the process gets suspended and the BPM logs says "Process XYZ suspended, A technical error during invocation: Could not invoke service reference name fdhueoegghejietyhsjk6886 Component name ABC " We have already checked the mapped service reference and provider system. Gone through the below link, but no help.
    http://http://wiki.scn.sap.com/wiki/display/TechTSG/Sending+a+message+from+SAP+NetWeaver+BPM+process+to+PI+fails+via+automated+activity?original_fqdn=wiki.sdn.sap.com
    Any pointers or suggestions to fix up this issue will be highly appreciated. Thanks in advance.
    Regards,
    Mohit Jaju

    The details/ID in NWDS Service Reference must exactly match the SOA configuration. Sometimes it's possible you have changed the reference or the group itself and something changed to become mismatched.
    It's possible they don't match - but the SG itself will show green in NWA since the service exists and responds on the target system. Does the ID listed in the error match what is shown in the NWDS project?
    regards, Nick

  • Gaming 9 wifi module not detcted

    Hi,
    I just built a new computer and the wifi/bt module that it comes with is not detected. There are no bent pins, it just doesn't show up in Device Manager and when I put the driver disc in there are no drivers to install (I assume this is because it can't find the module). I have seen other with this same issue when doing a google search to try and fix it. Any help would be appreciated. Thanks
    Specs
    MSI z97 Gaming 9 AC mobo
    i7-4790K
    MSI GTX 970 Gaming 4G
    Corsair Vengeance PRO 16GB ram
    Seagate SSHD
    Corsair H100i cooler
    Corsair HX1000i psu

    Quote from: flobelix on 07-December-14, 01:22:46
    Try with the WIFI/BT module not being screwed together with the board. If still no go see if that changes when you move the module a little.
    No luck. I took it off and reseated it. I'm not sure if it is supposed to show up in the board explorer in the bios or not but it doesn't.

  • EPM Modules not opening in Hyperion 9 planning workspace

    Hi,
    Our problem is relating EPM, we did Hyperion 9.3 installation on a test server and made replicas of 2 live applications but the deploy aborted at 0%. Assuming it was some configuration problem we reinstalled Hyperion but this time we could not open EPM application library, dimension library, job console etc. We got the following error:
    (404)Not Found
    (org.apache.axis.AxisFault)
    Details:
    Trace: com.hyperion.awb.web.common.BaseService.openSession(BaseService.java:112)
    com.hyperion.awb.web.common.BaseAction.checkWebSession(BaseAction.java:64)
    com.hyperion.bpm.web.common.BaseAction.execute(BaseAction.java:65)
    org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:421)
    org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:226)
    Exception org.apache.axis.AxisFault rethrown
    When we try to access EPMA directly from <http://localhost:19000/awb/> we get the following error with the one above:
    Module not found:awb.appcontainer
    We raised an SR and searched the forum and the issue was pointed to the IIS, but we checked it and cannot find anything out of the ordinary there. If anyone has any ideas, help would be appreciated, we're in a pickle =(

    Hi Sourabh,
    I am not sure of exactly which settings were changed because a number of changes were made by Oracle Support themselves, but the documented steps are as follows.
    In our IIS Manager under servername the websites expanded to 'Hyperion' which was our hyperion virtual directory. As per System 9 Installation and Configuration Guide, we need to have EPMA connection pools and Virtual Directories as "hyperion-bpma-server" so they first stopped EPMA services then:
    1. Reconfigured EPMA using Configuration utility.
    2. Altered the connection pool and Virtual Directories as hyperion-bpma-server
    - Our application pool only had DefaultAppPool, so a new pool was created as 'bpma' > 'hyperion-bpma-server'
    - The 'Hyperion' virtual directory was deleted, new website was create as 'Default Web Site' with C:\Inetpub\wwwroot as local path. Under 'Default Web Site' a new virtual directory was made as 'hyperion-bpma-server' with local path C:\Hyperion\BPMA\AppServer\DimensionServer\WebService and selected 'bpma' as its application pool.
    3. Configured virtual directory settings.
    4. Copied bin & temp folders from our Production EPMA server path C:\Hyperion\BPMA\AppServer\DimensionServer\WebService, since these folders did not exist in our test server.
    5. Restarted IIS
    6. Restarted Web Server(Apache)
    7. Started the EPMA Services.
    Logged into Workspace and Application Library and Dimension Library were accessible, and we successfully created and deployed our applications.
    Hope this is helpful for you.
    Regards,
    Noreen
    Edited by: 858772 on Jul 27, 2012 1:15 AM

  • Wireless Module Not Supported...in the manual it is?

    HP maual located here: http://h10032.www1.hp.com/ctg/Manual/c02770268.pdf
    Page 20 Chapter 3 it lists:
    Intel Centrino® Wireless-N 1000 (802.11b/g/n) 593530-001
    So I ordered this from the HP parts store and received it today and the laptop posts with a Wireless Module Not Supported. WLAN Module ID 702 message.
    So how do I proceed from here? Laptop came with an ralink card that only connected at 72Mbps, the atheros AR9285 constantly connects at 65Mbps unless I reset my router every time I connect.
    My laptop is a HP Pavilion g6-1a40ca
    Help please!
    Marc

    Thanks for replying
    Looks like modding the bios is the only way I'll get something better into this laptop. All I know is that the two officially supported cards I have right here are terribly slow/flaky. Going by the manual I really don't have any other choice in wireless cards. This is a great laptop for the price, just wish it didn't come crippled.
    Oh I know...lol...I'll buy a usb one and soldier it onto one of the usb ports internally. j/k
    Thanks again for clarifying for me. If anyone has anything additional to add to this thread in future about adding support official or unofficial, please post it here.
    Thanks,
    Marc

  • "Writer" Module not working in web service mode

    Hi,
    I designed a experiment to do a prediction work and automatically write the result to AzureSqlServer.
    I published  a web service from the experiment to trigger the prediction procedure, it worked very well until February. But from then on, the database had never received any data from the module triggered by web service though the web service always
    run successfully.However, when I directly run the experiment, the writer works again.
    I noticed the experiment dashboard has a new function that can switch between experiment view and web service view. In web service view, all the modules that the “web service output” module not depend on turn grey, including the "writer".  
    Is that the reason?

    When you called the web service from the test dialogue, did it work? If you get any error, please paste it here.
    Also, please take a look at the example in
    this doc which also uses a writer. Note that if you have a writer writing the results to a destination, you typically don't need a web service output. See the below images, 1 with Web service output, another with a Writer. The writer needs to
    be configured.

  • Wireless module not working(70​1)

    Hello, i recently formatted my laptop and then i  found that at startup my laptop is saying Wireless module not found(701)
    It says it may be not installed correctly or not functioning.
    So i disassembled my laptop to see any connection problem and tried connecting with changing positions of wires  with card but still not working!
    I Googled for drivers but didnt geta any!
    here is detail about Wlan + Bt card
    AzureWave AW-NB041H
    IEEE 802.11 b/g/n + 802.15 BT combo card
    Model No.-RT3090BC4
    FCC ID- VQF-RT3090BC4
    IC-7542A-RT3090BC4
    India-448/2010/WRLO
    CMIIT ID- 2010DJ0636
    Please help to me to solve this problem!
    This question was solved.
    View Solution.

    It needs to be replaced. This one will work in your netbook. It will pass the whitelist BIOS check and provides wifi and Bluetooth:
    http://www.ebay.in/itm/HP-WI-FI-BLUETOOTH-COMBO-CA​RD-BCM94313HMGB-600370-001-598711-001-G6-CQ42-/321​...
    If this is "the Answer" please click "Accept as Solution" to help others find it. 

  • Function Module not working for old Role

    Dears
    Function Module not working for old Role
    Function Module: /VIRSA/BAPI_AE_USERS_FOR_ROLES
    Before EHP4 upgrade this functional module working fine, but after updated users are not visible.
    We have chekced if the users are assigned directly users are visible but indirect (Position Based) assignment users are not apprearing.
    Pl check the fucntion module with given roles below and identify the root cause,
    EP_TRVL_ALL_CAB     - Old Role
    EP_TRN_TRVL_DRGC_V2 - New Role
    Regards
    Krishna Mohan CH
    9704500717

    Krishna,
    I do not think this BAPI is meant to be called by anyone but the application using it, and its functionality may therefore change without notice.
    What are you trying to achieve? Maybe there's a better way to do that...
    Frank.

  • VWIC is showing as "WIC module not supported/disabled in this slot"

    Hello All,
    please help me on this asap!!
    Smart Init is enabled
    smart init is sizing iomem
                     TYPE      MEMORY_REQ
              HWIC Slot 0      0x00200000
                   PVDM 0      0x00200000
        Onboard devices &
             buffer pools      0x0228F000
                   TOTAL:      0x0268F000
    Rounded IOMEM up to: 40Mb.
    Using 7 percent iomem. [40Mb/512Mb]
                  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, C2900 Software (C2900-UNIVERSALK9-M), Version 15.1(1)T, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2010 by Cisco Systems, Inc.
    Compiled Mon 22-Mar-10 02:13 by prod_rel_team
    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 CISCO2901/K9 (revision 1.0) with 483328K/40960K bytes of memory.
    Processor board ID FGL162722DK
    2 Gigabit Ethernet interfaces
    DRAM configuration is 64 bits wide with parity enabled.
    255K bytes of non-volatile configuration memory.
    250880K bytes of ATA System CompactFlash 0 (Read/Write)
    Press RETURN to get started!
    *Mar  1 00:00:04.931: %IOS_LICENSE_IMAGE_APPLICATION-6-LICENSE_LEVEL: Module name = c2900 Next reboot level = ipbasek9 and License = ipbasek9
    *Mar  1 00:00:05.019: %IOS_LICENSE_IMAGE_APPLICATION-6-LICENSE_LEVEL: Module name = c2900 Next reboot level = uck9 and License = uck9
    *Jan 23 07:37:07.403: %IFMGR-7-NO_IFINDEX_FILE: Unable to open nvram:/ifIndex-table No such file or directory
    *Jan 23 07:37:15.119: %MAINBOARD-1-UNKNOWN_WIC: wic card in location 0/0 has an unknown id 0x6EF
    *Jan 23 07:37:18.679: %LINEPROTO-5-UPDOWN: Line protocol on Interface VoIP-Null0, changed state to up
    *Jan 23 07:37:18.679: %LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to reset
    *Jan 23 07:37:18.679: %LINK-5-CHANGED: Interface GigabitEthernet0/1, changed state to reset
    *Jan 23 07:37:19.887: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0, changed state to down
    *Jan 23 07:37:19.887: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/1, changed state to down
    *Jan 23 07:37:20.823: %LINK-3-UPDOWN: Interface GigabitEthernet0/0, changed state to down
    *Jan 23 07:37:20.823: %LINK-3-UPDOWN: Interface GigabitEthernet0/1, changed state to down
    *Jan 23 07:37:21.063: %SYS-5-CONFIG_I: Configured from memory by console
    *Jan 23 07:37:23.083: %LINK-5-CHANGED: Interface GigabitEthernet0/1, changed state to administratively down
    *Jan 23 07:37:23.755: %SYS-5-RESTART: System restarted --
    Cisco IOS Software, C2900 Software (C2900-UNIVERSALK9-M), Version 15.1(1)T, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2010 by Cisco Systems, Inc.
    Compiled Mon 22-Mar-10 02:13 by prod_rel_team
    *Jan 23 07:37:23.759: %SNMP-5-COLDSTART: SNMP agent on host Hewitt_Noida is undergoing a cold start
    *Jan 23 07:37:37.483: %DSPRM-5-UPDOWN: DSP 1 in slot 0, changed state to up
    *Jan 23 07:37:37.483: %DSPRM-5-UPDOWN: DSP 3 in slot 0, changed state to up
    *Jan 23 07:37:37.483: %DSPRM-5-UPDOWN: DSP 2 in slot 0, changed state to up
    Hewitt_Noida>
    Hewitt_Noida>
    Hewitt_Noida>
    Hewitt_Noida>en
    Hewitt_Noida#
    Hewitt_Noida#
    Hewitt_Noida#sh diag
    Slot 0:
            C2901 Mother board 2GE, integrated VPN and 4W Port adapter, 2 ports
            Port adapter is analyzed
            Port adapter insertion time 00:00:56 ago
            EEPROM contents at hardware discovery:
            PCB Serial Number        : FOC1624697D
            Hardware Revision        : 1.0
            Part Number              : 73-11834-08
            Top Assy. Part Number    : 800-30795-06
            Board Revision           : A0
            Deviation Number         : 123694
            Fab Version              : 03
            Product (FRU) Number     : CISCO2901/K9
            Version Identifier       : V06
            CLEI Code                : CMMJA00ARA
            Processor type           : C1
            Chassis Serial Number    : FGL162722DK
            Chassis MAC Address      : d48c.b51a.b668
            MAC Address block size   : 72
            Manufacturing Test Data  : 00 00 00 00 00 00 00 00
            EEPROM format version 4
            EEPROM contents (hex):
              0x00: 04 FF C1 8B 46 4F 43 31 36 32 34 36 39 37 44 40
              0x10: 06 17 41 01 00 82 49 2E 3A 08 C0 46 03 20 00 78
              0x20: 4B 06 42 41 30 88 00 01 E3 2E 02 03 CB 8C 43 49
              0x30: 53 43 4F 32 39 30 31 2F 4B 39 89 56 30 36 20 D9
              0x40: 04 40 C1 CB C2 C6 8A 43 4D 4D 4A 41 30 30 41 52
              0x50: 41 09 C1 C2 8B 46 47 4C 31 36 32 37 32 32 44 4B
              0x60: C3 06 D4 8C B5 1A B6 68 43 00 48 C4 08 00 00 00
              0x70: 00 00 00 00 00 F3 00 65 40 01 25 41 00 87 42 00
              0x80: 00 F8 00 28 03 E8 1C 89 07 D0 20 21 0B B8 20 93
              0x90: 0F A0 21 2F 13 88 21 83 17 70 21 A8 1B 58 21 B0
              0xA0: 1F 40 21 AB 23 28 21 79 27 10 21 78 41 01 1D 42
              0xB0: 00 00 F8 00 28 03 E8 1C 20 07 D0 1F 40 0B B8 20
              0xC0: 6C 0F A0 21 34 13 88 21 34 17 70 21 98 1B 58 21
              0xD0: 98 1F 40 21 98 23 28 21 34 27 10 21 34 FF FF FF
              0xE0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
              0xF0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
            PVDM Slot 0:
            128-channel (G.711) Voice/Fax PVDM3 DSP DIMM PVDM daughter card
            Hardware Revision        : 1.0
            Part Number              : 73-11810-03
            Board Revision           : C0
            Deviation Number         : 0
            Fab Version              : 03
            PCB Serial Number        : FOC1602145Q
            RMA Test History         : 00
            RMA Number               : 0-0-0-0
            RMA History              : 00
            Processor type           : 00
            Product (FRU) Number     : PVDM3-128
            Version Identifier       : V01
            EEPROM format version 4
            EEPROM contents (hex):
              0x00: 04 FF 40 05 DC 41 01 00 82 49 2E 22 03 42 43 30
              0x10: 88 00 00 00 00 02 03 C1 8B 46 4F 43 31 36 30 32
              0x20: 31 34 35 51 03 00 81 00 00 00 00 04 00 09 00 CB
              0x30: 8F 50 56 44 4D 33 2D 31 32 38 20 20 20 20 20 20
              0x40: 89 56 30 31 20 D9 02 40 C1 FF FF FF FF FF FF FF
              0x50: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
              0x60: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
              0x70: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
            WIC Slot 0:
            Unknown WAN daughter card
            WIC module not supported/disabled in this slot
            Hardware Revision        : 1.0
            Top Assy. Part Number    : 800-34658-01
            Part Number              : 73-13420-01
            Board Revision           : B0
            Deviation Number         : 124402
            Fab Version              : 05
            PCB Serial Number        : FOC16100L9C
            Version Identifier       : V01
            Product (FRU) Number     : VWIC3-2MFT-T1/E1
            CLEI Code                : COUIA7NCAA
            RMA Test History         : 00
            RMA Number               : 0-0-0-0
            RMA History              : 00
            EEPROM format version 4
            EEPROM contents (hex):
              0x00: 04 FF 40 06 EF 41 01 00 C0 46 03 20 00 87 62 01
              0x10: 82 49 34 6C 01 42 42 30 88 00 01 E5 F2 02 05 C1
              0x20: 8B 46 4F 43 31 36 31 30 30 4C 39 43 89 56 30 31
              0x30: 20 CB 90 56 57 49 43 33 2D 32 4D 46 54 2D 54 31
              0x40: 2F 45 31 C6 8A 43 4F 55 49 41 37 4E 43 41 41 03
              0x50: 00 81 00 00 00 00 04 00 D9 03 40 C1 CB FF FF FF
              0x60: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
              0x70: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
    Hewitt_Noida#

    Hi Akshay,
    As per
    http://www.cisco.com/en/US/partner/prod/collateral/routers/ps5855/data_sheet_c36-609138.html
    VWIC3-1MFT-T1/E1 is supported since 15.1(1)T1 and later.
    Make sure you have this minimum IOS.
    HTH
    Manish

  • "Module not found" in Apple Mail

    Hi all,
    Many times when I edit a new message in Apple Mail, images do not appear after I drag them to the new email. Instead, a sentence appears. My System is in Spanish language and I haven't had the chance to see it in English but it is something like "Module not found".
    This message, instead of attached images, appears randomly so it's very difficult for me to say why is this happening. It happens in some emails I receive so I have to ask them to send them over again. In some emails received with this problem, the images appear time after if I check them back again.
    I deleted and added again my email accounts, but this didn't help. I use MobileMe and Gmail.
    If someone in this forum can help me or has got a clue about this, is very frustrating as I'm a graphic designer and there are attached images in almost every email I send or receive.
    Thanks a lot!

    Hola Carola! 
    That's what I'm talking about! I work as a Graphic Designer and it's quite absurd how I can not appreciate the images my clients send me to show changes or reviews inside the email's body.. it's not just sending but reading the images the issue remains.
    You like me (as many) don´t have enought time to reset or re-install the entire operative system (where the Apple mail is packaged) to fix such a basic problem.
    Apple had closed other discussions like this one with no response.
    -La verdad no entiendo que exista este detalle tan básico para un ordenador hecho para el sector creativo-
    Estoy creando un hashtag en twitter #modulenotfound a ver si consigo algo por ahi.. Saludos desde Madrid

  • WebService is not invoking from OAPage

    Hi,
    I created a BPEL WS which creates a employee in oracle EBS and deployed sucessfully.My requirement is to invoke this WS from a custom OAF page.I generated all STUB java classes and done all coding in the controller of the page.The problem is WS is not invoking,no error is throwing.
    I am pasting my WSDL file and stub class
    CreateEmployee WSDL
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
    name="CreateEmployee"
    targetNamespace="http://xmlns.oracle.com/CreateEmployee"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://xmlns.oracle.com/CreateEmployee"
    xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
    xmlns:ns1="http://www.globalcompany.com/ns/sales"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:client="http://xmlns.oracle.com/CreateEmployee"
    >
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.globalcompany.com/ns/sales"
    xmlns:po="http://www.globalcompany.com/ns/sales"
    elementFormDefault="qualified">
    <annotation>
    <documentation xml:lang="en">
    Order Booking schema for GlobalCompany.com.
    Copyright 2005 GlobalCompany.com. All rights reserved.
    </documentation>
    </annotation>
    <element name="EmployeeDetails" type="po:EmployeeDetails"/>
    <complexType name="EmployeeDetails">
    <sequence>
    <element name="EmployeeNumber" type="string"/>
    <element name="DOB" type="date"/>
    <element name="LastName" type="string"/>
    <element name="Bgid" type="integer"/>
    <element name="EffectiveDate" type="date"/>
    <element name="Gender" type="string"/>
    </sequence>
    </complexType>
    </schema>
    <xs:schema targetNamespace="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" blockDefault="#all">
    <!-- //////////////////// WS-Addressing //////////////////// -->
    * <!-- Endpoint reference -->*
    * <xs:element name="EndpointReference" type="wsa:EndpointReferenceType"/>*
    * <xs:complexType name="EndpointReferenceType">*
    * <xs:sequence>*
    * <xs:element name="Address" type="wsa:AttributedURI"/>*
    * <xs:element name="ReferenceProperties" type="wsa:ReferencePropertiesType" minOccurs="0"/>*
    * <xs:element name="PortType" type="wsa:AttributedQName" minOccurs="0"/>*
    * <xs:element name="ServiceName" type="wsa:ServiceNameType" minOccurs="0"/>*
    * <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">*
    * <xs:annotation>*
    * <xs:documentation>*
    * If "Policy" elements from namespace "http://schemas.xmlsoap.org/ws/2002/12/policy#policy" are used, they must appear first (before any extensibility elements).*
    * </xs:documentation>*
    * </xs:annotation>*
    *</xs:any> *
    * </xs:sequence>*
    * <xs:anyAttribute namespace="##other" processContents="lax"/>*
    * </xs:complexType>*
    * <xs:complexType name="ReferencePropertiesType">*
    * <xs:sequence>*
    * <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>*
    * </xs:sequence>*
    * </xs:complexType>*
    * <xs:complexType name="ServiceNameType">*
    * <xs:simpleContent>*
    * <xs:extension base="xs:QName">*
    * <xs:attribute name="PortName" type="xs:NCName"/>*
    * <xs:anyAttribute namespace="##other" processContents="lax"/>*
    * </xs:extension>*
    * </xs:simpleContent>*
    * </xs:complexType>*
    * <!-- Message information header blocks -->*
    * <xs:element name="MessageID" type="wsa:AttributedURI"/>*
    * <xs:element name="RelatesTo" type="wsa:Relationship"/>*
    * <xs:element name="To" type="wsa:AttributedURI"/>*
    * <xs:element name="Action" type="wsa:AttributedURI"/>*
    * <xs:element name="From" type="wsa:EndpointReferenceType"/>*
    * <xs:element name="ReplyTo" type="wsa:EndpointReferenceType"/>*
    * <xs:element name="FaultTo" type="wsa:EndpointReferenceType"/>*
    * <xs:element name="Recipient" type="wsa:EndpointReferenceType"/>*
    * <xs:complexType name="Relationship">*
    * <xs:simpleContent>*
    * <xs:extension base="xs:anyURI">*
    * <xs:attribute name="RelationshipType" type="xs:QName" use="optional"/>*
    * <xs:anyAttribute namespace="##other" processContents="lax"/>*
    * </xs:extension>*
    * </xs:simpleContent>*
    * </xs:complexType>*
    * <xs:simpleType name="RelationshipTypeValues">*
    * <xs:restriction base="xs:QName">*
    * <xs:enumeration value="wsa:Response"/>*
    * </xs:restriction>*
    * </xs:simpleType>*
    * <!-- Common declarations and definitions -->*
    * <xs:complexType name="AttributedQName">*
    * <xs:simpleContent>*
    * <xs:extension base="xs:QName">*
    * <xs:anyAttribute namespace="##other" processContents="lax"/>*
    * </xs:extension>*
    * </xs:simpleContent>*
    * </xs:complexType>*
    * <xs:complexType name="AttributedURI">*
    * <xs:simpleContent>*
    * <xs:extension base="xs:anyURI">*
    * <xs:anyAttribute namespace="##other" processContents="lax"/>*
    * </xs:extension>*
    * </xs:simpleContent>*
    * </xs:complexType>*
    </xs:schema>
    </types>
    <message name="CreateEmployeeResponseMessage">
    <part name="payload" element="ns1:EmployeeDetails"/>
    </message>
    <message name="CreateEmployeeRequestMessage">
    <part name="payload" element="ns1:EmployeeDetails"/>
    </message>
    <message name="WSARelatesToHeader">
    <part name="RelatesTo" element="wsa:RelatesTo"/>
    </message>
    <message name="WSAReplyToHeader">
    <part name="ReplyTo" element="wsa:ReplyTo"/>
    </message>
    <message name="WSAMessageIDHeader">
    <part name="MessageID" element="wsa:MessageID"/>
    </message>
    <portType name="CreateEmployeeCallback">
    <operation name="onResult">
    <input message="tns:CreateEmployeeResponseMessage"/>
    </operation>
    </portType>
    <portType name="CreateEmployee">
    <operation name="initiate">
    <input message="tns:CreateEmployeeRequestMessage"/>
    </operation>
    </portType>
    <binding name="CreateEmployeeCallbackBinding" type="tns:CreateEmployeeCallback">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="onResult">
    <soap:operation style="document" soapAction="onResult"/>
    <input>
    <soap:header message="tns:WSARelatesToHeader" part="RelatesTo" use="literal" encodingStyle=""/>
    <soap:body use="literal"/>
    </input>
    </operation>
    </binding>
    <binding name="CreateEmployeeBinding" type="tns:CreateEmployee">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="initiate">
    <soap:operation style="document" soapAction="initiate"/>
    <input>
    <soap:header message="tns:WSAReplyToHeader" part="ReplyTo" use="literal" encodingStyle=""/>
    <soap:header message="tns:WSAMessageIDHeader" part="MessageID" use="literal" encodingStyle=""/>
    <soap:body use="literal"/>
    </input>
    </operation>
    </binding>
    <service name="CreateEmployee">
    <port name="CreateEmployeePort" binding="tns:CreateEmployeeBinding">
    <soap:address location="http://kbace12:8888/orabpel/default/CreateEmployee/1.0"/>
    </port>
    </service>
    <service name="CreateEmployeeCallbackService">
    <port name="CreateEmployeeCallbackPort" binding="tns:CreateEmployeeCallbackBinding">
    <soap:address location="http://set.by.caller"/>
    </port>
    </service>
    <plnk:partnerLinkType name="CreateEmployee">
    <plnk:role name="CreateEmployeeProvider">
    <plnk:portType name="tns:CreateEmployee"/>
    </plnk:role>
    <plnk:role name="CreateEmployeeRequester">
    <plnk:portType name="tns:CreateEmployeeCallback"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>
    CreateEmployeeStub.java
    package mentor.oracle.apps.webservices;
    import oracle.soap.transport.http.OracleSOAPHTTPConnection;
    import org.apache.soap.encoding.soapenc.BeanSerializer;
    import org.apache.soap.encoding.SOAPMappingRegistry;
    import org.apache.soap.util.xml.QName;
    import java.util.Vector;
    import org.w3c.dom.Element;
    import java.net.URL;
    import org.apache.soap.Body;
    import org.apache.soap.Envelope;
    import org.apache.soap.messaging.Message;
    import java.util.Properties;
    public class CreateEmployeeStub
    //public String endpoint = "http://172.16.1.157:8888/orabpel/default/CreateEmployee/1.0";
    private OracleSOAPHTTPConnection m_httpConnection = null;
    private SOAPMappingRegistry m_smr = null;
    public CreateEmployeeStub()
    m_httpConnection = new OracleSOAPHTTPConnection();
    public void initiate(Element requestElem) throws Exception
    URL endpointURL = new URL( "http://172.16.1.157:8888/orabpel/default/CreateEmployee/1.0");
    Envelope requestEnv = new Envelope();
    Body requestBody = new Body();
    Vector requestBodyEntries = new Vector();
    requestBodyEntries.addElement(requestElem);
    requestBody.setBodyEntries(requestBodyEntries);
    requestEnv.setBody(requestBody);
    Message msg = new Message();
    msg.setSOAPTransport(m_httpConnection);
    msg.send(endpointURL, "initiate", requestEnv);
    and Input to initiate method is in the form of XML
    <ns1:EmployeeDetails>
    <ns1:EmployeeNumber>6999</ns1:EmployeeNumber>
    <ns1:DOB>2000-07-15</ns1:DOB>
    <ns1:LastName>Manoj9334</ns1:LastName>
    <ns1:Bgid>7577</ns1:Bgid>
    <ns1:EffectiveDate>2009-07-15</ns1:EffectiveDate>
    <ns1:Gender>M</ns1:Gender>
    </ns1:EmployeeDetails>
    that i created using org.w3c.dom.Element class before invoking the initiate method.
    Please give solution to this problem
    Thanks in Advance

    You better ask this in the [OA Forum|http://forums.oracle.com/forums/forum.jspa?forumID=210]
    Timo

  • ORACLE ADF 11g /JSF TO  serviet (Service method) not invoking

    Hi,
    ORACLE ADF 11g /JSF TO serviet (Service method) not invoking
    My project name is : ComplProject
    inside the project im having 1 jsp say x.jsp
    work environment : (oracleADF 11g) jdev11 and weblogic server 10.3
    in x.jsp im displaying 1 go link -> when ever we click on GO link it should go to ComplServlet.java
    i tried like,
    FacesContext.getCurrentInstance().getExternalContext().redirect("/servlet/ComplServlet");
    the "ComplServlet" is an URL pattern in web.xml which points to servlet.
    but not working
    i pointed to faces-config.xml also , not working
    i tried to forward like
    FacesContext context = FacesContext.getCurrentInstance();
    ServletContext sContext = (ServletContext)context.getExternalContext().getContext();
    ServletRequest request = (ServletRequest)context.getExternalContext().getRequest();
    System.out.println("third line...............");
    HttpServletResponse response = (HttpServletResponse)context.getExternalContext().getResponse();
    response.sendRedirect("/servlet/ViewDocument");
    sContext.getRequestDispatcher("/servlet/ViewDocument").include(request, response);
    brief
    (from jsf page) after clicking on GO LINK i need to redirect or control should go to servlet ->service method
    thanks in advance
    regards,
    sandeep

    Hi,
    i tried like,
    FacesContext.getCurrentInstance().getExternalContext().redirect("/servlet/ComplServlet");
    the "ComplServlet" is an URL pattern in web.xml which points to servlet.
    but not workingUse like following.
        public HttpServletRequest getServletRequest() {
            return (HttpServletRequest)facesContext.getExternalContext().getRequest();
        public redirect(String url){
           getServletRequest().sendRedirect(getServletRequest().getContextPath() + "/servlet/ComplServlet");
        }If you are using golink as frank suggested then use it like this.
    <af:goLink text="ComplServlet" destination="/servlet/ComplServlet"/>no need of using context when using goLink,
    Regards,
    Santosh.

Maybe you are looking for