Cannot load the specified XML or schema source

I was trying to create a sample output file in xml format for AOK interface.  In our XIDEV system I have created an data type for each segment that needs created.  I am still learning, but I thought my next step was to save the file as an xsd.  I then tried to open the .xsd as an xml source layout in excel – but I keep getting an error that says unable to input file layout. My intent is to take an existing order and convert to xml format to send to Masterbrands so they can get a ‘feel’ for what an xml file looks like.
If anybody would have a few minutes to get me pointed in the correct direction I would greatly appreciate.I will be glad to assign points for any help.

hi,
1. create a data type
2. create a message typeout of it
3. create a message mappinng in with the source structure will
be your message type
go to the test tab of the message mapping
fill in the XML values and use " source" button to get an XML file - this file you can send to your parnter
Regards,
michal
<a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Similar Messages

  • Error --can not load the specified XML or schema source

    HI All
    I am facing a problem while creating a xml maps connection. i am using ms excel 2007 and xcelcious 2008 engage. when i am trying to create a xml maps connection and give my url then open then give my user id and password its says  can not load the specified XML or schema source..  
    my url is working fine when i open it through internet explorer. 
    anything i  miss somewhere?
    please help.
    Regards
    Amiya

    Hi Guys
    This is solved i removed <?xml version="1.0" ?>  from top and buttom
    then it worked fine.
    Regards
    Amiya

  • Cannot load the bookstore servlet

    I am going through the bookstore tutorial of J2EE 1.4 final version, all the steps are fine, and finally I try to load the servlet with http://localhost:8080/bookstore1/bookstore, it says:
    HTTP Status 404 - /bookstore1/bookstore
    type Status report
    message /bookstore1/bookstore
    description The requested resource (/bookstore1/bookstore) is not available.
    I am pretty sure I followed all the instructions, I checked everything, aliases in the Deploytool, etc. and from the Server admin console, I could see the bookstore1 is deployed with other applications, but why it doesn't work.
    checking the server.log file, I found the foolowing:
    Remote message: Processing beans ....
    [#|2003-11-28T20:56:38.625-0500|INFO|j2ee-appserver1.4|javax.enterprise.system.tools.deployment|_ThreadID=11;|DPL5110: EJBC - END of EJBC for [bookstore1]|#]
    [#|2003-11-28T20:56:38.687-0500|INFO|j2ee-appserver1.4|javax.enterprise.system.tools.deployment|_ThreadID=11;|Total Deployment Time: 1953 msec, Total EJB Compiler Module Time: 110 msec, Portion spent EJB Compiling: 5%
    Breakdown of EJBC Module Time: Total Time for EJBC: 110 msec, CMP Generation: 0 msec (0%), Java Compilation: 0 msec (0%), RMI Compilation: 0 msec (0%), JAX-RPC Generation: 0 msec (0%),
    |#]
    [#|2003-11-28T20:56:39.203-0500|INFO|j2ee-appserver1.4|javax.enterprise.system.tools.admin|_ThreadID=11;|ADM1041:Sent the event to instance:[ModuleDeployEvent -- deploy web/bookstore1]|#]
    [#|2003-11-28T20:56:39.312-0500|INFO|j2ee-appserver1.4|javax.enterprise.system.container.web|_ThreadID=11;|WEB0100: Loading web module [bookstore1] in virtual server [server] at [bookstore1]|#]
    [#|2003-11-28T20:56:39.359-0500|SEVERE|j2ee-appserver1.4|javax.enterprise.system.container.web|_ThreadID=11;|WEB0117: Error loading web module [bookstore1] in virtual server [server]: javax.naming.InvalidNameException: Real JNDI name cannot be empty for jdbc/BookDB|#]
    [#|2003-11-28T20:56:39.359-0500|INFO|j2ee-appserver1.4|javax.enterprise.system.tools.admin|_ThreadID=11;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    The only thing strange is that "Real JNDI name cannot be empty for jdbc/BookDB", when I set resourse refs tag, I did enter the sun-specific settings, but and I save the file, the infomation of jdbc/BookDB is lost.
    hope someone could show me the reason.

    settings in web.xml is fine. here is the content.
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>bookstore1</display-name>
    <filter>
    <filter-name>HitCounterFilter</filter-name>
    <filter-class>filters.HitCounterFilter</filter-class>
    </filter>
    <filter>
    <filter-name>OrderFilter</filter-name>
    <filter-class>filters.OrderFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>HitCounterFilter</filter-name>
    <servlet-name>BookStoreServlet</servlet-name>
    </filter-mapping>
    <filter-mapping>
    <filter-name>OrderFilter</filter-name>
    <servlet-name>ReceiptServlet</servlet-name>
    </filter-mapping>
    <listener>
    <listener-class>listeners.ContextListener</listener-class>
    </listener>
    <servlet>
    <display-name>BookStoreServlet</display-name>
    <servlet-name>BookStoreServlet</servlet-name>
    <servlet-class>servlets.BookStoreServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>ShowCartServlet</display-name>
    <servlet-name>ShowCartServlet</servlet-name>
    <servlet-class>servlets.ShowCartServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>CashierServlet</display-name>
    <servlet-name>CashierServlet</servlet-name>
    <servlet-class>servlets.CashierServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>BannerServlet</display-name>
    <servlet-name>BannerServlet</servlet-name>
    <servlet-class>servlets.BannerServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>BookDetailsServlet</display-name>
    <servlet-name>BookDetailsServlet</servlet-name>
    <servlet-class>servlets.BookDetailsServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>ReceiptServlet</display-name>
    <servlet-name>ReceiptServlet</servlet-name>
    <servlet-class>servlets.ReceiptServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>CatalogServlet</display-name>
    <servlet-name>CatalogServlet</servlet-name>
    <servlet-class>servlets.CatalogServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>BookStoreServlet</servlet-name>
    <url-pattern>/bookstore</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>ShowCartServlet</servlet-name>
    <url-pattern>/bookshowcart</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>CashierServlet</servlet-name>
    <url-pattern>/bookcashier</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>BannerServlet</servlet-name>
    <url-pattern>/banner</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>BookDetailsServlet</servlet-name>
    <url-pattern>/bookdetails</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>ReceiptServlet</servlet-name>
    <url-pattern>/bookreceipt</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>CatalogServlet</servlet-name>
    <url-pattern>/bookcatalog</url-pattern>
    </servlet-mapping>
    <error-page>
    <exception-type>javax.servlet.UnavailableException</exception-type>
    <location>/errorpage.html</location>
    </error-page>
    <error-page>
    <exception-type>exception.BooksNotFoundException</exception-type>
    <location>/errorpage.html</location>
    </error-page>
    <error-page>
    <exception-type>exception.BookNotFoundException</exception-type>
    <location>/errorpage.html</location>
    </error-page>
    <jsp-config/>
    <resource-ref>
    <res-ref-name>jdbc/BookDB</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    </web-app>
    since in the server.log file, it complains the following:
    [#|2003-11-28T20:56:39.359-0500|SEVERE|j2ee-appserver1.4|javax.enterprise.system.container.web|_ThreadID=11;|WEB0117: Error loading web module [bookstore1] in virtual server [server]: javax.naming.InvalidNameException: Real JNDI name cannot be empty for jdbc/BookDB|#]
    I believe the problem is from the JNDI name, therefore it cannot load the web module [bookstore1], I check the sun-web.xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE sun-web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Sun ONE Application Server 8.0 Servlet 2.4//EN" "http://www.sun.com/software/sunone/appserver/dtds/sun-web-app_2_4-0.dtd">
    <sun-web-app>
    <context-root>/bookstore1</context-root>
    <resource-ref>
    <res-ref-name>jdbc/BookDB</res-ref-name>
    <jndi-name>jdbc/BookDB</jndi-name>
    </resource-ref>
    </sun-web-app>
    this jdbc/BookDB is defined by using the admin console, and the actual table name is BOOKS, which could be seen by the PointBase console, under SCHEMAS->PBPUBLIC->TABLES nodes. But how this jdbc/BookDB is mapped to the table BOOKS, the tutorial doesn't say. I doubt if this is the problem?

  • Error message: Cannot load the rpt file

    Can anyone please help.
    I created a Crystal Report which I deployed into Business One. Tested this report on about 13 machines running Business One and all running well except one machine where it comes up with the following error messages:
    1: Cannot load the rpt file
    2: Object reference not set to an instance of an object
    3: Invalid report file path
    I have tried logging into Business One on that machine as a different user and encountered the same issue. Then logged onto another machine as the user who uses the machine with the error message and her profile works well on another machine.
    This is leaving me with concluding this problem could be down to the machine but cannot figure out how to fix it.
    Does anyone have any ideas to solving this?
    Thanks
    Tony

    Hi Tony,
    On the troubled computer, check in Control Panel whether Crystal Report Runtime is installed. If not, un-install client app and re-install from B1_Shr client's folder. The first thing that it will do is to instal Crystal Report Runtime.
    Source: when I did an upgrade on a client recently this happened. After troubleshooting everything I found that this issue is a hit-and-miss as some PCs had it some don't. I started comparing between working and non-working PC and found this is the only difference I could found.

  • Windows cannot load the user's profile but has logged you on with the default profile for the system.

    My Windows 7  crashed a couple days ago after a windows update, I got this message.
    Windows cannot find the local profile and is logging you on with a temporary profile. Changes you make to this profile will be lost when you log off.
    I restarted the machine and got this message
    Windows was unable to load the registry. This problem is often caused by insufficient memory or insufficient security rights.
    DETAIL - The process cannot access the file because it is being used by another process. for C:\Users\TEMP\ntuser.dat
    I checked the event Log I found these .
    Windows cannot load the user's profile but has logged you on with the default profile for the system.
    DETAIL - Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
    Windows has backed up this user profile. Windows will automatically try to use the backup profile the next time this user logs on.
    Windows cannot load the locally stored profile. Possible causes of this error include insufficient security rights or a corrupt local profile.
     DETAIL - The process cannot access the file because it is being used by another process.
    This is the first error in the event viewer after a successful logon
    The description for Event ID 34 from source ccSvcHst cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
     If the event originated on another computer, the display information had to be saved with the event.
    ccSetMgr
    Windows cannot load the user's profile but has logged you on with the default profile for the system.
    DETAIL - Access is denied.
    Looking at the Logs all I can tell is that after the Desktop Window Manager started if caused this error.
    The winlogon notification subscriber <SessionEnv> was unavailable to handle a notification event.
    then this one
    The Desktop Window Manager has exited with code (0x40010004)
    Then this before it shutdown.
    The User Profile Service has stopped.
    I started up the PC and the first message I got was
    How can I get access to my user profile? do I need to createa new Administrator account? Please help
    The EventSystem sub system is suppressing duplicate event log entries for a duration of 86400 seconds. The suppression timeout can be controlled by a REG_DWORD value named SuppressDuplicateDuration under the following registry key: HKLM\Software\Microsoft\EventSystem\EventLog.

    hi do the following
    1. In Search programs and files (Windows 7) area, type in regedit, and press Enter.
    2. If prompted click yes,
    3.  expand the following HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
    4. click the sid that related to your admin profile (if you not sure, click each sid and in turn look to the right hand side of registry editor it will show who that sid is related to one of the registry files should hae in description localhost\admin or
    something similair)
    5. right click the sid and press delete.
    6. restart your machine and log back on with the admin account, this will then rebuild the admin profile... dont worry when it loads and none of your personal settings are saved or files or folders... go to c:\users
    in here you will see two folders for the admin account, one will be just admin and the other most likely admin.localhost
    i cant remember which one is which but just check both, one will still have all your files and folders in it.
    i suggest making a backup of your data before doing this incase something does go wrong, but ive had this happen many times in a domain enviorment and has worked for me everytime.

  • Windows cannot access the specified device, path, or file.

    NOTE:  My access is through terminal services. 
    I received a new server to load my IBM Rational products.  I was able to load ClearQuest, Req Pro and ClearCase with no problems.  Because this machine is being used as a web interface for the products, I needed to also load Crystal Reports XI along with the embedded report server.  Well, I got everything installed but the embedded reports server. 
    On my attempt to double click on the file that would extract and install the addins needed I received the error message:
    Windows cannot access the specified device, path, or file.  You may not have the appropriate permissions to access the item.
    After some testing I see that if I select any executable associated with installing an application, I get this error.
    I've been searching all over the internet for a solution to this proble.  Does anyone know why this happens and what I can do to fix it?

    Ok this will be a long post, and for starters I wanted to point something out to everyone - there is two separate discussions going on in this thread. On one side you have a discussion about servers and people using thin clients or Citrix having this error
    code and changing Internet Explorer to resolve this conflict. Then on the other side all the stand alone home users with XP and Vista and 7 trying to figure out what is going on with their install that has the exact same error code. Microsoft in their infinite
    wisdom has given this error code to relate to multiple different errors hence the confusion.
    Now here is my story, with out a resolution yet.
    Ok, so I ran into a real nasty trojan virus, that is now resolved and gone. However, when I went into the process of being able to resolve this issue a sticky byproduct was this permissions issue. This is how it happens, I download a video with Firefox or
    any browser Opera, IE whatever. Then after I have downloaded it into the proper location I can see it within the downloads list from the browser, should I double click to launch the video with WMV it will fail with that error "Windows cannot access the
    specified device, path, or file. You may not have the appropriate permission to access the item". However, should I open the directory and then launch from the true download location, rather in the list of the files within the browser download list it
    will launch fine. This is the problem I can utilize the programs directly launching them from explorer, however should I try and launch a program from inside another program it will fail to launch.
    This is a Vista 64 bit installation, and I am pretty tech savvy individual. What I have tried thus far is to take owner ship of the directory since trusted installer was the owner previously. After I had done that I went into the permissions of the exe and
    sought to make sure that the file was open for everyone to be able to modify and have full control - it was. After that I also tried launching the browsers as admin privileges to see if it would still launch. It will not it refuses to allow calls to this directory.
    That being said it is also a big problem when I use Corel DVD Moviefactory, because this program is trying to launch other programs from this directory to run. So, I need to figure out why is it that I am not able to have programs make calls to this directory
    and try and launch exe files and fail, yet the permissions are fine and I can launch them from directly clicking on the item in a directory?
    Further clarification as to what happens:
    Firefox downloads to Harvester\downloads
    All my pictures, movies, executable, rar/zip, reside in this directory "downloads"
    In the browser Firefox there is a "downloads" [contrl+J] list that shows what you have downloaded through the browser
    All of these items are able to double click and execute from this list with out having to navigate to the "downloads" directory
    When executing a WMV file it will fail and error out with the "Windows cannot access the specified device, path, or file. You may not have the appropriate permission to access the item" error.
    However, navigating to this directory will allow me to launch all programs with out any problem, the difference is I am launching from the file rather than through a program making a call to the x86 directory to launch the file. If I have an item that doesn't
    require a program to launch from the x86 directory it will launch ok through Firefox, ex InfanView, HJsplit, etc.
    This is a problem with other programs making calls to external programs residing in the x86 directory like Corel Moviefactory 7. While running it will make the same error "Windows cannot access the specified device, path, or file. You may not have the
    appropriate permission to access the item" when trying to make a new DVD, because it utilizes something in that directory an external program.
    This happens with Opera as well, don't know about IE I don't use it.
    What I have done thus far:
    Removed my firewall that was MS native firewall
    Removed my anti-virus and malware software - AVG, MalwareBytes, Windows Defender, Windows Security Essentials, Spybot Search and Destroy, Spy cop, and a few others
    Went and took ownership of the directory
    Tried registry hacks
    Altered AVG to exclude the (x86) directory
    Re-installed AVG and MalwareBytes to see if I can repair the file
    Shared the (x86) directory for everyone and inherited the permissions
    Tried CLI restoring of default permissions
    Tried to make changes in safe mode still shut down.
    This is where I am now....waiting for a scan to end to reboot and check to see if I was able to make any progress.

  • Cannot find the specified instance ???

    "If the instance has recently been initiated, the invocation data may not have been delivered to the engine yet. Refresh your browser window or try again in a few seconds."
    I am getting the above error when i try to execute a BPEL process that does some DML operation on the database.
    I doubt whether this relates to the database.
    Please suggest.
    Thanks,
    Rosh

    Hi Marcelo!
    I'm having the exact same problem. I've upgraded AS and BPEL PM from 10.1.3.1 to 10.1.3.3 As I found out in another thread (Cannot find the specified instance the problem could be in not running the upgrade sql script, but I did that.
    When I initiate my process the number of Open Instances and closed instances remains 0. I've tried by deploying my process to default domain and a new domain I've created but it doesn't matter.
    The message in my domain.log file is this:
    <2008-01-22 13:52:32,976> <WARN> <MyTestDomain.collaxa.cube> <BaseCubeSessionBean::logWarning> Error while invoking bean "finder": [com.collaxa.cube.engine.core.InstanceNotFoundException: Instance not found in datasource.
    The process domain was unable to fetch the instance with key "fa5790576a57cd77:-67b0033:117a188c804:-7fea" from the datasource.
    Please check that the instance key "fa5790576a57cd77:-67b0033:117a188c804:-7fea" refers to a valid instance that has been started and not removed from the process domain.
    ORABPEL-02152
    Instance not found in datasource.
    The process domain was unable to fetch the instance with key "fa5790576a57cd77:-67b0033:117a188c804:-7fea" from the datasource.
    Please check that the instance key "fa5790576a57cd77:-67b0033:117a188c804:-7fea" refers to a valid instance that has been started and not removed from the process domain.
         at com.collaxa.cube.engine.data.AdminFinder.lookupInstanceByConversationId(AdminFinder.java:287)
         at com.collaxa.cube.ejb.impl.FinderBean.lookupInstanceByConversationId(FinderBean.java:200)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
         at com.evermind.server.ThreadState.runAs(ThreadState.java:646)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxNotSupportedInterceptor.invoke(TxNotSupportedInterceptor.java:43)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
         at FinderBean_RemoteProxy_4bin6i8.lookupInstanceByConversationId(Unknown Source)
         at com.oracle.bpel.client.Locator.lookupInstance(Locator.java:448)
         at displayInstance.jspService(_displayInstance.java:123)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:131)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    I'd appreciate any suggestions on this.
    Thanks!
    BB

  • IDM / Cannot load the email service provider

    Good day, I'm having same problem here on IDM 11g,
    When I try to "Reset Password" for user from Identity Manager - Delegated Administration
    I use the following "Manually change the Password"
    and I select "E-mail the new password to the user."
    I get the following error "An error occurred while changing the user password. Cannot load the email service provider".
    IDM changes the password "The password has been changed successfully." but still no email sent
    When I use other option "Auto-generate the Password (Randomly generated)" no email is also sent.
    Can you please help with this issue?

    Create an IT resource of type mail server. Name of IT resource should be same as specified in system pripert XL.MailServer. Bydefault its name is Email Server. Provide your mail server details in IT resource.
    Authentication      yes
    Server Name      <ip address of your mail system>
    User Login      <user login>
    User Password <password>
    After doing this, reset password of user, who's profile has email address.
    Check if this works.
    Regards,
    GP

  • I rented a movie in the iTunes Store but now when I want to watch it it says; 'cannot load the movie' while it says the download has been completed.. What now? I already payed for it.

    I rented a movie in the iTunes Store but now when I want to watch it it says; 'cannot load the movie' while it says the download has been completed.. What now? I already payed for it.

    Did you rent the movie on your iPad?  Are you trying to watch it on your iPad?
    Do you have WiFi connectivity when trying to start viewing the movie?
    You should have answered "yes" to all the above.  If not, that is probably the source of your issue.

  • Uninstalled, tried to reinstall firefox- get message Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to

    Firefox would not load Yahoo home page properly, checked add ons and plugins-no problem. So unistalled. When reinstalling, went through until the end, then I get:
    Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access this item.
    I went through the Help section on this page, even to right clicking the file and "run as administrator". It went through and restarted the computer. When I went to look for the program, it wasn't listed in All programs. I searched files and the only thing there was the same message as above.

    Do a clean (re)install and delete the Firefox program folder (C:\Program Files\Mozilla Firefox\).
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 13.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will also lose your personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Cannot load the animation file...

    I am using Captivate 5 and Flash CS5. I created an interactive swf I am trying to import but when I try to drag it into Captivate nothing happens. If I go to "Insert > Animation" and select it, I get the error "Cannot load the animation file. The file is either damaged or is not available in the specified location."
    I wrote the swf in AS3 from the start, it runs fine in Flash, no compiler errors and works fine in a browser standalone. I tried saving it with a new name in a new location, but no luck. I can import other swf's fine including ones that are a lot more complicated. Any ideas?

    I believe I have somewhat figured out the problem. I had imported some graphics from Adobe Illustrator into Flash. When I deleted the folder containing these in the Flash library I was able to import the swf into Captivate. Oddly, once I had imported the swf into Captivate, if I then added the folder back in Flash and re-published, then right-clicked the swf in Captivate and selected "Update..." it said "All items have been successfully updated." and everything ran fine. But, if I removed the swf from the slide and tried to drag it back into Captivate, I got the same error however.
    If I figure out what about the Illustrator files Captivate doesn't like I'll post back.

  • Cannot display the folder. Microsoft Outlook cannot access the specified folder location.

    Hi, guys
    I cannot view delegate mailbox in Outlook. Following is my configure.
    I have two mailbox A-User and B-User
    Login Outlook as A-User, click File -> Account Settings -> Delegate Access, add B-User and give Editor permission of Inbox.
    Right click A-User's root inbox and select Properties -> Permission, select B-User and check "Folder visible".
    Login Outlook as B-User on other computer, click File -> Account Settings -> Account Settings, select B-User and click Change -> More Settings -> Advanced, add A-User.
    Now I can see a root A-User in Navigation Pane. But when I click it, it shows
    "Cannot display the folder. Microsoft Outlook cannot access the specified folder location."
    or
    "Cannot display the folder. Microsoft Outlook cannot access the specified folder location. The operation failed. An object cannot be found".
    I searched some solutions from internet, but all of them don't work. Could you give some suggestions? 
    Thanks.

    Hi,
    First, please double check if you have given the right permission to B-User on your step 2.
    In addition, we can try to give a higher permission to the B-user to check the result.
    Please feel free to post back and let me know the result.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • Mac Word 2008 - hyperlink message "Word cannot open the specified file"

    I'm using WordMac 2008 version 12.2.5 and after following detailed instructions on how to hyperlink chapters in a Table of Contents to their respective chapters in a book, I can only get the message "Word cannot open the specified file".
    Any ideas what could be wrong?
    My OSX is 10.5.1.
    The instructions I followed are pasted below and are copied from the Smashwords Style Guide: http://www.smashwords.com/books/view/52
    START OF PASTE FROM SMASHWORDS STYLE GUIDE:
    How to create a linked Table of Contents. Consider this feature in “beta.” My
    thanks to Smashwords author Cheryl Anne Gardner for sharing these tips below,
    which I have augmented based on my own experience adding a ToC to the Style
    Guide (woo hoo!).
    By adding a linked table of contents, you can help readers navigate your
    document. This is especially useful for non-fiction. Most fiction doesn’t
    need it. If you follow the instructions below, the ToC should work in your
    EPUB, MOBI and PDF files, but it will not work in our other formats.
    First, create your table of contents where you want it by typing it out. Make
    sure the text is normalized just like the rest of your Smashwords’ Word
    document. Example:
    Contents
    Chapter 1
    Chapter 2
    Chapter 3
    Chapter 4
    Etc.
    Next, we are going to create the BookMarks. In Word 2000, 2003 and 2007, the
    Booksmark function is under the Insert tab. Go through your document, and at
    each Chapter Start or Indexed item, you will highlight it and then select
    Insert: bookmark. Name your bookmark corresponding to the Chapter/Indexed
    item and then click add. It’s very important to use the first word of your
    heading you’re linking to, because later on, when you add the hyperlinks,
    Word displays the bookmark shortcuts in alphabetical order. With many
    bookmarks, I found many of my bookmarks weren’t labeled properly, so it was
    tough to link to the correct bookmark. If you want to link to a chapter named
    How to Publish Ebooks, I’d recommend naming your bookmark
    “HowToPublishEbooks” to make it easy to locate. If you instead name it,
    “publishebooks,” you’ll frazzle your brain and make mistakes.
    Repeat the process above for every Chapter Start as well as for other matter
    in the book like index, bibliography, epilogue, prologue, etc. I didn’t link
    to every section in the Style Guide, because otherwise the ToC would have
    been three pages long. This is your call.
    Next, return to your table of contents and highlight the word “Contents.”
    Click insert, bookmark, and label this last bookmark “Contents”. Formatting
    note: Bookmarks cannot have spaces or odd characters. If instead of
    “Contents” you called the label in the document Table of Contents, as I did,
    then when you insert the bookmark, name the bookmark “TableofContents,” one
    word, or “toc.”
    Next, add the hyperlinks to your Chapter Starts. In your table of contents,
    if Chapter 1 is called Chapter 1, then highlight Chapter 1 and then click
    insert Hyperlink. As you can see in the Style Guide, I tried to use more
    descriptive labels. In Word’s Hyperlink menu on the left hand side, select
    “Place in this document.” You will now see your bookmarks listed in the main
    window. Select Chapter1 bookmark (or whatever you labeled it) and then click
    ok. Do this procedure for every chapter and piece of matter in the table of
    contents.
    Final step. Now you can link back to the Table of contents. Move through your
    document to each indexed item or Chapter start and highlight it. Then click
    insert, hyperlink, and then select “Place in this document.” When the
    bookmarks are showing in the main window, select the bookmark labeled
    “Contents,” assuming that’s what you named your Table of Contents. Do this
    for each and every chapter and or indexed item.
    After you are done, all your links will be underlined. You will need to test
    and make sure you linked everything properly. In most Word versions, you just
    click on the hyperlink to test. In Word 2007, you may need to Ctrl-Click each
    hyperlink and make sure it takes you where you need to go in the document.
    Advice: Word has an automatic ToC generation feature under the reference tab.
    Do not use this. It uses automated headings and formatting to generate the
    ToC and this will un-normalize your text and cause font conversion issues in
    your Smashwords files.
    END OF PASTE FROM SMASHWORDS STYLE GUIDE.
    I did all that as described but I still get the message "Word cannot open the specified file".
    Could you help please?

    This question would be better addressed to...
    http://www.microsoft.com/mac/help.mspx
    I think the operative phrase from that article is...
    *Consider this feature in “beta.”*
    -mj

  • Working in Windows 8.1, trying to open Lightroom 3.6 64 bit, get the error message: Windows cannot access the specified device, path or file.  You may no have th appropriate permissions to access the item.

    Working in Windows 8.1, trying to open Lightroom 3.6 64 bit, get the error message: Windows cannot access the specified device, path or file.  You may no have th appropriate permissions to access the item.  I have changed the permissions to everyone and it doesn't work

    Any suggestions please?

  • When I try to open iTunes, I get this error message: Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item. I get a different error message if I try to uninstall it.

    When I try to open iTunes, I get this error message: "Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item." I've been able to uninstall all Apple products except iTunes as I get this error message: "The Installer has insufficent privileges to modify this file: C:\Program Files\i Tunes\Acknowledgments.rtf." I've had the iTunes on my laptop for a year and a half with no problems until now.

    Any suggestions please?

Maybe you are looking for

  • Error creating CONTROL FILE

    I have a problem while installing 9iAS R2 on RH LInux 8. When database configuration assistant starts during the installation of 9iAS infrastructure, it gives an error "Error creating CONTROL FILE" followed by many other errors. Please help me out. Z

  • Urgent:No response from host

    Hello,  Sir when I try to connect my nokia 7610 from usb cable to  computer , is shows an message in my mobile "No resonse from host", and my mobile is not able to connect by computer I tried lot of options , used nokia suite cleaner , changed usb ca

  • JCOP communication howto

    Hi, is there any open-source implementation or reference documentation which tells me which ADPUs I have to send to initialize communication (load applet keys, select applet ...) before I can communicate with my java card applet? Especially the authe

  • How can I install the pagespeed option on Firebug?

    I have tried to install the Google pagespeed option on Firebug but I get a message asking me to allow it I do and then get a message stating that Firefox will not allow it. 1. Is that true? 2. If so, is there another way for Firebug to help. 3. Am I

  • Can't play podcasts

    Suddenly I can't play podcasts and the podcast logos & album covers of my playlist have disappeared on my iPhone.  The music on my playlist plays &  iTunes U is OK.