There's no notification for my applications on my iphone

I had problems with my iphone which is i wont get any notifications ex: facebook , twitter , instagram , whatsapp for my iphone.

You must have turned off all the notifications. Go to Settings -> Notifications and select the application you don't get notifications.
Make sure that Notification Center is ON, Alert Style according to your preference and Turn on View in Lock Screen.
If you still not getting notifications, then try resetting network settings by going to Settings -> General -> Reset -> Reset Network Settings.
Similarly do the same for "Reset All Settings"
Now check whether you get the notifications.
Let me know if this works!

Similar Messages

  • There are no notifications for your produce

    Hi
    I have now  Lap VIEW 2013 and I tried to dowload LabVIEW Control Design and Simulation Module after following the process a message shows that "There are no notifications for your products". Even if I have closed window firewall and setted the files enables to install in my computer. I still was able to get this function in my labview.
    Do you guys have this experience and solution?
    Thanks a lot

    Tullip wrote:
    Hi
    I have now  Lap VIEW 2013 and I tried to dowload LabVIEW Control Design and Simulation Module after following the process a message shows that "There are no notifications for your products". Even if I have closed window firewall and setted the files enables to install in my computer. I still was able to get this function in my labview.
    Do you guys have this experience and solution?
    Thanks a lot
    Hi, your wording isn't quite clear to me.  Does everything actually work?  The "No notifications..." message is simply telling you that your stuff is up to date. 
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • HT1414 there is no "check for UPDATE"  or "restore ur iphone "  buttons on main screen of itunes..

    hi
    i have iphone 4s runing on 7.0.4 ios
    i recently updated my windows to 8.1.
    earlier i used to use windos xp.
    as soon as i started windows 8.1,  there is no "check for UPDATE"  or "restore ur iphone "  buttons on main screen of itunes..
    how shd i update or restore my iphone now..?
    is there any settings
    regards
    jayesh

    Windows doesn't detect iPhone: http://support.apple.com/kb/ts1538

  • There were no results for If i buy locked iphone 5s( verizon) from usa can i use it in india ..and when i buy this ph is this mandatory that i have to choose the carrier plan....and one more qs after unlocking still the warenty is valid..plzz tell me offi

    There were no results for If i buy locked iphone 5s( verizon) from usa can i use it in india ..and when i buy this ph is this mandatory that i have to choose the carrier plan....and one more qs after unlocking still the warenty is valid..plzz tell me officialy unlocking procidure in details...thank you..in advance...

    Your question has been answered.  Jailbreaking cannot be discussed here.  If you buy a phone locked to a carrier, it would be down to them to unlock it, and that's very unlikely if you've only just got the phone.  Locked phones are "cheap" for a reason - you're signing up for a contract and that subsidises the cost of the phone.

  • Is there a chat client for the iPod Touch or iPhone yet?

    Is there a chat client for the iPod Touch or iPhone yet? I already know about Meebo and JiveTalk which allow me to chat on all the major clients, Yahoo, MSN, and AOL. But how about a standalone app?
    Thanks,
    Jeff

    And so when are we talking about here? That one app and then I think this thing will be complete! Well I suppose we could use another food processor, garbage disposal, answering machine, music player, Swiss Army knife. But I'll be happy if I can just chat with friends!
    Thanks!
    Jeff

  • Use sql notification for console application C#

    I have developed ucma C# console application which sends IM  to users. 
    Now I want to send IM if any new entry is added in the table 
    So i want to use query notification .
    I have enabled service broker on my database .
    And I have added code for sqldepedency  in my code file.
    as follows.
    public static void Main(string[] args)
    UCMASampleInstantMessagingCall ucmaSampleInstantMessagingCall =
    new UCMASampleInstantMessagingCall();
    ucmaSampleInstantMessagingCall.connectionfunction();
    public void connectionfunction()
    string connectionString = @"Data Source=PIXEL-IHANNAH2\PPINSTANCE;User ID=sqlPPUser;Password=ppuser1;Initial Catalog=Ian;";
    SqlDependency.Stop(connectionString);
    SqlConnection sqlConnection = new SqlConnection(connectionString);
    string statement = "select * from dbo.tblTest";
    SqlCommand sqlCommand = new SqlCommand(statement, sqlConnection);
    // Create and bind the SqlDependency object to the command object.
    SqlDependency dependency = new SqlDependency(sqlCommand, null, 0);
    SqlDependency.Start(connectionString);
    dependency.OnChange += new OnChangeEventHandler(dependency_OnChange);
    private void dependency_OnChange(object sender, SqlNotificationEventArgs e)
    ucmaSampleInstantMessagingCall.run()
    private void Run() { // Initialize and startup the platform. Exception ex = null; try { // Create the UserEndpoint _helper = new UCMASampleHelper(); _userendpoint = _helper.CreateEstablishedUserEndpoint();
    Now I want to run this application in the background , so f any new entry is added it will notify my C# application and call run function.
    i tried above code but it was not working.
    Sample code is avaliableon net but it is for form application and we can see output if we run the form application .
    so if i want to run my C# application what should I do?

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Configuration;
    using System.Security.Principal;
    using System.Security.Cryptography.X509Certificates;
    using System.Net;
    using System.Threading;
    using System.Diagnostics;
    using Microsoft.Rtc.Collaboration;
    using Microsoft.Rtc.Signaling;
    using System.Runtime.InteropServices;
    //using Microsoft.Rtc.Collaboration.Sample.Common;
    namespace UserPresence
    class UCMASampleInstantMessagingCall
    #region Locals
    // The information for the conversation and the far end participant.
    // Subject of the conversation; will appear in the center of the title bar of the
    // conversation window if Microsoft Lync is the far end client.
    private static String _conversationSubject = "The Microsoft Lync Server!";
    // Priority of the conversation will appear in the left corner of the title bar of the
    // conversation window if Microsoft Lync is the far end client.
    private static String _conversationPriority = ConversationPriority.Urgent;
    // The Instant Message that will be sent to the far end.
    private static String _messageToSend = "Hello World! I am a bot, and will echo whatever you type. " +
    "Please send 'bye' to end this application.";
    private InstantMessagingCall _instantMessaging;
    private InstantMessagingFlow _instantMessagingFlow;
    //private ApplicationEndpoint _applicationEndpoint;
    private UserEndpoint _userendpoint;
    private UCMASampleHelper _helper;
    private static SqlDependency dependency;
    private static string connectionString = @"Data Source=MyServer;Initial Catalog=MyDatabase;Integrated Security=SSPI";
    // Event to notify application main thread on completion of the sample.
    private AutoResetEvent _sampleCompletedEvent = new AutoResetEvent(false);
    #endregion
    #region Methods
    /// <summary>
    /// Instantiate and run the InstantMessagingCall quickstart.
    /// </summary>
    /// <param name="args">unused</param>
    //private string _helper;
    //UCMASampleHelper _helper = new UCMASampleHelper();
    public static void Main(string[] args)
    UCMASampleInstantMessagingCall ucmaSampleInstantMessagingCall =
    new UCMASampleInstantMessagingCall();
    var connection = new SqlConnection(connectionString);
    SqlDependency.Start(connectionString);
    SqlConnection connection = new SqlConnection(connectionString);
    connection.Open();
    SqlCommand command = new SqlCommand(
    "select col1 from dbo.tblTest",
    connection);
    // Create a dependency (class member) and associate it with the command.
    dependency = new SqlDependency(command, null, 5);
    // Subscribe to the SqlDependency event.
    dependency.OnChange += new OnChangeEventHandler(onDependencyChange);
    // start dependency listener
    SqlDependency.Start(connectionString);
    //ucmaSampleInstantMessagingCall.Run();
    private static void onDependencyChange(Object o, SqlNotificationEventArgs args)
    run();
    private void Run()
    // Initialize and startup the platform.
    Exception ex = null;
    try
    // Create the UserEndpoint
    _helper = new UCMASampleHelper();
    _userendpoint = _helper.CreateEstablishedUserEndpoint();
    Console.Write("The User Endpoint owned by URI: ");
    Console.Write(_userendpoint.OwnerUri);
    Console.WriteLine(" is now established and registered.");
    List<string> _Users = new List<string>();
    _Users.Add("sip:[email protected]");
    _Users.Add("sip:[email protected]");
    foreach (string useruri in _Users)
    // Setup the conversation and place the call.
    ConversationSettings convSettings = new ConversationSettings();
    convSettings.Priority = _conversationPriority;
    convSettings.Subject = _conversationSubject;
    // Conversation represents a collection of modes of communication
    // (media types)in the context of a dialog with one or multiple
    // callees.
    //Convers conver =new ConversationParticipant
    Conversation conversation = new Conversation(_userendpoint, convSettings);
    InstantMessagingCall _instantMessaging = new InstantMessagingCall(conversation);
    // Call: StateChanged: Only hooked up for logging. Generally,
    // this can be used to surface changes in Call state to the UI
    _instantMessaging.StateChanged += this.InstantMessagingCall_StateChanged;
    // Subscribe for the flow created event; the flow will be used to
    // send the media (here, IM).
    // Ultimately, as a part of the callback, the messages will be
    // sent/received.
    _instantMessaging.InstantMessagingFlowConfigurationRequested +=
    this.InstantMessagingCall_FlowConfigurationRequested;
    // Get the sip address of the far end user to communicate with.
    //String _calledParty = "sip:" +
    // UCMASampleHelper.PromptUser(
    // "Enter the URI of the user logged onto Microsoft Lync, in the User@Host format => ",
    // "RemoteUserURI");
    // Place the call to the remote party, without specifying any
    // custom options. Please note that the conversation subject
    // overrides the toast message, so if you want to see the toast
    // message, please set the conversation subject to null.
    // _instantMessaging.Conversation()
    _instantMessaging.BeginEstablish(useruri, new ToastMessage("Hello Toast"), null,
    CallEstablishCompleted, _instantMessaging);
    catch (InvalidOperationException iOpEx)
    // Invalid Operation Exception may be thrown if the data provided
    // to the BeginXXX methods was invalid/malformed.
    // TODO (Left to the reader): Write actual handling code here.
    ex = iOpEx;
    finally
    if (ex != null)
    // If the action threw an exception, terminate the sample,
    // and print the exception to the console.
    // TODO (Left to the reader): Write actual handling code here.
    Console.WriteLine(ex.ToString());
    Console.WriteLine("Shutting down platform due to error");
    _helper.ShutdownPlatform();
    // Wait for sample to complete
    _sampleCompletedEvent.WaitOne();
    // Just to record the state transitions in the console.
    void InstantMessagingCall_StateChanged(object sender, CallStateChangedEventArgs e)
    Console.WriteLine("Call has changed state. The previous call state was: " + e.PreviousState +
    "and the current state is: " + e.State);
    // Flow created indicates that there is a flow present to begin media
    // operations with, and that it is no longer null.
    public void InstantMessagingCall_FlowConfigurationRequested(object sender,
    InstantMessagingFlowConfigurationRequestedEventArgs e)
    Console.WriteLine("Flow Created.");
    _instantMessagingFlow = e.Flow;
    // Now that the flow is non-null, bind the event handlers for State
    // Changed and Message Received. When the flow goes active,
    // (as indicated by the state changed event) the program will send
    // the IM in the event handler.
    _instantMessagingFlow.StateChanged += this.InstantMessagingFlow_StateChanged;
    // Message Received is the event used to indicate that a message has
    // been received from the far end.
    _instantMessagingFlow.MessageReceived += this.InstantMessagingFlow_MessageReceived;
    // Also, here is a good place to bind to the
    // InstantMessagingFlow.RemoteComposingStateChanged event to receive
    // typing notifications of the far end user.
    _instantMessagingFlow.RemoteComposingStateChanged +=
    this.InstantMessagingFlow_RemoteComposingStateChanged;
    private void InstantMessagingFlow_StateChanged(object sender, MediaFlowStateChangedEventArgs e)
    Console.WriteLine("Flow state changed from " + e.PreviousState + " to " + e.State);
    // When flow is active, media operations (here, sending an IM)
    // may begin.
    if (e.State == MediaFlowState.Active)
    // Send the message on the InstantMessagingFlow.
    _instantMessagingFlow.BeginSendInstantMessage(_messageToSend, SendMessageCompleted,
    _instantMessagingFlow);
    private void InstantMessagingFlow_RemoteComposingStateChanged(object sender,
    ComposingStateChangedEventArgs e)
    // Prints the typing notifications of the far end user.
    Console.WriteLine("Participant "
    + e.Participant.Uri.ToString()
    + " is "
    + e.ComposingState.ToString()
    private void InstantMessagingFlow_MessageReceived(object sender, InstantMessageReceivedEventArgs e)
    // On an incoming Instant Message, print the contents to the console.
    Console.WriteLine(e.Sender.Uri + " said: " + e.TextBody);
    // Shutdown if the far end tells us to.
    if (e.TextBody.Equals("bye", StringComparison.OrdinalIgnoreCase))
    // Shutting down the platform will terminate all attached objects.
    // If this was a production application, it would tear down the
    // Call/Conversation, rather than terminating the entire platform.
    _instantMessagingFlow.BeginSendInstantMessage("Shutting Down...", SendMessageCompleted,
    _instantMessagingFlow);
    _helper.ShutdownPlatform();
    _sampleCompletedEvent.Set();
    else
    // Echo the instant message back to the far end (the sender of
    // the instant message).
    // Change the composing state of the local end user while sending messages to the far end.
    // A delay is introduced purposely to demonstrate the typing notification displayed by the
    // far end client; otherwise the notification will not last long enough to notice.
    _instantMessagingFlow.LocalComposingState = ComposingState.Composing;
    Thread.Sleep(2000);
    //Echo the message with an "Echo" prefix.
    _instantMessagingFlow.BeginSendInstantMessage("Echo: " + e.TextBody, SendMessageCompleted,
    _instantMessagingFlow);
    private void CallEstablishCompleted(IAsyncResult result)
    InstantMessagingCall instantMessagingCall = result.AsyncState as InstantMessagingCall;
    Exception ex = null;
    try
    instantMessagingCall.EndEstablish(result);
    Console.WriteLine("The call is now in the established state.");
    catch (OperationFailureException opFailEx)
    // OperationFailureException: Indicates failure to connect the
    // call to the remote party.
    // TODO (Left to the reader): Write real error handling code.
    ex = opFailEx;
    catch (RealTimeException rte)
    // Other errors may cause other RealTimeExceptions to be thrown.
    // TODO (Left to the reader): Write real error handling code.
    ex = rte;
    finally
    if (ex != null)
    // If the action threw an exception, terminate the sample,
    // and print the exception to the console.
    // TODO (Left to the reader): Write real error handling code.
    Console.WriteLine(ex.ToString());
    Console.WriteLine("Shutting down platform due to error");
    _helper.ShutdownPlatform();
    private void SendMessageCompleted(IAsyncResult result)
    InstantMessagingFlow instantMessagingFlow = result.AsyncState as InstantMessagingFlow;
    Exception ex = null;
    try
    instantMessagingFlow.EndSendInstantMessage(result);
    Console.WriteLine("The message has been sent.");
    catch (OperationTimeoutException opTimeEx)
    // OperationFailureException: Indicates failure to connect the
    // IM to the remote party due to timeout (called party failed to
    // respond within the expected time).
    // TODO (Left to the reader): Write real error handling code.
    ex = opTimeEx;
    catch (RealTimeException rte)
    // Other errors may cause other RealTimeExceptions to be thrown.
    // TODO (Left to the reader): Write real error handling code.
    ex = rte;
    finally
    // Reset the composing state of the local end user so that the typing notifcation as seen
    // by the far end client disappears.
    _instantMessagingFlow.LocalComposingState = ComposingState.Idle;
    if (ex != null)
    // If the action threw an exception, terminate the sample,
    // and print the exception to the console.
    // TODO (Left to the reader): Write real error handling code.
    Console.WriteLine(ex.ToString());
    Console.WriteLine("Shutting down platform due to error");
    _helper.ShutdownPlatform();
    #endregion
    So i want to call run method when new entry is added in the database . and this application is not like any asp.net form application . In form application we display data when programs loads as like your RefreshDataWithSqlDependency
    function . But in my application my application will run (send IM) when any new entry is added in the database . As I need running application to achieve notification , what kind of changes are required?

  • Issue in Oracle 11g Database Change Notification  for Java application

    Hi,
    I am trying to use Oracle's Database Change Notification in Java application.
    I followed the sample application (+DBChangeNotification.java+ , Example 29-2), provided in the following link:
    +[http://download.oracle.com/docs/cd/B28359_01/java.111/b31224/dbmgmnt.htm#CHDEJECF]+
    I am able to see that the Registration of the SQL query is successful.
    But, when I do changes to the table registered, notifications are not received in the Listener class (+DCNDemoListener.java+).
    Ideally, the method DCNDemoListener.onDatabaseChangeNotification() should be invoked on any insert/update to the registered table. But this method is not getting invoked.
    The execution has stopped in the following line of DBChangeNotification.java Class.
    this.wait();
    +==> The application was WAITing indefinitely in this line, as the NOTIFY() from DCNDemoListener.java was not executed.+
    I am using VPN to connect to Oracel server. Remote Oracle Server is protected my firewall. Is this the reason for not sending the notifications from Oracle server?
    The version of software used are given below:
    Oracle Client - Oracle 11.1.0
    JDK - 1.6
    Oracle JDBC Driver - ojdbc6.jar
    Can someone help me to resolve this issue?
    Thanks in Advance.
    Regards
    Sam
    Edited by: Ponsu on Apr 7, 2011 10:41 PM

    Hi,
    I am having similar issue. Where you able to resolve it.
    I am also using the same example you were using.
    I am using the following version.
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    Compatibility: 11.2.0.0.0
    I do not see any notification coming back from the DB.
    Appreciate your help.
    Thanks & regards,
    Ebe

  • Push Notification for Android application

    Hi friends,
    I am trying to create a Reminder application. I Need some experts advice for developing this application.
    After surfing on Net I came to know we need to use Push Notification for showing the alerts but didnt get any help how to use it.
    I found some .ane extensions links by which we can show the notifications but was nt able to include it in my project.
    Please guide me for the application.

    Hey
    I guess you need this ANE http://www.riaspace.com/2011/09/as3c2dm-air-native-extension-to-push-notifications-with-c2 dm/
    Found it in this discussion, in which they basically explain everything, http://stackoverflow.com/questions/11244724/push-notification-in-flex
    GL ^^

  • Can I have push notifications for Mail, like on the iPhone?

    Hello,
    I was wondering if it's possible to enable push notifications for Mail on the Mac, basically like on the iPhone. I know that you can choose how often you want Mail to check your inbox, but this only works if Mail is open. Is there a feature that allows me to close the application, but still receive notifications when a new mail arrives?
    Thanks

    Anon M wrote:
    Hello,
    I was wondering if it's possible to enable push notifications for Mail on the Mac, basically like on the iPhone. I know that you can choose how often you want Mail to check your inbox, but this only works if Mail is open. Is there a feature that allows me to close the application, but still receive notifications when a new mail arrives?
    Thanks
    Not as yet, although
    1. The installation of third party programs such as Growl may give you this option. I don't use it personally so       have a look at it and similar but at your own risk
    2. Wait for Mountain Lon (10.8) to be released later this year as they are advertising such things as                  notifications, more in line with the iOS interface of iPads and iPhones
    http://www.apple.com/macosx/mountain-lion/
    3. In the meantime, do some reading here on threads relating to Mail in Lion as it seems like you certainly    having an issue with Mail that most people do not have.
    Good Luck
    Pete

  • Need to know if there is UI designer for Mobile application on NWDS

    Hello Experts....
    I am planning to create a mobile application using NWDs.
    Can I know if we can design a Mobile Application on the MWDs-> MI Application using UI tools?
    can I use Web dynpro to develop mobile appliction for both HandHeld as well as Laptops.
    If we can, can someone please send any supporting documents for the same.
    I would also like to know what is the best way to design our own screens (for new functionality not existing in SAP) for a mobile device (PDAs and Laptops)
    thanks in advance.
    Raju

    Take a look at this link, https://discussions.apple.com/thread/2401746?start=0&tstart=0

  • Is there a maximum size for an Application Item?

    I have a pl/sql procedure which inserts some records and has an out variable to return a warning message that I want to append to the normal Success message field in the Processes. Unfortunately I found out that if I defined a hidden variable and used the &P1_SUCCESS_MSG. syntax it would strip HTML. Meaning all the break tags get interpreted literally in the success message. I did some searching and read Scott's recommendation to use an Application Item and that worked like a charm....
    Until today when I kept getting a message that an HTTP 404 error that the wwv_flow.accept page can't be found. I systematically took out each process on the page (about 5 of them) and finally realized it only threw the error when a really long string was passed. Long meaning about 3000 characters (2919 to be precise)- I know because I inserted into my debug table once I knew that was the issue.
    Does anyone know a reason why this would occur? And maybe how to avoid it?
    The string is nothing fany its just a bunch of:
    ** Warning: So and So has been assigned to project ABC for x hours in Period y and is overallocated by z hours ** </br>A validation won't work because its not an error, just an informative message to the user. I don't want to stop submission if I hit the condition. TIA!!

    Scott,
    Thanks for your help.
    I think what you'll need to do is set the message text into an application item using an assignment statement in a page process or in a computation. Then leave the success message for the process null. Then branch to the page and have the page display the message (from the item) wherever you like on the page.
    Scott

  • I am getting calendar notifications for others calendars on my iphone

    Ever since I updated to IOS8, I have been getting calendar notifications from my boss's calendar on my iphone 5.  I have his calendar as a secondary calendar so I can schedule appointments with him as needed.  His is the only secondary calendar that I am getting notifications from.  His and mine.  How do I turn the notifications to his off.  I checked google to make sure the settings there are correct which they are. I am not getting his reminders in my outlook or my gmail browser only on my phone.

    You can choose to not see those notifications by using the Settings app.
    Ssettings > Notifications > Calendar > Shared Calendar Changes > turn off the notifications in that section.

  • HT4847 When deciding to change backup options for installed applications on my iPhone, what exactly does the backup of applications backup??

    Am I backing up the application data, like login info?  Or is it backing up the application itself, so if I were to lose or need to replace my phone, I could have all the apps loaded back on, & in the order in which they were in?? 

    The app data is stored, and I think, a reference to all apps (but not the actual apps, since you can always download them again for free from the app store).  Getting them in the right order is iffy - I've read posts from users who restored and found apps all out of order, but I think others say everything restored okay.

  • Push  and banner notification for Email not working on Iphone 6

    Just got my iPhone 6 on Friday and I have my email set up to Push emails but that isn't happening. I'm getting them much later then they actually come to me and I'm not getting the banner on my phone when it does finally make it to my phone. I have all the setting correct that I can tell. I have it set up to notify me when email comes in via banner. Set up to notify me in lock screen as well.   Does anyone know if I'm missing a setting?  I notice now on this new system that in email set up I use to just have the Push option but now under Fetch - Push there is each mailbox listed and within them it says Fetch --- but I want Push not fetch......

    I have been having the same email problem for hours and my Iphone email is also not working. Unable to log into Verizon webmail as well.  I was finally able to get into my email account via Yahoo mail (yahoo/verizon accts linked). Still having issues with Outlook and my iPhone.

  • HT4623 THERE WAS A UPDATE FOR IOS 6 BUT MY IPHONE 4 IS UNABLE TO FINISHING UPDATING STATING THERE WAS AN ERROR.

    Unable to update to IOS 6.There was an error that says error during downloading.How to resolve this update.

    I had this problem while I had iOS 5.1.1 installed for many months. Fortunately I only have about 150 contacts and only about half of them duplicated. I found that my problem was the way thing were set up in Outlook. I removed all of the duplicates and corrected everything in Outlook contacts (ignoring the address book) and have not had the problem since, Hope this helps.

Maybe you are looking for

  • Airplay mirroring - frozen image then crash

    Airplay mirroring from iPad2 (or OSX using airparrot) to AppleTV(3), mirrored image appears on the TV briefly, then will crash back to AppleTV home screen after about 20-30 seconds.  Tried both wired / wireless network setup to AppleTV.......with wir

  • Will my programs run under Leopard?

    I have a G5 iMac currently running Tiger and I am thinking of upgrading to Leopard. I am wondering if I will need to upgrade some of my programs as well. They are Quicken 2004, Adobe Acrobat 7.0 Professional, Adobe elements 2, Fetch 4.0.3, Microsoft

  • Why are the graphics in the book The Extraordinary Leader so small?

    Just recently downloaded the book The Extraordinary Leader. All of figures in the book are to tiny.  Is the a new update to this book that can fix this?

  • Best way to backup 8i?

    i've winnt4.5 server. i have a schedule that run a batch file to make all my backup's on a hp dat24GB tape backup and shutdown the server in the end. i use command line in batch file do backup, for example:"ntbackup backup c: d:\util" so, i need to b

  • XSL indentation help

    Hi everybody, I managed to pass a .xsl file to my method that writes out the DOM in a xml file. For the moment it just prints out the nodes in different lines (instead of writing them in one eternal line) with this code: <xsl:stylesheet xmlns:xsl="ht