GW Mobility Service 2.0 : Questions on Postgresql

Hello,
Some questions about the new version.
When I add a user, during the first synchronization, the status of the user specifies the state 11: What means?
Where is the Postgresql field that indicates the version of ActivSync?
Regards
Olivier

Hi Olivier
Not sure what 11 is. It is one of these listed here:
https://www.novell.com/documentation...er_status.html
The AS version is not in any field, it is directly queried on the fly from the agent.
- Kai
Originally Posted by olidub
Hello,
Some questions about the new version.
When I add a user, during the first synchronization, the status of the user specifies the state 11: What means?
Where is the Postgresql field that indicates the version of ActivSync?
Regards
Olivier

Similar Messages

  • While loading ITunes Igot this messege, Service "Apple Mobile Device" failed to start. Verify that you have sufficient privileges to start system services. My question is, How do I verify if I have sufficient privileges?

    While loading ITunes I got this messege, Service "Apple Mobile Device" failed to start. Verify that you have sufficient privileges to start system services. My question is, How do I verify if I have sufficient privileges?

    Hello hurleygirl63,
    Thank you for the details of the issue you are experiencing with iTunes.  I recommend following the steps in the article below:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/TS1567
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How to Use Mobile Service in HTML/JavaScript Application

    The Windows Azure Mobile Service is a back end tool for mobile applications. It supports various platforms, such as Windows Store, Windows Phone 8, iOS and Android. The Windows Azure
    Mobile service can also support HTML/JavaScript. This article helps you to get a basic idea of how to use the Windows Azure Mobile Service in HTML/JavaScript applications.
    Let us start with a Quick startup project provided by Microsoft. A Quick startup is a simple demo project that can help us to understand how to use the Windows Azure Mobile Service with HTML/JavaScript. So let's start from the Quick startup project.
    Login into in the Windows Azure portal and use the following procedure.
    This article assumes you already have a Windows Azure account and the mobile service is enabled in your account.
    1. Create a new Windows Azure Mobile Service
    Click on the +New button from the left corner and select Compute -> Mobile Service and then click on the "Create" button.
    The Windows Azure portal popup creates a mobile service wizard when you click the Create button. Windows Azure asks you to enter the mobile service name as shown in the following image:
    Select the database options and region for your mobile service and click on the "Next" button.
    Once your mobile service is successfully created, the portal will show all your mobile services as shown in the following images.
    Ok! We have created a new mobile service successfully. Let's move to our subsequent steps.
    1. Quick startup Project 
    As we all know, the Windows Azure Mobile Service can support many platforms such as Windows Store, Windows Phone 8, iOS, Android and HTML/JavaScript. This article only tells us about the new HTML/JavaScript platform that is recently added to the Windows Azure
    Mobile Service.
    In the image above, we are in the quick startup page where the Windows Azure Mobile Service allows the user to choose their platform. I have selected the HTML/JavaScript Platform.
    In the image above, we found 3 quick steps that can allow us to run <g class="gr_ gr_74 gr-alert gr_gramm Grammar" data-gr-id="74" id="74">a HTML/JavaScript</g> sample project. 
    1. Create Table: In this step the user needs to create a table that can used by the sample project, once you hit the create TodoItem Table button. The Portal will create a TodoItem table in your mobile service. You
    can check this table by clicking on the data tab(menu).
    2. Download and run your app: In this step the user needs to download the Quick startup project that is provided by the Windows Azure portal. Click on the "Download" button and download the project. You will
    see the following files in the quick startup project.
    The Server folder contains some files to setup this project locally. The user should run the file from the server folder corresponding to their OS. I am using Windows OS so I ran the <g class="gr_ gr_80 gr-alert gr_spell ContextualSpelling ins-del multiReplace"
    data-gr-id="80" id="80">lanch</g>-<g class="gr_ gr_79 gr-alert gr_spell ContextualSpelling ins-del multiReplace" data-gr-id="79" id="79">windwos</g> file to setup this project locally in
    IISExpress.
    Press r and enter the key, you will see IISExpress started. Do not close this Windows and open your browser and request the http://localhost:8000/ page.
    Enter the Item name and click on the add button. Your Item will be added to the TodoItem table.
    3. Configure your host name: This step is a very important step for any HTML/JavaScript application that uses the Windows Azure Mobile Service. In this <g class="gr_ gr_83 gr-alert gr_gramm Punctuation only-ins
    replaceWithoutSep" data-gr-id="83" id="83">step</g> the user must register their website name in the Cross-origin resource sharing (CORS). By default, "localhost" is added by the Windows Azure Mobile Service
    so your quick startup project can run without making any CORS setting changes. The user can add their website domain name by clicking on the configure tab (menu).
    The user can add as many website domain names as needed.

    are you asking a question or did you just post a tutorial here? you might want to post it as a blog post or wiki entry instead.

  • SQL connection errors when stress testing mobile service: SQL failure after 3 attempts

    I have created a Mobile Service (node.js), which has been running for a few months with 50-100k api calls per day with no issues.
    The usage of the service will be scaled up soon, and it will receive much higher traffic, so I am running stress tests (on a staging deployment of the same service).
    The api in question queries data from the sql database that is attached to the mobile service, but caches the resulting data in a redis database for 5 minutes, so each call with identical parameters will not access the SQL database, just the redis cache.
    My first test never has any problems:
    Run a single api calls as fast as possible using the program wrk (https://github.com/wg/wrk). This test never has a problem, and I have run it an hour continuously with a sustained rate of 200 req/s and very few timeout errors.
    The second test always causes problems:
    I created a list of 5 different api calls to the same service (same endpoint, but different parameters), and I run those randomly interweaved as fast as possible. I use the program locust (http://locust.io) for this, spawing 10.000 clients at a rate of 500
    per second. For the first few seconds everything goes ok, but then connections start failing massively.
    I get mostly:
    Error: SQL failure after 3 attempts. Error: [Microsoft][SQL Server Native Client 10.0]TCP Provider: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected
    host has failed to respond.
     (SqlState: 08001, Code: 10060)
    And I see this in the http response:
    ConnectionError(ProtocolError('Connection aborted.', gaierror(8, 'nodename nor servname provided, or not known')),)
    The strange thing is that since I am running the same five calls repeatedly, only the very first of each call will actually access the sql database, every subsequent call will just return data directly from redis, and not try to access the sql database at
    all.
    In the azure console for the sql database in question, I see 1860 successful connections and 11 failed connections, which does not explain the massive failure rate I am seeing.

    Thanks for sharing your tips on this forum, as it will be useful for other users, that run into this issue.
    Feedback like this will also help us improve error reporting in the next release, as missing class files in the packaged application is a common issue when developers are moving from the embeded oc4j instance packaged with JDewveloper to standalone instances.
    -Eric

  • Azure AAD Mobile Service Authentication with corporate accounts fails.

    I have been having on-going issue with Authenticating against a Windows Azure mobile service with corporate accounts.
    Here is the complete environment.
    Initially we set up with Office 365 / CRM Online / and Azure for our corporate infrastructure. We have set up single sign on. Everything works well. There is ADFS set up and running to allow us to Authenticate with {username}@{companyDomainName} and everything
    works, including single signon. 
    Along comes Azure Active directory. We have an Automatically created Azure active directory in the corporate azure account. The domain is the default created {accountname}.onmicrosoft.com domain structure. This is set as the Default directory.
    We had a consultant come in, who was organized through Microsoft, to do some work. After everything was set and done we ended up with another active directory created in Azure that is named with the corporate domain name. This second domain has had all of
    the corporate accounts synched to it. 
    I have now created an Azure Mobile Service. The service is a basic service, I haven't updated any of the code yet, except to publish the service. I have followed all of the configuration instructions for setting up the authentication. 
    If configure the Authentication to point at the first active directory, I am able to Authenticate against the service using the credentials for a user that has been created in that domain. The Authentication works correctly, and goes through.
    However if I switch the configuration to use the second Active Directory, the one with the corporate accounts synched to it, the authentication fails. I am able to enter my corporate email address into the web page that is presented. Then the web control
    started to call into the ADFS in order to authenticate the corporate user name and password. At this point the authentication fails with a message about the service not being available.
    The login code is the standard:
    user = await App.MobileService.LoginAsync(MobileServiceAuthenticationProvider.WindowsAzureActiveDirectory);
    The project is a Universal Application as the service needs to be available from both a phone and a desktop. The project was started from the starter project downloaded form the Mobile Service site.
    # Update
    I've just switched the mobile service configuration back to use the AAD with the corporate accounts synchronized. The login through the application fails. However if I log in through IE by browsing to : https://{ServiceName}.azure-mobile.net/login/aad
    The authentication goes through correctly. 

    A few questions on the details:
    What client platform are you using for login. In particular, is this a Windows Store application?
    What do you mean exactly by "authentication fails?" Does an error get thrown, or does the UI just hang?
    Is this being done from a domain-joined machine and/or on a machine connected to a corporate network?
    We have seen an issue where some configurations of ADFS will not play nicely with Windows Store apps since the Web Authentication Broker (WAB) is based on the IE browser, and ADFS will attempt to do SSO in the special IE way instead of presenting a form,
    etc. Unless the WAB is configured to handle this scenario, you will get a non-responsive UI.
    Any details you can provide would be helpful.

  • Where are my mobile service and database tables? They're missing from the Portal.

    I've been using Azure for a couple of months. I just logged in and my mobile service is missing. And while my SQL database is still there, all the tables I created are gone. I received no email about them being removed and there's no log on the site that
    indicates anything happened to them. My website also is there and appears to be working fine. I had a lot invested in the tables and mobile service. Can anyone help me figure out what is going on?

    Hi
    For this
    subscription question I suggest you contact
    support
    team by creating a support ticket at http://www.windowsazure.com/en-us/support/contact/
    Beacause only them
    have the permission to help you fix your subscription issue.
    Thanks.
    Please mark post as answered if it helped!

  • Can Apple Store unlock my Iphone 4 so that it works with T-Mobile service

    Can I get my Iphone 4 unlocked from ATT service to use with T-Mobile service?

    Obviously that answer is now out-of-date.
    I was simply trying to help someone.  What value did your responses provide to the actual question asked? 
    Seems like you are both responding with nit picky comments because this forum is probably your entire life and you love to argue the infinite details of why anyone can post on a PUBLIC forum without being picked apart by uber nerds.
    ANY response to THIS post will certainly prove it. 

  • How do I send a raw (push) notification from the server side using an Azure mobile service?

    Hi there!
    Currently I'm able to send toast notifications to my user from my Azure mobile service using the following line of code in one of my server side scripts:
    push.wns.send(opponent_id, payload, 'wns/toast', {
    success: function(pushResponse) {
    console.log("Sent push:", pushResponse);
    request.respond(statusCodes.OK, {});
    error: function(pushResponse) {
    console.log("Error Sending push:", pushResponse);
    request.respond(500, { error: pushResponse });
    But I would like to send a raw notification to my user now, not a toast notification. I've set up a background tasks which runs as soon as a raw notification arrives(I've tested this through the diagnose option of my mobileservicehub and it works).
    I want to send a raw notification now from the server side and I'm kind off lost on how to do that. I've looked for it but can't seem to find an answer to that question, I might be looking for the wrong stuff though.
    I'm looking for a solution that looks the same as the one for a toast notification(as demonstrated in the code above).
    Your help would be greatly appreciated!
    Thanks in advance!
    Jan

    I found the solution to this it was in fact really really easy, I should have read the documentation more properly since it clearly said that the payload for raw notifications could be literally anything but the client has to take care of it.
    So I figured that out!

  • Android Release APK does not work with Mobile Service in Android Studio

    I am using Android Studio and i have not been able to get a working release apk. What should my build file look like? Is there anything special that i need to do? The debug works fine but the release never works. Are there any code changes that need to be
    made? Do i need to log into azure on the mobile device? Do I need to copy the signed certificate to the device also? Any assistance or suggestion is welcome. Below is a copy of the build file:
    apply plugin: 'com.android.application'
    android {
    compileSdkVersion 19
    buildToolsVersion "21.1.2"
    defaultConfig {
    applicationId "com.example.ttferryschedule"
    minSdkVersion 9
    targetSdkVersion 19
    buildTypes {
    release {
    minifyEnabled true
    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
    dependencies {
    compile 'com.android.support:support-v4:19.1.0'
    compile 'com.google.code.gson:gson:2.2.2'
    compile 'com.android.support:appcompat-v7:19.1.0'
    compile files('libs/mobileservices-1.1.5.jar')
    compile files('libs/mobileservices-1.1.5-javadoc.jar')
    compile files('libs/mobileservices-1.1.5-sources.jar')
    compile 'com.google.android.gms:play-services:6.5.87'

    Hi,
    I would recommend going with the 2.0 Beta SDK since you are working with Android Studio. The changes from 1.1.5 to 2.0 are documented at http://azure.microsoft.com/blog/2014/08/04/futures-support-and-breaking-changes-in-azure-mobile-services-android-sdk/ and http://azure.microsoft.com/blog/2014/08/07/offline-support-in-azure-mobile-services-android-sdk/ (offline
    specific). And we are in the process of publishing the beta SDK to an android repo so it's easily dependable.
    Please let me know if you have any further questions.
    Best,
    Mimi

  • Azure Mobile Services and ASP Identity - Exception when using UserManager

    I've reviewed
    this post in the AMS forum and it doesn't really answer the question. I already know how to integrate authentication, but Identity implements a lot of boilerplate user management code that I don't want to have to reproduce.  My question is: Is it possible
    to use Asp Identity framework with Azure Mobile Services? Since AMS Back End has Microsoft ASP.NET Identity Core/Owin as dependencies, I would think that the answer is yes, that they are compatible?
    I have been progressing as if it were possible, but yet, now when I go to try to use the Identity UserManager, I am getting the exception stated in
    this asp.net identity bug. Are there references in Azure Mobile Services Back End to previous versions of Microsoft.AspNet.Identity that would result in mismatched assembly versions?
    I have tried uninstalling and reinstalling Asp.Net Identity, even to the pre-release of 2.2.0, but I am still getting the exception that it couldn't load the CultureAwaiter. I have asked in that post if the bug has been fixed, but from the scant evidence of
    the posts and lack of responses, I would think that the bug has been fixed.
    ibGib

    The bug referenced in the original post shows that the required version is 2.1. I found that when I published to Azure, even though I had the correct (2.1) versions of the NuGet packages installed, the loaded dlls were not the correct versions. I do not
    know if this is an Azure problem or an Azure Mobile Services problem.
    I came to this conclusion by looking at the loaded Identity dlls in a new, up-to-date mvc app, and then looking at the same loaded dlls while debugging in Azure. The Azure dlls are older versions than the up-to-date MVC app versions. I figure that somewhere
    along the lines, Azure Mobile Services is loading the incorrect version of the Identity dlls, even though I have the correct versions installed via NuGet. Maybe there is another explanation.
    But regardless, I should be able to use the up-to-date versions of Identity in order to address bugs in the Identity framework. It would be nice if an AMS person would clarify about the dll versioning. I did come across
    this SO comment by someone who seems to be an AMS guru, but it doesn't seem to make sense. It does, however, seem to corroborate my and BinLaw's observed behavior of the backend dlls.
    ibGib

  • Azure mobile services error cannot find module 'azure-storage'

    this is driving me nuts for past five days now and still no solution. After asking the questing at StackOverflow and azure-storage npm, I thought of now posting the same question here so that it reaches to more targeted 'microsoft azure' experts. 
    in my AzureMobileService, I am using azure-storage npm module in one of my custom API. I have been using this for past couple of months and it was all working great, I was very happy. Until last moday it started throwing the error - 'cannot find module
    'azure-storage'. It was strange, the code that was working till morning , started failing when I came back from work, with no change of a bit in the code. I get this error where I call 'require' for 'azure-module':
    var azure = require('azure-storage');
    var retryOperationFilter = new azure.ExponentialRetryPolicyFilter();
    var tableService= azure.createTableService().withFilter(retryOperationFilter);
    and in package.json, I have
    "dependencies": {"tracer": "0.7.3", "colors" : "1.0.3", "lodash" :"2.4.1", "azure-storage": "0.4.1"},
    Today, I also tried creating a new Mobile service from scratch in my azure account. Then I created the custom API and wrote the code again from scratch. Updated package.json to include azure-storage, updated my client code(HTML/JS) to use this new service
    URL etc. and tested again, everything worked fine till it reached the same line (require('azure-storage') ) and failed again there with
    same error.
    I am at my wits end. please help. 

    ok, got it working.
    I did an npm install 'azure-storage'  to my mobile service's service directory and then it started working. 
    As I remember reading, if I just include the npm module I want to use in my mobile service's package.json, it gets taken care, installed and I don't to install myself manually.
    And thats what has been happening when my code was working till last week. 
    Also, its feels odd because the other node modules I use - like tracer or lodash - work with no manual npm install. 
    anyways, its working for now, but now I am thinking about the azure mobile's reliability

  • Can cisco MSE(mobility service engine) configured to work with non-cisco access points?

    I understand that access points can be configured to forwards all the probe requests to cisco wifi controller. cisco MSE(mobility service engine) gets the probes from wifi controller to find the location of the mobile devices.
    My question, can cisco MSE(mobility service engine) be configured to work with non-cisco access points?

    No and the reason why is the NMSP communication from the MSE to the WLC. Other vendors don't support this so there is no communication happening.
    -Scott

  • Upgrading to GroupWise Mobility Service 2.0

    Upgrading to GroupWise Mobility Service 2.0 ; gives me an error that the LDAP source is down.
    Dashboard -> Settings -> User Source shows the correct LDAP source.
    However neither provisioning as authentication, have nothing ticked.
    Ticking LDAP does not 'stick' meaning after saving the settings, neither are ticked ?
    Stephan

    Hai Kai, thanks for helping out.
    1) yes edir is up and running.
    2) Yes i can do an ldapsearch to the server running edir
    3) Connection worked before the upgrade
    4) when I re type all the adress and authentication data, nothing happens.
    The data is saved, but as said the provisioning and authentication are no longer selected.
    test1) If I type a wrong adress, it reads that there is a problem with the ldap settings.
    test2) If I type an incorrect password, it reads that there is a problem with the ldap settings.
    Question ; my poa and edir is running on the same machine ; would that be a problem ?
    ( I only use the ldap settings )

  • Error creating mobile service.

    I am unable to Create mobile service on my Azure portal.
    Every time i try to create an app i get following Error:
    RDFE: The upstream server reported that the resource was not found. If you contact a support representative please include this correlation identifier: a9a1e614-a69d-729d-9fc3-2c9e93a51057,
    the time of error: 2015-03-03 19:36:01Z, and the error id: ZE9.

    Microsoft? Can you please respond to this issue?
    I am not able to create a mobile service....
    There is someone else with the same problem:
    http://stackoverflow.com/questions/28711434/can-not-create-a-mobil-in-azure-recieve-the-upstream-server-reported-that-the-re/28716442#28716442

  • Custom Mobile Service API

    Hi. 
    I have a series of records contain within an SQL table accessed through a mobile service. I was wondering how I could pass a parameter from the client to a custom API mobile service for use in an SQL query?
    For example, my table contains temperature and date data. I am looking to be able to select a date on a client and use it in a query.
    For example, "SELECT TEMPERATURE FROM TABLE WHERE DATE = " + DateFromClient + ""
    My client is a Windows 8 c# App.
    Cheers!

    Hi RayD_250592,
    Since the issue is more related to Azure Mobile Services, for quick and accurate answer, I recommend you post the question in the Azure Mobile Services forum at
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=azuremobile .
    Besides, you can also check the following articles about Azure Mobile Services.
    Custom Parameters in Azure Mobile Services
    http://blog.amitapple.com/post/30921523746/customparametersinmobileservices/#.VOKzGP4fqM8
    Custom API in Azure Mobile Services – Client SDKs
    http://blogs.msdn.com/b/carlosfigueira/archive/2013/06/19/custom-api-in-azure-mobile-services-client-sdks.aspx
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

Maybe you are looking for

  • Find Current Inbox Of Workflows

    A user has a report of workflows that are past due. I have been provided the Work Item ID, as well as the Object Key. How can I go about finding whose inbox these workflows are currently in? Thanks - points will be rewarded.

  • Getting my 8330 to have an Enterprise Activation

    I just got a 8330 from Sprint.  We have a small office and our own Microsoft Exchange Server.  I got the BlackBerry Professional server download form BlackBerry and our outside tech installed it successfully and gave me my address and password.  I ha

  • Getting error message when running a script to make an .doc attachment open

    This script: var cPath = "|" + this.path + "|U:\uFEFF" + this.dataObjects[1].name; app.openDoc(cPath); Open PDFs fine but when I try to open a docx document I get an error message: NotAllowedError: Security Settings prevent access to this property or

  • Problems installing Grid Control on sparc 5.8

    problems installing Grid Control on sparc 5.8......After entering the parent directory and clicking next, the "preparing to install, Please wait, this will take a moment" screen comes up. It seems like this goes into an infinite loop. Any ideas?

  • White and purple screen

    I have bought a new MacBook and sometimes (once a week...) it stops working, the screen is completely purple or white and all I can do is turn it off by long pressing of the button. I have no idea what is this caused by, every time I am doing somethi