The server cannot find the method in the deployed custom DSC

Hi everybody,
I encountered a problem these days and I don't know how to solve it.
Here is the detail information about it.
I create a java project and export it as a runnable jar file as usual. Then, I deployed it in the component. In the server log, it said that "Method not found for service descriptor".
However, I can still find the service in the "Service Management" and access the WSDL of the SOAP endpoint.
Everytime when I try to invoke it, there is an error message showing that: the method doesn't exist.
Does anybody have some ideas about this phenomenon? I really don't know what happened.
Thanks in advance!

Hi Hodmi,
Thank you for your reply.
I have figured it out. It because the type of the input parameter is not consistent with that in the component.xml.
Thank you again.

Similar Messages

  • "The Server cannot find the document corresponding to the document id"

    Periodically when we schedule a Discoverer Report (Apps EUL) we get the following error:
    "The Server cannot find the document corresponding to the document id sent for open"
    Months back Oracle told us to do the following as a workaround:
    Log into Oracle Desktop, schedule something, then go back to OracleBI Discoverer Plus.
    The error goes away.
    This is an insane workaround. Has anyone seen this error and found a patch or a realistic workaround.
    Thanks,
    Bob

    Bob.
    I haven't seen this problem, but sure makes me wonder what Oracle is up to, when they essentially tell you to "give the scheduler a good slap via Disco Desktop" every now and then.
    Maybe is you created an SR in Metalink you could slap them back on this one!
    Russ

  • Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"

    Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"
    What are the correct mail account settings and more importantly the correct DNS settings
    Thank you for any help you may be able to provide
    Cheers
    Chris (iMac i7)

    Do not delete the old account yet. sign up for an iCloud account if you haven't.
    I understand .mac mail will still come through. Do not delete the old account yet.
    You cannot use .mac or MobileMe as type of Account, you have to choose IMAP when setting up, otherwise Mail is hard coded to change imap.mail.me.com to mail.me.com & smtp.mail.me.com to smtp.me.com, no matter what you try to enter.
    iCloud Mail setup, do not choose .mac or MobileMe as type, but choose IMAP...
    On second step where it asks "Description", it has to be a unique name, but you can still use your email address.
    IMAP (Incoming Mail Server) information:
              •          Server name: imap.mail.me.com
              •          SSL Required: Yes
              •          Port: 993
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    SMTP (outgoing mail server) information:
              •          Server name: smtp.mail.me.com
              •          SSL Required: Yes
              •          Port: 587
              •          SMTP Authentication Required: Yes
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    Also, you must upgrade your password to meet the new criteria:  8 characters, including upper and lower case and numbers.  If you have an older password that does not meet these criteria, when you try to setup mail on your mac, using all of the IMAP criteria listed above, it will still give a server error message.  Go to   http://appleid.apple.com         then follow directions to change your password, then go back to setting up your mail using the IMAP instructions above.
    Thanks to dpepper...
    https://discussions.apple.com/thread/3867171?tstart=0

  • [Forum FAQ] Cannot perform a backup schedule via Windows Server Backup and receive "The system cannot find the path specified." Error

    Symptom One
    You attempt to
    schedule a backup every day via Windows Server Backup on Windows Server 2008 R2. At the beginning, the backup works without issue. But after a few days it failed and you receive the error “Windows Server Backup:
    The system cannot find the path specified.”
    Cause
    The issue may occur if there is
    no shadow copy storage space available on the backup volume.
    Verify
    You can use the List ShadowStorage command to check if you have enough storage space to store the newly created shadow copy. If you've reviewed the size of the backup snapshot and discovered
    that there is no allocated space for the storage association, you need to resize shadowstorage.
    Solution
    You could run the command below to create shadow copy storage space on the backup volume:
    vssadmin resize
    shadowstorage /for=<ForVolumeSpec> /on=<OnVolumeSpec> [/maxsize=<MaxSizeSpec>]
    More Information
    Vssadmin resize shadowstorage
    http://technet.microsoft.com/en-us/library/cc788050.aspx
    Symptom Two
    When you add
    another external hard drive to backup schedule via Windows Server Backup on Windows Server 2012, it fails and you receive the error “The System cannot find the path specified.”
    Cause
    The issue is due to the
    Original Destination Disk was not attached to the server.
    Verify
    You could check the disk status in Disk Management to see if the Original Destination Disk is offline or removed.
    Solution
    You need to attach
    Original Destination Disk to the Server then choose another external hard drive as backup target. After that, you could remove the Original Destination Disk.
    Workaround
    To work around this issue, please use the WBADMIN command line tool to add disk.
    WBADMIN ENABLE BACKUP -addtarget :{ DiskID}
    The AddTarget parameter takes disk ID as parameter. It can be retrieved by running "WBADMIN GET DISKS" command.
    Example:
    WBADMIN ENABLE BACKUP
    -addtarget :{ aa123d14-bba0-1dd9-0d93-80aaaa6bbb63}
    More Information
    Wbadmin enable backup
    http://technet.microsoft.com/en-us/library/cc742130.aspx
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    good

  • Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\abc.mdf". Operating system error 2: "2(The system cannot find the file specified.)".

    hi,
    am running the below command for moving sql serevr mdf and ldf files  from one  drive to another : c  drive to d drive:
    but am getting the below error
    SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\abc.mdf". Operating system error 2: "2(The system cannot find the file specified.)".
    use master
    DECLARE @DBName nvarchar(50)
    SET @DBName = 'CMP_143'
    DECLARE @RC int
    EXEC @RC = sp_detach_db @DBName
    DECLARE @NewPath nvarchar(1000)
    --SET @NewPath = 'E:\Data\Microsoft SQL Server\Data\';
    SET @NewPath = 'D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\';
    DECLARE @OldPath nvarchar(1000)
    SET @OldPath = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\';
    DECLARE @DBFileName nvarchar(100)
    SET @DBFileName = @DBName + '.mdf';
    DECLARE @LogFileName nvarchar(100)
    SET @LogFileName = @DBName + '_log.ldf';
    DECLARE @SRCData nvarchar(1000)
    SET @SRCData = @OldPath + @DBFileName;
    DECLARE @SRCLog nvarchar(1000)
    SET @SRCLog = @OldPath + @LogFileName;
    DECLARE @DESTData nvarchar(1000)
    SET @DESTData = @NewPath + @DBFileName;
    DECLARE @DESTLog nvarchar(1000)
    SET @DESTLog = @NewPath + @LogFileName;
    DECLARE @FILEPATH nvarchar(1000);
    DECLARE @LOGPATH nvarchar(1000);
    SET @FILEPATH = N'xcopy /Y "' + @SRCData + N'" "' + @NewPath + '"';
    SET @LOGPATH = N'xcopy /Y "' + @SRCLog + N'" "' + @NewPath + '"';
    exec xp_cmdshell @FILEPATH;
    exec xp_cmdshell @LOGPATH;
    EXEC @RC = sp_attach_db @DBName, @DESTData, @DESTLog
    go
    can anyone pls help how to set the db offline. currently  i  stopped the sql server services from services.msc and started the  sql server agent.
    should i stop both services for moving from one drive to another?
    note: I tried teh below solution but this didint work:
    ALTER DATABASE <DBName> SET OFFLINE WITH ROLLBACK IMMEDIATE
    Update:
    now am getting the message :
    Msg 15010, Level 16, State 1, Procedure sp_detach_db, Line 40
    The database 'CMP_143' does not exist. Supply a valid database name. To see available databases, use sys.databases.
    (3 row(s) affected)
    (3 row(s) affected)
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\CMP_143.mdf". Operating system error 2: "2(The system cannot find the file specified.)".

    First you should have checked the database mdf/ldf name and location by using the command
    Use CMP_143
    Go
    Sp_helpfile
    Looks like your database CMP_143 was successfully detached but mdf/ldf location or name was different that is why it did not get copied to target location.
    Database is already detached that’s why db offline failed
    Msg 15010, Level 16, State 1, Procedure sp_detach_db, Line 40
    The database 'CMP_143' does not exist. Supply a valid database name. To see available databases, use sys.databases.
    EXEC @RC = sp_attach_db @DBName, @DESTData, @DESTLog
    Attached step is failing as there is no mdf file
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\CMP_143.mdf". Operating system error 2: "2(The system cannot find the file specified.)"
    Solution:
    Search for the physical files(mdf/ldf) in the OS and copy to target location and the re-run sp_attach_db with right location and name of mdf/ldf.

  • Windows Server Essentials 2012 error code: 2147942403 The system cannot find the path specified

    Running Windows Server 2012 Essentials with an external usb 3 drive as a backup device.  Using a Vantec hx enclosure with a WD Red drive. Last night the Dashboard saw the drive with about half the 4TB available for backup. A.M., I get "error code:
    2147942403 The system cannot find the path specified".
    Going to the server desktop, I see a message indicating that the usb device malfunctioned.  unplugging it, and plugging it back in, I now have it available via the dashboard.
    This has happened a couple times with two different drives in Vantec hx enclosures.
    A couple possibilities come to mind:
    the enclosures may both be bad...
    there is some problem with the system software and external usb drive.
    Thoughts?
    Suggestions for external enclosures?
    Thanks!

    Hi,
    According to your description, my understanding is that you cannot backup the Windows Server Essentials 2012 and got "error code: 2147942403 The system cannot find the path specified". You found the usb device malfunctioned. 
    Can you backup the server when you unplugged the usb device, and plugged it back in? If you can backup the server when you replug the usb device, you need to engage the vendor to resolve the hard drive issues.
    Best Regards,
    Mandy 
    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.

  • Weblogic Server error: "The system cannot find the path specified."

    Hi. I'm trying to run a Java EE web application, but as soon as I launch the Weblogic I get the next message several times on the DefaultServer Log: "The system cannot find the path specified"
    Here's the complete log:
    *** Using port 7101 ***
    C:\Users\Nicolás\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\bin\startWebLogic.cmd
    [ waiting for the server to complete its initialization... ]
    The system cannot find the path specified.
    JAVA Memory arguments:
    WLS Start Mode=Development
    CLASSPATH=
    PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Common Files\Ulead Systems\MPEG;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\TortoiseSVN\bin;/3E
    The system cannot find the path specified.
    The system cannot find the path specified.
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    Starting WLS with line:
    \bin\java -Dweblogic.Name= -Djava.security.policy=\server\lib\weblogic.policy
    Process exited.
    I can run my programs perfectly on another machine with Windows XP. I've got a new machine with Vista Home Premium 64, but I have been never able to launch the server. I don't know if this has something to do with the system environment variables.
    I'm using JDeveloper Studio Edition Version 11.1.1.1.0, and Weblogic Server 10.3.
    Thanks in advance! :)

    Hi,
    Try this.
    Edit your registry and go to
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem
    Change the value for NtfsDisable8dot3NameCreation to 1 (if the key does not exist, create a DWORD key with that name and set the value to 1).
    Delete your DefaultDomain folder from the system folder.
    Restart the machine, start the jdev and run the page.
    Reference : http://support.microsoft.com/kb/121007
    -Arun

  • Starting Server "The system cannot find the path specified".

    Hi,
    When trying to start Sun Java SystemApplication Server 9.1 I get the message "The system cannot find the path specified".
    I have PATH = C:\Sun\AppServer\bin;C:\Sun\AppServer\lib\ant\bin;
    Windows XP SP 3.
    Suggestions please!
    Lou

    Are you trying to start it as a system service or just from a command prompt?
    You may need to add the lib directory to the PATH as well, ie C:\Sun\AppServer\lib and don't forget to reboot if it is a system service.

  • DPM Backups Fail on File Server, (ID 2033 Details: The System Cannot Find the File Spedcified (0x80070002)

    I've found a few treads and posts related to this error, but none of the answers seem to work. I have DPM 2010 U7 server backing up my file server (Server 2008 R2). The backup of the D: Drive(which hosts all shares) is failing with the following error:
    Affected area: D:\Occurred since: 4/23/2014 11:15:26 AMDescription: The replica of Volume D:\ on XXXXX.XXX.XX is inconsistent with the protected data source. All protection activities for data source will fail until the replica is synchronized with consistency check. You can recover data from existing recovery points, but new recovery points cannot be created until the replica is consistent. For SharePoint farm, recovery points will continue getting created with the databases that are consistent. To backup inconsistent databases, run a consistency check on the farm. (ID 3106) DPM encountered an error while performing an operation for \\?\Volume{bb191e08-5d62-4a60-85f1-cdbd7598976b}\XXXX\XXXXX\XXXX\XXXXX\XXXXX\XXXXX\XXXXX\XXXXX\XXXXX on XXXXXX.XXXX.XXX (ID 2033 Details: The system cannot find the file specified (0x80070002))
    I've ran SFC /SCANNOW on both servers, rebooted. Ran chckdsk /f on the D: on the file server, rebooted again. Still having the same issue. The BMR and System State backups run just fine, along with the backup of the C:
    I am getting the following error on the file server for volsnap.
    The shadow copies of volume D: were deleted because the shadow copy storage could not grow in time.  Consider reducing the IO load on the system or choose a shadow copy storage volume that is not being shadow copied.
    Which caused me to try moving the shadow copy storage to the C:, but then it just fails with the following error. Which makes since as the C drive is 136GB, while the D drive is 27TB. 
    The shadow copies of volume D: were aborted because the shadow copy storage failed to grow.
    Lastly I deleted the entire replica and recreated the protection, with no luck.  I tried to just slowly create the replica by adding one small parts at a time, currently its failing while trying to backup ~300GB. 
    I've checked the VSS Writiers on the file server, everything looks correct. Here is the print out.
    P:\>VSSadmin List Shadowstorage
    vssadmin 1.1 - Volume Shadow Copy Service administrative command-line tool
    (C) Copyright 2001-2005 Microsoft Corp.
    Shadow Copy Storage association
       For volume: (\\?\Volume{3c066165-11a2-11e3-ae8a-806e6f6e6963}\)\\?\Volume{3c0
    66165-11a2-11e3-ae8a-806e6f6e6963}\
       Shadow Copy Storage volume: (\\?\Volume{3c066165-11a2-11e3-ae8a-806e6f6e6963}
    \)\\?\Volume{3c066165-11a2-11e3-ae8a-806e6f6e6963}\
       Used Shadow Copy Storage space: 0 B (0%)
       Allocated Shadow Copy Storage space: 0 B (0%)
       Maximum Shadow Copy Storage space: 32 MB (32%)
    Shadow Copy Storage association
       For volume: (D:)\\?\Volume{bb191e08-5d62-4a60-85f1-cdbd7598976b}\
       Shadow Copy Storage volume: (D:)\\?\Volume{bb191e08-5d62-4a60-85f1-cdbd759897
    6b}\
       Used Shadow Copy Storage space: 0 B (0%)
       Allocated Shadow Copy Storage space: 0 B (0%)
       Maximum Shadow Copy Storage space: UNBOUNDED (61488716%)
    Shadow Copy Storage association
       For volume: (C:)\\?\Volume{3c066166-11a2-11e3-ae8a-806e6f6e6963}\
       Shadow Copy Storage volume: (C:)\\?\Volume{3c066166-11a2-11e3-ae8a-806e6f6e69
    63}\
       Used Shadow Copy Storage space: 0 B (0%)
       Allocated Shadow Copy Storage space: 0 B (0%)
       Maximum Shadow Copy Storage space: 13.603 GB (10%)
    P:\>vssadmin list writers
    vssadmin 1.1 - Volume Shadow Copy Service administrative command-line tool
    (C) Copyright 2001-2005 Microsoft Corp.
    Writer name: 'Task Scheduler Writer'
       Writer Id: {d61d61c8-d73a-4eee-8cdd-f6f9786b7124}
       Writer Instance Id: {1bddd48e-5052-49db-9b07-b96f96727e6b}
       State: [1] Stable
       Last error: No error
    Writer name: 'VSS Metadata Store Writer'
       Writer Id: {75dfb225-e2e4-4d39-9ac9-ffaff65ddf06}
       Writer Instance Id: {088e7a7d-09a8-4cc6-a609-ad90e75ddc93}
       State: [1] Stable
       Last error: No error
    Writer name: 'Performance Counters Writer'
       Writer Id: {0bada1de-01a9-4625-8278-69e735f39dd2}
       Writer Instance Id: {f0086dda-9efc-47c5-8eb6-a944c3d09381}
       State: [1] Stable
       Last error: No error
    Writer name: 'System Writer'
       Writer Id: {e8132975-6f93-4464-a53e-1050253ae220}
       Writer Instance Id: {57babf83-3fb0-41c0-b13a-0ec09543d852}
       State: [1] Stable
       Last error: No error
    Writer name: 'ASR Writer'
       Writer Id: {be000cbe-11fe-4426-9c58-531aa6355fc4}
       Writer Instance Id: {2d4295b0-a282-4cd7-97af-ea394b845330}
       State: [1] Stable
       Last error: No error
    Writer name: 'FSRM Writer'
       Writer Id: {12ce4370-5bb7-4c58-a76a-e5d5097e3674}
       Writer Instance Id: {41c4fd48-af83-4ba8-9ca5-79820c055131}
       State: [1] Stable
       Last error: No error
    Writer name: 'Registry Writer'
       Writer Id: {afbab4a2-367d-4d15-a586-71dbb18f8485}
       Writer Instance Id: {9a832588-4172-4f3a-bf44-363e128dfd74}
       State: [1] Stable
       Last error: No error
    Writer name: 'Shadow Copy Optimization Writer'
       Writer Id: {4dc3bdd4-ab48-4d07-adb0-3bee2926fd7f}
       Writer Instance Id: {9c184685-c43e-4a6b-9b34-e82020329b1a}
       State: [1] Stable
       Last error: No error
    Writer name: 'BITS Writer'
       Writer Id: {4969d978-be47-48b0-b100-f328f07ac1e0}
       Writer Instance Id: {e6db54bb-552e-4d8f-b26b-45aa03829fda}
       State: [1] Stable
       Last error: No error
    Writer name: 'COM+ REGDB Writer'
       Writer Id: {542da469-d3e1-473c-9f4f-7847f01fc64f}
       Writer Instance Id: {2c326c9e-8727-4277-833a-ee2cb76b625e}
       State: [1] Stable
       Last error: No error
    Writer name: 'WMI Writer'
       Writer Id: {a6ad56c2-b509-4e6c-bb19-49d8f43532f0}
       Writer Instance Id: {e17f6d25-c8ad-4663-8511-c0d6a3413fe3}
       State: [1] Stable
       Last error: No error

    Hi,
    It is strange that the issue still exists after recreating backup.
    Please try again to clear all replica, and specifically, move the folder involved in this error to another location such as Drive C and see if issue still exists.
    Meanwhile please test if Windows Server Backup works or not. 
    If you have any feedback on our support, please send to [email protected]

  • Why am I getting ExchangeWebServices Inbox Error: Error, ErrorServerBusy. The server cannot service this request right now. Try again later

    I recently switched my application that uses EWS from an on-premise Exchange Server to Exchage Online through Office356.
    The process worked just fine for several days, then I started getting the following errors;
    Error accessing [USERNAME] email account.; ExchangeWebServices Inbox Error: Error, ErrorServerBusy, The server cannot service this request right now. Try again later. --> 
    This has been happening for the past 14 hours now. 
    I contacted my Office365 support team and they acted like they had never heard of the Exchange Web Services API, so no help there.
    I can access the mailbox using the O365 web portal and I can access the mailbox account using the Outlook 2013 desktop client. The issue seems specific to EWS
    My program is a Windows service, written in VB.Net. It connects to EWS, goes to the user account inbox, iterates through the inbox extracting attachments from messages, then moves the messages to a saved folder below the inbox.
    I created the wrapper for EWS that I can reference in my project code using the following, run from an elevated VS2012 command prompt;
    wsdl.exe /namespace:ExchangeWebServices /out:EWS.cs https://outlook.office365.com/ews/services.wsdl /username:[email protected] /password:p@ssw0rd
    csc /out:EWS_E2K13_release /target:library EWS.cs
    I bind to EWS in my class, using the following code;
    Imports System.Net
    Imports ExchangeWebServices
    Public Class Exchange2013WebServiceClass
        Private ExchangeBinding As New ExchangeServiceBinding
        Public Sub New(ByVal userEmail As String, ByVal userPassword As String, ByVal URL As String)
            ExchangeBinding.Credentials = New NetworkCredential(userEmail, userPassword)
            ExchangeBinding.Url = URL
        End Sub
    The error that is logged gets triggered when my code makes a call to the following method;
        Public Function GetInboxMessageIDs() As ArrayOfRealItemsType
            Dim returnInboxMessageIds As ArrayOfRealItemsType = Nothing
            Dim errMsg As String = String.Empty
            'Create the request and specify the travesal type.
            Dim FindItemRequest As FindItemType
            FindItemRequest = New FindItemType
            FindItemRequest.Traversal = ItemQueryTraversalType.Shallow
            'Define which item properties are returned in the response.
            Dim ItemProperties As ItemResponseShapeType
            ItemProperties = New ItemResponseShapeType
            ItemProperties.BaseShape = DefaultShapeNamesType.IdOnly
            'Add properties shape to the request.
            FindItemRequest.ItemShape = ItemProperties
            'Identify which folders to search to find items.
            Dim FolderIDArray(0) As DistinguishedFolderIdType
            FolderIDArray(0) = New DistinguishedFolderIdType
            FolderIDArray(0).Id = DistinguishedFolderIdNameType.inbox
            'Add folders to the request.
            FindItemRequest.ParentFolderIds = FolderIDArray
            Try
                'Send the request and get the response.
                Dim FindItemResponse As FindItemResponseType
                FindItemResponse = ExchangeBinding.FindItem(FindItemRequest)
                'Get the response messages.
                Dim ResponseMessage As ResponseMessageType()
                ResponseMessage = FindItemResponse.ResponseMessages.Items
                Dim FindItemResponseMessage As FindItemResponseMessageType
                If ResponseMessage(0).ResponseClass = ResponseClassType.Success Then
                    FindItemResponseMessage = ResponseMessage(0)
                    returnInboxMessageIds = FindItemResponseMessage.RootFolder.Item
                Else
                    '' Server error
                    Dim responseClassStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseClassType), ResponseMessage(0).ResponseClass).ToString
                    Dim responseCodeStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseCodeType), ResponseMessage(0).ResponseCode).ToString
                    Dim messageTextStr As String = ResponseMessage(0).MessageText.ToString
                    Dim thisErrMsg As String = String.Format("ExchangeWebServices Inbox Error: {0}, {1}, {2}", responseClassStr, responseCodeStr, messageTextStr)
                    errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & thisErrMsg
                End If
            Catch ex As Exception
                'errMsg = String.Join("; ", errMsg, ex.Message)
                errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & ex.Message
            End Try
            If Not errMsg.Equals(String.Empty) Then
                returnInboxMessageIds = Nothing
                Throw New System.Exception(errMsg)
            End If
            Return returnInboxMessageIds
        End Function  
    Since the code worked just fine for several days and then suddenly stopped working with a server busy error, I have to think that this is some type of limit or throttling by EWS on the account. I process several thousand emails per day, in chunks of 300
    at a time. 
    But I have no idea how to check for any limits exceeded. I am nowhere close to my O365 mailbox size limit. Right now, there are over 4,000 messages in my inbox, and growing. 
    Thanks in advance for any ideas you can offer.
    Dave

    All the API's EWS, MAPI, ActiveSync,Remote powershell are throttled on Office365 (based around what 1 particular user could resonably do). If you have had a read of this already i would recommend
    http://msdn.microsoft.com/en-us/library/office/jj945066(v=exchg.150).aspx
     You can't adjust or even find your current throttle usage so you have to try to design your code around living inside the default limits. If your using One Service Account to access multiple Mailboxes (or if that account is because used across multiple
    applications) that can cause problems. In this case using EWS Impersonation is good solution as described in
    http://blogs.msdn.com/b/exchangedev/archive/2012/04/19/more-throttling-changes-for-exchange-online.aspx (this basically means the Target Mailbox is charged instead of the Service Account).
     Looking at the code one thing I notice missing is your don't appear to be paging the results of FindItems, also have versioned your requests to Exchagne2013. eg ". When the value of the
    RequestServerVersion element indicates Exchange 2010 or an earlier version of Exchange, the server sends a failure response with error code
    ErrorServerBusy. If the value of the RequestServerVersion
    element indicates a version of Exchange starting with Exchange 2010 SP1
    or Exchange Online, and the client is using paging, EWS may return a
    partial result set instead of an error"
    To Page FindItems Correctly you should use the IndexedPageViewType class and page the Items at no more the 1000 at a time eg something like
    IndexedPageViewType indexedPageView = new IndexedPageViewType();
    indexedPageView.BasePoint = IndexBasePointType.Beginning;
    indexedPageView.Offset = 0;
    indexedPageView.MaxEntriesReturned = 1000;
    indexedPageView.MaxEntriesReturnedSpecified = true;
    FindItemType findItemrequest = new FindItemType();
    findItemrequest.Item = indexedPageView;
    findItemrequest.ItemShape = new ItemResponseShapeType();
    findItemrequest.ItemShape.BaseShape = DefaultShapeNamesType.IdOnly;
    BasePathToElementType[] beAdditionproperties = new BasePathToElementType[3];
    PathToUnindexedFieldType SubjectField = new PathToUnindexedFieldType();
    SubjectField.FieldURI = UnindexedFieldURIType.itemSubject;
    beAdditionproperties[0] = SubjectField;
    PathToUnindexedFieldType RcvdTime = new PathToUnindexedFieldType();
    RcvdTime.FieldURI = UnindexedFieldURIType.itemDateTimeReceived;
    beAdditionproperties[1] = RcvdTime;
    PathToUnindexedFieldType ReadStatus = new PathToUnindexedFieldType();
    ReadStatus.FieldURI = UnindexedFieldURIType.messageIsRead;
    beAdditionproperties[2] = ReadStatus;
    findItemrequest.ItemShape.AdditionalProperties = beAdditionproperties;
    DistinguishedFolderIdType[] faFolderIDArray = new DistinguishedFolderIdType[1];
    faFolderIDArray[0] = new DistinguishedFolderIdType();
    faFolderIDArray[0].Mailbox = new EmailAddressType();
    faFolderIDArray[0].Mailbox.EmailAddress = "[email protected]";
    faFolderIDArray[0].Id = DistinguishedFolderIdNameType.inbox;
    bool moreAvailible = false;
    findItemrequest.ParentFolderIds = faFolderIDArray;
    int loopCount = 0;
    do
    FindItemResponseType frFindItemResponse = esb.FindItem(findItemrequest);
    if (frFindItemResponse.ResponseMessages.Items[0].ResponseClass == ResponseClassType.Success)
    foreach (FindItemResponseMessageType firmtMessage in frFindItemResponse.ResponseMessages.Items)
    Console.WriteLine("Number of Items retreived : " + ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length);
    if (firmtMessage.RootFolder.IncludesLastItemInRange == false)
    moreAvailible = true;
    else
    moreAvailible = false;
    ((IndexedPageViewType)findItemrequest.Item).Offset += ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length;
    Console.WriteLine("Offset : " + ((IndexedPageViewType)findItemrequest.Item).Offset);
    if (firmtMessage.RootFolder.TotalItemsInView > 0)
    foreach (ItemType miMailboxItem in ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items)
    Console.WriteLine(miMailboxItem.Subject);
    else
    throw new Exception("error " + frFindItemResponse.ResponseMessages.Items[0].MessageText);
    } while (moreAvailible);
    The support people should be able to help you as long as you can get past the first level. The EWS Managed API has a RequestId header that gets submitted with requests
    http://blogs.msdn.com/b/exchangedev/archive/2012/06/18/exchange-web-services-managed-api-1-2-1-now-released.aspx . In theory they should be able to take this and then from the Logs tell more information about why your request failed etc.
    Cheers
    Glen

  • Upgrading to MBAM 2.5: Could not load file or assembly 'System.Web.WebPages.Razor, Version=2.0.0.0.....the system cannot find the file specified.

    Upgrading from MBAM 1.0 to 2.5 on the Administration and Monitoring server (database server already upgraded). To upgrade the administration server, I uninstalled MBAM 1.0 -> Deleted the MBAM website from IIS manually -> Reboot -> Installed MBAM
    2.5. After upgrade if I go to selfservice portal via
    https://myserver.mycompany.com/selfservice, I get this error:
    Server Error in '/SelfService' Application.
    Could not load file or assembly 'System.Web.WebPages.Razor,
    Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its
    dependencies. The system cannot find the file specified.
    Description:
    An unhandled exception occurred during the execution of the current web
    request. Please review the stack trace for more information about the error and
    where it originated in the code.
    Exception Details:
    System.IO.FileNotFoundException: Could not load file or assembly
    'System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral,
    PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot
    find the file specified.
    Source Error:
    An unhandled exception was generated during the execution of the
    current web request. Information regarding the origin and location of the
    exception can be identified using the exception stack trace below.
    Stack Trace:
    [FileNotFoundException: Could not load file or assembly 'System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.]
    System.Web.Mvc.PreApplicationStartCode.Start() +0
    [InvalidOperationException: The pre-application start initialization method Start on type System.Web.Mvc.PreApplicationStartCode threw an exception with the following error message: Could not load file or assembly 'System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified..]
    System.Web.Compilation.BuildManager.InvokePreStartInitMethodsCore(ICollection`1 methods, Func`1 setHostingEnvironmentCultures) +12980619
    System.Web.Compilation.BuildManager.InvokePreStartInitMethods(ICollection`1 methods) +12980328
    System.Web.Compilation.BuildManager.CallPreStartInitMethods(String preStartInitListPath, Boolean& isRefAssemblyLoaded) +280
    System.Web.Compilation.BuildManager.ExecutePreAppStart() +172
    System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLevel, Exception appDomainCreationException) +1151
    [HttpException (0x80004005): The pre-application start initialization method Start on type System.Web.Mvc.PreApplicationStartCode threw an exception with the following error message: Could not load file or assembly 'System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified..]
    System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +12979668
    System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +159
    System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +12819261
    Anyone know how to solve this? Thanks in advance

    Sorry for late response. I fixed the issue by installing the correct version of ASP .NET 4 from
    here.
    If .NET Framework 4.5 is already installed, also run aspnet_regiis -i from C:\windows\microsoft.net\Framework\v4.0.30319

  • Windows 7 Backup "The System cannot find the path specified" - Error Code 0x80070003

    I'm having severe problems backing up my own machine to a share on our
    FILE-SERVER as \\FILE-SERVER\Backup\
    I have already backed up another PC successfully using exactly the same settings I have used on my own PC. So I presume it is nothing to do with the
    FILE-SERVER or the Backup settings.  It has to be something to do with what I'm trying to backup from my machine.
    First some background.
     This exercise all began when the Windows Server 2008 r2
    O/S fell over on one of our Servers. I tried reinstalling the O/S several times, without success. In the end I grabbed another drive and re-built the O/S. I then had problems promoting it to a Domain Controller on the network.
     In the end I renamed the Server from FILESERVER
    to FILE-SERVER.
    We routinely share four folders on what is now
    FILE-SERVER:
    \\FILE-SERVER\Backup
    - a Folder where backups from all other machines are written, so that they will be backed up with the Server
    \\FILE-SERVER\Company
    - holds all our Company data
    \\FILE-SERVER\GEM
    - this is the application folder for our own database
    \\FILE-SERVER\Install
    - holds all Install files for the software we use
    These are all held on a RAID 1 Array that is separate from the System Disk that fell over.
    Prior to the Server falling over, I had Backup working fine on my machine. 
    On my Notebook PC I had made these shared folders 'Available Offline', so that I still had everything available to me when I was out of the office. They were
    of course shared as \\FILESERVER\... not \\FILE-SERVER\...
    Having got the Server up and going again, I began to get the Backups from the Windows 7 Client PC's going again.
     I started with a Desktop, which of course did not have any Offline Files.
     That proved relatively straight-forward.
    I then started with my machine. Initially I did not make the above shared folders 'Available Offline'. I set up my Backup using exactly the same settings that
    had worked OK on the desktop machine. But when I ran the backup I got:
    The System cannot find the path specified, Error Code 0x80070003
    I tried all sorts of things to get it to work:
    I restored the system to the earliest point possible,
    I ran chkdsk,
    I defragged the drive
    All to no avail, so I tried backing up:
    with and without a system image,
    reducing the backup to a single folder, 
    a single Folder with only one .txt file in it, 
    making the Folders 'Available Offline' again.
    Nothing made any difference.
     In the end I looked in the Sync Center to look at the Offline Files Folder.
     Under Mapped Network Drives I discovered I still had the Files and Folders from
    \\FILESERVER.  In their Shortcut Menu 'Always Available Offline' was greyed out. So I deleted the Offline Copies. This deleted the Files in the Folders but not the Folders.
    Since I could find no way of deleting the old Mapped Network Drives, I decided I'd painted myself into a corner by renaming the Server.
     So I bit the bullet and re-installed my Notebook too.  This did get rid of the unwanted old Mapped Network Drives - BUT NOT THE ERROR!!
    I’ve been through all the troubleshooting procedures in: 
    http://social.technet.microsoft.com/Forums/windows/en-US/629597bb-7be0-455c-b81e-a149472d3f9b/windows-7-backup-the-system-cannot-find-the-path-specified-error-0x80070003?forum=w7itprogeneral
    Method 1
    It had none of the symptoms reported in  
    http://support.microsoft.com/kb/973455 
    but I scanned for ‘reparse’ points anyway.  Found several “Junction Points” but none that were “Mounted Volumes”, just ordinary ‘File Folders’.
    Method 2
    Check a drive for errors. 
    Looked at: 
    http://windows.microsoft.com/en-us/windows7/Check-a-drive-for-errors
    Checked
    both boxes.  I closed machine down, to check for errors when it re-started. 
    It didn’t seem to find anything. 
    I say seem, because I did not actually see it finishing checking the empty space, but stages 1-4 found no problems and Windows 7 restarted normally. 
    It did detect 66 ‘Reparse’ Points, which is more than it found when I scanned for them earlier. 
    Method 3
    Yes, I am an administrator or my own machine and, as such, I have ‘Full Access’.
    I downloaded an ran the Process Monitor, filtering for Process Name “Wbengine.exe”, but did dot get a single event. 
    So I’m not sure what’s going on.
    HELP - I'm out of ideas!
    I have a WORD Document that documents all the Settings I've used on both the Server and the Clients, together with the reasoning behind those settings, but
    I cannot find a way of uploading it.

    I am having the exact same problem with Windows 7 Professional. Out of the blue, this issue just started a few months ago when running my monthly Windows Backup where I have used a USB drive for the last 3 years, and never ever had this issue before. Most
    of the solutions listed on the Microsoft websites and answers deal with
    "Restore" functions, not the
    "Backup" itself. I have 3 folders being skipped during the backup.
    So I went and changed the Backup from "let Microsoft choose files, directories, etc" to "Let me choose". I included the files and folders that were being skipped, and ran the "Backup" again, and got the same error message,
    but the files that were skipped the first time were "Backed up" finally. This issue is somehow related to my "Libraries"?
    The 3 backup problems are:
    Backup encountered a problem while backing up file C:\Windows\System32\config\systemprofile\My Audio Books\Audio Book Recordings. Error:(The system cannot find the path specified. (0x80070003))
    Backup encountered a problem while backing up file C:\Windows\System32\config\systemprofile\My Audio Books\Audio Book CD Label-Cover Art. Error:(The system cannot find the path specified. (0x80070003))
    Backup encountered a problem while backing up file C:\Windows\System32\config\systemprofile\My Audio Books\Audio Book MP3 Tag Art. Error:(The system cannot find the path specified. (0x80070003))
    Did a "checkdisk" - no problems. Ran a program to fix registry - no problems. All updates up to date. I guess I could eliminate these folders from the Backup folders in the
    Library, and just choose them under the "Users" locations, and be done with it. But I really want to understand this, and fix it. This is within Windows 7 and may be related to Windows Media Player or
    some recent Windows update.  Thanks.

  • The system cannot find the file specified error in ftp upload

    Hi,
    i am using filezilla ftp server and apache common ftp client and while uploading a file i am getting below error:
    code to call ftp client
    String local_file ="D:\\home2.JPEG";
    String remote_file ="\\abc";
    ApacheFTPClient apacheFTP = new ApacheFTPClient();
    String[] abc ={"-s", "127.0.0.1", "Manender", "Manender", remote_file, local_file};
    apacheFTP.main(abc);
    error log:
    220-FileZilla Server version 0.9.31 beta
    220-written by Tim Kosse ([email protected])
    220 Please visit http://sourceforge.net/projects/filezilla/
    Connected to 127.0.0.1.
    USER Manender
    331 Password required for manender
    PASS Manender
    230 Logged on
    SYST
    215 UNIX emulated by FileZilla
    Remote system is UNIX emulated by FileZilla
    java.io.FileNotFoundException: D:\home2.JPEG (The system cannot find the file specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at com.po.ApacheFTPClient.main(ApacheFTPClient.java:152)
         at com.po.sample.main(sample.java:120)
    i have file in my d directory with same name.
    please help me in this.
    thanks in advace..

    i have file in my d directory with same name.Doesn't look like that? Are you sure that it isn't named e.g. home2.jpg?

  • The user '*' preference item in the 'User - 6th Form Students Policy {E03166E7-A848-48B5-AA93-97B848AA9C13}' Group Policy object did not apply because it failed with error code '0x80070003 The system cannot find the path specified.' This error was suppres

    I am looking at an issue with users not getting specific group policies. 
    After searching a number of client computers I found that the following error
    The user '*' preference item in the 'User - 6th Form Students Policy {E03166E7-A848-48B5-AA93-97B848AA9C13}' Group Policy object did not apply because it failed with error code '0x80070003 The system cannot find the path specified.' This error was suppressed.
    I can find the folder in the Sysvol folder on all of the domain controllers. 
    The issue with end users seems to be that the proxy settings for internet explorer is not being applied. 
    Potential problems?
    one folder in sysvol entry is empty 
    \\<server>\SYSVOL\<domain.name>\Policies\{E03166E7-A848-48B5-AA93-97B848AA9C13}\User\microsoft\IEAK\LOCK
    or is this our issue
    The old method of configuring proxy settings  to Internet Explorer 9 has changed?
    https://support2.microsoft.com/kb/2530309?wa=wsignin1.0 
    http://thommck.wordpress.com/2013/11/08/the-new-way-to-configure-internet-explorer-proxy-settings-with-group-policy/

    Hi all 
    In administering this policy I am a little confused. 
    We have a policy that distributes proxy settings in the internet explorer maintenance settings section - however when opening this policy up in GPO editor the internet explorer maintenance section is not present.
    I plan to apply the settings via User/preferences/control panel settings/ internet settings (or registry settings from article) however I am unable to edit the settings for internet explorer maintenance and these will persist. Ideas????

  • Java.io.FileNotFoundException: test.txt (The system cannot find the file sp

    Hi All,
    am getting the following error, help me out. Thanks in advance...
    java.io.FileNotFoundException: test.txt (The system cannot find the file specified)
         java.io.FileInputStream.open(Native Method)
         java.io.FileInputStream.<init>(FileInputStream.java:106)
         java.io.FileInputStream.<init>(FileInputStream.java:66)
         BinaryStreamServlet.doGet(BinaryStreamServlet.java:13)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    I have placed "test.txt" in the path"D:\Backup\Tomcat web server\apache-tomcat-6.0.14\webapps\examples\WEB-INF\classes\test.txt".
    web.xml entry is as follows,
    <servlet>
    <servlet-name>demoservlet2</servlet-name>
    <servlet-class>BinaryStreamServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>demoservlet2</servlet-name>
    <url-pattern>/demoservlet2</url-pattern>
    </servlet-mapping>
    Source code:
    import java.io.*;
    import java.net.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class BinaryStreamServlet extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException{     
    response.setContentType("text/plain"); /* set the MIME type */
         File f= new File("test.txt");
         byte[] arBytes = new byte[(int) f.length()];
         FileInputStream is= new FileInputStream("test.txt");
         is.read(arBytes);
         OutputStream os = response.getOutputStream();
         os.write(arBytes);
         os.flush();
    }

    I have one Drivers.xml file in /WEB-INF that i want to read .but everytime i get exception file not found..
    i m trying to read this xml file in DriverUtilties.java (a non servlet class)
    inside of /WEB-INF/classess folder is there and hierarchy for non-servlet class DriverUtilties is :- com.dds.apps.ptes.pidentifier.admin.util.common.DriverUtilties
    what code shall i write so that i can read the xml file. ???
    where i set in classpath ?
    MYCODE is like this :
    public static final String DEFAULT_FILE = "/WEB-INF/drivers.xml";
    InputStream in = new FileInputStream(DEFAULT_FILE);
    Thanks in advance

Maybe you are looking for

  • Print Report - Choose from Multiple Formats

    Hello! I need to give the client the option to print a report to a pdf file and an xls file via 2 different buttons/links. I have a functioning button right now that opens a pdf file (.rtf created using BI Publisher) but I'm trying to figure out how

  • Reading html files with File class

    The methods of the class File does not identify html files. for example the method list() does not return names of html files in a givven directory? does anyone know what is the way to get the html files names and use them for file proccesing? Thanks

  • Why Won't Reminders for iOS Sync with iCloud?

    I've been forced to use iCloud for Reminders now that I've upgraded to Mac OS X Mountain Lion. Because Reminders & Calendar share a checkbox on Mountain Lion, I've been forced to use iCloud for that, too, because once that checkbox is checked, Calend

  • I want to show single colomn of database as a multiple colomns in report

    Post Author: tripus CA Forum: General I want to show a single colomn of database as a multiple colomns in report. For example, I am having 15 records, i want to show in three colomns in report. Colomn 1xxxxxxx      6xxxxxxx       11xxxxxxx 2xxxxxxx  

  • HTML DB  - Exporting XML

    I've been using HTMLDB for some time, and had occasion to need an XML output file. As far as I know, all the XMLDB stuff is installed on my instance, but when I try to export even the most simple XML file I get: The XML page cannot be displayed Canno