Sharepoint Designer Wont Publish workflow

I am trying to publish a work flow I keep getting the error below, anyone have a solution?
System.Net.WebException: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation
procedure.
   at System.Net.TlsStream.EndWrite(IAsyncResult asyncResult)
   at System.Net.ConnectStream.WriteHeadersCallback(IAsyncResult ar)
   --- End of inner exception stack trace ---
   at Microsoft.Workflow.Common.AsyncResult.End[TAs

Hi zbaker,
It seems that something wrong with your SSL certificate or its settings.
Please, take a look at the following articles. Probably, they help you:
SharePoint 2010 and Cert Trust – Could not establish trust relationship for the SSL/TLS secure channel
Installing Workflow Manager failed with : Could not establish trust
relationship for the SSL/TLS secure channel
Or alternatively if it is not a production environment, you can just register Workflow Service to HTTP protocol and port (not HTTPS). So, your cmdlet could look as follows:
Register-SPWorkflowService -SPSite ‘https://myhost/mysite’ -WorkflowHostUri ‘http://workflowhost:12291’ -AllowOAuthHttp -Force
Best Regards,
Wendy
Wendy Li
TechNet Community Support

Similar Messages

  • SharePoint Designer 2010 approval workflow error revisited

    Karen K started a question around:
    Errors
    were found when compiling the workflow. The workflow files were saved but cannot be run.And when I click on the "Advanced" button in the error message, I see this detailed error:
    (0,
    0) Activity 'ID4' validation failed: Property 'DurationUnit' has invalid value. Field type 'System.String' does not match with the expected type 'Microsoft.Office.Workflow.Actions.DurationUnit'.)
    The full problem/solution is posted:
    http://social.technet.microsoft.com/Forums/en/sharepoint2010customization/thread/332e49c6-6471-4374-9c9f-9bcf334f9c69
    However, 
    I can't figure how to do step 2:
    2.       Select
    the Action and click the “Advanced Properties”
    ribbon control;
    3.       Find
    the “DurationUnit” property in the properties
    box, and click the “fx” link in the box;
    Which
    "Select the Action" am I looking for? I looked everywhere.
    Help

    RoyKim, it's simpler than you think, which is why it probably stumped you.  This is all you do:
    In SPD2010, click on the Workflows Site Object
    Find your workflow and click on it to open the top-level settings page
    Click edit workflow
    This is the page where you perform the steps from that other thread
    Single-click the row that says "Start Approval process on CurrentItem etc etc"
    Then click Advanced Properties in the ribbon
    Scroll down until you find DurationUnit
    Click the fx button on the right and re-select Parameter: Duration Units as instructed
    SharePoint Architect || Microsoft MVP ||
    My Blog
    Planet Technologies ||
    SharePoint Task Force

  • Check if a user belongs to specific SharePoint Group- using SharePoint Designer 2013/2010 Workflow

    Hi there,
            I am working on a SharePoint list and i would like users to be assigned permissions to items based on their groups.
    I did look at using workflows but i couldnt find anything useful :(
    Any tips or advice would be appreciated.
    Cheers

    Now that SP2013 workflows allow you to run web services, you could use REST/SOAP web service that, as I recall, allows you to enumerate a group for members:
    http://yoursite/yourmanagedpath/yoursitecollection/yoursite/_vti_bin/usergroup.asmx
    Do some reading on the GetUserCollectionFromGroup method and see if that doesn't get you what you are looking for...

  • Error while saving a workflow via sharepoint designer: Server-side activities have been updated. You need to restart SharePoint Designer to use the updated version of activities.

    While saving a workflow using SharePoint designer on a SharePoint site, I get the following error: 
    Server-side activities have been updated. You need to restart SharePoint Designer to use the updated version of activities.
    Steps to recreate error:
    Login to the WFE server hosting IIS and workflow manager, open SharePoint Designer 2013 and login to a SharePoint site.
    Access the list using SharePoint Designer 2013, in the workflow section, click new workflow. 
    In the new workflow dialog, enter workflow details, click save (see screenshot below).
    Error message is displayed as below:
    After restarting SharePoint Designer, the saved workflow is not seen in the site/workflows or list/workflow section.
    Workaround
    When the above steps are repeated while accessing the site via SPD from any other box besides the WFE/Workflow manager host server, the error is not encountered and its possible to save/publish workflows.
    Notes
    Workflow Manager 1.0 is installed.
    The site has been registered with Workflow manager using Register-SPWorkflowService
    cmdlet.
    Any clue on why is this happening?

    Hi Vivek,
    Please close your SharePoint Designer application, clear/delete the cached files and folders under the following directories from your server installed SharePoint Designer, then check results again.
    <user profile>\appdata\roaming\microsoft\SharePoint Designer\ProxyAssemblyCache
    <user profile>\appdata\local\microsoft\websitecache\<sitename>
    http://www.andreasthumfart.com/2013/08/sharepoint-designer-2013-server-side-activities-have-been-updated/
    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.

  • When building a vacation leave holiday system using SharePoint Foundation 2010 and SharePoint Designer workflows how can I add half day functionality?

    Hi,
    I have built a vacation leave holiday system for SharePoint Foundation 2010 using SharePoint Designer workflows and Javascript. Everything works perfectly but I'm struggling to design a solution for users to specify half day requests that span over dates
    greater than 1 day, i.e. my half day solution works but only when the start and end date are the same. How would I change the user interface to allow users to choose which day they want the half day to be requested when the vacation leave holiday request is
    from, say,  6th - 10th Jan 2014?
    Thanks.

    Hi ,
    I have a test on my machine with a custom approval workflow and it can work normally .Here are the detailed steps :
    1.      
    Open the site in SharePoint Designer .Create a workflow to associate with the document library .Set the workflow to start when an item is created and when an item is changed
    .Also allow the workflow to start manually .
    2.      
    Choose ‘Collect Data from a user’ .
    3.      
    Click on the data and give a name to the Task created .
    4.      
    Define the custom form field name as ‘Approve ?’ .Set the information type as Choice .
    5.      
    Set the choices as ‘Approve’ and ’Reject’ .Display as Checkboxes .Uncheck the ‘Allow fill-in values’ and ‘Allow blank values’
    .Click finish to save .
    6.      
    Click on users and add the users who will approve the documents .
    7.      
    Keep the output to variable as collect .
    8.      
    Add a new step .Choose ‘If any value equals value ’ .Set the any value ‘Data source’ as  workflow variables and parameters .Set the ‘Field
    from source’ as Variable: collect .
    9.      
    Set the value behind ‘equals ’ as ‘Approve’ .
    10.  
    Add a new action ‘Update list item ’ .Set the item as current item .Add the field Approval status as Approved .
    11.  
    Add an Else-if branch to update the Approval status as Rejected .
    12.  
    Publish the workflow and test in your site .
    Thanks,
    Entan Ming

  • Calendar workflow SharePoint Designer

    I created a workflow in SharePoint Designer and published it. I used it and works perfectly to copy a new item from "calendar A" to "calendar B". But If I go back to "calendar A" to edit, it will create the new entry in "calendar
    B" and also keep the old entry in "calendar B". I need the entry(s) in "calendar B" updated (if needed, whenever any items get updated in calendar A) for each day! Any workaround? Any second workflow needed? Any help would be greatly
    appreciated! I'm on a tight deadline. Please help me. Thanks so much!

    Better option would creating new workflow for existing items and start that on item updated only and which will update the Calendar B Item. Use the existing workflow to create new entries from "calendar A" to "calendar B" but run only
    Item added in Calendar A.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How to convert document file in PDf format through workflow using sharepoint designer

     Please suggest me solution it's urgent.....please.

    Hi Anil,
    If Word Automation Services is installed in your environment then that may be an option (Providing you are only interested in converting MS-Word documents). However SharePoint does not ship with an out-of-the-box workflow activity that makes use of this.
    You may want to consider some third party software that supports formats other than MS-Word as well and comes with workflow actions for SharePoint Designer (and Nintex Workflow) out of the box. Have a look at the
    Muhimbi PDF Converter for SharePoint.
    Disclaimer, I worked on this product so I am obviously biased. (It works great though :-)

  • Error on publishing workflow from sharepoint designer

    when I try to publish my workflow created with Workflow Designer I get this error message
    System.ServiceModel.ServerTooBusyException: The HTTP service located at http://serversp:32843/a5bd4fa831174777a536161331fdf118/AppMng.svc is
    unavailable. This could be because the service is too busy or because no endpoint was found listening at the specified address. Please ensure that the address is correct and try accessing the service again later.
    ---> System.Net.WebException: The remote server returned an error: (503) Server Unavailable. at System.Net.HttpWebRequest.GetResponse()
    workflow 2013 is already connected to sharepoint server i get this error on the final step of publishing a workflow

    Hi,
    As I understand, when you published the workflow in SharePoint Designer you encountered the error.
    I suggest you follow the steps below to troubleshoot this issue:
    1. You could check if the App Management Service is started.  (Go to CA -> System Settings -> Services on server -> check if the App Management Service is started.) If not, start the App Management Service, then perform iisreset.
    2. If the issue still exists, you could click start->click “run”->type in “services.msc” ->restart "SharePoint Search Host Service". This is because there is not enough space to start the service. Note that the "SharePoint Search
    Host Service" consumes a lot of memory.
    The article below is about Error: The Requested Service, AppMng.svc Could Not be Activated.
    http://www.c-sharpcorner.com/UploadFile/anavijai/error-the-requested-service-appmng-svc-could-not-be-activa/
    There is a similar case:
    https://social.msdn.microsoft.com/Forums/en-US/b07e842e-71b8-4e66-a5d3-208a8ba28523/error-occurred-in-deployment-step-install-app-for-sharepoint?forum=appsforsharepoint
    Best regards,
    Sara Fan
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Sharepoint 2013: Workflow Error , while trying to publish a Sharepoint 2013 Workflow, from the Sharepoint Designer 2013

    I don't know what might be wrong but I have tried everything possible I suppose. 
    Configuration: 1 App Server SharePoint Standard 2013 + SQL Server. On App Server, I have installed Workflow Manager as well.
    Installed Sharepoint Designer 2013 on my laptop. 
    Before I was able to publish the workflows, but now it refuses, thwroing me the following error:
    System.InvalidOperationException: Operation failed with error Microsoft.Workflow.Client.WorkflowCommunicationException: The request was aborted: The request was canceled. Client ActivityId : ac85cf9c-053a-e0db-1f47-608050559d31. ---> System.Net.WebException:
    The request was aborted: The request was canceled. ---> System.ServiceModel.CommunicationException: There was an error reading from the pipe: The pipe has been ended. (109, 0x6d). ---> System.IO.PipeException: There was an error reading from
    What I have tried so far:
    a. Re-installed Workflow, Service Bus, Windows Fabric, Sharepoint Designer... no luck
    b. Run the configuration script... -Force enabled... no luck
    c. Remove WF Manager, SB, etc... Deleted all WF and sb Databases from SQL, and re-installed all icluding updates... no luck
    d. Tried to run services using Farm account, still no luck.
    e. All services on the Server are running as well
    f. The workflow is checked that it is associated with the site collection.
    I don't know what else to try... seems like I am experiencing unique issue here... please help!

    One last thing I can suggest - In case if you have installed CU Update for WF manager 1.0 and service bus. Some time that creates problem, [Please take backup before make any changes] -
    - Clear everything, WF config , SharePoint WF setting, un register WF from SP , You can delete and recreate WF service Apps
    - IISreset at WF and SP server
    - Uninstall CU update for Workflow manager 1.0 and Service Bus from WF server [Control Panel - Programs - Update], you can delete all update installed
    - ReStart WF server
    - Reconfigure WF manager , Test WF sites , should return XML
    Get-WFFarm | ft HttpPort
    - Reconfigure WF at SP , Make sure should have enough free memory
    Register-SPWorkflowService –SPSite "http://SPsite/" –WorkflowHostUri "http://WFServer:12291" –AllowOAuthHttp
    http or https , depend on your configuration
    And retest from SPD again.
    Good luck:)
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • Getting error while publishing workflow using SP designer for SharePoint 2013

    Hi,
    I am try to setup Workflow manager for our sharepoint applications.
    WF manager set ran without any issue.
    I registered the SPWorkflow service which succeeded as well. The Workflow service application shows "Workflow is connected"
    I am creating a workflow using sharepoint designer using my credential (not Service account). I am able to save it but while publishing, its prompting with an error.
    The error says "Errors were found while compiling the workflow.The workflow files were saved but cannot run." Clicking advanced button show
    "Microsoft.SharePoint.SPException: We're sorry, we weren't able to complete the operation, please try again in a few minutes. If you see this message repeatedly, contact your administrator.
       at Microsoft.SharePoint.SPScaleOutDatabaseMap.CreateSqlSession(ISPScaleOutDatabaseMapProvider mapProvider, Byte[] compositeKey, Guid forceRefreshVersion, Guid& version)
       at Microsoft.SharePoint.SPScaleOutDatabaseCommandExecutor.Execute(ExecuteDelegate operation, ISPScaleOutDatabaseMapProvider mapProvide"
    Any help would be highly appreciated
    Thanks,

    Hi,
    According to your post, my understanding is that you got error while publishing workflow using SharePoint designer for SharePoint 2013.
    Please check whether the Central Admin > Manage Service Application-> “App Management Service” is started.
    Please check whether the “Configure service application associations”,  ”App Management Service” is already associated.
    Then please check whether the “Manage Services on server” and the “App Management Service” is started.
    In addition, please try to re-register Workflow Service.
    If the issues still exists, please follow the steps in the
    Steps to Verify that Server Is Correctly Set Up. After you verified that the server is correctly set up, follow the steps in the
    Steps to Troubleshoot Workflow Management Service and
    Troubleshooting the Service Bus for Windows Server then retry your action related to publishing workflows
    More information:
    http://wp.ahcheng.com/2013/03/23/error-were-found-when-compiling-the-workflow-the-workflow-files-were-saved-but-cannot-be-run/
    http://sp2013.pro/2013/04/solution-errors-were-found-when-compiling-the-workflow-the-workflow-files-were-saved-but-cannot-be-run-cannot-set-unknown-member/
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Problem with custom sharepoint designer approval workflow - check box: 'Start this workflow to approve publishing a major version of an item' is greyed out

    I wanted to create a simple approval workflow. Hence I opted to start from scratch rather than copy the OOTB approval WF. Using SharePoint Designer (not Visual studio) I created a reusable workflow and have added the built in 'Start approval process' action.
    It's saved and published globally.
    Everything works fine except that when associating the WF with a list the 'Start this workflow to approve publishing a major version of an item' check box is disabled.
    Major and minor versioning is enabled for the library.
    What am I missing here? Or do I have to start from the OOTB approval WF to get this to work?
    Regards
    Henning

    Again - new ideas pop up right after defining the issue as a problem. :-) Problem solved!
    I solved this by creating a new workflow from the original publishing approval workflow (copy and replace), but instead of tweaking the already defined approval process (WF action) I deleted it, then deleted all initiation form and local variables,
    and then added the 'Start approval process' action again. This re-installs all the necessary local variables without any initiation form involvement, which is just what I want.
    From here I can tweak the workflow to make it more user friendly, much like
    described by Bobby Chiang in his great blog.
    Remember to add action Set Workflow Variable 'EnableContentApproval' to Yes right before the Start Approval Process action, else the document's status won't be set to 'Approved' or 'Rejected' as an output of the workflow.
    Learning every day!
    Henning

  • Workflow Manager and SharePoint Designer publishing error

    Hello all,
    I'm hoping for some help in fixing this issue.
    I've been trying to publish a workflow using SharePoint Designer only to find that I get this error:
    "Errors were found when compilint the workflow. The workflow files were saved but cannot be run."
    After clicking on the advanced button it shows error:
    System.InvalidOperationException: Operation failed with error Microsoft.Workflow.Client.WorkflowCommunicationException: The request was aborted: The request was canceled. Client ActivityId : 6a78ad9c-6ac6-f03a-0680-003bd46e5f68. ---> System.Net.WebException:
    The request was aborted: The request was canceled. ---> Microsoft.SharePoint.SPException: The requested operation requires an HTTPS (SSL) channel. 
    Ensure that the target endpoint address supports SSL and try again. 
    Target endpoint address:
    Note: the message cuts off after the "Target endpoint address".
    Looking on the SharePoint server, when I try and pull up the Workflow Manager site (https://localhost:12290/) I get this response:
    <?xml version="1.0"?>
    xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
    <Code>AuthorizationError</Code><message><Message>The caller does not have the necessary
    permissions required for this operation. Permissions granted: None. Required permissions: ReadScope.</Message></message></Error>
    I am running this farm with HTTPS and I have registered the SP workflow service with the appropriate application. I have also set the Workflow Management Site bindings in IIS to utilize the same certificate as the default SharePoint site.
    At this point, I don't know if the error that I received from Designer is related to the Site error, although I do know that I also have a Development environment that is able to publish workflows just fine. However, this farm uses HTTP rather than HTTPS
    so I can only assume that the differences are what's causing the issue. I would appreciate any help that anyone can offer. Thanks!

    Hi,
    As I understand, you encountered the issue when you published a workflow on SharePoint 2013 workflow platform.
    I wonder does it work well before when using 2013 workflow platform? If it works before, did you install any updates or change the configuration to the workflow related settings?
    If this is the first time after you installed workflow manager 2013, then I’d recommend you try re-registering workflow service per the link below and post the result:
    http://technet.microsoft.com/en-us/library/jj663115(v=office.15).aspx
    http://technet.microsoft.com/en-us/library/jj658588(v=office.15).aspx
    From the message you accessed workflow host uri, please make sure the account to wfsetup and wfservice account are both in wfadmins group.
    http://blogs.msdn.com/b/briangre/archive/2013/02/20/least-privilege-configuration-for-windows-azure-workflow-with-sharepoint-2013.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • "This form cannot be opened in a web browser. to open this form use microsoft infopath" while adding a new Approval - Sharepoint 2010 and Publishing Approval workflow.

    I am trying to add a new workflow to a document library with the below mentioned settings and getting error saying "This form cannot be opened in a web browser. to open this form use microsoft infopath" while adding a new Approval - Sharepoint
    2010 and  Publishing Approval workflow" . For your information the I have checked the server default option to open in browser.
    Versioning Settings.
    Error
    This is quiet urgent issue . Any help would be really helpful.. Thanks.. 

    Hi Marlene,
    Thank you very much for your suggestions.
    But I am not creating a custom workflow in designer as Laura has mentioned. I am instead trying to create a new Out of the box Approval Workflow and I get the error mentioned above.
    As it works in other environment, I tried figuring out the possible differences which can lead to this error.
    Today I found one difference which is there are no form Templates within Infopath Configurations in Central Admin. Now I am trying to figure out what makes this form templates to be added to the template gallery.
    Regards,
    Vineeth

  • SharePoint 2013 Workflow created on SharePoint Designer gets canceled

    Just wanted to share my solution to a problem that I was having when creating a SharePoint 2013 Workflow that includes creating a task and assigning it to a group of people. After publishing the workflow and initiating it you get:
    Retrying last request. Next attempt scheduled in less than one minute.
    Microsoft.SharePoint.Client.ResourceNotFoundException: Cannot find resource for the request sp.utilities.utility.ExpandGroupsToPrincipals
    An unhandled exception occurred during the execution of the workflow instance.
       Exception details: System.ApplicationException: HTTP 404 {"error":{"code":"-1, Microsoft.SharePoint.Client.ResourceNotFoundException",
       "message":{"lang":"en-US","value":"Cannot find resource for the request sp.utilities.utility.ExpandGroupsToPrincipals."},
       "innererror":{"message":"Cannot find resource for the request sp.utilities.utility.ExpandGroupsToPrincipals.",
       "type":"Microsoft.SharePoint.Client.ResourceNotFoundException","stacktrace":" at
       Microsoft.SharePoint.Client.Rest.RestRequestProcessor.GetObjectFromPathRoot(Boolean mainRequestPath, EdmParserNode node, Boolean resourceEndpoint, MethodInformation& methodInfo)\u000d\u000a at
       Microsoft.SharePoint.Client.Rest.RestRequestProcessor.GetObjectFromPath(Boolean mainRequestPath, String path, String pathForErrorMessage)\u000d\u000a at
       Microsoft.SharePoint.Client.Rest.RestRequestProcessor.Process()\u000d\u000a at
       Microsoft.SharePoint.Client.Rest.RestRequestProcessor.ProcessRequest()\u000d\u000a at
       Microsoft.SharePoint.Client.Rest.RestService.ProcessQuery(Stream inputStream, IList`1 pendingDisposableContainer)"}}
       } {"Transfer-Encoding":["chunked"],"X-SharePointHealthScore":["0"],"SPClientServiceRequestDuration":["46"]
       ,"SPRequestGuid":["624f66f8-a70c-81db-bf0d-c042443f5435"],"request-id":["624f66f8-a70c-81db-bf0d-c042443f5435"],
       "X-FRAME-OPTIONS":["SAMEORIGIN"],"MicrosoftSharePointTeamServices":["15.0.0.4569"],"X-Content-Type-Options":["nosniff"],
       "X-MS-InvokeApp":["1; RequireReadOnly"],"Cache-Control":["max-age=0, private"],"Date":["Mon, 06 Apr 2015 22:17:23 GMT"],
       "Server":["Microsoft-IIS\/8.0"],"X-AspNet-Version":["4.0.30319"],"X-Powered-By":["ASP.NET"]} at
       Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context) at
        System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at
        System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)
    I was not able to find any answer anywhere, so my solution was:
    1. Simply upgrade SharePoint Server 2013 to the latest version which in turn updates Microsoft.Activities.Proxy.dll
    2. Clear the SharePoint Designer cache
      Workflow Error - Sharepoint Designer cannot display the item
       http://community.office365.com/en-us/f/154/t/74327.aspx
    I hope this is helpful to somebody
    Thanks

    Hi,
    I doubt its not possible.
    http://stackoverflow.com/questions/17925555/windows-workflow-4-appfabrix-1-1-suspended-workflow-will-not-resume
    http://social.msdn.microsoft.com/Forums/en-US/fd85c5f9-36dd-4be5-872f-9ba73b1eb0b8/appfabric-11-for-windows-server-versus-workflow-manager-10?forum=wfprerelease
    http://seroter.wordpress.com/2012/11/02/interview-series-four-questions-with-jrgen-willis/
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Errors were found when compiling workflow in SharePoint Designer 2010

    Hello there,
    I've run into a interesting issue in SharePoint Designer 2010 when publishing a workflow. I now get the below error
    Normally when I get this message I simply clear the SharePoint Designer 2010 cache described in this
    article, however, in this case the issue still continued. Hence I started the process of trial and error and quickly realized that the Update Item action was the culprit. In this action I am updating approximately 70 columns. Currently, I have two such
    actions running in sequence. When I added the third Update Item action to do the same, I started getting this error.
    Has anyone else experienced this before? In the workflow I am currently working on I am going to have to using the Update Item action several times and update approximately 70 columns hence I am open to other ideas to do the same.
    Thanks in advance.

    Hi Entan Ming,
    Thanks for your reply, Hope you are aware that while we create any new workflow using SharePoint Designer 2013. There are two ways (We can say Platforms) to create the new workflow 1. SharePoint
    2010 and 2. SharePoint 2013.
    If I choose second one I. e SharePoint 2013, and try to create, save and publish workflow it`s working fine. But whenever I select option no. 1  i.e. SharePoint 2010  Platform to create
    the workflow, I am able to Create it , save it , but while I try to publish it I got an error:
    Errors were found when compiling the workflow. The workflow files were saved but cannot be run.
    When I click on Advance I got message:
    Unexpected error on server associating the workflow
    My question is that, I am not able to publish any workflow in SharePoint 2010 Platform, using SharePoint Designer 2013.  
    Before publishing a workflow, I click on ‘Check for errors’ button, there was no any error found.
    Thanks & Regards Mr. Bajirao Shinde

Maybe you are looking for