File Attachment - solution found !!!

For those that have been trying to use the file upload control that comes with the Business Process Editor, the solution below will allow you to get hold of the attached file attachment and encode the data in base64. There have been many questions on this but here is the solution from Sun Support and hope that this will help someone too:
<Field name='FileUpper-ad'>
<Display class='FileUpload'>
<Property name='title' value='JPEG Photo'/>
</Display>
</Field>
<Field name='accounts[MyLDAP].attachment'>
<Expansion>
<block>
<cond>
<isnull>
<ref>FileUpper-ad</ref>
</isnull>
<ref>accounts[MyLDAP].attachment</ref>
<new class='com.waveset.util.Binary'>
<ref>FileUpper-ad</ref>
</new>
</cond>
</block>
</Expansion>
</Field>
Thank you Sun support.

The fileupload XPress control isnt so hard to understand. Difficult to use perhaps but not so ununderstandable.
From my experiments with a Form accessed by a browser started on a PC which is connecting to an IDM server running on a Solaris machine, the Upload control allows you to search for files on your PC (or on network disks accessible from the PC) and "upload" it. What I have seen is this control putting the uploaded file somewhere on the IDM server and naming it somehow. The trick is to store where IDM puts this uploaded copy and to figure out its name... so that in the future you can grab the file off the IDM server and attach it to an Email.... And of course unlink the uploaded file when you have no further use for it.
As you say there has been some discussion of this in the Sun IDM FAQ but nowhere is there a start to finish cookbook.
GF

