Cannot set the request filter to my JaxRsApplication

I have my own jaxrs application which extend JaxRsApplication, and I try to add customized container request filter, but It cannot work. Could you please help me to find out my mistake?
package com.octech.mamalianmeng.httpservice.application.base;
import java.util.ArrayList;
import java.util.List;
import javax.ws.rs.core.Application;
import org.eclipse.gyrex.context.IRuntimeContext;
import org.eclipse.gyrex.http.jaxrs.JaxRsApplication;
import com.sun.jersey.api.core.DefaultResourceConfig;
import com.sun.jersey.api.core.ResourceConfig;
import com.sun.jersey.spi.container.ContainerRequestFilter;
import com.sun.jersey.spi.container.ContainerResponseFilter;
public abstract class AbstractMumUnionJaxRsApplication extends JaxRsApplication {
public AbstractMumUnionJaxRsApplication(String id, IRuntimeContext context) {
super(id, context);
protected Application createJaxRsApplication() {
Application application = super.createJaxRsApplication();
if (application.getClass().getName().equals(DefaultResourceConfig.class.getName())) {
DefaultResourceConfig defaultResourceConfig = (DefaultResourceConfig) application;
this.setContainerRequestFilters(defaultResourceConfig);
this.setContainerResponseFilters(defaultResourceConfig);
return defaultResourceConfig;
} else {
return application;
* 设置请求过滤器
* @param defaultResourceConfig
private final void setContainerRequestFilters(DefaultResourceConfig defaultResourceConfig) {
if (defaultResourceConfig == null) {
return;
List<Class<?>> containerFilters = this.getContainerRequestFilters();
if (containerFilters != null && containerFilters.size() > 0) {
List<String> filters = new ArrayList<String>();
if (defaultResourceConfig.getProperties().containsKey(ResourceConfig.PROPERTY_CONTAINER_REQUEST_FILTERS)) {
filters.add((String) defaultResourceConfig.getProperty(ResourceConfig.PROPERTY_CONTAINER_REQUEST_FILTERS));
for (int i = 0; i < containerFilters.size(); i++) {
if (ContainerRequestFilter.class.isAssignableFrom(containerFilters.get(i))) {
filters.add(containerFilters.get(i).getName());
defaultResourceConfig.getProperties().put(ResourceConfig.PROPERTY_CONTAINER_REQUEST_FILTERS, filters.toArray());
* 设置相应过滤器
* @param defaultResourceConfig
private final void setContainerResponseFilters(DefaultResourceConfig defaultResourceConfig) {
if (defaultResourceConfig == null) {
return ;
List<Class<?>> containerFilters = this.getContainerResponseFilters();
if (containerFilters != null && containerFilters.size() > 0) {
List<String> filters = new ArrayList<String>();
if (defaultResourceConfig.getProperties().containsKey(ResourceConfig.PROPERTY_CONTAINER_RESPONSE_FILTERS)) {
filters.add((String) defaultResourceConfig.getProperty(ResourceConfig.PROPERTY_CONTAINER_RESPONSE_FILTERS));
for(int i = 0; i < containerFilters.size(); i++) {
if (ContainerResponseFilter.class.isAssignableFrom(containerFilters.get(i))) {
filters.add(containerFilters.get(i).getName());
defaultResourceConfig.getProperties().put(ResourceConfig.PROPERTY_CONTAINER_RESPONSE_FILTERS, filters.toArray());
* 返回请求过滤器的类数组,filter的执行顺序以加入list中的顺序为准
* @return
protected abstract List<Class<?>> getContainerRequestFilters();
* 返回相应过滤器的类数组,filter的执行顺序以加入list中的顺序为准
* @return
protected abstract List<Class<?>> getContainerResponseFilters();
package com.octech.mamalianmeng.httpservice.application;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.eclipse.gyrex.context.IRuntimeContext;
import com.octech.mamalianmeng.httpservice.application.base.AbstractMumUnionJaxRsApplication;
import com.octech.mamalianmeng.httpservice.application.filter.AuthorizationFilter;
import com.octech.mamalianmeng.httpservice.resource.OrderServiceResource;
public class DefaultMumUnionJaxRsApplication extends AbstractMumUnionJaxRsApplication {
public DefaultMumUnionJaxRsApplication(String id, IRuntimeContext context) {
super(id, context);
@Override
protected List<Class<?>> getContainerRequestFilters() {
List<Class<?>> filters = new ArrayList<Class<?>>();
filters.add(AuthorizationFilter.class);
return filters;
@Override
protected List<Class<?>> getContainerResponseFilters() {
return Collections.emptyList();
@Override
protected Set<Class<?>> getJaxRsClasses() {
Set<Class<?>> classes = new HashSet<Class<?>>();
classes.add(OrderServiceResource.class);
return classes;

Hi,
I had the same issue.
My soltion was
public class JaxRsAppExt extends JaxRsApplication {
private ContextServiceInjectableProvider contextServiceInjector;
private InjectServiceInjectableProvider injectServiceInjector;
private final Bundle bundle;
public JaxRsAppExt(final String id, final IRuntimeContext context, final Bundle bundle) {
super(id, context);
this.bundle = bundle;
@SuppressWarnings("unchecked")
@Override
protected Application createJaxRsApplication() {
final Application app = super.createJaxRsApplication();
if (null != this.contextServiceInjector) {
app.getSingletons().add(this.contextServiceInjector);
if (null != this.injectServiceInjector) {
app.getSingletons().add(this.injectServiceInjector);
((ResourceConfig) app).getContainerRequestFilters().add(0, APIAuthFilter.class);
((ResourceConfig) app).getContainerResponseFilters().add(0, APIAuthFilter.class);
((ResourceConfig) app).getResourceFilterFactories().add(0, RolesAllowedResourceFilterFactory.class);
return app;
@Override
protected void doDestroy() {
try {
// call super
super.doDestroy();
} finally {
if (null != this.contextServiceInjector) {
this.contextServiceInjector.dispose();
this.contextServiceInjector = null;
if (null != this.injectServiceInjector) {
this.injectServiceInjector.dispose();
this.injectServiceInjector = null;
@Override
protected void doInit() throws IllegalStateException, Exception {
// create service injector
this.contextServiceInjector = new ContextServiceInjectableProvider(this.bundle.getBundleContext());
this.injectServiceInjector = new InjectServiceInjectableProvider(this.bundle.getBundleContext());
// call super
super.doInit();
@Override
protected Set<Class<?>> getJaxRsClasses() {
return new BundleScanningResourceConfig(this.bundle).getClasses();
Then you adding over porperties ir

Similar Messages

  • WinRM cannot process the request. The following error occured while using Kerberos authentication: The network path was not found.

    I have two forests with a transitive on-way trust between them: PROD -> TEST (test trusts PROD). I had previously had kerberos authentication working with winrm from PROD to machines in TEST. I have verified the trust is healthy, I also verified users
    in TEST can use WINRM with kerberos just fine. Users from PROD cannot connect via kerberos to machines in TEST with winrm.
    I have verified the service has registered the appropriate SPNs. I ran dcdiag against all my PROD and TEST domain controllers and didn't find anything that would prevent kerberos from happening. I even tried disabling the firewall entirely on my TEST dcs
    but that didn't gain me anything.
    I've enabled kerberos logging but only see the expected errors such as it couldn't find a PROD SPN for the machine, which it shouldn't from what I understand, it should go to the TEST domain and find the SPN from there.
    I'm really out of next steps before I call PSS and hope someone here has run into this and could provide me some next steps.
    PowerShell Error:
    Connecting to remote server failed with the following error message : WinRM cannot process the request. The following error occured while using Kerberos authentication: The network path was not found.  
     Possible causes are:
      -The user name or password specified are invalid.
      -Kerberos is used when no authentication method and no user name are specified.
      -Kerberos accepts domain user names, but not local user names.
      -The Service Principal Name (SPN) for the remote computer name and port does not exist.
      -The client and remote computers are in different domains and there is no trust between the two domains.
     After checking for the above issues, try the following:
      -Check the Event Viewer for events related to authentication.
      -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or use HTTPS transport.
     Note that computers in the TrustedHosts list might not be authenticated.
       -For more information about WinRM configuration, run the following command: winrm help config. For more information, see the about_Remote_Troubleshooting Help topic.
        + CategoryInfo          : OpenError: (:) [], PSRemotingTransportException
        + FullyQualifiedErrorId : PSSessionStateBroken
    winrs Error:
    Winrs error:
    WinRM cannot process the request. The following error occured while using Kerberos authentication: The network path was not found.  
     Possible causes are:
      -The user name or password specified are invalid.
      -Kerberos is used when no authentication method and no user name are specified.
      -Kerberos accepts domain user names, but not local user names.
      -The Service Principal Name (SPN) for the remote computer name and port does not exist.
      -The client and remote computers are in different domains and there is no trust between the two domains.
     After checking for the above issues, try the following:
      -Check the Event Viewer for events related to authentication.
      -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or use HTTPS transport.
     Note that computers in the TrustedHosts list might not be authenticated.
       -For more information about WinRM configuration, run the following command: winrm help config.

    Hi Adam,
    I'm a little unclear about which SPNs you were looking for, in which case could you confirm you were checking that on the computer object belonging to the actual destination host it has the following SPNs registered?
    WSMAN/<NetBIOS name>
    WSMAN/<FQDN>
    If you were actually trying to use WinRM to connect to the remote forest's domain controllers, then what you said makes sense, but I was caught between assuming this was the case or you meant another member server in that remote forest.
    Also, from the client trying to connect to this remote server, are you able to telnet to port 5985? (If you've used something other than the default, try that port)
    If you can't, then you've got something else like a firewall (be that the Windows firewall on the destination or a hardware firewall somewhere in between) blocking you at the port level, or the listener on the remote box just isn't working as expected. I
    just replied to your other winrm post with steps for checking the latter, so I won't repeat myself here.
    If you can telnet to it and the SPNs exist, then you might be up against something called selective authentication which has to do with how the trust was defined. You can have a read of
    this to learn a bit more about selective trusts and whether or not it's affecting you.
    Cheers,
    Lain

  • "The specified server cannot perform the requested operation" when rpc from server 2003 to Windows 7

    I am having problems where all my Windows 2003 servers cannot rpc to 2 of my Windows 7 workstations, error message is "The specified server cannot perform the requested operation".
    All the machines are in workgroup environment.
    Windows 7 workstations: desk1, desk2, desk3, desk4, desk5, desk6
    Windows 2003 servers: server1, server2, server3, server4, server5
    Windows 2008 server: server6
    From any Windows 7 workstation I can rpc to any other machines,
    \\desk1\d$, no problem
    From any Windows 2003 server I can rpc to all the machines exception desk4 and desk5, they give the "The specified server cannot perform the requested operation". However, desk4 and desk5 can rpc to any other machines (including the Windows 2003
    servers), no problem
    From Windows 2008 rpc to desk4 and desk5 also no problem.
    I also have no problem rpc between any of the Windows 2003 servers,
    \\server2\d$ from server3, no problem.
    I turned off the firewall at desk5 and desk4, just to try, but didn't help, same problem. This show firewall is not the cause of the problem.
    Desk4 and Desk5 used to run Windows 2012 for 1 year and recently I downgraded them Windows 7 Professional x64. When they were running as Windows 2012, those Windows 2003 servers have no problem rpc to desk5 and desk4.
    The issue is thus lying between desk4 and desk5 with Windows 2003 only\
    Any suggestions?
    Valuable skills are not learned, learned skills aren't valuable.

    Hi,
    I found a related thread and a hotfix for similar issue:
    Problems Accessing Administrative Shares Remotely - Windows cannot access \\Servername\ShareName
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/9807a799-bea3-46ad-92a5-732779135f98/problems-accessing-administrative-shares-remotely-windows-cannot-access-servernamesharename?forum=winserver8gen
    You cannot access an administrative share on a computer after you set the SrvsvcDefaultShareInfo registry entry to configure the default share permissions for a network share
    https://support.microsoft.com/kb/971277/en-us
    Also please check if it is caused by security program such as antivirus program. 
    If you have any feedback on our support, please send to [email protected]

  • Windows Server 2008 Server Manager - The WinRM Client Cannot Process the Request.

    Hello,
    I have recently purchased a Dedicated Server, and I have installed Windows Server 2008 R2. I want to use Server Manager because I don't really have that much experience with command line commands, so I wanted to use server manager, I can remotely connect
    to my server but when I use Server Manager I get the error "The WinRM Client Cannot Process the Request, if the authentication scheme is different from Kerberos..." I haven't set up a domain between my PC and the Dedi, as I do not know how/or know
    if this is applicable in this situation.
    Thanks for your time!
    Bill Gates Mate

    Hi,
    If you are using the non-domain management method, please refer the following article to add the trust host.
    The related article:
    Remoting Week: Non-Domain Remoting
    http://blogs.technet.com/b/heyscriptingguy/archive/2013/11/29/remoting-week-non-domain-remoting.aspx
    More third party article:
    The WinRM client cannot process the request. If the authentication scheme is different
    http://technico.qnownow.com/the-winrm-client-cannot-process-the-request-if-the-authentication-scheme-is-different/
    I’m glad to be of help to you!
    *** This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites;
    therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure
    that you completely understand the risk before retrieving any software from the Internet. ***
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • You cannot export the request at the movement -while releasing the request

    Hi.. Experts
    Today, we had message from our functional consultant that When he is trying to release the TRANSPORT REQUEST (not tasks) he is getting the error  " You cannot export the request at the movement "
    After 2 / 3 hours, we discovered file exists in Transport Profiel directory
    " /usr/sap/trans/bin" directory Fine Name :   T_OFF.ALL
    After removing that file - The request releasing were happening normally.
    In this juncture, Even though the issue is fixed ,
    We would like to learn how this file got created  and which transactions / which configurations will create this T_OFF.ALL file and stops all Transport releases
    Thanks in advance
    Rgds
    PR

    This file T_OFF.ALL has to be created manually in the bin directory to basically stop release of any transport request from all systems. No transaction creates it .
    Please go through the links to get more info on this mechanism.
    [is there something like NOIMPORT.<SID> but with exception list;
    [http://help.sap.com/saphelp_40b/helpdata/fr/3d/ad5ad84ebc11d182bf0000e829fbfe/content.htm]

  • ERROR : Cannot read the request body while creating new calendar event api.

    Hi, 
    I was trying to create and update the calendar event using [POST] https://outlook.office365.com/api/v1.0/me/events and [PATCH] https://outlook.office365.com/api/v1.0/me/events/<eventId> respectively.
    When i try with poster or postman, I get this error
    {error: {code: "ErrorInvalidRequest" message: "Cannot read the request body."} }
    its not working . Any help will be appreciated.
    Note: GET events and DELETE Events are working. I think the API with payload is not working.
    Test Data :
    URL: https://outlook.office365.com/api/v1.0/me/events/
    Method: POST
    JSON Data(Payload):
      "Subject": "Discuss the Calendar REST API",
      "Body": {
        "ContentType": "HTML",
        "Content": "I think it will meet our requirements!"
      "Start": "2015-01-06T07:03:07.481Z",
      "End": "2015-01-05T07:03:07.481Z",
      "Attendees": [
          "EmailAddress": {
            "Address": "[email protected]",
            "Name": "Konveen"
          "Type": "Required"
    Error:
        "error": {
            "code": "ErrorInvalidRequest",
            "message": "Cannot read the request body."

    Hi Sahil,
    I was able to make your request work fine against my Office 365 mailbox with 2 changes.
    1. Can you please make sure you are adding header "Content-Type: Application/Json"?
    2. Can you please make sure your end time is AFTER start time?  Looks like there is a typo with your current request as the start time is on 2015-01-06 and end time is on 2015-01-05.
    Hope that helps ...
    Thanks,
    Venkat

  • Error 58 The specified server cannot perform the requested operation

    Hello,
    I will try to explain the situation as brief as possible. Next to our current existing MDT environment (MDT2010 on Windows 2008 R2) we are no building a new system (MDT2013 on WIndows 2012 R2). We have multiple sites and the MDT deployment share is setup
    in DFRS share so every site is getting the same deployment information and replication is done automatically. This has been working firn for 3 years with the old system and also with the new environment it was working fine in our own subnet. But when after
    i have setup the remote MDT and WDS servers it is not working in these remote sites. The images are loading fine but for some reason the win PE is not connecting to the shares on the windows 2012 server in our site. When i manuualy connect from a remote win
    PE to our server i always get the error: system error 58 has occured. The specified server cannot perform the requested operation.
    I have been doing some troubleshooting and it seems i only got this issue when i connect from win PE 5.0 to a windows 2012 R2 server in a remote subnet.
    When i use win PE 5.0 and connect to a windows 2012 R2 share in the same subnet it connects fine. 
    When i use win PE 5.0 and connect to a windows 2008 R2 share in a remote subnet it connects fine
    When i use an older win PE and i connect to a windows 2012 R2 share in a remote subnet it connects fine
    When i use win PE 5.0 and connect to a windows 2012 R2 share in a remote subnet it does NOT connect and gives the above error
    The problem is that this problem also does not occure in Windows 7, after the machine was build by MDT and get into the OS i can connect without a problem to the windows 2012 R2 shares.
    Checking the event viewer on the 2012 R2 server that is hosting the shares i see that the following events are created:
    4624: An account was successfully logged on.
    Subject:
    Security ID:
    NULL SID
    Account Name:
    Account Domain:
    Logon ID:
    0x0
    Logon Type: 3
    Impersonation Level: Impersonation
    New Logon:
    Security ID:
    domain\username
    Account Name:
    username
    Account Domain: domain
    Logon ID:
    0x1F1FC0
    Logon GUID:
    {8e360e91-001b-c726-84a6-e7281a4bcac8}
    Process Information:
    Process ID:
    0x0
    Process Name:
    Network Information:
    Workstation Name:
    Source Network Address:
    x.x.x.x
    Source Port:
    60077
    Detailed Authentication Information:
    Logon Process:
    Kerberos
    Authentication Package:
    Kerberos
    Transited Services:
    Package Name (NTLM only):
    Key Length:
    0
    This event is generated when a logon session is created. It is generated on the computer that was accessed.
    The subject fields indicate the account on the local system which requested the logon. This is most commonly a service such as the Server service, or a local process such as Winlogon.exe or Services.exe.
    The logon type field indicates the kind of logon that occurred. The most common types are 2 (interactive) and 3 (network).
    The New Logon fields indicate the account for whom the new logon was created, i.e. the account that was logged on.
    The network fields indicate where a remote logon request originated. Workstation name is not always available and may be left blank in some cases.
    The impersonation level field indicates the extent to which a process in the logon session can impersonate.
    The authentication information fields provide detailed information about this specific logon request.
    - Logon GUID is a unique identifier that can be used to correlate this event with a KDC event.
    - Transited services indicate which intermediate services have participated in this logon request.
    - Package name indicates which sub-protocol was used among the NTLM protocols.
    - Key length indicates the length of the generated session key. This will be 0 if no session key was requested.
    5140: 
    A network share object was accessed.
    Subject:
    Security ID:
    domain\username
    Account Name:
    username
    Account Domain: domain
    Logon ID:
    0x1F1FC0
    Network Information:
    Object Type:
    File
    Source Address:
    x.x.x.x
    Source Port:
    60077
    Share Information:
    Share Name:
    \\*\Captures
    Share Path:
    \??\D:\Captures
    Access Request Information:
    Access Mask:
    0x1
    Accesses:
    ReadData (or ListDirectory)
    4634: 
    An account was logged off.
    Subject:
    Security ID:
    domain\username
    Account Name:
    username
    Account Domain: domain
    Logon ID:
    0x1F1FC0
    Logon Type: 3
    This event is generated when a logon session is destroyed. It may be positively correlated with a logon event using the Logon ID value. Logon IDs are only unique between reboots on the same computer.
    Anyone an idea why this is happening?

    Hi,
    We can refer to the following blog for MDT troubleshooting:
    http://blogs.technet.com/b/askcore/archive/2012/05/08/mdt-2010-amp-2012-my-deployment-failed-what-and-where-are-logs-i-should-review.aspx
    Best Regards,
    Vincent Wu
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Weblogic.management.NoAccessRuntimeException: Cannot perform the requested

    Hi,
    I am using WLES 4.2 with WebLogic 8.1 SP4 Portal domain.
    Managed Servers are not running, Admin server starts normally, when i try to access WebLogic Admin Console i get below exception. Any idea what could be the root cause?????
    weblogic.management.NoAccessRuntimeException: Cannot perform the requested operation, the request was from an anonymous user (Principal)
    at weblogic.management.mbeans.custom.Cluster.getServers(Cluster.java:76)
    at sun.reflect.GeneratedMethodAccessor37.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at weblogic.management.internal.DynamicMBeanImpl.getAttribute(DynamicMBeanImpl.java:604)
    at weblogic.management.internal.ConfigurationMBeanImpl.getAttribute(ConfigurationMBeanImpl.java:179)
    at com.sun.management.jmx.MBeanServerImpl.getAttribute(MBeanServerImpl.java:1186)
    at com.sun.management.jmx.MBeanServerImpl.getAttribute(MBeanServerImpl.java:1156)
    at weblogic.management.internal.RemoteMBeanServerImpl.getAttribute(RemoteMBeanServerImpl.java:288)
    at weblogic.management.internal.MBeanProxy.getAttribute(MBeanProxy.java:610)
    at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java:442)
    at weblogic.management.configuration.ClusterMBean_Stub.getServers(ClusterMBean_Stub.java:1168)
    at weblogic.management.console.utils.MBeans.getServersFor(MBeans.java:692)
    at weblogic.management.console.webapp._domain.__nav._jspService(__nav.java:1507)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:322)
    at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:150)
    at weblogic.management.console.actions.ForwardAction.perform(ForwardAction.java:35)
    at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:173)
    at weblogic.management.console.actions.internal.ActionServlet.doGet(ActionServlet.java:91)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6718)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >

    Did you ever find resolution to this? We are encountering the listed exception every 10 minutes in the logs and have yet to identify the source.

  • Error:The server cannot service the request because the media type is unsupported

    Hi Experts,
    I have configured one IDOC to web service synchronous scenario in SAP PI 7.31 using BPM. In the webservice response step of BPM we are getting the below error.
    The server cannot service the request because the media type is unsupported.
    Could you please assist?

    Send the same xml from SOAP UI to test the webservice. If you get the similar response, you should check with your service provider on what is the expected content/format.
    May be you might have to change the content type before sending the message to webservice.

  • In iMovie 11 I cannot set the duration of my photos, iMovie 09 allowed this , anyone know what to do?

    In iMovie 11, I cannot set the duration of the photos, iMovie 09 allowed this, anybody know the solution?  I use transitions between photos and want to set the timing because I am setting the whole thing to music.

    I have been unable to find this error on the help pages
    Error 1413 when Updating or Restoring an iPod

  • Cannot handle the request because a modal dialog or alert is active in indesign CS6, C#

    Hello,
    I'm having bunch of indesign CS6 files. I have written piece of code in C# which opens indesign files & exports those files to xml & pdf. If I run the exe, it works properly. But when I schedule it via task scheduler (runs at point of time without
    human intervention), it throws an error "Cannot handle the request because a modal dialog or alert is active" which results in failure of my process. This error keeps me annoying. So how to over come this error?
    Any help would be grateful. Thanks in advance.

    Hello,
    Thank you for your post.
    But your issue is out of support range of VS General Question forum which mainly discusses the usage issue of Visual Studio IDE such as
    WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Because your issue is involved to InDesign CS6 which is third-party, we don’t support it, so I will move it to Off-topic forum.
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I wish to set a repeat for an event but I do not get a customise option on my iphone 4s so cannot set the third monday of the month - only day, weekly 2 weekly monthly or annually - how do I resolve the problem ?

    I wish to set a repeat for an event but I do not get a customise option on my iphone 4s so cannot set the third monday of the month - only day, weekly 2 weekly monthly or annually - how do I resolve the problem ?

    Week Cal uses the calender database already on your phone. It's just a different front end.

  • Cannot get the Oilpaint Filter to work

    I own CS6 and just downloaded the Photoshop CC trial version.  I cannot get the oilpaint filter to work in either.  I must be missing something.  When I open a photo, select filters and then oilpaint - all I get is the grey screen (with the oilpaint tools).  But no photo is there for me to apply the filter effect.  Any idea what I am missing?
    Thanks,
    Marcus

    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers: 
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Xcelsius Scenario Button cannot set the Default Scenario

    Hi,
    I am facing a problem with the Scenario Button in Xcelsius the problem is i cannot set the Default Scenario in the Dashboard .
    I can save load delete the the scenario but if i have 3 scenario and i want to make one of them as default is does not work.
    I think there is some browser setting for this and i have already configured the storage setting for the browser .
    Warm Regards,
    Mishra Vibhav

    Hi Thijs
    Thanks for your update, I think this really helps me. And I have one more question.
    I have seen a SAP notes regarding the Scenario function, the content is as below.
    You use the Local Scenario button to save the final result of a specific simulation (created scenario) and return to it in the future. It only saves the scenario on the local machine where it was created. So you can access the scenario from the same machine, but you cannot transfer scenarios from one computer to another.
    As per the note we can't transfer scenarios from one computer to another, my question is: If we publish the dashboard to inforview and save the scenario, the scenario will be saved in the BOE repositary or still on the local PC, and could the scenario be able to share among different users?
    Thanks a lot

  • AMD 3000+ cannot set the fsb in order to boot

    Hi,
    My system below worked fine with an AMD 2100 chip. I recently bought a 3000+ chip and slotted in to my PC - all booted up fine.  I then changed the FSB within bios to 166 - and then rebooted - the machine didn't boot and I had to clear the CMOS.
    I worked out that I cannot set the fsb to anything above 139 fsb else the machine won't boot and I have to reclear the CMOS...I have no idea what to do
    Anyone got any ideas pleaaaaseee?????
    btw I took the cpu down to the dealer and it worked fine there.
    AMD Barton 3000+ (333)
    2 x 256mb PC2700 ram
    MSI 4800 AGP 8X videocard
    Firewire Card
    DVD RW
    CD RW
    80 Gb HD
    120 GB HD
    PSU 350w - +3.3v / 28a
    +5v / 30a
    +12v / 15a

    Hi,
    Sorry my fault...
    but before I give you my system spec - I stuck in a 550W power supply and all is fine.
    However when I clock it up to 166 system crashes - better ram needed I guess.
    But FSb at 160 is fine....
    Considering its warm weather at the mo - my machie hits around 50 -55 degrees when playing something like fs2004.
    Thanks for your replies guys!
    M
    AMD Barton 3000+ (333)
    2 x 256mb PC2700 ram (non branded)
    MSI KTV4-L MB -
    MSI 4800 AGP 8X videocard
    Firewire Card
    DVD RW
    CD RW
    80 Gb HD
    120 GB HD
    PSU 350w - +3.3v / 28a
    +5v / 30a
    +12v / 15a

Maybe you are looking for