Timeout while configuring workflow manager (service bus services are stuck on strarting)

Hello,
I cant finish workflow manager configuration. help me please.
I tried:
1) leave the farm (Workflow manager configuration), delete databases, create new farm with default settings - it creates SB&WF farms and on 3d stage I get timeout error.
2) leave the farm, delete databases, delete workflow manager and service bus software, install it again, create new farm with defaults - the same result.
3) leave the farm, delete databases, get powershell commands for "create new farm with default settings", run it step by step - same result.
there are generated powershell commands:
 New-SBFarm -SBFarmDBConnectionString '... ManagementDB con string ...' -InternalPortRangeStart 9000 -TcpPort 9354 -MessageBrokerPort 9356 -RunAsAccount 'domain\acc' -AdminGroup 'BUILTIN\Administrators' -GatewayDBConnectionString '... gateway con string
...' -CertificateAutoGenerationKey $SBCertificateAutoGenerationKey -MessageContainerDBConnectionString '... message container con string ...' -Verbose;
New-WFFarm -WFFarmDBConnectionString '... WF managementDB con string ...' -RunAsAccount 'domain\acc' -AdminGroup 'BUILTIN\Administrators' -HttpsPort 12290 -HttpPort 12291 -InstanceDBConnectionString '... WF instanceDB con string ...' -ResourceDBConnectionString
'... wf resourceDB con string ...' -CertificateAutoGenerationKey $WFCertAutoGenerationKey -Verbose;
Add-SBHost -SBFarmDBConnectionString '... ManagementDB con string ...' -RunAsPassword $SBRunAsPassword -EnableFirewallRules $true -CertificateAutoGenerationKey $SBCertificateAutoGenerationKey -Verbose;
I don't see any errors in event log, only timeout error in setup log.
Service bus gateway service is started successfully, Service bus message broker is stuck starting.

dmadelung, thank you for your message.
the problem was with ports. 9000 port was used already. moving to different ports resolved the problem