Similar Messages

  • IMessage,,,video file attachement not found

    My gf send me an email with an video attachement using iMessage from her iPhone,but when i open my inbox from my iPod touch 4th  i recieved the email but there nothing in to it, it say's "This message has no content" is there anyone could help me how to retrieve the attachement?
    thank you:

    Well, I gave up, blew away the partition and started over with a primary partition using ext4.  Worked without a hitch, go figure...

  • File Attachment in Sandboxed Solution

    I was using below code to insert item in the list with the file attachement using farm solution
    <asp:TextBox ID="txtBoxTitle" runat="server"></asp:TextBox>
    <asp:FileUpload ID="flUpload" runat="server" />
    <asp:Button ID="btnSave" runat="server" Text="Save" OnClick="btnSave_Click"  />
    in code behind
     protected void btnSave_Click(object sender, EventArgs e)
                try
                    using (SPSite site = new SPSite(SPContext.Current.Site.OpenWeb().Url))
                        using (SPWeb web = site.OpenWeb())
                            SPList list = web.Lists["Test"];
                            SPListItem item = list.Items.Add();
                            item["Title"] = txtBoxTitle.Text;
                            AttachfileToListWithPrefix(item, flUpload, "", "Attachment1_");
                            item.Update();
                catch (Exception ex)
            public static void AttachfileToListWithPrefix(SPListItem item, FileUpload file, string fileName, string prefix)
                if (file.PostedFile != null && file.HasFile)
                    if (file.PostedFile.ContentLength > 0)
                        if (fileName == "")
                            fileName = file.PostedFile.FileName;
                            fileName = fileName.Substring(fileName.LastIndexOf(@"\") + 1).Replace(@"\", "");
                        System.IO.Stream stream = file.PostedFile.InputStream;
                        byte[] contents = new byte[stream.Length];
                        stream.Read(contents, 0, (int)stream.Length);
                        stream.Close();
                        stream.Dispose();
                        //to identify each attachment with list item...because item might have 1 to 6 different attachment(s)
                        fileName = prefix + fileName;
                        //objAttchments.Add(fileName, byt);   
                        SPAttachmentCollection objAttchments = item.Attachments;
                        if (objAttchments.Count > 0)
                            for (int i = 0; i < objAttchments.Count; i++)
                                if (objAttchments[i].Contains(prefix))
                                    objAttchments.Delete(objAttchments[i]);
                        objAttchments.Add(fileName, contents);
    now i want to do the same thing in the sandboxed solution,but when  i try to do that it does not insert attachment in the list.
    can anyone help how can i insert attachment through sandboxed solution??

    can anyone help me on this??

  • After installation of Mavericks, I get the warning : Apple Qmaster File Agent not found.  Any solutions?

    Hello,
    Everything was great running Mavericks in FCPX and seemingly Compressor... up until I hit the 'submit' button on a project.  I found the following thread, which is related, but it doesn't mention Mavericks so I started a new one here.  I'm guessing my problem has to do with Mavericks because I was able to export videos fine yesterday before the upgrade.   I followed Russ' potential solution in that thread to no avail.  The same problem happens whether I try to use the systems cluster or not.  Here's the thread:
    https://discussions.apple.com/message/23434754#23434754
    After trying all of that, I decided to use FCS Remover to remove FCPX, Compressor and QMaster (like I've had to do in the past when something would stop working after an update).  I then re-installed everything and opened my Compressor project back up for export.  I was expecting it to go through at that point, but alas, the same dreaded warning message appears:  "An internal error occurred: Apple Qmaster File Agent not found."
    I'm stumped.  Don't know what to do besides uninstalling all my pro apps, including QMaster, and reinstalling.
    Any ideas? 

    I set QMaster Preferences for Compressor Services to "Share" = checked and "Managed" = Checked, then I set Instances to 4, it did not work, back to the original error "Qmaster file Agent not found".
    Look at some of your information I noticed that in Qmaster Preference the "Advanced" - Network - Use Network Interface: "All Interfaces". So I changed that to "Built-in Ethernet 2" (NIC my cable is plugged into) and set "Enable Port Range: From 50,000 with number of ports 1000".
    So, for the heck of it I tried setting Instances to 2 -- and it worked, look in Batch Monitor I see 5 segments, 1 audio and 4 video with 2 out of 4 video transcoding (each was assigned about a 2 min chunk of video). Progress -- ok, so now I set Instances to 3 and submit batch -- it's still working, I get 7 segments 6 video and 1 audio. Ok the big test, setting Instances to 4 and it still works!! 9 segments, 8 video and 1 audio, WoooHoo, its working!
    Just to be sure I open up Activity monitor and all 4 of my CPUs were cranking at 95% utilization.
    Also checked OS X firewall setting, they are set to most minimal. Checked my router also, 192.168.1.2 is the IP assigned to my MacPro and the router is set to DMZ that specific IP (meaning is basically open to any port).
    But I think the KEY in my case was to change the "Use Network Interface" from "All Interfaces" to "Built-in Ethernet 2" and then Enable Port Range from 50,000.
    On a side note, the progress bars in Batch Monitor and in Compressor are way off with the "Remaining" time estimates -- overall progress will suddenly jump -- it looks as if the remaining time isn't being divided by the number segments currently running or something?
    Thank you for your assistance.
    Rob.

  • File attachment in yahoo mail does not appeare in Firefox 4, but IE & other web browsers show correctly.

    Before I install Firefox 4, I have been use Firefox 3.6 and when I was checking my yahoo mail, there was not any problem to view or download file attachment.
    After installing Firefox 4, when I receive a new mail with file attachment, like as video, or document, I can not see the attachment to download it. but with other web browsers like IE, I can see the attachment of the email.

    Hi!
    People using a Trend Micro virus scanner should disable some webmail function. You can find the solution [http://en.kioskea.net/forum/affich-33677-can-t-download-attachments-on-my-yahoo-email here]
    I do not use Trend Micro, but have the same issues. I just found my "AdBlock Plus" add-on was stopping the attachment download. What you should do to see if this is your problem too: disable AdBlock Plus, restart firefox and see if your problem is solved. Now enable AdBlock Plus again and restart Firefox.
    To fix this problem: In Firefox, click on Add-ons, go to AdBlock Plus, go to Options, click on Filters--> reset statistics. Go to your attachment, click on the attachment (it will fail to download of course). Go back to AdBlock Plus and sort the statistics for "Hits". Now you can see which filter is blocking your attachment download. Disable this filter and you problem is solved!
    Regards!

  • IPM screeen giving the error in AXF Manage Attachment Solution

    Hi Experts,
    I am trying to implement the AXF manage attachment solution with ORACLE ECM and facing the below issue.
    When I click the the 'Manage Attachment' from zoom functionality the IPM login screen giving me the below error.
    Error Id - 8087beb9-9c43-4445-a663-8ce6e5f697e4
    Message -A system error has occurred, please contact your system administrator with the error ID
    Below are the log in details.
    User Name - IMGUSER in (EBS R12.1.3)
    also the same user also created on IPM and UCM.
    IMGUSER_Response.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    - <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    - <S:Body>
    - <executeResponse xmlns:ns2="http://service.axf.imaging.oracle/">
    - <response>
    <conversationId>e9df6ba1-d1d4-4c7b-9b52-4bc69e3b5fa0</conversationId>
    <errorCode>TCM-91023</errorCode>
    - <responseCommands>
    <command>OPEN_BROWSER</command>
    <value>http://172.16.65.98:16000/imaging/faces/Message/Message.jspx?errorId=8087beb9-9c43-4445-a663-8ce6e5f697e4</value>
    </responseCommands>
    </response>
    </executeResponse>
    </S:Body>
    </S:Envelope>
    As I found TCM-91023 error relates to
    TCM-91023 Error accessing credential from CSF having key {0}.
    IMGUSER_RAW_response.txt
    <?xml version='1.0' encoding='UTF-8'?>
    <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    <S:Body><ns2:executeResponse xmlns:ns2="http://service.axf.imaging.oracle/">
    <response><conversationId>e9df6ba1-d1d4-4c7b-9b52-4bc69e3b5fa0</conversationId>
    <errorCode>TCM-91023</errorCode>
    <responseCommands><command>OPEN_BROWSER</command>
    <value>http://172.16.65.98:16000/imaging/faces/Message/Message.jspx?errorId=8087beb9-9c43-4445-a663-8ce6e5f697e4</value>
    </responseCommands>
    </response></ns2:executeResponse></S:Body></S:Envelope>
    IMGUSER_MASTER_LOG
    03-27-2013 06:44:35 AXFCustom.main: Enter (WHEN-LOGON-CHANGED)
    03-27-2013 06:44:35 Memory EVENTS =
    03-27-2013 06:44:35 Initialized EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:38 AXFCustom.main: Enter (WHEN-RESPONSIBILITY-CHANGED)
    03-27-2013 06:44:38 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:38 AXFCustom.main: Enter (WHEN-VALIDATE-ITEM)
    03-27-2013 06:44:38 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:38 AXFCustom.main: Enter (WHEN-CREATE-RECORD)
    03-27-2013 06:44:38 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:39 AXFCustom.main: Enter (WHEN-NEW-FORM-INSTANCE)
    03-27-2013 06:44:39 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:39 FormName: AP_APXINWKB AXFConfig-FormID: 1 Event: WHEN-NEW-FORM-INSTANCE UserName:imguser
    03-27-2013 06:44:39 init_special_menus Enter
    03-27-2013 06:44:39 init_special_menus Exit
    03-27-2013 06:44:39 AXFCustom.main: Exit
    03-27-2013 06:44:39 AXFCustom.main: Enter (WHEN-NEW-BLOCK-INSTANCE)
    03-27-2013 06:44:39 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:39 FormName: AP_APXINWKB AXFConfig-FormID: 0 Event: WHEN-NEW-BLOCK-INSTANCE UserName:imguser
    03-27-2013 06:44:39 init_special_menus Enter
    03-27-2013 06:44:39 init_special_menus Exit
    03-27-2013 06:44:39 AXFCustom.main: Exit
    03-27-2013 06:44:39 AXFCustom.main: Enter (WHEN-NEW-RECORD-INSTANCE)
    03-27-2013 06:44:39 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:39 AXFCustom.main: Enter (WHEN-NEW-ITEM-INSTANCE)
    03-27-2013 06:44:39 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:39 FormName: AP_APXINWKB AXFConfig-FormID: 0 Event: WHEN-NEW-ITEM-INSTANCE UserName:imguser
    03-27-2013 06:44:39 init_special_menus Enter
    03-27-2013 06:44:39 init_special_menus Exit
    03-27-2013 06:44:39 AXFCustom.main: Exit
    03-27-2013 06:44:44 AXFCustom.main: Enter (POST-QUERY)
    03-27-2013 06:44:44 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:44 AXFCustom.main: Enter (WHEN-VALIDATE-RECORD)
    03-27-2013 06:44:44 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:45 AXFCustom.main: Enter (WHEN-VALIDATE-RECORD)
    03-27-2013 06:44:45 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:45 AXFCustom.main: Enter (WHEN-NEW-BLOCK-INSTANCE)
    03-27-2013 06:44:45 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:45 FormName: AP_APXINWKB AXFConfig-FormID: 1 Event: WHEN-NEW-BLOCK-INSTANCE UserName:imguser
    03-27-2013 06:44:45 init_special_menus Enter
    03-27-2013 06:44:45 init_special_menus Exit
    03-27-2013 06:44:45 AXFCustom.main: Exit
    03-27-2013 06:44:45 AXFCustom.main: Enter (WHEN-NEW-BLOCK-INSTANCE)
    03-27-2013 06:44:45 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:45 FormName: AP_APXINWKB AXFConfig-FormID: 1 Event: WHEN-NEW-BLOCK-INSTANCE UserName:imguser
    03-27-2013 06:44:45 init_special_menus Enter
    03-27-2013 06:44:45 init_special_menus Exit
    03-27-2013 06:44:45 AXFCustom.main: Exit
    03-27-2013 06:44:45 AXFCustom.main: Enter (WHEN-NEW-RECORD-INSTANCE)
    03-27-2013 06:44:45 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:45 AXFCustom.main: Enter (WHEN-NEW-ITEM-INSTANCE)
    03-27-2013 06:44:45 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:45 FormName: AP_APXINWKB AXFConfig-FormID: 1 Event: WHEN-NEW-ITEM-INSTANCE UserName:imguser
    03-27-2013 06:44:45 init_special_menus Enter
    03-27-2013 06:44:45 init_special_menus Exit
    03-27-2013 06:44:45 AXFCustom.main: Exit
    03-27-2013 06:44:50 AXFCustom.main: Enter (ZOOM)
    03-27-2013 06:44:50 Memory EVENTS = ,ZOOM,POST-INSERT
    03-27-2013 06:44:50 FormName: AP_APXINWKB AXFConfig-FormID: 1 Event: ZOOM UserName:imguser
    03-27-2013 06:44:50 IS_paperclip--->Enter
    03-27-2013 06:44:50 PaperClip is enabled
    03-27-2013 06:44:55 AXF.Check_For_Axf_Version Enter
    03-27-2013 06:44:55 AXF.Check_For_Axf_Version Axf version is 2
    03-27-2013 06:44:55 AXFCustom.launch_command_soap AXFVersion = 2
    03-27-2013 06:44:55 AXFCustom.launch_command_soap Calling get form id
    03-27-2013 06:44:55 AXFCustom.launch_command_soap Calling AXF_MANAGES attachment
    03-27-2013 06:44:55 AXFCustom.launch_command_soap Calling get command name for eventid: 21
    03-27-2013 06:44:55 AXFCustom.launch_command_soap***********************************************************
    03-27-2013 06:44:55 AXFCustom.launch_command_soap Command Received UCM_Managed_Attachments User:imguser Form:APXINWKB Instance:3
    03-27-2013 06:44:55 AXFCustom.launch_command_soapDataBlock received from DB = AXF_DEFAULT
    03-27-2013 06:44:55 is_multipleinstance_on--->Enter
    03-27-2013 06:44:55 AXFCustom.launch_command_soap Stored CconversationID :
    03-27-2013 06:44:55 AXFCustom.launch_command_soap Endpoint is defined as : http://172.16.65.98:16000/axf-ws/AxfSolutionMediatorService
    03-27-2013 06:44:55 IS_soap_security--->Enter
    03-27-2013 06:44:55 Get_soap_policy ---> enter
    03-27-2013 06:44:55 Policy ----> USER_NAME_TOKEN
    03-27-2013 06:44:55 Setting the soapSecurity
    03-27-2013 06:44:55 get_username_token policy ---> enter
    03-27-2013 06:44:55 get_soap_username ----> enter
    03-27-2013 06:44:55 SOAP userid = weblogic
    03-27-2013 06:44:55 Get_Soap_password ---> Enter
    03-27-2013 06:44:55 get_soap_username ----> enter
    03-27-2013 06:44:55 get_soap_username ----> enter
    03-27-2013 06:44:55 Get_Soap_password ---> Enter
    03-27-2013 06:44:55 AXFCustom.get_transaction_id DataValue for APXINWKB-->INV_SUM_FOLDER.INVOICE_ID is found to be (10000)
    03-27-2013 06:44:55 AXFCustom.get_transaction_id DataValue for APXINWKB-->INV_SUM_FOLDER.INVOICE_NUM is found to be (IMG_TEST_INVOICE)
    03-27-2013 06:44:55 AXFCustom.get_transaction_id DataValue for APXINWKB-->INV_SUM_FOLDER.VENDOR_NAME is found to be (ABC Supplier)
    03-27-2013 06:44:55 AXF.Check_For_Secure_Mode Enter
    03-27-2013 06:44:55 AXF.Check_For_Secure_Mode Secure Mode is found to be FALSE
    03-27-2013 06:44:55 AXFCustom.launch_command_soap , Secure Mode is OFF
    03-27-2013 06:44:55 AXFUtils.get_single_node_valueV_NL is NULL
    03-27-2013 06:44:55 AXFUtils.get_single_node_value Node Name1=conversationId ; Node Value1=e9df6ba1-d1d4-4c7b-9b52-4bc69e3b5fa0
    03-27-2013 06:44:55 AXFCustom.launch_command_soap Response ConversationID: e9df6ba1-d1d4-4c7b-9b52-4bc69e3b5fa0
    03-27-2013 06:44:55 AXFCustom.launch_command_soapDataBlock received from DB = INV_SUM_FOLDER
    03-27-2013 06:44:55 is_multipleinstance_on--->Enter
    03-27-2013 06:44:55 AXFUtils.get_single_node_value Node Name1=command ; Node Value1=OPEN_BROWSER
    03-27-2013 06:44:55 AXFUtils.get_single_node_value Node Name1=value ; Node Value1=http://172.16.65.98:16000/imaging/faces/Message/Message.jspx?errorId=8087beb9-9c43-4445-a663-8ce6e5f697e4
    03-27-2013 06:44:55 AXFCustom.launch_command_soap OPEN URL http://172.16.65.98:16000/imaging/faces/Message/Message.jspx?errorId=8087beb9-9c43-4445-a663-8ce6e5f697e4
    03-27-2013 06:44:55 AXFCustom.launch_command_soap Target : _e9df6ba1d1d44c7b9b524bc69e3b5fa01
    03-27-2013 06:44:55 AXFCustom.main: Exit
    IMGUSER_raw_request.txt
    <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Header><Security xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"><UsernameToken> <Username>weblogic</Username> <Password>pwcpassword321</Password> </UsernameToken> </Security></soap:Header><soap:Body><execute xmlns="http://service.axf.imaging.oracle/"><request xmlns=""><commandNamespace>UCM_Managed_Attachments</commandNamespace><conversationId></conversationId><requestParameters><entry><key>businessObjectType</key><value>AP_INVOICES</value></entry><entry><key>businessObjectKey1</key><value>INV_SUM_FOLDER.INVOICE_ID</value></entry><entry><key>businessObjectValue1</key><value>10000</value></entry><entry><key>labelValue1</key><value>IMG_TEST_INVOICE</value></entry><entry><key>labelValue2</key><value>ABC+Supplier</value></entry><entry><key>application</key><value>PWCEBS</value></entry></requestParameters><role>guest</role><solutionNamespace>UCM_Managed_Attachments</solutionNamespace><systemName>Oracle</systemName><userContext><entry><key>RESP_ID</key><value>20639</value></entry><entry><key>RESP_APPL_ID</key><value>200</value></entry><entry><key>ORG_ID</key><value>82</value></entry><entry><key>USR_ID</key><value>1110</value></entry></userContext><username>imguser</username></request></execute></soap:Body></soap:Envelope>
    The weblogic log file showing the below error.
    Mar 27, 2013 3:35:31 AM oracle.imaging.axf.resources.AxfException <init>
    SEVERE: Error accessing credential from CSF having key MA_CSF_KEY
    oracle.imaging.axf.resources.AxfException
    at oracle.imaging.axf.commands.ucm.AfGrantAccessCommand.execute(AfGrantAccessCommand.java:178)
    at oracle.imaging.axf.service.AxfCommandMediatorBean.executeCommand(AxfCommandMediatorBean.java:102)
    at oracle.imaging.axf.service.AxfCommandMediatorBean.execute(AxfCommandMediatorBean.java:61)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
    at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
    at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy273.execute(Unknown Source)
    at oracle.imaging.axf.service.AxfCommandMediator_kr0fzi_AxfCommandMediatorRemoteImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
    at oracle.imaging.axf.service.AxfCommandMediator_kr0fzi_AxfCommandMediatorRemoteImpl.execute(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
    at $Proxy148.execute(Unknown Source)
    at oracle.imaging.axf.service.AxfSolutionMediatorBean.execute(AxfSolutionMediatorBean.java:148)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
    at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
    at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy270.execute(Unknown Source)
    at oracle.imaging.axf.service.AxfSolutionMediator_xc27sg_AxfSolutionMediatorRemoteImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
    at oracle.imaging.axf.service.AxfSolutionMediator_xc27sg_AxfSolutionMediatorRemoteImpl.execute(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
    at $Proxy147.execute(Unknown Source)
    at oracle.imaging.axf.ws.AxfSolutionMediatorWS.execute(AxfSolutionMediatorWS.java:59)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:92)
    at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:74)
    at com.sun.xml.ws.server.InvokerTube$2.invoke(InvokerTube.java:151)
    at com.sun.xml.ws.server.sei.EndpointMethodHandlerImpl.invoke(EndpointMethodHandlerImpl.java:268)
    at com.sun.xml.ws.server.sei.SEIInvokerTube.processRequest(SEIInvokerTube.java:100)
    at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:866)
    at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:815)
    at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:778)
    at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:680)
    at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:403)
    at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:539)
    at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:253)
    at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:140)
    at weblogic.wsee.jaxws.WLSServletAdapter.handle(WLSServletAdapter.java:171)
    at weblogic.wsee.jaxws.HttpServletAdapter$AuthorizedInvoke.run(HttpServletAdapter.java:708)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
    at weblogic.wsee.util.ServerSecurityHelper.authenticatedInvoke(ServerSecurityHelper.java:103)
    at weblogic.wsee.jaxws.HttpServletAdapter$3.run(HttpServletAdapter.java:311)
    at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:336)
    at weblogic.wsee.jaxws.JAXWSServlet.doRequest(JAXWSServlet.java:99)
    at weblogic.servlet.http.AbstractAsyncServlet.service(AbstractAsyncServlet.java:99)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Also i have not found any rows on AFGrants and AFObjects table.
    Could any one please help me ?

    Have you completed this step?
    Creating a Credential Using Enterprise Manager
    1. Log in to Enterprise Manager.
    2. Right-click on your domain under WebLogic Domain.
    3. Click Security and then Credentials.
    4. Select the oracle.wsm.security map. If it does not exist, follow these steps:
    a. Select Create Map.
    b. Enter oracle.wsm.security in the map field and click OK.
    5. Expand the oracle.wsm.security map.
    6. Click Create Key. The key is now available for selection.
    7. Enter MA_CSF_KEY as the key name.
    8. Select password in the Type field.
    9. Enter a username and password for a valid Oracle WebLogic Server administrator
    (for example, weblogic and Welcome1).
    10. Click OK.
    Regards,
    -Mukesh

  • SQL Server 2008 .MDF File attaching issue

    Hy all guys here is big Happy news about the SQL Server 2008 database.mdf file attaching issue on Windows 8.1 and SQL Server 2008
    I found the solution like this
    first you go to the directory of your computer and go to that folder where your database and other files are like
    folder having database and files then > Right click and > security > then give full rights from which user you LOGIN and then apply > ok after that go to SQL Server 2008 > Right Click > run as administrator
    Hurray your problem will be resolve I Resolved my issue too  thanks to providing every solution
    if you guys find solution please give me best regards thanks  

    Hi Farhan-Islam,
    Glad to hear that your issue had been solved by yourself. Thank you for your sharing which will help other forum members who have the similar issue.
    Regards,
    Lydia Zhang

  • No thumbnails visible when doing file attach or insert picture from file

    Hi,
    Running OS X 10.4 (Tiger) on a MacBook Pro, I don't see image thumbnails when doing a file attach (or other similar "browse" dialog).
    I do see image thumbnails when changing the desktop background (until I go to Choose Folder) but not when doing tasks like these:
    -- File attach, such as when I'm sending a picture of my kitty cat (using Gmail from either Firefox of Safari).
    -- In Word for Mac: 2004, the Insert Picture dialog (the final dialog box is titles "Choose a Picture").
    -- In Pages '08, the Insert, Choose dialog.
    It there a solution short of firing up VMWare Fusion and doing this from <ack!> Windows?
    I've looked around a fair amount but not found an answer.

    HI Bob,
    In GMail, when you navigate to your images folder, it will be in a Finder window. Make sure your Finder window preferences are set to "Columns". Open a Finder window. In the Toolbar, there is one set with 3 different options... List, Columns, or Icons... choose Columns. When you go to select an image, you should be able to see the thumbnail version in the contextual menu that expands to the right.
    Carolyn

  • NQS Error: 47077 NQS Config .ini file was not found

    Hi All,
    I just installed OBIEE 11.1.1.7 on my windows 64 bit. And trying to install OBIA 7.9.6.4 on the top of this . While installing I am getting an error :
    NQS Error : 47077 NQS Config.ini file was not found. Make sure your environment is set up properly.
    Pleasw help me out guys.. I am new to this OBIA installation.

    its a BUG
    see this Installing BI Applications 7.9.6.4 on BI EE 11.1.1.7.0 (Doc ID 1561846.1)
    Please down the attached file Technote1561846.1_InstallSecurity.zip and apply the solution.

  • Error message: iTunes Library.itl file cannot be found or created

    I just upgraded to iTunes 7.0.2 and it will not launch. The following error appears:
    "The iTunes Library.itl file cannot be found or created. The default location for this file is in the "iTunes" folder in the "MyMusic" folder"
    I have uninstalled, re-installed and tried all the possible solutions on the Troubleshooting section, including repair and nothing works. I have both a Library.itl and a Library.xml file in the following path: C:\Documents and Setting\user\My Documents\My Music\iTunes - not sure what to do next.
    Right now I'd take my old version back if I could figure out how to get it.
    Dell Dimension 5150   Windows XP Pro  

    When you get that message, does iTunes give you the option of locating the file? If so, then browse to the file and select it. If you don't get that option, I believe that holding down the shift key (or possibly the control key) when you launch iTunes should cause you to get the option.

  • The iTunes Library.itl file cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder. PLEASE HELP!!!

    I have been trying for over 2 weeks now trying to get my iTunes to open up so I can use my iTunes but I have not had any luck since I up graded to the new itunes. I have tried uninstalling (all apple programs) and reinstalling and nothing seems to work. Everytime I try to open my iTunes I receive the following message - The iTunes Library.itl file cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder. Please help as I'm getting very frustrated and want to throw every apple device in the trash!!!
    FYI: I thought about getting the iPhone but since I"m not having very good luck getting assistance with my iPod/iTunes I think I will rethink my decision.

    Found the solution.

  • How to use UTL_SMTP to send email with existing file attachment

    Hello! I am trying to create a pl/sql procedure that lets me send an email and include an existing file to a email address. So far, I found information on how to send a file and create an attachment with information I put in the procedure. This is NOT what I'm trying to do. I'm trying to send an email and include an attachment for a file that already exists. I need the pre-existing file to be sent to the email recipient.
    This is how far I've gotten, but this only allows me to CREATE an attachment with the information I put in it from the procedure. I got it from the following site:
    http://www.orafaq.com/wiki/Send_mail_from_PL/SQL
    DECLARE
       v_From       VARCHAR2(80) := '[email protected]';
       v_Recipient  VARCHAR2(80) := '[email protected]';
       v_Subject    VARCHAR2(80) := 'Weekly Invoice Report';
       v_Mail_Host  VARCHAR2(30) := 'mail.mycompany.com';
       v_Mail_Conn  utl_smtp.Connection;
       crlf         VARCHAR2(2)  := chr(13)||chr(10);
    BEGIN
      v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host, 25);
      utl_smtp.Helo(v_Mail_Conn, v_Mail_Host);
      utl_smtp.Mail(v_Mail_Conn, v_From);
      utl_smtp.Rcpt(v_Mail_Conn, v_Recipient);
      utl_smtp.Data(v_Mail_Conn,
        'Date: '   || to_char(sysdate, 'Dy, DD Mon YYYY hh24:mi:ss') || crlf ||
        'From: '   || v_From || crlf ||
        'Subject: '|| v_Subject || crlf ||
        'To: '     || v_Recipient || crlf ||
        'MIME-Version: 1.0'|| crlf ||     -- Use MIME mail standard
        'Content-Type: multipart/mixed;'|| crlf ||
        ' boundary="-----SECBOUND"'|| crlf ||
        crlf ||
        '-------SECBOUND'|| crlf ||
        'Content-Type: text/plain;'|| crlf ||
        'Content-Transfer_Encoding: 7bit'|| crlf ||
        crlf ||
        'This is a test'|| crlf ||     -- Message body
        'of the email attachment'|| crlf ||
        crlf ||
        '-------SECBOUND'|| crlf ||
        'Content-Type: text/plain;'|| crlf ||
        ' name="ap_inv_supplier_cc10.txt"'|| crlf ||
        'Content-Transfer_Encoding: 8bit'|| crlf ||
        'Content-Disposition: attachment;'|| crlf ||
        ' filename="ap_inv_supplier_cc10.txt"'|| crlf ||
        crlf ||
        'TXT,file,attachment'|| crlf ||     -- Content of attachment  (THIS IS MY PROBLEM!  I NEED TO BE ABLE TO ATTACH AN EXISTING FILE, NOT CREATE A NEW ONE)
        crlf ||
        '-------SECBOUND--'               -- End MIME mail
      utl_smtp.Quit(v_mail_conn);
    EXCEPTION
      WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error then
        raise_application_error(-20000, 'Unable to send mail: '||sqlerrm);
    END;
    /

    First, you must create a directory object
    create directory ORALOAD as '/home/ldcgroup/ldccbc/'
    /Study the Prerequisites in the link I posted above, or else you will not be able to read/write files from the above directory object
    "fname" relates to the file name that you read from.
    In the code below, it is also the name of the file that you are attaching.
    Although they can be different!
    l_Output is the contents of the file.
    declare
    vInHandle  utl_file.file_type;
    flen       number;
    bsize      number;
    ex         boolean;
    l_Output   raw(32767);
    fname      varchar2(30) := 'ap_inv_supplier_cc10.txt';
    vSender    varchar2(30) := '[email protected]';
    vRecip     varchar2(30) := '[email protected]';
    vSubj      varchar2(50) := 'Weekly Invoice Report';
    vAttach    varchar2(50) := 'ap_inv_supplier_cc10.txt';
    vMType     varchar2(30) := 'text/plain; charset=us-ascii';
    begin
      utl_file.fgetattr('ORALOAD', fname, ex, flen, bsize);
      vInHandle := utl_file.fopen('ORALOAD', fname, 'R');
      utl_file.get_raw (vInHandle, l_Output);
      utl_file.fclose(vInHandle);
      utl_mail.send_attach_raw(sender       => vSender
                              ,recipients   => vRecip
                              ,subject      => vsubj
                              ,attachment   => l_Output
                              ,att_inline   => false
                              ,att_filename => fname);
    end;
    /

  • How do I get an email file attachment, any extension, off of my phone?

    All I want to do is get an email file attachment off of my phone and on to my computer so I can use it.  I don't want to open it on my phone, it could be an AutoCAD file, a programming langauge file, etc.  I want the option to save the attachment to local memory on my phone and then transfer it to my PC via USB.   This worked all the time with my Blackberry, but it seems impossible or extremely difficult with the Apple IOS. The available phone memory would look like a USB stick drive to my PC.  I am at job sites all the time where I do not have internet access from my PC, but I am within the cell network area of coverage so this would be an option.
    I spent almost an hour with Apple Tech support today and they must have thought that I was on drugs asking for such a simple thing.  Apparently, the available phone memory is protected by the IOS so that the PC can't see it or use it.  They said this feature would be all App based.  The key then is finding an App that would allow the email client on the phone to give the user the option to open or save the file to a location that my PC can see. Does anyone know of such an App?   If I can't find a workable solution I may have to go to an Android device.  Thanks.

    So I understand where you are coming from. The best way is to use the cloud. What you need to do is download a program like dropbox, box.net or sugar sync; there are tons of these apps but those 3 are the most widely supported. Once you download it on your device you can then download it onto your computer by going to their respective sites. These will automatically sync your documents over the air when both your computer and phone are connected to the internet. But if you have no internet service on your computer here is what you do; go to itunes and plug in your phone> go over to the APPS tab on the top> scroll to the bottom of the page and it will say file transfer. This will allow you to pull files from those cloud apps even without service and voila you have your files on your computer even without Wi-Fi or hotspots. I hope this helps!
    EDIT; the best app to use file transfer with is good reader because the cloud apps won't sync directly with iTUnes. You will have to pay for it but it will allow you to connect all your cloud services to it and it can edit and view most files. I use it constantly for my work and I wouldn't be able to live without it even if I wasn't using it for file transfer. Sorry I forgot that in my post, this is an necessity to use the file transfer in iTunes.
    Message was edited by: MFS APPLE PRO

  • Adobe reader: there was an error opening this document. this file cannot be found.

    Windows XP Professional sp2 machine
    512 memory
    ie sp2
    when opening two pdfs from a website links receive the error, "there was an error opening this document. this file cannot be found"
    If you save the file to the pc, then open the .pdf it opens ok
    other pdfs open ok from browser from same website and different websites
    had customer try on another's machine; the two pdfs opened ok
    tried Adobe Reader 8.1, 9.0, and Adobe Professional 8.0
    uninstalled reader and professional; deleted directories; reinstalled reader and professional(placed into a separate directory); same error
    On the machine tried admin accounts, under customer's profile made admin account, renamed the customer's account so that another account was freshly generated, all generated the same error.
    Ran ccleaner to clean up files in the registry and temporary internet files, then repaired adobe - same error
    repaired internet explorer - same error
    scoured web for same error but most were applications trying to open the pdfs, a few errors were for programming php, a lot of questions but few answers in context of current issue. the ccleaner and repairing ie were resolutions i found on the web.
    nothing was listed in msoft's ie knowledgebased searched.
    any help would be appreciated.

    I get the same message when I try to open a pdf attachment in my free AOL e-mail account. This problem just started today for some unknown reason. I have Adobe Reader 9 and never had a problem before. If I forward e-mails with a pdf attachment to my Road Runner account, I can open it with no problem. I can't seem to find any answers to this problem. Frustrating! HELP!!!

  • Package load Failed! Invalid package Title, manifest file cannot be found

    Greetings. I am new to UPK and am seeking guidance on an upgrade to 11.1.
    A little background on what we are trying to do:
    We have two machines:
    Windows 2003 machine in domain 'X' | UPK 11.0.0.1.
    Windows 2008 R2 virtual machine in domain 'Y' | UPK 11.0 on the new machine first, install the 11.0.0.1 patch, and then upgrade to 11.1.
    We are using the same database as the old machine. Developer Server is Standard Authentication, Knowledge Center is Windows authentication.
    ==========================================================================================
    So far we have installed 11.1 with the respective database upgrades, but are lost as to how to migrate the old Content Root data. We have copied all the content to the new Content Root, added it to IIS like the old machine, and verified that the UPK database Content Root path is correct and working.
    For the rest of the post, I am remoted into the server from my local workstation, and then using IE to access KCenter on the server's FQDN, not via localhost.
    Since I am green, so I presumed that I would need to import the titles under Manager in KCenter. I zipped each content folder individually (they are named "1", "9", etc), and then attempted to import each zip file.
    NOTE: At this stage sometimes we are prompted to authenticate again. When it does, sometimes the credentials that we know work, get rejected and we are prompted again. This will repeat until we get a 401 and we have to start over. We have verified that the Windows account currently in session with the site is valid and has administrator authority within KC.
    NOTE2: On the first few tries, .NET complained that maxRequestLength was not large enough. I had our servers team increase it on the actual server in order for us to proceed.
    Provided we don't have to authenticate again, or that it actually accepts our credentials, we get to the 30% mark and then receive the error: *"Package load Failed! Invalid package Title, manifest file cannot be found"*
    Does anyone have any wisdom for this process? The title importation section in the deployment manual is not helping, and the administrator from whom I am taking over this software has not had to deal with this before.
    Thank you,
    Ian
    Edited by: 986290 on Feb 5, 2013 10:21 AM

    Hi Marc, thanks for the post,
    I have gone through an extensive troubleshooting process with Oracle, including their development team, in order to fully complete our project setup. As a supplemental bit of information, we also were having connection errors when attempting to publish directly to the knowledge center.
    As far as the context of this post, here is the solution in brief:
    1) Verify that the package being imported was published from the same version of the Developer Client as the Knowledge Center installation's.
    2) Check for database consistency issues. In our case we were using a database that was built in another domain. After numerous attempts with Oracle support on the line to determine the inconsistency, it was decided to completely reinstall and build a new database from scratch in the new domain.
    3) Check application pool identities and access (while we had some inconsistencies here, correcting them did not change the behavior of the import/publish errors)
    In review, a lot of what we had setup was correct. Our primary point of failure, we feel, was using the old database. Technically this should not have been a problem, but Murphy likes to get his way sometimes.
    Cheers,
    Ian

Maybe you are looking for

  • "View Responses" can I see who has responded?

    Is there any way in the "View Responses" tab to see who it is that submitted the form? Like their email where they received the link?

  • Want to rectify to  wrong  price given to customer

    if a standard order is created ,then delivery and  billing is  finished. then a price  error is  found out. what  do we do? we cant edit the order can we? so what ever is the difference  we create credit/debit memo request and then a credit/debit mem

  • Satellite 1800 screen goes extremly dark

    Help this is my second Toshiba with this problem the screen goes extremly dark and after adjusting a few times it sometimes gets normal.

  • Configuring a AP 1552EU-A-K9 in layer 2 mode thru a WLC 5508 running 7.6.130.0

    We have an outdoor AP that we want to bridge to another one that is also outside and connect to our WLC 5508. I see a lot of data for connecting via a layer 3 network, but nothing yet on a layer 2 network (which we run). Can anyone point me to some d

  • Call procedure dynamically

    can anyone tell me if it is possible to call aprocedure when the procedure name is held in a form item. ie i have a form item :blocka.proc_name that has a list of all the procedures that the user can run. if the user selects 'proc1' into this item fr