Problem sending notification message to Android and iOS devices with azure messaging dll

We are a Bizspark customer andfor the past two days we are facing problem in Azure Notification Hub. We were trying to
send push notifications to Android devices registered in "seexxxxxxwams" - An Azure Mobile Service in our account and no
registered android devices are receiving the notifications. When we tried to debug it via Notification Hub in Azure Portal  (seexxxxxxwamshub
- Notification hub in our account), the results are showing that the notifications are sent to the devices. However, the devices
are not receiving the notifications which was receiving before.  
Kindly let us know whether we are missing something in our code (Please find the code below) or is there any problem in Azure Notification
Hub (for Android GCM). 
Thanks.
using System.Text;
using Android.App;
using Android.Content;
using Android.Util;
using Gcm.Client;
using Android.Support.V4.App;
//VERY VERY VERY IMPORTANT NOTE!!!!
// Your package name MUST NOT start with an uppercase letter.
// Android does not allow permissions to start with an upper case letter
// If it does you will get a very cryptic error in logcat and it will not be obvious why you are crying!
// So please, for the love of all that is kind on this earth, use a LOWERCASE first letter in your Package Name!!!!
using ByteSmith.WindowsAzure.Messaging;
using System.Diagnostics;
using System.Collections.Generic;
using System;
[assembly: Permission(Name = "@[email protected]_MESSAGE")]
[assembly: UsesPermission(Name = "@[email protected]_MESSAGE")]
[assembly: UsesPermission(Name = "com.google.android.c2dm.permission.RECEIVE")]
//GET_ACCOUNTS is only needed for android versions 4.0.3 and below
[assembly: UsesPermission(Name = "android.permission.GET_ACCOUNTS")]
[assembly: UsesPermission(Name = "android.permission.INTERNET")]
[assembly: UsesPermission(Name = "android.permission.WAKE_LOCK")]
namespace seeMuscatAndroidApp
//You must subclass this!
[BroadcastReceiver(Permission= Gcm.Client.Constants.PERMISSION_GCM_INTENTS)]
[IntentFilter(new string[] { Gcm.Client.Constants.INTENT_FROM_GCM_MESSAGE }, Categories = new string[] { "@PACKAGE_NAME@" })]
[IntentFilter(new string[] { Gcm.Client.Constants.INTENT_FROM_GCM_REGISTRATION_CALLBACK }, Categories = new string[] { "@PACKAGE_NAME@"
[IntentFilter(new string[] { Gcm.Client.Constants.INTENT_FROM_GCM_LIBRARY_RETRY }, Categories = new string[] { "@PACKAGE_NAME@"
public class PushHandlerBroadcastReceiver : GcmBroadcastReceiverBase<GcmService>
//IMPORTANT: Change this to your own Sender ID!
//The SENDER_ID is your Google API Console App Project ID.
//  Be sure to get the right Project ID from your Google APIs Console.  It's not the named project ID that appears in the Overview,
//  but instead the numeric project id in the url: 
//  where 785671162406 is the project id, which is the SENDER_ID to use!
public static string[] SENDER_IDS = new string[] { Constants.SenderID };
public const string TAG = "GoogleCloudMessaging";
[Service] //Must use the service tag
public class GcmService : GcmServiceBase
public static string RegistrationID { get; private set; }
private NotificationHub Hub { get; set; }
        Context _generalContext;
public GcmService() : base(PushHandlerBroadcastReceiver.SENDER_IDS) 
Log.Info(PushHandlerBroadcastReceiver.TAG, "GcmService() constructor"); 
protected override async void OnRegistered (Context context, string registrationId)
Log.Verbose(PushHandlerBroadcastReceiver.TAG, "GCM Registered: " + registrationId);
RegistrationID = registrationId;
            _generalContext = context;
//createNotification("GcmService Registered...", "The device has been Registered, Tap to View!");
Hub = new NotificationHub(Constants.NotificationHubPath, Constants.ConnectionString);
try
await Hub.UnregisterAllAsync(registrationId);
catch (Exception ex)
Debug.WriteLine(ex.Message);
Debugger.Break();
            var tags = new List<string>() { main.userCountry, main.userCity, main.userLatitude, main.userLongitude, main.userPhoneMake,
main.userPhoneModel, main.userPhoneName, main.userPhoneAndroidVersion, main.userAppVersion,main.userUID};
            Console.WriteLine("///////////HUB TAGS///////////////////");
            Console.WriteLine("Country:" + main.userCountry);
            Console.WriteLine("City:" + main.userCity);
            Console.WriteLine("Latitude:" + main.userLatitude);
            Console.WriteLine("Longitude:"+main.userLongitude);
            Console.WriteLine("Make:" + main.userPhoneMake);
            Console.WriteLine("Model:" + main.userPhoneModel);
            Console.WriteLine("Phone Name:" + main.userPhoneName);
            Console.WriteLine("Android Version:" + main.userPhoneAndroidVersion);
            Console.WriteLine("App version:" + main.userAppVersion);
            Console.WriteLine("User ID:" + main.userUID);
            Console.WriteLine("///////////END OF HUB TAGS///////////////////");
try
var hubRegistration = await Hub.RegisterNativeAsync(registrationId, tags);                
Debug.WriteLine("RegistrationId:" + hubRegistration.RegistrationId);
catch (Exception ex)
Debug.WriteLine("#########$$$$Error:"+ex.Message); 
protected override void OnUnRegistered (Context context, string registrationId)
Log.Verbose(PushHandlerBroadcastReceiver.TAG, "GCM Unregistered: " + registrationId);
protected override void OnMessage (Context context, Intent intent)
Log.Info(PushHandlerBroadcastReceiver.TAG, "GCM Message Received!");
            Debug.WriteLine("/********* GCM Received ****************");
var msg = new StringBuilder();
if (intent != null && intent.Extras != null)
foreach (var key in intent.Extras.KeySet())
msg.AppendLine(key + "=" + intent.Extras.Get(key).ToString());
//Store the message
var prefs = GetSharedPreferences(context.PackageName, FileCreationMode.Private);
var edit = prefs.Edit();
edit.PutString("last_msg", msg.ToString());
edit.Commit();
string message = intent.Extras.GetString("message");
if (!string.IsNullOrEmpty(message))
createNotification("New todo item!", "Todo item: " + message);
return;
string msg2 = intent.Extras.GetString("msg");
            string notititle = intent.Extras.GetString("notititle");
if (!string.IsNullOrEmpty(msg2))
createNotification(notititle, msg2);
return;
protected override bool OnRecoverableError (Context context, string errorId)
Log.Warn(PushHandlerBroadcastReceiver.TAG, "Recoverable Error: " + errorId);
return base.OnRecoverableError (context, errorId);
protected override void OnError (Context context, string errorId)
Log.Error(PushHandlerBroadcastReceiver.TAG, "GCM Error: " + errorId);
void createNotification(string title, string desc)
            NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
            Intent uiIntent = new Intent();
            uiIntent.SetClass(this, typeof(dealsview));
            uiIntent.PutExtra("contentID", "todaydeals");
            uiIntent.PutExtra("contentName", "");
            uiIntent.PutExtra("isSale", "");
            const int pendingIntentId = 0;
            PendingIntent pendingIntent = PendingIntent.GetActivity(this, pendingIntentId, uiIntent, PendingIntentFlags.OneShot);
            var notification = builder.SetContentIntent(pendingIntent).SetSmallIcon(Resource.Drawable.Icon).SetAutoCancel(true).SetContentTitle(title).SetContentText(desc).Build();
            var notificationManager = GetSystemService(Context.NotificationService) as NotificationManager;
            notificationManager.Notify(1, notification);

Hi Anpe83,
TL;DR: The answer: Currently, no.
As we speak, there is RMS Sharing app for all mobile platforms you mentioned. RMS Sharing App lets you open any file type that is a .pfile (generic file created by RMS Sharing App on your PC). But this is not a granular protection and policy enforcement
- you can think about this way of protecting as a .zip file that has been password protected. So once you "unzip" the pfile with RMS Sharing App - you can do whatever you want (open in a native mobile app, forward, edit, copy, delete, etc) with that file. 
Now, RMS Sharing App lets you protect pictures only on your mobile devices which I assume you will not be a feature used very often.
On the other hand Microsoft has published Office suite (Word, Excel, etc) for iOS devices (iPhone and iPad).
Currently (this is the key word here) those are NOT RMS enlighted yet, so f.e. no word document that is RMS protected can be opened with your Office suite for iOs. I also know that Microsoft is preparing an update for iOS devices in the nereast
future to make Office suites (including OWA app) RMS-aware.
PS. For the current time being there are some third parties that extend RMS capabilities to your mobile device platforms. You can also wait few months (unfortunately cannot promise that) for RMS enlighted Microsoft apps for iOS devices.
PS2. If you haven't heard you can also set RMS Sharing App to work withi your ADRMS which is onprem (not only with RMS in the cloud). For those you need some cool toys: Windows 2012 R2, ADFS 3.0 and RMS Mobile Device Extension.
Hope this answers your question.
Did my post help you or make you laugh? Don't forget to click the Helpful vote :) If I answered your question please mark my post as an Answer.

Similar Messages

  • Videos recorded in mp4 format throught AMS(development version) not playing on android and Ios device.

    I am using adobe ams(development version) to record video files in mp4 format using rtmp protocol. I am using mp4 as the file extension and as the stream specifier(codec).The videos are saving correctly.When i copy these files on a mobile device(android and iOS) they are not playing.Can somebody tell what I am doing wrong.
    The rtmp url I am using is rtmp://localhost:1935/mp4:videoname.mp4

    Dropbox - defaultcodec.mp4
    Dropbox - h264codec.mp4
    These are the two files that I created .The first file is created by the default codec used by Flash player.
    The second file(h264codec.mp4) is created by using Flash player 11 and as3 . I have encoded the file using h.264/AAC.
    The tutorial followed for creating the second encoded file is Encoding live video to H.264/AVC with Flash Player 11 | Adobe Developer Connection
    Thanks in advance . These two files stream successfully in the web application using flash player and as3 .I can play both of them in VLC too. But these files wont play on any mobile device(both android and iOS).
    Please send me your feedback on this . In the meanwhile I will look into http streaming. 
    Any help is greatly appreciated. 

  • Android and iOS xml

    Hi,
    I have my xml file for my android and iOS device. I am fine with what needs to be in the iOS bits but I am new to Android.
    I know permissions are needed, but is there anything else that is a must? Any pitfalls that I may slip into?
    I have these icon sizes too:
    <image36x36>testAppIcon36.png</image36x36>
    <image48x48>testAppIcon48.png</image48x48>
    <image72x72>testAppIcon72.png</image72x72>

    http://help.adobe.com/en_US/air/build/WSfffb011ac560372f-5d0f4f25128cc9cd0cb-7ffc.html

  • I have an old Mac G5 with OSX 10.5.8  After a crash of my HD, I reinstalled the CS3. At the time of recording I get a window with the message "COMPLETED REGISTRATION" and under "There was a problem sending the informasioni via internet" and still under th

    I have an old Mac G5 with OSX 10.5.8
    After a crash of my HD, I reinstalled the CS3.
    At the time of recording I get a window with the message "COMPLETED REGISTRATION" and under "There was a problem sending the informasioni via internet" and still under three choices to "send back" and "records in a second time "or" never record "and I continue to choose the latter option.
    Another problem is that in Bridge (version 2.0.0.975) I can no longer see thumbnails of RAW files from my Canon 40D that I saw before.
    Should I upgrade ACR? which is the latest version supported on my Mac?
    thank you

    Sergio Bellotto if you keep receiving the registration screen then please try accepting the screen in a different User account.

  • Can't use Glympse the way android and ios can use

    I'm on Z10STL100-1/10.2.1.1925 bbm 10.3.3.68. Can't send my location the way android and ios can. When an android or ios user sends me glimpse message I can open it in bbm. But when I send a Glympse message to android or ios then they get a link to glympse.com. Please help.

    I bounced a BBM off an iOS contact of mine and it asked if he wanted to follow my location on a map. As far as I can remember, my wife (who has a Z10) had to also click on that message to make my location viewable on a map. I don't see any difference between the two. With neither one are you able to instantly see the sender's location without clicking to open a map.
    I'm only going by memory with my wife's Z10 so I might be missing something but I think it works similarly with all platforms.
    Cheers.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Anyone have a problem sending text messages being delivered after few minutes up to five minutes?

    Has anyone have a problem sending text messages and the messages won't get delivered after few minutes? From time to time I would have this problem and it's annoying.  I would expect someone to receive it by then and response to my text right away.  But when I look up the text it hasn't been delivered and it's in the process.  I would hear that the message get delivered after few minutes? What gives? I never had a problem with my iphone 4 i think? Now with iOS 5 it let's me know whether it is delivered or not.  This new feature is awesome but disappointing when I know my text hasn't been delivered right away.  I'm not sure if it's the software or my iphone 4s or my carrier? anyone suggestions?  Thanks!!

    I have the same problem when sending iMessages.. Wasnt sure if it was apple or Sprint? But it happens VERY often and I end up having to send it as a text message instead

  • URGENT porting to Android and iOS?

    I am developing a Flash game and the deadline is by the end of this month.
    The game will need to be run on Android and iOS.
    I tried AIR, but it runs slowly due to there being frame-by-frame bitmap animations.
    Is there a good optimisation method for AIR, or should I use an API?
    Can you recommend a good API?
    How about Sparrow?
    I need an API which I will be able to implement fast, because as I mentioned the deadline is in 9 and a half days.

    the only quick magic is to make sure you've enabled cacheAsBitmap and cacheAsBitmapMatrix everywhere it's beneficial and to try using gpu and cpu render modes.
    otherwise, here's an excerpt from a book i wrote (Flash Game Development: In a Social, Mobile and 3D World)
    Optimization Techniques
    Unfortunately, I know of no completely satisfactory way to organize this information. In what follows, I discuss memory management first with sub-topics listed in alphabetical order. Then I discuss CPU/GPU management with sub-topics listed in alphabetical order.
    That may seem logical but there are, at least, two problems with that organization.
    I do not believe it is the most helpful way to organize this information.
    Memory management affects CPU/GPU usage, so everything in the Memory Management section could also be listed in the CPU/GPU section.
    Anyway, I am going to also list the information two other ways, from easiest to hardest to implement and from greatest to least benefit.
    Both of those later listings are subjective and are dependent on developer experience and capabilities, as well as, the test situation and test environment. I very much doubt there would be a consensus on ordering of these lists.  Nevertheless, I think they still are worthwhile.
    Easiest to Hardest to Implement
    Do not use Filters.
    Always use reverse for-loops and avoid do-loops and avoid while-loops.
    Explicitly stop Timers to ready them for gc (garbage collection).
    Use weak event listeners and remove listeners.
    Strictly type variables whenever possible.
    Explicitly disable mouse interactivity when mouse interactivity not needed.
    Replace dispatchEvents with callback functions whenever possible.
    Stop Sounds to enable Sounds and SoundChannels to be gc'd.
    Use the most basic DisplayObject needed.
    Always use cacheAsBitmap and cacheAsBitmapMatrix with air apps (i.e., mobile devices).
    Reuse Objects whenever possible.
    Event.ENTER_FRAME loops: Use different listeners and different listener functions applied to as few DisplayObjects as possible.
    Pool Objects instead of creating and gc'ing Objects.
    Use partial blitting.
    Use stage blitting.
    Use Stage3D.
    Greatest to Least Benefit
    Use stage blitting (if there is enough system memory).
    Use Stage3D.
    Use partial blitting.
    Use cacheAsBitmap and cacheAsBitmapMatrix with mobile devices.
    Explicitly disable mouse interactivity when mouse interactivity not needed.
    Do not use Filters.
    Use the most basic DisplayObject needed.
    Reuse Objects whenever possible.
    Event.ENTER_FRAME loops: Use different listeners and different listener functions applied to as few DisplayObjects as possible.
    Use reverse for-loops and avoid do-loops and while-loops.
    Pool Objects instead of creating and gc'ing Objects.
    Strictly type variables whenever possible.
    Use weak event listeners and remove listeners.
    Replace dispatchEvents with callback functions whenever possible.
    Explicitly stop Timers to ready for gc.
    Stop Sounds to enable Sounds and SoundChannels to be gc'd.

  • Website to stream to RTMP and HTTP using Android and iOS

    Hello, my name is Silvio Tavares, I'm from Brazil and the company where they work bought the Adobe Flash Media Server 5 to make the transmission of the station for the Website as well as for Android and iOS.
    I followed your tutorial step by step and nothing more than 20x ( http://www.youtube.com/watch?v=1p27xavIWQA ) .... When I try to run the transmission in Sample Video Player he simply says I'm having a problem with my playback.
    Is there anything else to be done?
    Please know it must be very busy, but my job depends on it working here.
    I am using Windows Server 2012.
    In this tutorial does not say you have to configure any file, only the conf.xml Adone Media Live Encoder.
    Please help me!

    Hello, my name is Silvio Tavares, I'm from Brazil and the company where they work bought the Adobe Flash Media Server 5 to make the transmission of the station for the Website as well as for Android and iOS.
    I followed your tutorial step by step and nothing more than 20x ( http://www.youtube.com/watch?v=1p27xavIWQA ) .... When I try to run the transmission in Sample Video Player he simply says I'm having a problem with my playback.
    Is there anything else to be done?
    Please know it must be very busy, but my job depends on it working here.
    I am using Windows Server 2012.
    In this tutorial does not say you have to configure any file, only the conf.xml Adone Media Live Encoder.
    Please help me!

  • Push Notyfication in Android and iOS

    Is there any way to write a AIR mobile app (Android and iOS)
    and push notyfications  from external source to aplication when the application is  not running?
    Is it only possible with native extensions for AIR? Can native extension been add in FlashBuilder?

    Push notifications support for iOS has been added in AIR and will be available soon in prerelease. You can learn more about the next AIR mobile and desktop features by applying for our private prerelease program. By doing so, you'll get to know the features of the upcoming release in advance!

  • Having problems sending text messages since I updated

    Having problems sending text messages since updating. And have to login every time I go to text message

    troubleshooting message http://support.apple.com/kb/ts2755
    Do you have MMS turn on in Settings?
    Are you provisioned by your carrier to use MMS?
    Lastly, give your phone carrier a call, as MMS is a carrier feature.

  • Illustrator app for mobile (Android and iOS)

    Would you like an Android (iOS) Illustartor App?
    I wish:
    That there was an Android (and iOS) app of illustrator so I could work on Layouts for Websites on the go, like while I'm riding the train for 1 hour to go to work.
    There is an app which I tried (Autodesk Sketch Pro) but it's no good enough it is focusing too much on freehand drawing and it's layer based. You can't move a shape itself, you have to move the whole layer.
    What I need:
    I need an app for my Android phone and tablet which enables me to make layouts of websites which after I will send to my designer and developer. The thing is, I need to send good layout sketches to my designer.  With that the whole process would be more efficient.
    I'm not a good at freehand drawing thats why I would like to work with all the standard vector shapes, snap to grid, different kinds of splines and the possibility to add open fonts.
    What Adobe (Illustrator) should do:
    I think the way you should do this mobile app is:
    1. Check Autodesk Sketch pro (what can you to better than them)
    2. Make a great vector app
    3. Include a function that is useful to a lot of people to get more potential customers. (include: a nice drawing function, the ability to make nice flowcharts and/or infographics)
    4. Sell it to a fair price 8-12$
    I hope I didn’t forget anything if I did please let me know in the comments below Thank you.
    Twitter: RandomDomain.ch (randomdomainch) | Twitter  #Illustartor4mobile

    Am still waiting. Anyone out there who got new info on this?
    I am also wondering if it will be part of the creative cloud I already pay for on a monthly basis.

  • Build AS3 AIR project on Linux for Android and iOS?

    We're about to use a build server for taking some work out of our hands (testing, building etc). The build server is running on Linux and therefore we would like to know if we can build the AS3 (AIR) sourcecode on the Linux environment. We usely create apps for Android and iOS.
    Can anyone give some more information on this? Is it true that the ADT doesn't run on Linux?

    FYI, I updated my blog post.  I found a program called ideviceinstaller (available in the Ubuntu repos ala apt-get install ideviceinstaller or from the website) that allows installation of .ipa files onto iOS devices from Linux.
    Previously that was the only development iteration step that required a Windows VM.  Now in my workflow, a VM is no longer required for iOS development.  (Obviously a Mac is still required to upload to the app store at the end.)
    Also, a bonus, here's a quick command to view UUID's authorized by the provisioning file inside an .ipa file:
    > unzip -c Main.ipa *.mobileprovision | strings | egrep -i string\>[0-9a-f]\{40\}
    <string>d9c2fee807324a18baf5a544ffa2c80f23d3****</string>
    <string>f634a0a95bc2327f6a26cb39cf18a01918cf****</string>
    <string>651e4284467d328e37c18988c981179b5909****</string>
    <string>c11d7eef800632d072da067d9b993624f25b****</string>
    <string>72d85ab26cd525a328d3a71e3fe416c61fd6****</string>

  • Native Android and iOS Look & Feel with Flex

    Hi. I have recently beena asked to research the use of Flex for development for mobile applications in Android and iOS. What I want to accomplish is the feeling of a native application, both look and feel. Android and iOS are very different in terms of styling components.
    Can this be even be done in Flex?
    Are my goals too high too achieve with Flex?
    Screen shots from Flex, Android, and iOS are below.
    Differences:
    Item
    Android
    iOS
    Tabs Location
    Top
    Bottom
    Top Left Button
    'Up'
    'Back'
    Top Left Button Icon
    Application Icon
    None
    Top Right Button
    Multiple
    Single
    List Item Right Carrot
    No
    Yes
    Adobe Flex Example:
    Native Android Example (Pure Android):
    Native iOS Example:

    This is definitely possible, even easy if you jsut have the time to put into it.
    All you need is an Android Theme - create custom styles for the buttons ect.
    There is a discussion about it here:
    https://issues.apache.org/jira/browse/FLEX-33732
    And it is an open issue so at some point this will probably get incorporated into the SDK.

  • Captivate 7, PhoneGap Builder on Android and iOS tablets

    Hello all,
    I apologize if some of these questions are basic but searching the forums and online aren't turning up any answers I can discern. My company has decided to move into the mobile market for our E-Learning content, more specifically we want our customers to be able to use our content on tablet devices. I'm creating content with Adobe Captivate 7 using HTML5 animations. I have been able to publish my project as HTML5 and then use the PhoneGap Build tool to add the HTML5 animations to the project. However, I have no experience in app development and I'm running into a roadblock when trying to publish as Android and iOS compatible apps. I'm able to add the .wgz file to the android tablet but I have no idea how to run it or make it work. We just want our projects to play on Android and iOS tablets. My questions are thus:
    - Is publishing our modules in App form the only way to accomplish this?
    - When trying to publish to Android/iOS I am asked for a "Package". What does this mean? I've watched the following tutorial: Package the HTML5 content for devices using Adobe Captivate 7 App Packager - YouTube but it doesn't go into detail as to what he package is.
    - From what I understand Android and iOS apps need certificates and signatures. Are these required for our members to be able to download our modules and run them on their tablets? Can someone direct me to a source for me to learn about and apply for these credentials?
    Any help you can provide would be greatly appreciated. Thank you!
    - Nick

    Just to clear up my third question, I'm not asking whether our customers will need a set of these credentials to access our content, I'm asking if its required I get these credentials to publish the content.

  • Incident Management System for Mobile Phone (Android and IOS)

    Dear Solman Gurus,
    We have already Incident Management System in our Solman 7.1 .
    We are using it efficiently, but we want to use it in mobile phones also(android and ios).
    Also we have a web link and we can manage our incident management system in this link http://xxsolman.xxxxxxxx.com:8006/support . We are using for WEB also for Incident Management System.
    My question is ; how can i use it for Mobile Phone Operation systems(android and ios) ? Which guide should i follow ? Should i upgrade pacth or something in our solman ?
    Looks like Android application is : SAP IT Incident Management
    Best Regars

    Hi Kemal,
    You need to adopt the Mobile strategy for ITSM to use this. Broadly speaking, the ITSM apps can be accessible either via internet or intranet. If you plan to use the apps outside your company network then you would need Sybase tools to enable this as shown below;
    The detailed information is available here
    Mobile Applications for SAP IT Service Management - SAP IT Service Management on SAP Solution Manager - SCN Wiki
    Regards,
    Vivek

Maybe you are looking for

  • After iOS 8 Upgrade Icon on Settings still there...

    after the iOS update 8 on my iPad Air, an indicator icon is on the settings. Even a configuration as a new iPad and restoring from the backup has not helped

  • HT1152 my macbook pro is spitting dvds back out when I put them in. Any ideas?

    Also, I now have another problem. There is an admin password on the computer but since I use that account all the time I do not set it to require the password. Now it wants the password to move anything on the internal drive to the trash. Also, when

  • Credit Card is Declined

    I've been having a problem for the past few days. Every time I try to make a purchase, my credit card is declined. I have used this credit card for purchases for years. I spoke to my bank and there is no reason for the card to be declined. I have tri

  • Taskflow Issue.

    Use Case I have a search page for searching Employees. This is a taskflow(employee-search.xml). I have edit/create link on the search page which calls another task flow (employee-edit.xml) for the edit/create of employee record. The employee edit tas

  • ICW -Contract Follow On - List Price

    Hi All, I am new to CRM and Interaction Center Webclient and there is a requirement to provide a link to the list price value in product details in 'contract follow on', if the list price is "0.00" Currently the link appears for the list price only i