Similar Messages

  • Facing some problem while configuring Workflow Manager 1.0.

    Hi,
    I am facing some problem while configuring Workflow Manager 1.0. in my farm.
    Scenario is,
    I have installed and configured workflow manager in my farm, it was working well with no issue. But one of team member played with AD and deleted Farm administrator's entry from AD by mistake. So suddenly workflows get affected and stopped working. 
    Then I added administrator entry in AD, uninstalled the Workflow Manager and installed it again. But now while configuring workflow manager I am facing some issues that "Failure to adding user in BUILTIN\Administrative group. Please add it manually" 
    And after sometime it shows another error message that, "Starting service Service Bus Massage broken failed: Timed out has expired, the operation has not been completed" 
    If I go for services then "Service bus Message broker" service is not running properly (Its status is just showing "Starting")  and don't starts.
    I have also added the user in BUILTIN\Administrator, IIS_IUSER, WSS_WPG group of the machine from computer manager - user and groups. 
    Also given permission to databases, and assign role of sysadmin and dbcreator to user
    I also tried following steps    
        1) Stop all services associated to workflows
        2) Uninstalled workflow manager
        3) Deleted all databases associated with workflows
        4) Installed workflow manager and tried to configure.
    But showing same error. 
    If I use another SharePoint server farm to configure workflows, there I am not getting first error of adding user to BUILTIN\Administrator group. but second error remains same.
    We having SQL server and Active directory at another machine and FARM at another machine, if I use local admin for configuration of the workflows (as local admin can start any services) but entry of local admin is not Active directory so can not assign SQL's
    sysadmin, and dbcreator role to local admin.
    I am attaching snapshot of error for better understanding.
    Your help will be very precious to me. 
    Thanks,
    Rajesh
    Rajesh Agravat

    Rajesh
    Check to see what the service accounts are being used for these Workflow Manager 1.0 services:
    Service Bus Message Broker
    Service Bus Gateway
    Workflow Manager Backend
    All of these should be running and your workflow service account should be running all of these.  If any are still configured under the old service account, they'll need to be updated.  Next, check to see what service accounts have access to the
    Workflow Manager 1.0 databases:
    SbGatewayDatabase
    SbManagement
    SbMessageContainer
    WFInstanceManagement
    WFManagement
    WFResourceManagement
    The Workflow Manager service account should be mapped as the DBO for all of these.  if any are still configured under the old service account, they'll need to be updated.
    Given the complete loss of the original workflow service account, and the resultant impact on security configuration throughout the workflow farm, I would recommend performing a re-installation.  Do it thus:
    Launch Workflow Manager Configuration Wizard
    Select the Leave Workflow Manager Farm
    Stop all workflow services (see above list)
    Repeat steps 1-3 for each instance of Workflow Manager 1.0 Server installed.
    Delete all Workflow Manager databases (see above list).
    reboot.
    Start new installation.

  • Unable to find the User Named Account Name@Domain Name while Configuring Workflow Manager

    Hi,
    I have installed Work Flow Manager,Service Bus and its Cumulative Updates.
    While Configuring Workflow Manger using Workflow Manager configuration wizard i am getting the error while creating a Service Bus Namespace.
    I have provided the Service Accounts for both Workflow Manager and Service Bus as Domain\Account instead of
    Account@Domain.
    While looking in to the Power Shell scripts that are poupulated by the GUI i have identified that
    Account@Domain is appended to the ManageUsers switch while creating a Service Bus Namespace and the GUI configuration is failing.
        New-SBNamespace -Name 'WorkflowDefaultNamespace' -AddressingScheme 'Path' -ManageUsers 'Domain\Account','Account@Domain' -Verbose;
    So i need to modify the Powershell script as below and need to run the Powershell scripts for configuring Workflow Manager.
    Is this a bug in GUI Workflow Configuration Wizard or am i doing something wrong.
    Please help.
        New-SBNamespace -Name 'WorkflowDefaultNamespace' -AddressingScheme 'Path' -ManageUsers 'Domain\Account' -Verbose;
    Scripts Populated from GUI modified for Making it working:
    # To be run in Workflow Manager PowerShell console that has both Workflow Manager and Service Bus installed.
    # Create new SB Farm
    $SBCertificateAutoGenerationKey = ConvertTo-SecureString -AsPlainText  -Force  -String 'Run As Password' -Verbose;
    New-SBFarm -SBFarmDBConnectionString 'Data Source=Server Name;Initial Catalog=SbManagementDB;Integrated Security=True;Encrypt=False' -InternalPortRangeStart 9000 -TcpPort 9354 -MessageBrokerPort 9356 -RunAsAccount 'Domain\Account' -AdminGroup 'Domain\Domain
    Group' -GatewayDBConnectionString 'Data Source=Server Name;Initial Catalog=SbGatewayDatabase;Integrated Security=True;Encrypt=False' -CertificateAutoGenerationKey $SBCertificateAutoGenerationKey -MessageContainerDBConnectionString 'Data Source=Server Name;Initial
    Catalog=SBMessageContainer01;Integrated Security=True;Encrypt=False' -Verbose;
    # To be run in Workflow Manager PowerShell console that has both Workflow Manager and Service Bus installed.
    # Create new WF Farm
    $WFCertAutoGenerationKey = ConvertTo-SecureString -AsPlainText  -Force  -String 'Run As Password' -Verbose;
    New-WFFarm -WFFarmDBConnectionString 'Data Source=Server Name;Initial Catalog=WFManagementDB;Integrated Security=True;Encrypt=False' -RunAsAccount 'Domain\Account' -AdminGroup 'Domain\Domain Group' -HttpsPort 12290 -HttpPort 12291 -InstanceDBConnectionString
    'Data Source=Server Name;Initial Catalog=WFInstanceManagementDB;Integrated Security=True;Encrypt=False' -ResourceDBConnectionString 'Data Source=Server Name;Initial Catalog=WFResourceManagementDB;Integrated Security=True;Encrypt=False' -CertificateAutoGenerationKey
    $WFCertAutoGenerationKey -Verbose;
    # Add SB Host
    $SBRunAsPassword = ConvertTo-SecureString -AsPlainText  -Force  -String 'Run As Password' -Verbose;
    Add-SBHost -SBFarmDBConnectionString 'Data Source=Server Name;Initial Catalog=SbManagementDB;Integrated Security=True;Encrypt=False' -RunAsPassword $SBRunAsPassword -EnableFirewallRules $true -CertificateAutoGenerationKey $SBCertificateAutoGenerationKey -Verbose;
    Try
        # Create new SB Namespace
        New-SBNamespace -Name 'WorkflowDefaultNamespace' -AddressingScheme 'Path' -ManageUsers 'Domain\Account' -Verbose;
        Start-Sleep -s 90
    Catch [system.InvalidOperationException]
    # Get SB Client Configuration
    $SBClientConfiguration = Get-SBClientConfiguration -Namespaces 'WorkflowDefaultNamespace' -Verbose;
    # Add WF Host
    $WFRunAsPassword = ConvertTo-SecureString -AsPlainText  -Force  -String 'Run As Password' -Verbose;
    Add-WFHost -WFFarmDBConnectionString 'Data Source=Server Name;Initial Catalog=WFManagementDB;Integrated Security=True;Encrypt=False' -RunAsPassword $WFRunAsPassword -EnableFirewallRules $true -SBClientConfiguration $SBClientConfiguration -EnableHttpPort 
    -CertificateAutoGenerationKey $WFCertAutoGenerationKey -Verbose;
    Thanks, Vijay Arockiasamy

    Hi Vijay
    uninstall this and install the one labeled Refresh 1
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog
    John Naguib Twitter
    Please remember to mark this as answered if it helped you

  • How to Provide the Certificate Generation key while configuring WorkFlow Manager 1.0

    Hi,
    I am new to Workflow manager.I am configuring it in a SharePoint Farm with Allow Workflow Management over Http on this computer option.
    Its asking for Certificate Generation key for joining to the Farm.
    Could anyone help me how to get the Certificate Generation key.
    Please advice
    Thanks, Vijay Arul Lourdu

    we forgot the auto-generated Certificate
    Generation Key. Can you tell us the detail instructions to find it? Thanks.

  • After installing and configuring Workflow Manager and Service Bus, I'm getting 403.

    I've spent the day installing SharePoint 2013 on a Windows Server 2012 environment. This server is not the domain controller. Following instructions on how to install and configure Workflow Manager and service bus, it appears although I'm following the instructions
    (and I get no errors), something is not working.
    If I try to go to the website that it creates in IIS
    http://localhost:12291 I get a 403 error. Also if I perform the powershell query to get the port number "Get-WFFarm | ft WFMgmtHttpPort" I don't get any value returned to me.
    Until I validate that the Workflow Manager is installed and working, I will not attempt to pair it to the SharePoint 2013 farm. Which hopefully makes this a Workflow Manager question not a SharePoint issue.
    Can anyone offer any suggestions please? Should I even get a valid webpage if I hit localhost:12291? According to one walkthrough I've looked at I should get an XML display of workflow and security configurations.

    I experienced the same two issues mentioned in this thread today.
    Regarding  the proper XML not appearing at <workflowhost>:12291 I was experiencing the same with an error message in Chrome saying the caller lacked read permissions, and 403 in IE. I had checked IIS, database permissions and connections and more.
    All of the setup messages and status checks were a-okay. I voted Zimo's comment as helpful because it cued me in to examine the service in Central Administration - where I found there was no administrator assigned to the workflow service. As soon as that was
    done, the workflow host site was brows-able.
    The resolution to SharePoint Designer not offering 2013 workflows as an option was in my case that there was an additional WFE on which I had not installed the Workflow Manager
    Client. This is noted with a bright yellow box in the section about configuring workflow with HTTP here:
    http://technet.microsoft.com/en-us/library/jj658588(v=office.15)
    If puzzles are good for your BRAIN then SharePoint will keep it really healthy!
    Ramona Maxwell MCPD
    SharePoint 2010, MCITP
    SQL Server 2008

  • Configuring Workflow Manager for SharePoint 2013

    I have gone through the configurations of Workflow and SharePoint to use the new Workflow Manager 1.0 several times now, and keep getting the below errors.
    My environment is set up with 2 servers, 1 SP Web Applicatin and 1 SQL. Workflow is installed on the SQL server. These errors are from the SQL Server. 
    Event ID 22
    Service Bus exception swallowed at location ServiceBusNamespaceListener.GetSessionAndStateWithRetryAsyncResult.HandleException. Microsoft.ServiceBus.Messaging.MessagingException: The token provider service was not avaliable when obtaining a token for 'https://srv22.domain.com:9355/WorkflowDefaultNamespace/$STS/Windows/'. ---> Microsoft.ServiceBus.TokenProviderException: The token provider service was not avaliable when obtaining a token for 'https://srv22.domain.com:9355/WorkflowDefaultNamespace/$STS/Windows/'. ---> System.Net.WebException: The remote server returned an error: (502) Bad Gateway.
    at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
    at System.Net.HttpWebRequest.GetRequestStream()
    at Microsoft.ServiceBus.TokenProviderHelper.GetWindowsAccessTokenCore(IEnumerator`1 stsUris, Func`2 uriBuilder, String requestToken, TimeSpan timeout, DateTime& expiresIn)
    --- End of inner exception stack trace ---
    at Microsoft.ServiceBus.TokenProviderHelper.ThrowException(Uri requestUri, WebException exception)
    at Microsoft.ServiceBus.TokenProviderHelper.GetWindowsAccessTokenCore(IEnumerator`1 stsUris, Func`2 uriBuilder, String requestToken, TimeSpan timeout, DateTime& expiresIn)
    at Microsoft.ServiceBus.WindowsTokenProvider.OnBeginGetToken(String appliesTo, String action, TimeSpan timeout, AsyncCallback callback, Object state)
    at Microsoft.ServiceBus.TokenProvider.GetTokenAsyncResult..ctor(TokenProvider tokenProvider, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout, AsyncCallback callback, Object state)
    at Microsoft.ServiceBus.TokenProvider.BeginGetToken(String appliesTo, String action, Boolean bypassCache, TimeSpan timeout, AsyncCallback callback, Object state)
    at Microsoft.ServiceBus.TokenProviderUtility.GetMessagingToken(ITokenProvider tokenProvider, Uri baseAddress, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout)
    --- End of inner exception stack trace ---
    Server stack trace:
    at Microsoft.ServiceBus.TokenProviderUtility.GetMessagingToken(ITokenProvider tokenProvider, Uri baseAddress, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout)
    at Microsoft.ServiceBus.Messaging.Sbmp.SbmpMessageCreator.GetAuthorizationHeader(String action)
    at Microsoft.ServiceBus.Messaging.Sbmp.SbmpMessageCreator.CreateWcfMessageInternal(String action, Object body, Boolean includeToken)
    at Microsoft.ServiceBus.Messaging.Sbmp.AcceptMessageSessionForNamespaceAsyncResult..ctor(SbmpMessagingFactory messagingFactory, ReceiveMode receiveMode, Int32 prefetchCount, CreateControlLinkSettings controlLinkSettings, TimeSpan timeout, AsyncCallback callback, Object state)
    at Microsoft.ServiceBus.Messaging.Sbmp.SbmpMessagingFactory.OnBeginAcceptMessageSession(ReceiveMode receiveMode, TimeSpan timeout, AsyncCallback callback, Object state)
    at Microsoft.ServiceBus.Messaging.MessagingFactory.AcceptMessageSessionAsyncResult.<GetAsyncSteps>b__29(AcceptMessageSessionAsyncResult thisPtr, TimeSpan t, AsyncCallback c, Object s)
    at Microsoft.ServiceBus.Messaging.IteratorAsyncResult`1.EnumerateSteps(CurrentThreadType state)
    Exception rethrown at [0]:
    at Microsoft.Workflow.Common.AsyncResult.End[TAsyncResult](IAsyncResult result)
    at Microsoft.Workflow.Dispatcher.ServiceBusNamespaceListener.GetSessionAndStateWithRetryAsyncResult.EndAsyncResult(IAsyncResult result)
    at Microsoft.Workflow.Common.BackoffRetryAsyncResult.IsolateWithRetry(IAsyncResult result)
    Event ID 370
    The Workflow Manager cannot contact Service Bus service after retrying for '12' minutes. Please verify if the Service Bus service is up and running. The Workflow Manager failed at location 'ServiceBusNamespaceListener.GetSessionAndStateWithRetryAsyncResult.HandleException' due to exception: Microsoft.ServiceBus.Messaging.MessagingException: The token provider service was not avaliable when obtaining a token for 'https://srv22.domain.com:9355/WorkflowDefaultNamespace/$STS/Windows/'. ---> Microsoft.ServiceBus.TokenProviderException: The token provider service was not avaliable when obtaining a token for 'https://srv22.domain.com:9355/WorkflowDefaultNamespace/$STS/Windows/'. ---> System.Net.WebException: The remote server returned an error: (502) Bad Gateway.
    at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
    at System.Net.HttpWebRequest.GetRequestStream()
    at Microsoft.ServiceBus.TokenProviderHelper.GetWindowsAccessTokenCore(IEnumerator`1 stsUris, Func`2 uriBuilder, String requestToken, TimeSpan timeout, DateTime& expiresIn)
    --- End of inner exception stack trace ---
    at Microsoft.ServiceBus.TokenProviderHelper.ThrowException(Uri requestUri, WebException exception)
    at Microsoft.ServiceBus.TokenProviderHelper.GetWindowsAccessTokenCore(IEnumerator`1 stsUris, Func`2 uriBuilder, String requestToken, TimeSpan timeout, DateTime& expiresIn)
    at Microsoft.ServiceBus.WindowsTokenProvider.OnBeginGetToken(String appliesTo, String action, TimeSpan timeout, AsyncCallback callback, Object state)
    at Microsoft.ServiceBus.TokenProvider.GetTokenAsyncResult..ctor(TokenProvider tokenProvider, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout, AsyncCallback callback, Object state)
    at Microsoft.ServiceBus.TokenProvider.BeginGetToken(String appliesTo, String action, Boolean bypassCache, TimeSpan timeout, AsyncCallback callback, Object state)
    at Microsoft.ServiceBus.TokenProviderUtility.GetMessagingToken(ITokenProvider tokenProvider, Uri baseAddress, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout)
    --- End of inner exception stack trace ---
    Server stack trace:
    at Microsoft.ServiceBus.TokenProviderUtility.GetMessagingToken(ITokenProvider tokenProvider, Uri baseAddress, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout)
    at Microsoft.ServiceBus.Messaging.Sbmp.SbmpMessageCreator.GetAuthorizationHeader(String action)
    at Microsoft.ServiceBus.Messaging.Sbmp.SbmpMessageCreator.CreateWcfMessageInternal(String action, Object body, Boolean includeToken)
    at Microsoft.ServiceBus.Messaging.Sbmp.AcceptMessageSessionForNamespaceAsyncResult..ctor(SbmpMessagingFactory messagingFactory, ReceiveMode receiveMode, Int32 prefetchCount, CreateControlLinkSettings controlLinkSettings, TimeSpan timeout, AsyncCallback callback, Object state)
    at Microsoft.ServiceBus.Messaging.Sbmp.SbmpMessagingFactory.OnBeginAcceptMessageSession(ReceiveMode receiveMode, TimeSpan timeout, AsyncCallback callback, Object state)
    at Microsoft.ServiceBus.Messaging.MessagingFactory.AcceptMessageSessionAsyncResult.<GetAsyncSteps>b__29(AcceptMessageSessionAsyncResult thisPtr, TimeSpan t, AsyncCallback c, Object s)
    at Microsoft.ServiceBus.Messaging.IteratorAsyncResult`1.EnumerateSteps(CurrentThreadType state)
    Exception rethrown at [0]:
    at Microsoft.Workflow.Common.AsyncResult.End[TAsyncResult](IAsyncResult result)
    at Microsoft.Workflow.Dispatcher.ServiceBusNamespaceListener.GetSessionAndStateWithRetryAsyncResult.EndAsyncResult(IAsyncResult result)
    at Microsoft.Workflow.Common.BackoffRetryAsyncResult.IsolateWithRetry(IAsyncResult result).
    The error messages suggested to me that the issue was being caused by our proxy server. I have removed the proxy server from the equation by removing the proxy settings. 
    I then also tried to navigate to the url in the error messages. When i navigate to https://srv22.domain.com:9355/WorkflowDefaultNamespace/$STS/Windows/ i get a 400 Bad Request. When i change the address to https://srv22.domain.com:9355/WorkflowDefaultNamespace/$sts/Windows/
    ($sts in Lower Case rather than Upper Case) i get a response from the Workflow server. 
    I have searched high and low for a solution to this, and cannot find one, can anybody shed any light on the situation.
    Thanks in advance
    Paul

    Hi Paul,
    Here is a similar post with bad gateway error related to proxy and gateway settings, you can take a look.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/73a909d2-226d-454e-a8ca-c5e62dc8caac/setup-windows-azure-workflow-addwfhost-error-wfmanagementwftopic-and-token-provider-service
    Thanks
    Daniel Yang
    TechNet Community Support

  • Error with configuring workflow manager

    Starting
    System.Management.Automation.CmdletInvocationException: An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change
    the alias to a valid name.
    An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.
    An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name. ---> System.Data.SqlClient.SqlException:
    An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.
    An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.
    An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.
       в System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       в System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       в System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
       в System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       в System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite)
       в System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite)
       в System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
       в System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       в System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
       в System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
       в System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
       в Microsoft.ServiceBus.Commands.Common.ServerManagementStoreDataContext.CreateServerAdministratorLogin(String loginName)
       в Microsoft.ServiceBus.Commands.Common.SecurityHelper.CreateServerAdministratorRole(String accountName, String connectionString)
       в Microsoft.ServiceBus.Commands.NewSBFarmBase.InstallManagementDB(String connectionString, String adminGroup, String runAsName)
       в Microsoft.ServiceBus.Commands.NewSBFarmBase.ProcessRecord()
       --- Конец трассировки внутреннего стека исключений ---
       в System.Management.Automation.PowerShell.EndInvoke(IAsyncResult asyncResult)
       в Microsoft.Workflow.Deployment.ConfigWizard.CommandletHelper.InvokePowershell(Command command, Action`2 updateProgress)
       в Microsoft.Workflow.Deployment.ConfigWizard.ProgressPageViewModel.CreateSBFarm(FarmCreationModel model)

    Hi, I have tried in two separate environments to create a new workflow farm and am getting the same error. I have already installed the Feb CU for both workflow manager and the service bus. I rebooted all servers after installing. 
    I noticed a message in the UI saying "Configuration operation failed. Please drop databases and use ‘Create a New Farm’ again." When I look in SQL Management Studio no databases have been created. The new farm wizard fails on the first step.
    Any ideas on a fix for this? Changing the format of the account as above didn't work for me. I am using a SQL alias on my server, would this cause any problems? When I test the connection to the DB from the wizard all tests pass.

  • How to configure workflow manager 1.0 ? Scenario "sharepoint 2013 and sql server 2012 workflow manager in one server" .

    i have sharepoint 2013 and sql server 2012 in one server . how to configure workflow manager 1.0 on the same server ?

    Please follow below technet article :
    http://technet.microsoft.com/en-us/library/jj658588(v=office.15).aspx
    Installing and Configuring Workflow Manager 1.0 (Step by Step)
    Note: The steps in this article apply to SharePoint Server 2013.
    The SharePoint 2013 Workflow platform is not supported in SharePoint Foundation 2013.
    If my contribution helps you, please click Mark As Answer on that post and
    Vote as Helpful
    Thanks, ShankarSingh(MCP)

  • Workflow Manager 1.0 - Service Bus 1.0 installation failure

    On a SharePoint 2013, I am trying to set up Workflow Manager 1.0 (version: 2.0.20922.0) using WPI 5.0 (version: 7.1.50430.0).
    Windows Server version: Microsoft Windows Server 2008 R2 Datacenter [Version 6.1.7601] SP1. Locale: en-gb.
    SharePoint Server 2013 version: 15.0.4569.1000
    WPI installer fails at step 2.
    Step 1: Execute ASP.NET IIS registration tool - is installed successfully. However, Step 2 fails:
    Step 2: Service Bus 1.0. Gives following error
    Windows event logs:
    Product: Service Bus 1.0 -- Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action EnableUAC, location: C:\Windows\Installer\MSI41C2.tmp,
    command: "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Service Bus 1.0\Service Bus PowerShell.lnk" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Service Bus 1.0\Service Bus Configuration.lnk"
    WPI log.txt:
    DownloadManager Information: 0 : Starting install sequence
    ThreadId=7
    DateTime=2014-06-30T15:04:30.5393958Z
    DownloadManager Information: 0 : Using cached file at C:\Users\admin\AppData\Local\Microsoft\Web Platform Installer\installers\ServiceBus\F35D6168BD14B4B152877F9ADECD16B90D6A0F6E\Service_Bus.msi instead of downloading from http://go.microsoft.com/fwlink/?LinkID=258757&CLCID=0x409
    ThreadId=3
    DateTime=2014-06-30T15:04:30.5462502Z
    DownloadManager Information: 0 : Using cached file at C:\Users\admin\AppData\Local\Microsoft\Web Platform Installer\installers\WorkflowManager\99C4319912D17F33BA408A096B163A2132193A93\Workflow_Manager.msi instead of downloading from http://go.microsoft.com/fwlink/?LinkID=258761&CLCID=0x409
    ThreadId=3
    DateTime=2014-06-30T15:04:30.6050022Z
    DownloadManager Information: 0 : Starting EXE command for product 'Execute ASP.NET IIS Registration tool'. Commandline is: 'C:\Windows\sysnative\cmd.exe /C C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -iru'. Process Id: 8276
    ThreadId=7
    DateTime=2014-06-30T15:04:30.6471078Z
    DownloadManager Information: 0 : Install exit code for product 'Execute ASP.NET IIS Registration tool' is '0'
    ThreadId=7
    DateTime=2014-06-30T15:04:41.9431590Z
    DownloadManager Information: 0 : Install return code for product 'Execute ASP.NET IIS Registration tool' is Success
    ThreadId=7
    DateTime=2014-06-30T15:04:41.9470758Z
    DownloadManager Information: 0 : Product Execute ASP.NET IIS Registration tool done install completed
    ThreadId=1
    DateTime=2014-06-30T15:04:41.9480550Z
    DownloadManager Information: 0 : Increasing current install to 2
    ThreadId=1
    DateTime=2014-06-30T15:04:41.9480550Z
    DownloadManager Information: 0 : Starting MSI install for msi 'C:\Users\admin\AppData\Local\Microsoft\Web Platform Installer\installers\ServiceBus\F35D6168BD14B4B152877F9ADECD16B90D6A0F6E\Service_Bus.msi', commandline: 'WEBPI=1 ACTION=INSTALL REBOOT=ReallySuppress'
    ThreadId=7
    DateTime=2014-06-30T15:04:41.9539302Z
    DownloadManager Information: 0 : MSI install return value for product 'Service Bus 1.0' is '1603'
    ThreadId=7
    DateTime=2014-06-30T15:04:50.0891238Z
    DownloadManager Error: 0 : Install return code for product 'Service Bus 1.0' is Failure (There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. )
    ThreadId=7
    DateTime=2014-06-30T15:04:50.0891238Z
    DownloadManager Information: 0 : Product Service Bus 1.0 done install completed
    ThreadId=1
    DateTime=2014-06-30T15:04:50.0901030Z
    DownloadManager Information: 0 : Increasing current install to 3
    ThreadId=1
    DateTime=2014-06-30T15:04:50.0901030Z
    DownloadManager Information: 0 : Service Bus 1.0 installation log: C:\Users\admin\AppData\Local\Microsoft\Web Platform Installer\logs\install\2014-06-30T16.04.30\Service_Bus.txt
    ThreadId=7
    DateTime=2014-06-30T15:04:50.0901030Z
    DownloadManager Warning: 0 : Dependency failed for product 'Workflow Manager 1.0'. Skipping install
    ThreadId=7
    DateTime=2014-06-30T15:04:50.0901030Z
    DownloadManager Information: 0 : Product Workflow Manager 1.0 had a dependency fail. Increasing install product to 4
    ThreadId=1
    DateTime=2014-06-30T15:04:50.0920614Z
    Service_Bus.txt:
    MSI (s) (04:C8) [16:04:49:994]: Executing op: ComponentUnregister(ComponentId={BD089387-D1F2-4012-B269-D38D5446C031},ProductKey={F438C511-5A64-433E-97EC-5E5343DA670A},BinaryType=1,)
    MSI (s) (04:C8) [16:04:49:995]: Executing op: ComponentUnregister(ComponentId={E7AC164F-EFA7-41AE-9A55-8A4762FFDB1F},ProductKey={F438C511-5A64-433E-97EC-5E5343DA670A},BinaryType=1,)
    MSI (s) (04:C8) [16:04:49:996]: Executing op: ComponentUnregister(ComponentId={47014104-90AA-4143-B004-91BBF9764BF2},ProductKey={F438C511-5A64-433E-97EC-5E5343DA670A},BinaryType=1,)
    MSI (s) (04:C8) [16:04:49:996]: Executing op: End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=0)
    MSI (s) (04:C8) [16:04:49:996]: Error in rollback skipped. Return: 5
    MSI (s) (04:C8) [16:04:50:008]: Note: 1: 2318 2:
    MSI (s) (04:C8) [16:04:50:011]: No System Restore sequence number for this installation.
    MSI (s) (04:C8) [16:04:50:011]: Unlocking Server
    MSI (s) (04:C8) [16:04:50:018]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'.
    Action ended 16:04:50: INSTALL. Return value 3.
    MSI (s) (04:C8) [16:04:50:040]: Note: 1: 1708
    MSI (s) (04:C8) [16:04:50:040]: Product: Service Bus 1.0 -- Installation failed.
    MSI (s) (04:C8) [16:04:50:041]: Windows Installer installed the product. Product Name: Service Bus 1.0. Product Version: 2.0.20922.0. Product Language: 1033. Manufacturer: Microsoft Corporation. Installation success or error status: 1603.
    MSI (s) (04:C8) [16:04:50:046]: Deferring clean up of packages/files, if any exist
    MSI (s) (04:C8) [16:04:50:047]: MainEngineThread is returning 1603
    MSI (s) (04:C4) [16:04:50:065]: RESTART MANAGER: Session closed.
    MSI (s) (04:C4) [16:04:50:065]: No System Restore sequence number for this installation.
    === Logging stopped: 30/06/2014 16:04:50 ===
    MSI (s) (04:C4) [16:04:50:069]: User policy value 'DisableRollback' is 0
    MSI (s) (04:C4) [16:04:50:070]: Machine policy value 'DisableRollback' is 0
    MSI (s) (04:C4) [16:04:50:070]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (04:C4) [16:04:50:070]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (04:C4) [16:04:50:071]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (04:C4) [16:04:50:072]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (s) (04:C4) [16:04:50:072]: Restoring environment variables
    MSI (s) (04:C4) [16:04:50:074]: Destroying RemoteAPI object.
    MSI (s) (04:98) [16:04:50:075]: Custom Action Manager thread ending.
    MSI (c) (F8:04) [16:04:50:080]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (c) (F8:04) [16:04:50:082]: MainEngineThread is returning 1603
    === Verbose logging stopped: 30/06/2014 16:04:50 ===
    Any pointers are appreciated.

    Hi,
    Here are some links about the similar issue for you to take a look at:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/560b3f29-450c-4ef4-9076-03caaa45e62a/workflow-manager-10-were-sorry-the-product-failed-to-install?forum=sharepointadmin
    http://support.esri.com/ja/knowledgebase/techarticles/detail/28695
    http://blog.riccardocelesti.it/2013/02/01/workflow-manager-setup-issue/
    More information about how to install and configure workflow for SharePoint Server 2013 for your reference:
    Install and configure workflow for SharePoint Server 2013
    http://technet.microsoft.com/en-us/library/jj658588(v=office.15)
    Video series: Install and configure Workflow in SharePoint Server 2013
    http://technet.microsoft.com/en-us/library/dn201724(v=office.15).aspx
    Best regards
    Dennis Guo
    TechNet Community Support

  • SharePoint 2013 Update Workflow Manager problems after Service Pack 1

    Hello guys,
    I've installed the service pack 1 for SharePoint 2013 and then I tried to update the workflow manager, but I always get an error message that the workflow manager could not be updated!
    Is the installing order wrong? should I first install the update for the worklfow manager and then the update for SharePoint 2013?
    Best regards
    Matthias

    The error message see below for "Cumulative Update for Workflow Manager 1.0 (KB2799754)
    "One of the custom actions failed. The installation cannot continue. See log for details!"
    [06/06/14 09:48:44] Performing install.
    [06/06/14 09:48:44] At least one of the product packages has been detected.
    [06/06/14 09:48:44] preReqUpdateDisplayName is :
    [06/06/14 09:48:44]
    [06/06/14 09:48:44] Wizard mode on.
    The following products will be enhanced:
    Workflow Manager 1.0
    Attempting to open cached Msi package for product code: {04A7199E-565D-4654-88A3-80A9A7BADDD9}
    Successfully opened cached Msi package.
    [06/06/14 09:48:48] Opening Service Control Manager...
    [06/06/14 09:48:48] Operation succeeded.
    [06/06/14 09:48:48] Copying files...
    [06/06/14 09:48:48] Checking and creating target directory C:\ProgramData\Microsoft\E-Business Servers Updates\Updates\Uninstall2799754.
    [06/06/14 09:48:48] Package Workflow Manager Client 1.0 is not installed. Skipping it.
    [06/06/14 09:48:48] Package Workflow Manager Client 1.0 is not installed. Skipping it.
    [06/06/14 09:48:48] Package Workflow Manager 1.0 is installed.
    [06/06/14 09:48:49] Copying file AppServerV1-WorkflowManagerpatch30.msp ...
    [06/06/14 09:48:49] Operation succeeded.
    [06/06/14 09:48:49] Copying file AppServerV1-WorkflowManagerpatch30.msp ...
    [06/06/14 09:48:49] Operation succeeded.
    [06/06/14 09:48:49] Copying file TargetWFVersion.txt ...
    [06/06/14 09:48:49] Operation succeeded.
    [06/06/14 09:48:49] Copying file UnifiedWFHotfixUpgrade.PS1 ...
    [06/06/14 09:48:49] Operation succeeded.
    [06/06/14 09:48:49] Copying file Setup.xml ...
    [06/06/14 09:48:49] Operation succeeded.
    [06/06/14 09:48:49] Copying file Setup.exe ...
    [06/06/14 09:48:49] Operation succeeded.
    [06/06/14 09:48:49] Package Workflow Manager 1.0 is installed.
    [06/06/14 09:48:49] Package code is {04A7199E-565D-4654-88A3-80A9A7BADDD9}.
    [06/06/14 09:48:49] Executing preinstall custom actions. 1 actions to execute.
    [06/06/14 09:48:49] Starting process "C:\Windows\system32\..\sysnative\windowspowershell\v1.0\powershell.exe" -NoLogo -NonInteractive -NoProfile -WindowStyle Hidden -ExecutionPolicy RemoteSigned -File UnifiedWFHotfixUpgrade.PS1 -HotfixType "CS" -PackageType
    "server" -opcode "PatchBefore" -platform "x64" ...
    [06/06/14 09:48:50] Process exit code is -1.
    get-itemproperty : Cannot find path 'HKLM:\Software\Microsoft\Service Bus\1.0'
    because it does not exist.
    At C:\ProgramData\Microsoft\E-Business Servers
    Updates\Updates\Uninstall2799754\UnifiedWFHotfixUpgrade.PS1:971 char:21
    +   $sbinstallpath = (get-itemproperty "HKLM:\Software\Microsoft\Service
    Bus\1.0"  ...
    That's the log file
    Best regards
    Matthias

  • Configure Workflow Manager 1.0 in Project Server 2013 with FBA

    Hi,
    Please suggest the ways to configure Workflow manger in Project server 2013 where PWA using FBA
    we have tried for below situation, but no luck!!
    The workflow manager configured using windows login account, we are associating a FBA site with workflow manager which is 
    Register-SPWorkflowService -SPSite 'http://FBAsite' -WorkflowHostUri 'http://workflowmanagerapplication:12291'
    Following steps are taken care while creating workflow.
    We have added users to the user service profile services
    User profile synchronization is started
    The user by whom we are logged is available in User Profile list
    we are not running workflow with share point system account
    Final step full synchronization of User Profile Application
    Below the error we are getting when workflow run
    Resume this workflow  
     RequestorId: 879e36f9-9db0-3c16-0000-000000000000. Details: An unhandled exception occurred during the execution of the workflow instance. Exception details: System.ApplicationException: HTTP 401 {"Transfer-Encoding":["chunked"],"X-SharePointHealthScore":["0"],"SPClientServiceRequestDuration":["440"],"SPRequestGuid":["879e36f9-9db0-3c16-a91c-356d29becb34"],"request-id":["879e36f9-9db0-3c16-a91c-356d29becb34"],"X-FRAME-OPTIONS":["SAMEORIGIN"],"MicrosoftSharePointTeamServices":["15.0.0.4605"],"X-Content-Type-Options":["nosniff"],"X-MS-InvokeApp":["1;
    RequireReadOnly"],"Cache-Control":["max-age=0, private"],"Date":["Sun, 15 Jun 2014 12:44:03 GMT"],"Server":["Microsoft-IIS\/7.5"],"WWW-Authenticate":["NTLM"],"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)

    Hi Mafeer,
    Since this issue is related to Project Server, I would like to recommend you to post there for more effective support:
    Project Server General Questions and Answers
    Thanks for your understanding.

  • Error while configuring Enterprise manager

    Hello,
    I want to configure enterprise manager, while creating a new database using database configuration assistant in oracle 11g i am getting following error message
    *"Configuring database with database control requires a listener to be configured in the current oracle home.
    You need to run Netca to configure a listener before you can procede. Otherwise you may choose o continue with out Database control configuration"*
    My OS is Windows 7
    is there any other way to configure Enterprise manager OR do i need to install any specific package
    Thank you friends.

    Hi, Finally i created a listener "KUMAR"
    *Microsoft Windows [Version 6.1.7600]*
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Users\praveen kumar gogula>lsnrctl status
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 22-SEP-2011 17:50
    *:44*
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias                     KUMAR
    Version                   TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date                22-SEP-2011 17:44:58
    Uptime                    0 days 0 hr. 5 min. 48 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   C:\oracle\product\11.2.0\dbhome_1\network\admin\listen
    er.ora
    Listener Log File         c:\oracle\diag\tnslsnr\praveenkumarg\kumar\alert\log.x
    ml
    Listening Endpoints Summary...
    *(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=praveenkumarg)(PORT=1521)))*
    *(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))*
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "praveen" has 1 instance(s).
    Instance "praveen", status READY, has 1 handler(s) for this service...
    Service "praveenXDB" has 1 instance(s).
    Instance "praveen", status READY, has 1 handler(s) for this service...
    The command completed successfully
    C:\Users\praveen kumar gogula>
    What to do next?

  • Oracle Service Bus "ThreadPool has stuck threads"

    Hi all,
    I have JMS Proxy service that listen to the queue, with small quantity of message every second, it works great.
    But after put message with bigger quantity and faster insertion on queue, the proxy service cannot
    pull the message anymore, the error message is "STUCK THREAD", it makes the weblogic console give warning status.
    This is the Dump Thread Stacks :
    ===== FULL THREAD DUMP ===============
    Tue Jun 8 11:30:24 2010
    BEA JRockit(R) R27.6.1-20-104573-1.6.0_05-20081016-1236-linux-ia32
    "Main Thread" id=1 idx=0x4 tid=7168 prio=5 alive, in native, waiting
    -- Waiting for notification on: weblogic/t3/srvr/T3Srvr@0x1cd20688[fat lock]
    at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
    at java/lang/Object.wait(J)V(Native Method)
    at java/lang/Object.wait(Object.java:485)
    at weblogic/t3/srvr/T3Srvr.waitForDeath(T3Srvr.java:811)
    ^-- Lock released while waiting: weblogic/t3/srvr/T3Srvr@0x1cd20688[fat lock]
    at weblogic/t3/srvr/T3Srvr.run(T3Srvr.java:459)
    at weblogic/Server.main(Server.java:67)
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    -- end of trace
    "(Signal Handler)" id=2 idx=0x8 tid=7169 prio=5 alive, in native, daemon
    "(GC Main Thread)" id=3 idx=0xc tid=7170 prio=5 alive, in native, native_waiting, daemon
    "(GC Worker Thread 1)" id=? idx=0x10 tid=7171 prio=5 alive, in native, daemon
    "(GC Worker Thread 2)" id=? idx=0x14 tid=7172 prio=5 alive, in native, daemon
    "(GC Worker Thread 3)" id=? idx=0x18 tid=7173 prio=5 alive, in native, daemon
    "(GC Worker Thread 4)" id=? idx=0x1c tid=7174 prio=5 alive, in native, daemon
    "(GC Worker Thread 5)" id=? idx=0x20 tid=7175 prio=5 alive, in native, daemon
    "(GC Worker Thread 6)" id=? idx=0x24 tid=7176 prio=5 alive, in native, daemon
    "(GC Worker Thread 7)" id=? idx=0x28 tid=7177 prio=5 alive, in native, daemon
    "(GC Worker Thread 8)" id=? idx=0x2c tid=7178 prio=5 alive, in native, daemon
    "(Code Generation Thread 1)" id=4 idx=0x30 tid=7179 prio=5 alive, in native, native_waiting, daemon
    "(Code Optimization Thread 1)" id=5 idx=0x34 tid=7180 prio=5 alive, in native, native_waiting, daemon
    "(VM Periodic Task)" id=6 idx=0x38 tid=7181 prio=10 alive, in native, daemon
    Is there any tuning that I need to do on Jrockit?
    Really thanks in advance.
    Regards,
    Mr.K

    Hi Eric,
    Thank you for the link, I'll try for increasing it.
    Hi Manoj,
    hope it'll give you some additional information for helping me.
    ####<Jun 8, 2010 10:43:44 AM WIT> <Error> <WebLogicServer> <cspproduction> <AdminServerOSB> <[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1275968624958> <BEA-000337> <[STUCK] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "653" seconds working on the request "weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl@39c79ac", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
    Thread-50 "[STUCK] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'" <alive, in native, suspended, waiting, priority=1, DAEMON> {
    -- Waiting for notification on: weblogic.rjvm.ResponseImpl@39cf5b1[fat lock]
    java.lang.Object.wait(Object.java:???)
    weblogic.rjvm.ResponseImpl.waitForData(ResponseImpl.java:80)
    weblogic.rjvm.ResponseImpl.getTxContext(ResponseImpl.java:127)
    weblogic.messaging.dispatcher.DispatcherProxy.unmarshalResponse(DispatcherProxy.java:236)
    weblogic.messaging.dispatcher.DispatcherProxy.dispatchSyncTranFuture(DispatcherProxy.java:133)
    weblogic.messaging.dispatcher.DispatcherWrapperState.dispatchSyncTran(DispatcherWrapperState.java:333)
    weblogic.messaging.dispatcher.DispatcherWrapperState.dispatchSyncNoTran(DispatcherWrapperState.java:384)
    weblogic.jms.dispatcher.DispatcherAdapter.dispatchSyncNoTran(DispatcherAdapter.java:59)
    weblogic.jms.client.JMSProducer.toFEProducer(JMSProducer.java:1151)
    weblogic.jms.client.JMSProducer.deliveryInternal(JMSProducer.java:679)
    weblogic.jms.client.JMSProducer.sendInternal(JMSProducer.java:541)
    weblogic.jms.client.JMSProducer.sendWithListener(JMSProducer.java:366)
    weblogic.jms.client.JMSProducer.send(JMSProducer.java:353)
    weblogic.jms.client.WLProducerImpl.send(WLProducerImpl.java:1050)
    weblogic.jms.client.WLProducerImpl.send(WLProducerImpl.java:107)
    weblogic.deployment.jms.WrappedMessageProducer.send(WrappedMessageProducer.java:235)
    com.bea.wli.sb.transports.jms.JmsOutboundMessageContext$SendAction.sendMessage(JmsOutboundMessageContext.java:823)
    com.bea.wli.sb.transports.jms.JmsOutboundMessageContext$SendAction.run(JmsOutboundMessageContext.java:745)
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:350)
    weblogic.security.service.SecurityManager.runAs(Unknown Source)
    weblogic.security.Security.runAs(Security.java:60)
    com.bea.wli.sb.transports.jms.JmsOutboundMessageContext.send(JmsOutboundMessageContext.java:502)
    com.bea.wli.sb.transports.jms.JmsTransportProvider.sendMessageAsync(JmsTransportProvider.java:680)
    sun.reflect.GeneratedMethodAccessor302.invoke(Unknown Source)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:575)
    com.bea.wli.sb.transports.Util$1.invoke(Util.java:56)
    $Proxy61.sendMessageAsync(Unknown Source)
    com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageAsync(LoadBalanceFailoverListener.java:136)
    com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToServiceAsync(LoadBalanceFailoverListener.java:510)
    com.bea.wli.sb.transports.LoadBalanceFailoverListener.sendMessageToService(LoadBalanceFailoverListener.java:477)
    com.bea.wli.sb.transports.TransportManagerImpl.sendMessageToService(TransportManagerImpl.java:491)
    com.bea.wli.sb.transports.TransportManagerImpl.sendMessageAsync(TransportManagerImpl.java:405)
    com.bea.wli.sb.pipeline.PipelineContextImpl.doDispatch(PipelineContextImpl.java:508)
    com.bea.wli.sb.pipeline.PipelineContextImpl.dispatch(PipelineContextImpl.java:486)
    stages.publish.runtime.PublishRuntimeStep.processMessage(PublishRuntimeStep.java:83)
    com.bea.wli.sb.stages.StageMetadataImpl$WrapperRuntimeStep.processMessage(StageMetadataImpl.java:343)
    com.bea.wli.sb.stages.impl.SequenceRuntimeStep.processMessage(SequenceRuntimeStep.java:31)
    com.bea.wli.sb.pipeline.PipelineStage.processMessage(PipelineStage.java:84)
    com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:840)
    com.bea.wli.sb.pipeline.Pipeline.processMessage(Pipeline.java:140)
    com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:840)
    com.bea.wli.sb.pipeline.PipelineNode.doRequest(PipelineNode.java:51)
    com.bea.wli.sb.pipeline.Node.processMessage(Node.java:65)
    com.bea.wli.sb.pipeline.PipelineContextImpl.execute(PipelineContextImpl.java:840)
    com.bea.wli.sb.pipeline.Router.processMessage(Router.java:178)
    com.bea.wli.sb.pipeline.MessageProcessor.processRequest(MessageProcessor.java:39)
    com.bea.wli.sb.pipeline.RouterManager$1.run(RouterManager.java:508)
    com.bea.wli.sb.pipeline.RouterManager$1.run(RouterManager.java:506)
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:350)
    weblogic.security.service.SecurityManager.runAs(Unknown Source)
    com.bea.wli.sb.security.WLSSecurityContextService.runAs(WLSSecurityContextService.java:55)
    com.bea.wli.sb.pipeline.RouterManager.processMessage(RouterManager.java:487)
    com.bea.wli.sb.transports.TransportManagerImpl.receiveMessage(TransportManagerImpl.java:248)
    com.bea.wli.sb.transports.jms.JmsInboundMDB.onMessage(JmsInboundMDB.java:79)
    sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:???)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:27)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:575)
    com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:277)
    com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:187)
    com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:153)
    com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:86)
    com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:153)
    com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126)
    com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:100)
    com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:153)
    com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:148)
    $Proxy79.onMessage(Unknown Source)
    weblogic.ejb.container.internal.MDListener.execute(MDListener.java:403)
    weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:352)
    weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:264)
    weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4526)
    weblogic.jms.client.JMSSession.execute(JMSSession.java:4022)
    weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3708)
    weblogic.jms.client.JMSSession.access$000(JMSSession.java:114)
    weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5058)
    weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
    weblogic.work.ExecuteThread.execute(ExecuteThread.java:198)
    weblogic.work.ExecuteThread.run(ExecuteThread.java:165)
    That is error message from Oracle service bus console, it stated there is JMS Proxy service that got stuck.
    On previous post, I already attached the dump trace, it explained something about jrockit. But I still don't get the way for tuning it properly.
    Regards,
    Mr.K

  • Error while configuring User Management Utility

    Hi All,
    I am trying to configure User Management Utility for messaging server and calendar server. But while doing this it is failing to create service. The utility creates roles, configures with the webserver but fails to create service.
    This was the error :
    PASSED: /bin/sh -c /opt/nicp/ps62/SUNWam/bin/amadmin -u "uid=amadmin,ou=People,o=apollo" -f /opt/SUNWcomm/lib/config-template
    s/amadmin1718 -t /opt/SUNWcomm/lib/config-templates/changeComms.xml : status = 0
    PASSED: /bin/sh -c /opt/nicp/ps62/SUNWam/bin/amadmin -u "uid=amadmin,ou=People,o=apollo" -f /opt/SUNWcomm/lib/config-template
    s/amadmin1718 -t /opt/SUNWcomm/config/createroles.xml : status = 0
    FAILED: /bin/sh -c /opt/nicp/ps62/SUNWam/bin/amadmin -u "uid=amadmin,ou=People,o=apollo" -f /opt/SUNWcomm/lib/config-template
    s/amadmin1718 -t /opt/SUNWcomm/config/createservices.xml : status = 1
    PASSED: /bin/sh -c /opt/SUNWcomm/sbin/config-wbsvr : status = 0
    FAILURE: Number of task failed:1. Please check install log
    /opt/SUNWcomm/install/Iscli-config_20041021221229.log
    for further details.
    It could be useful if someone could throw some light on this.
    Thankx in Advance,
    s2810

    As I said in response to your other, smaller post, I'm not sure where you are, and this snippet of errors doesn't help me.

  • Windows Azure Pack for Windows Server shows Service Bus services as down

    Hi,
    I got 3 servers with Service Bus 1.1 and WAP working as a "cluster" with loadbalancer.
    When going to SB on the admin site it shows services running on 1 server only instead of 3. 
    If I restart the server it switches to one of ther other two.
    Loadbalancer is Cisco and it's configured correctly. Any idea what it could be?
    It should show all 3 as running?
    Thank you in advance.

    Hi Ryankorock,
    Sorry to revive an old post but is there any update on compatibility? We are running SCVMM 2012 R2 Build 3.2.7768.0 with an F5 BIG-IP
    running "11.6.0 Build 0.0.401 Final". We see the exact same error 
    Error (21426)
    Execution of DataCenterManager.LB::AddLBVIP on the configuration provider a1af2238-5665-454a-8560-64fafbfe3385 failed. Detailed exception: Microsoft.SystemCenter.DataCenterManager.LB.LBConnectionFailedException: There is an error in XML document (246,
    74). ---> F5Networks.Protocols.iControl.iControlException: There is an error in XML document (246, 74).
    The plugin creates everything on the F5, pools, nodes, and virtual server. We have tried with and without a health probe with no luck.

Maybe you are looking for

  • What are the standard reports in QM?

    Hi, I want to know the standard reports available in Quality Management?

  • Browser URL 127.0.0.1?

    Hi, we will take a look to the Service Desk virt. Appliance. But after first install i got the hint on Appliance Managment Screen, the Browser URL for Service Desk is 127.0.0.1? Where can i change it to the correct URL/IP? Thx Thomas

  • Why don't the photos load properly

    When i scroll through my photos in my library (in loop mode) why don't the photos load properly and the photos still blurred?

  • DNG conversion fail and Photoshop will not open my NEF files (Newbie question)

    Two part question. First, I just recently installed photoshop CS4 to my (windows vista) computer and I go to upload NEF photos to bridge and I check the box that says "Convert to DNG" and when it finishs uploading it says "Files successfully copied,

  • OCI Login Problem

    Hi, Problem : Not able to login to repository through OCI. Actually we have sucessfully lanched OCI configuration link, using OCI Link , i am able to connect to MDM server and once it is connected to mdm server, it is also able to display the list of