Odata query not supporting $filter $stop $expand

Hi everyone,
I am just trying to  call a odata query to uodate a attribute
 I get this error:The status always return me 400.Please Help
  responseText "{Query options $expand, $filter, $orderby, $inlinecount, $skip and $top cannot be applied to the requested resource.}" String
Here ia a part of my code:
//my odata request
  var oDataPath = ServerUrl + "/XRMServices/2011/OrganizationData.svc";
    var oData = oDataPath + "/AppointmentSet?$select=Category&$filter=ActivityId eq guid'" + appointmentid + "'";
 var req = new XMLHttpRequest();
                   req.open("POST", encodeURI(oData), false);
                    req.setRequestHeader("Accept", "application/json");
                    req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
                    req.setRequestHeader("X-HTTP-Method", "MERGE");
                    req.onreadystatechange = function () {
                        if (this.readyState == 4 /* complete */) {
                            req.onreadystatechange = null;
                            if (this.status == 204 || this.status == 1223) {
                                successCallback();
                            else {
                                debugger;
                               errorCallback(SDK.REST._errorHandler(this));
Thanks
Surbhi

Hi, 
   Use below code to resolve your error
function Retrieve() {
                    var oDataPath = ServerUrl + "/XRMServices/2011/OrganizationData.svc";
                 var oData = oDataPath + "/AppointmentSet?$select=Category&$filter=ActivityId eq guid'" + appointmentid
+ "'";
var retrieveReq =
new XMLHttpRequest();
//alert(Odata);
        retrieveReq.open("GET",
oData,
false);
        retrieveReq.setRequestHeader("Accept",
"application/json");
        retrieveReq.setRequestHeader("Content-Type",
"application/json; charset=utf-8");
        retrieveReq.onreadystatechange =
function () { retrieveReqCallBack(this);
        retrieveReq.send();
function retrieveReqCallBack(retrieveReq) {
    if (retrieveReq.readyState == 4
/* complete */) {
var retrieved =
this.parent.JSON.parse(retrieveReq.responseText).d;
var category= retrieved.results[0].Category;       

Similar Messages

  • OData Query Sharepoint Rest -Filter between two date.

    Hello ,
    I'm access sharepoint list using Odate Query rest operations. 
    I am facing issue to fetch filtered data from sharepoint list. If the todays date is between StartDate and EndDate .Then it should display records .
    Ex: todays date = 26-Mar-2015
    my sharepoint list like below :
          Tile
          Sales
      StartDate
    EndDate
    1
    50
      23-03-2015
    28-03-2015
    2
    434
      21-04-2015
    23-04-2015
    3
    88
      19-04-2015
    23-04-2015
    4
    223
      17-03-2015
    28-03-2015
    So it sould return only 1st and 4th row.
    var serverUrl =
    theSiteUrl +
    "/_api/web/lists/GetByTitle('" + dvListName + "')/items?" +
    "$select=Title,Sales/Title,Body,StartDate,EndDate" +
    "&$filter=(today Gt StartDate and today Lt EndDate)"+
    "&$expand=Sales";
    the above Query I tried but not working..
    How can I achieve this ?

    Today option is not available in SharePoint REST. As a workaround, you can create a JavaScript variable which holds today's date and convert it to ISO date format before using it in the REST query:
    var today = new Date();
    today = today.toISOString();
    See this for more information: http://sharepoint.stackexchange.com/questions/105576/rest-api-filter-by-start-and-end-dates-using-today
    Blog | SharePoint Learnings CodePlex Tools |
    Export Version History To Excel |
    Autocomplete Lookup Field

  • SUMCT , SUMRT & SUMGT functions of Bex Query not supported in Uinverse,

    Hello Experts,
    I performed the following steps:                                               
    1. Created the Bex Query using the Query Designer with the following functions as                                                                               
    SUM CT                                                                               
    SUMGT                                                                               
    SUMAT                                                                               
    and saving the Query.                                                                               
    When creating the universe connection and try to connect to the above query, it is not showing the dimensions or any objects. It is just blank. It throws the error " error getting dimensions for cube".                                                                               
    But the BEx query works fine in the Query Designer.                                                                               
    When using other functions, and the Universe and Universe connection works fine. Please let me know if this is a limitation or if I am doing anything wrong.                                                                               
    Let me know if you need any further information on this.
    Thanks and Regards,                                                                               
    Jothivel

    Hi Ingo/Stratos,
    I enabled the traces for the universe creation in my test environment( basically I enabled the SOFA and MDX logs using the registry key settings) and got the following :
    Thu Dec 31 09:15:09.390: SAPMODULE: SAPConnection: m_pRfcWrapper->Close( m_hRfcConnection ) 0.015
    Thu Dec 31 09:15:15.609: SAPMODULE: SAPAuthenticationService: Authentication model for SAP connectivity is CREDENTIALS
    Thu Dec 31 09:15:15.609: SAPMODULE: SAPAuthenticationService: Authentication model for SAP connectivity is username and password
    Thu Dec 31 09:15:15.609: SAPMODULE: SAPAuthenticationService: Trying to connect to SAP using this URI : occa:sap://;PROVIDER=sapbw_bapi,ASHOST=10.165.81.246,SYSNR=01,R3NAME=T25,AUTHTYPE=CREDENTIALS,USER="badari",LANG=EN,CLIENT=800,CATALOG="Z_BOBJ_M",CUBE="Z_BOBJ_M/ZZ_IH_OLAP_TEST_RATIO",PASSWD=******
    Thu Dec 31 09:15:17.218: SAPMODULE: SAPAuthenticationService: m_pRfcWrapper->RfcOpenEx() 1.609
    Thu Dec 31 09:15:17.218: SAPMODULE: SAPConnection: Connection to SAP BW server successful
    Thu Dec 31 09:15:17.625: SAPMODULE: CLIENT: MDDataProviderBW.GetCubes 0.407
    Thu Dec 31 09:15:17.625: SAPMODULE: CLIENT: Reserved Structure Z_BOBJ_M/ZZ_IH_OLAP_TEST_RATIO
    Thu Dec 31 09:15:17.640: SAPMODULE: STRUCTURE: Getting dimensions for cube Z_BOBJ_M ...
    Thu Dec 31 09:15:18.343: SAPMODULE: STRUCTURE: RFC function call MDDataProvderBW.GetDimensions failed.  System error in program CL_RSR_MDX_META_DATA and form CONSTRUCTOR-01- (see long text)
    Thu Dec 31 09:15:18.343: SAPMODULE: : Error getting dimensions for cube Z_BOBJ_M/ZZ_IH_OLAP_TEST_RATIO (catalog Z_BOBJ_M): See RFC trace file or SAP system log for more details
    Thu Dec 31 09:15:18.343: SAPMODULE: STRUCTURE: MDDataProviderBW.GetDimensions 0.703
    Thu Dec 31 09:15:18.343: SAPMODULE: : Error getting dimensions for cube Z_BOBJ_M/ZZ_IH_OLAP_TEST_RATIO (catalog Z_BOBJ_M): Unknown error
    I have asked the customer the perform the above steps and let me know the logs.
    Please let me know if the above logs help. I don't have access to my test SAP System logs. Hence unable to check the RFC trace file.
    Thanks and Regards,
    Jothivel

  • Error while connecting to an OData Feed from Excel 2013 PowerPivot . Error: Failed to connect to the server. Reason: The payload kind 'BinaryValue' of the given data feed is not supported

    I am trying to connect to a Odata Data feed from Excel 2013 Power Pivot
    The datasource is in sharepoint site eg: https://sitename/Shared%20Documents/datafeed.atomsvc
    getting below error
    Error message:
    Failed to connect to the server. Reason: The payload kind 'BinaryValue' of the given data feed is not supported.
    ============================
    Call Stack:
    ============================
       at Microsoft.Data.DataFeedClient.DataFeedODataReader.ValidatePayloadKind(ODataPayloadKind payloadKind, ODataMessageReader odataMessageReader)
       at Microsoft.Data.DataFeedClient.DataFeedODataReader.InterceptODataException(Action action)
       at Microsoft.Data.DataFeedClient.DataFeedODataReader..ctor(IODataResponseMessage responseMessage, Int64 maxReceivedMessageSize)
       at Microsoft.Data.DataFeedClient.DataFeedODataReader.CreateReader(IWebResponse webResponse, Int64 maxReceivedMessageSize, Boolean applySlashUpdatingBaseUriResolver)
       at Microsoft.Data.DataFeedClient.ODataHelper.GetCollectionsFromServiceDocumentUrl(Uri serviceDocumentUrl, DataFeedConnection connection)
       at Microsoft.Data.DataFeedClient.DataFeedConnection.Open()
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.InitializeConnectionObject(String connectionIdentifier)
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.InitializeConnectionObject(String connectionIdentifier)
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.Open(String& connectionIdentifier)
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.Open()
       at Microsoft.AnalysisServices.Common.DataSourceBasic.ClickTestConnection(Object progressControl)
    Appreciate suggestions/answers
    NOTE: The error is showing only while using Excel 2013 powerpivot
    its working good with Excel 2010 powerpivot

    Anita,
    Please look into using Power Query to use OData as a source in Power Pivot.
    Thanks!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Issue consuming Odata feed with Power Query (not in Power BI)

    I am trying to consume an OData feed from an SSRS report using Power Query ( latest release on Excel
     2010 x32). The Report server is in my company intranet.
    In the SSRS report, I can generate an Atom service file. When I use this file in PowerPivot, I can successfully import the report data and refresh it on demand. But I
    would like to do the same thing in Power Query using the "From OData feed" feature.
    1. I have tried supplying the URI to the service file
    = OData.Feed("file:///C:/Users/Bdarbonneau/Documents/temp/Manuf_cycle_time_mapping_table.atomsvc")
    I get this error : 
    DataFormat.Error: The supplied URL must be a valid 'http:' or 'https:' URL.
    2. I tried supplying the URL that the service file contains, but without success. 
    = OData.Feed("http://myssrsserver:8080/ReportServer?%2FMANUFACTURING%2FArchive%2FManuf_cycle_time_mapping_table&rs%3ACommand=Render&rs%3AFormat=ATOM&rc%3AItemPath=Tablix1")
    I get this error:
    DataFormat.Error: OData: The given URL neither points to an OData service or a feed
    Am I missing something, or is what I am trying to do not supported ? 
    Regards,
    Bertrand

    My Current workaround for pulling data from SSRS until the dev team have worked out the odata issue is to pull the report in as a csv file:
    Csv.Document(Web.Contents("http://Servername/ReportServer?/SummaryReport&rs:Command=Render&rs:Format=Csv")),
    I also tried pulling an excel file from SSRS with no success.
    Tried:
    Excel.Workbook(URL)
    Excel.Workbook(Web.Contents(URL))
    Excel.Workbook(File.Contents(URL))
    Excel.Workbook(File.Contents(Web.Contents(URL)))
    if anyone has had luck pulling in an excel file from SSRS i would like to know how.
    Is there a rough release date for the odata functionality?

  • Supported OData Query Options

    Hi all,
    OData supports query options like $filter=cityfrom eq 'SINGAPORE' or $select=...
    (A full list can be found [here|http://www.odata.org/media/16352/%5Bms-odata%5D.pdf])
    1) Which options are supported by Gateway?
    2) What is the "Gateway Solution" to filter the result of the GetList/Query command for a specific entity?
    (e.g. return all flights with city of departure equal to 'Singapore')
    Best Regards,
    Florian

    Hi Ron Sargeant
    Problem is when i apply filter and data has a Slash ("\") for e.g company\ali.naveed
    its give me error.
    http://192.168.59.229:8080/gateway/odata/sap/EmployeeDataList;v=1/Employee?$filter= DomainAndUsername eq 'company\ali.naveed'
    if i query without Slash ("\") for example in email  its working.
    /Employee?$filter= Email eq '[email protected]'
    what is process to fetch data which contain a slash("\")?
    Regard
    Ali

  • In Bex Query designer - Flat is not supported

    Hi all,
    In Bex query designer,
    While execution of the query, the following error is coming .
    Failed to process request; contact your system administrator
    Error Summary
    Exception occured while processing the current request; this exception cannot be handled by the application or framework
    If the information on this page does not help you locate and correct the cause of the problem, contact your system administrator
    To facilitate analysis of the problem, keep a copy of this error page Hint: Most Web browsers allow you to select all content, and copy and paste it into an empty document (such as in an email or simple text file)
    Root Cause
    The initial exception that caused the request to fail was:
    Flat mode is not supported!
    java.lang.UnsupportedOperationException: Flat mode is not supported!
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.Characteristic.setHierarchy(Characteristic.java:330)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.Characteristic.readStateFromDomNode(Characteristic.java:542)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.QvCharacteristic.readStateFromDomNode(QvCharacteristic.java:379)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.QvStructure.readStateFromDomNode(QvStructure.java:106)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.AttributeContainer.readStateFromDom(AttributeContainer.java:297)
    Details: Full Exception Chain
    Most important error.
    regards
    Selvan

    Hello,
    I have the same problem with Flat mode is not supported! at ... Characteristic.setHierarchy(Characteristic.java:335):
    Open, close, reload of the query does not help.
    Other SDN-thread "500 Internal Sever - Flat Mode is not Supported!" related to transaction RSRT.
    Execution of query via RSRT works, but the problem still persists in the BEx Web Analyzer.
    Could be related to a BEx Web Analyzer "bookmark" ("Personalize Web Application").
    I have not deleted any item. We use SAP BW 7.0 with a patch level approx. 09.2009.
    The "flat-mode" seems to be the  "BEx table mode".
    SAP hints do not seem to fit here:
    - 715820 BW 3.x Front-End Patch 14 (we use BW 7.0)
    - 874825 SAPBWNews for BW 3.x Front-End Support Package 19
    - 874827 SAPBWNews for BW 3.5 Front-End Patch 08 (we use BW 7.0)
    - 905229 update to SAPTableTree
    - 909824 Termination in flat mode when an object is deleted (old?)
    - 909827 Incorrect InfoProvider-dependent characteristic values
    - 910602 Condition includes too many characteristics (usage of deleted elements)
    - 915215 Termination when a query definition is changed (old? visibility of elements?)
    - 968273 Cache with flat files: Exception is not caught (does not apply to given error)
    Any new solutions?
    Best regards
    Thomas

  • The App store stopped accepting my credit card all of a sudden. It says that my credit card is "not supported by the Chilean app store"... The credit card is Chilean and was working just fine. Help!

    This is the second time this happens. I was living in the US until April 2011. I moved to Chile and kept using the App Store and the iTunes Store just fine with my US-issued credit card. However, when I accessed my Apple ID from a different device, the store stopped recognizing my credit card information and migrated my ID to the "Chilean" App & Itunes Store (significantly less apps & music... but anyway). I started using my Chilean credit card on the App and iTunes store with no issues. I supposed that the devices catched that I was no longer in the US and that I had to be transferred to the related store (which I think is fine), and that because I was now in the Chilean store I needed to use a Chilean-issued credit card (which doesn't make sense to me, I still don't understand why Apple stopped accepting my US credit card if it is accepted everywhere else in the world online and offline!).
    However, yesterday I bought something from my iPad and when today I went to use the app store from my iPhone the SAME THING happened. I got the same request to "update my billing information", I confirmed my Chilean credit card info and, surprise! "Your credit card is not supported by the Chilean app store"...
    I don't get it. If I didn't get it the first time, I ended up accepting it an getting over it because ok, I moved to another country and my account was migrated, etc. But now, it doesn't recognize my local credit card in my local store! I tried both my local Visa and my local MasterCard, and none of them worked. It looks like my account will not accept ANY credit card, no matter wheter I try to update the info from my mobile devices, on iTunes, on the Mac App Store, etc.
    It has been impossible for me to find any information on what causes this and on how to solve it, and so far I hadn't had any trouble with Apple and hadn't need any support before, but now that I need URGENT SUPPORT, I've come to realize that THEY SUCK at being accessible! There's no way I can contact them! So, please help me!!!!! I need urgent help!!!!
    Thanks and sorry for the very long post.

    Same thing happened to me with my peruvian credit card in the peruvian app store, I want to buy an app, but it says that my credit card is "not supported in the Peruvian app store"

  • Datatype : 25 not supported error while saving Logical Query in BIP Dataset

    Hi All,
    I have created a nested logical Query in OBIEE Publisher Datamodel using parameters.
    Here is the simple query :
    Select name, revenue, date from
    select "SubjectAreaName"."TableName"."Name" name,
    case when :Date > date '2012-01-01' then "SubjectAreaName"."TableName"."Revenue" else NULL end Revenue,
    date date
    from
    "SubjectAreaName"
    where
    date = :Date
    ) T1
    Note - :Date is the parameter. When I try saving this dataset as-is, it throws me Datatype : 25 not supported error. But, when i replace the parameter :Date with actual date, then the query works. Also, the inner query works with or without parameters. The issue arises when I use the outer query and the parameters.
    Please let me know if you have come across such a problem ?
    Any help on this regard would be highly appreciated.
    Thanks
    Swarna

    ya i can understand we wont do the sql logic at the data model part as some time performance issue may come when comparaed to sql run in package and sql running in data model . so i have mostly done using package and i will just do select * from table in the data set of data model so i didn't face any issue's like this .
    once check this tutorial may be you already
    i use to create parameters like this i didn't face any issue
    SELECT * from TEST where ID=:p_id
    http://st-curriculum.oracle.com/obe/fmw/bi/bip/bip11g/gettingstarted/gettingstarted.htm

  • Every time I connect my ipod touch 4th gen. it says this accessory is not supported by ipod touch so people recommended me to just buy a new charger, so i did, but the night before i got my new charger it stopped charging, what should i do now?

    every time i connect my ipod touch 4th gen. it says this accessory is not supported by ipod touch so people recommended me to just buy a new charger, so i did, but the night before I got my new charger it stopped charging, what should I do now?
    also my power button does not worked it got stuck so therefor it doesn't work, are there any ways i can help it get loose and working again?

    Not Charge
    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar                 

  • I get the error message in QuickTime "operation stopped the operation is not supported for this media" most times when I try and export an .AVI file as something else (.m4v). I have not touched the file in any way (no trimming, clipping or other editing)

    I get the error message in QuickTime "operation stopped the operation is not supported for this media" most times when I try and export an .AVI file as something else (e.g. .m4v). I have not touched the file in any way (no trimming, clipping or other editing), all I want QuickTime to do is export the file in a compressed format. Bizzarely, if I shutdown and open QuickTime many times I can occasionally export a clip as another format (maybe one in 10 times). I have seen that other users have had a similar problem after clipping files in QuickTime but this seems to be a slightly different bug in that all I do is open the file and then try and export the file as is - either way, this is a very annoying bug

    @Z_B-B, thank you for taking the time to respond to my cry for help. However, the link you supplied does not address the problem: I am not trying to export from Final Cut Pro to QuickTime, I am trying to export from QuickTime to the rest of the world (like people's iPhones and Ipads) in .m4v format (so I am not emailing my freinds such huge files).
    If I were to spend hundreds of Dollars on a copy of Final Pro I could export directly from there and not have to bother with QuickTime, but I do not take enough video clips to justify the cost. I must say that I never had any of these problems before I decided to switch from Snow Leopard to Mountai Lion.

  • Hi i just bought an Iphone 4s and every time i try to activate it It stops half way through and says the sim carrier is not supported please use the sim that came with this phone (which i am doing) and will not let me skip this and will not activate??/

    Hi just bought an iphone 4 today tried to activate the phone and it won't let me..I go through language ect and it says activateing iphone may take a few mins then just stops and message on screen says that the sim carrier is not supported and please use the sim which came with the phone(which i am..& have tried another sim and still not working)........It wont let me bypass have tried reseting phone and restarting it nothing helps????

    Your iPhone is locked to the original carrier who sold it
    Only they can unlock it 
    The sim the iPhone refers to is the one the iPhone is locked to
    You will have to contact them

  • SQL Server Business Intelligence Development Studio query designer not supported in SQL SERVER 2008 R2

    Hello I am using the SQL Business Inteligence Development studio that comes with SQL 2008 R2. However whenever i try using the graphical query builder It throws an error stating that the server i am connected is not supported. Only SQL servers from
    2005 downwards are supported. dunno whats going on

    Hi ,
    It should not be . Did you create the data source for that server ? Test the connection . In design view add the data source which will be reference to share data source .I am not sure you were able to create data set perfectly ..
    Let me know the specific error . I will help you out.
    Thanks

  • Bought a Goalzero solar charger - Switch 8 pack - but get an 'not supported' message and charging stops?

    Anybody help - going on a charity trek next week and my solar charging kit (Goalzero Nomad 3.5 with Guide 10 and Switch 8) is giving a 'not supported' error message and stops charging?

    The 65W and 90W will definitely not work with the W510.
    The link you sent has no mention of a W510 in the hardware compatibility list.
    You need to order another charger i.e. 135W.
    Copy and paste from the 65W URL you sent.
    Description
    Machine - Models
    ThinkPad Edge 11, 13, 14, 15, E220s, E420, E520
    All
    ThinkPad L410, L412, L420, L421, L510, L512, L520
    All
    ThinkPad R60, R60e, R61, R61e, R61i
    All
    ThinkPad R400, R500
    All
    ThinkPad SL300, SL400, SL410, SL500, SL510
    All
    ThinkPad T60, T60p, T61
    All
    ThinkPad T400, T410, T410i, T400s, T410s, T410si, T420, T420i, T420s, T500, T510, T510i
    All
    ThinkPad T520
    Dual Core models only
    ThinkPad X60, X60s, X60 Tablet
    All
    ThinkPad X61, X61s, X61 Tablet, X61LS
    All
    ThinkPad X100e, X120e
    All
    ThinkPad X200, X200s, X200t, X200 Tablet, X201, X201i, X201s, X201t, X201 Tablet, X220, X220t, X220 Tablet
    All
    ThinkPad X300, X301
    All
    ThinkPad Z60m, Z61e, Z61m, Z61t
    All
    Lenovo 3000 C100, C200
    All
    Lenovo 3000 N100, N200
    All
    Lenovo 3000 V100, V200
    All
    ThinkPad Ultrabase Series 3
    ThinkPad X200 Ultrabase
    ThinkPad External Battery Charger
    ThinkPad Battery 19+ (6 cell Slim External)
    ThinkPad Tablet Dock
    Notes:

  • Workflow manager 1.0 : runtime error 400 running Add-WFHost "The api-version in the query string is not supported"

    Installing Workflow Manager 1.0 for SharePoint Server 2013 SP1 everything is fine until the last step of the configuration and last powershell command : 
    Add-WFHost -WFFarmDBConnectionString 'myconnectionstring' -RunAsPassword $WFRunAsPassword -EnableFirewallRules $true -SBClientConfiguration $SBClientConfiguration -CertificateAutoGenerationKey $WFCertAutoGenerationKey -Verbose;
    gives me the following error : 
    Add-WFHost : The remote server returned an error: (400) Bad Request. The api-version in the query string is not supported. Either remove it from the Uri or use one of '2012-03'..TrackingId:412684e3-3539-468e-91e6-17838c6eaa55_GS
    P,TimeStamp:04/04/2014 12:54:11
    At line:1 char:1
    Can't find anything about this subject except this
    thread which does not help me that much in SharePoint dev env ...
    Removing workflow manager 1.0 and service bus (leave the farm using wizzard, remove binaries and databases) does not help.
    Who already faces this issue and how can I try to resolve it ?
    Best regards !
    Alexandre DAVID

    The API version is hardcoded in Microsoft.ServiceBus.dll, which ships as part of the Service Bus. Each version of this lib has a different string.
    If you install workflow manager 1.0, here are the pre-requisites:
    .NET Framework 4 Platform Update 3 or .NET Framework 4.5
    Service Bus 1.0
    Workflow Client 1.0
    PowerShell 3.0
    The following are the pre-requisites to configure Workflow Manager 1.0
    Instance of SQL Server 2008 R2 SP1, SQL Server Express 2008 R2 SP1, or SQL Server 2012.
    TCP/IP connections or named pipes must be configured in SQL Server.
    Windows Firewall must be enabled. [Windows Firewall is Off on target server]
    Ports 12290 and 12291 must be available.
    Here are the reference for installing and configuring Workflow Manager 1.0:
    http://lennytech.wordpress.com/2013/06/02/installing-workflow-manager-1-0/
    http://lennytech.wordpress.com/2013/06/02/configuring-workflow-manager-1-0/
    http://social.technet.microsoft.com/Forums/en-US/c74507fb-ac2d-405f-b19c-2712b1055708/workflow-manager-10-configuration-service-bus-for-windows-server-the-api-version-is-not?forum=sharepointadmin

Maybe you are looking for

  • [SOLVED] Archlinux not detecting full ammount of RAM (again)

    Hello everyone! i've got a problem similar to this one: https://bbs.archlinux.org/viewtopic.php?id=126170 i've tried brilliant solution by gabe.benson: Well, I fixed it.  I re-seated the RAM and rebooted, everything works fine now. but got no result.

  • AirPlay doesn't work in Safari (synchronisation does not appear)

    I updated to IOS 5 and wanted to use AirPlay in Safari. When I select AirPlay I'm able to select my AppleTV but option synchronize doesn't appear. Video and audio streaming works fine. My AppleTV is on version 4.3 (2557). Any suggestions? Thanks in a

  • File name issues

    Hello, I am new to Lightroom and I enjoy it a lot. However I have a problem with file names and I can't find the answer on the internet: When I rename files with Fn + F2, the name sequences stack up and now I end up with incredibly long sequences inc

  • I click on firefox icon and it does not open

    When I click on the firefox icon on the bottom of my screen nothing happens. It started acting up a few days ago. I have tried restarting the computer and it does not resolve the problem. I shut down the computer and restarted and was able to access

  • Render files being deleted by app

    I have several different sequences in a project. Whenever I try to render all the remaining unrendered sections of video in a given sequence, it completes the render and then deletes a previous render file, causing previously rendered shots in the se