Problems with using System.Diagnostics.EventLog to retrieve event log messages

Hi
In my app I am retrieving error and critical events from application and system log - but for some reason what it is returning doesn't tally with what I see in event viewer
For example:-
1) Source is SideBySide and shows in event viewer with Event ID of 33 - but in my app it is returning an event ID of 3238068257 - all other details such as message are correct - other event sources show fine
2) A lot of the system event log messages are showing wrong error message - in event log it shows correctly but in my app it is retrieving messages like this "The description for Event ID '41' in Source 'Microsoft-Windows-Kernel-Power' cannot be
found. The local computer may not have the necessary registry information or message DLL files to display message, or you may not have permission to access them" - I am running the app with admin rights?, so not sure why not showing same message as it
shows in event viewer i.e "The system has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, crashed, or lost power unexpectedly."
Darren Rose

Private Sub btnCheckEventLog_Click(sender As Object, e As EventArgs) Handles btnCheckEventLogs.Click
' get event logs
' APPLICATION LOG
' variables for adding to the listview application log
Dim ListEventlogApp As ListViewItem
Dim arrayEventlogApp(5) As String
' Clear existing items from list
lvwEventLogApp.Clear()
' Create columns and set width
lvwEventLogApp.Columns.Add("Date/Time", 120)
lvwEventLogApp.Columns.Add("Type", 50)
lvwEventLogApp.Columns.Add("Source", 150)
lvwEventLogApp.Columns.Add("ID", 100)
lvwEventLogApp.Columns.Add("Message", 1000)
' get event log (application) error entries
Dim eventLogAppError As New System.Diagnostics.EventLog("Application")
Dim eventCntr1 As Integer = 1
Dim numberofeventstoshow1 As Integer = 1
For i As Integer = eventLogAppError.Entries.Count - 1 To 0 Step -1
Dim eventLogAppErrorEntry As EventLogEntry = eventLogAppError.Entries(i)
If eventLogAppErrorEntry.EntryType.ToString = ("Error") Then
arrayEventlogApp(0) = (eventLogAppErrorEntry.TimeGenerated)
arrayEventlogApp(1) = (eventLogAppErrorEntry.EntryType.ToString)
arrayEventlogApp(2) = (eventLogAppErrorEntry.Source)
arrayEventlogApp(3) = (eventLogAppErrorEntry.InstanceId)
arrayEventlogApp(4) = (eventLogAppErrorEntry.Message)
ListEventlogApp = New ListViewItem(arrayEventlogApp)
lvwEventLogApp.Items.Add(ListEventlogApp)
eventCntr1 = eventCntr1 + 1
If numberofeventstoshow1 = 10 Then Exit For ' amend if you want to show more than 10 events
numberofeventstoshow1 = numberofeventstoshow1 + 1
End If
Next
' SYSTEM LOG
' variables for adding to the listview application log
Dim ListEventlogSys As ListViewItem
Dim arrayEventlogSys(5) As String
' Clear existing items from list
lvwEventLogSys.Clear()
' Create columns and set width
lvwEventLogSys.Columns.Add("Date/Time", 120)
lvwEventLogSys.Columns.Add("Type", 50)
lvwEventLogSys.Columns.Add("Source", 150)
lvwEventLogSys.Columns.Add("ID", 100)
lvwEventLogSys.Columns.Add("Message", 1000)
' get event log (system) critical entries
Dim eventLogSystemCritical As New System.Diagnostics.EventLog("System")
Dim eventCntr2 As Integer = 1
Dim numberofeventstoshow2 As Integer = 1
For i As Integer = eventLogSystemCritical.Entries.Count - 1 To 0 Step -1
Dim eventLogSysCriticalEntry As EventLogEntry = eventLogSystemCritical.Entries(i)
If eventLogSysCriticalEntry.EntryType.ToString = ("0") Then
arrayEventlogSys(0) = (eventLogSysCriticalEntry.TimeGenerated)
arrayEventlogSys(1) = ("Critical")
arrayEventlogSys(2) = (eventLogSysCriticalEntry.Source)
arrayEventlogSys(3) = (eventLogSysCriticalEntry.InstanceId)
arrayEventlogSys(4) = (eventLogSysCriticalEntry.Message)
ListEventlogSys = New ListViewItem(arrayEventlogSys)
lvwEventLogSys.Items.Add(ListEventlogSys)
eventCntr2 = eventCntr2 + 1
If numberofeventstoshow2 = 10 Then Exit For ' amend if you want to show more than 10 events
numberofeventstoshow2 = numberofeventstoshow2 + 1
End If
Next
' get event log (system) error entries
Dim eventLogSystemError As New System.Diagnostics.EventLog("System")
Dim eventCntr3 As Integer = 1
Dim numberofeventstoshow3 As Integer = 1
For i As Integer = eventLogSystemError.Entries.Count - 1 To 0 Step -1
Dim eventLogSysErrorEntry As EventLogEntry = eventLogSystemError.Entries(i)
If eventLogSysErrorEntry.EntryType.ToString = ("Error") Then
arrayEventlogSys(0) = (eventLogSysErrorEntry.TimeGenerated)
arrayEventlogSys(1) = (eventLogSysErrorEntry.EntryType.ToString)
arrayEventlogSys(2) = (eventLogSysErrorEntry.Source)
arrayEventlogSys(3) = (eventLogSysErrorEntry.InstanceId)
arrayEventlogSys(4) = (eventLogSysErrorEntry.Message)
ListEventlogSys = New ListViewItem(arrayEventlogSys)
lvwEventLogSys.Items.Add(ListEventlogSys)
eventCntr3 = eventCntr3 + 1
If numberofeventstoshow3 = 10 Then Exit For ' amend if you want to show more than 10 events
numberofeventstoshow3 = numberofeventstoshow3 + 1
End If
Next
End Sub
Darren Rose

Similar Messages

  • System.Diagnostics.EventLog - A device attached to the system is not functioning

    I was getting an error ....
    System.ComponentModel.Win32Exception was caught
      ErrorCode=-2147467259
      HResult=-2147467259
      Message=A device attached to the system is not functioning
      NativeErrorCode=31
      Source=System
      StackTrace:
           at System.Diagnostics.EventLogInternal.InternalWriteEvent(UInt32 eventID, UInt16 category, EventLogEntryType type, String[] strings, Byte[] rawData, String currentMachineName)
           at System.Diagnostics.EventLogInternal.WriteEntry(String message, EventLogEntryType type, Int32 eventID, Int16 category, Byte[] rawData)
           at System.Diagnostics.EventLog.WriteEntry(String message, EventLogEntryType type)
           at VB_Braums_ClassLib.LogIt.WriteEventLog(String Entry, EventLogEntryType eventType, String Source) in \\Corp01\Vol1\Mis\Pccode\Ms.net\ProductionLibs\ProductionLibs\ProdLibCommon.vb:line 3666
      InnerException: 
    This code is in a library, so I create a "hello world" to demonstrate the issue. I will post it at the end. This .net 4 framework and it's been around for a while in our code. We are starting to upgrade from XP to Win 7. Basically event log sizes
    are limited to the 32667 number. So we had a test, if the string is bigger than that, then we would write it in 32000 byte chucks. On two different win7 boxes we get the "device attached" error message. Run the same code on a XP box and it works.
    Oh, and the Win 7 boxes are 64 bit.  I wonder if the win 7 32 bit would have the same issue? Can others duplicate it? The tmpsize seems to be different numbers, but if you play with it, you can get it down to number x works and (x+1) does not.
    Here the code .....
    Module Module1
        Sub Main()
            Dim logName As String = "BraumsLog"
            Dim objEventLog As New System.Diagnostics.EventLog()
            Dim needCreate As Boolean = False
            Dim Source As String = ""
            If Source.Length = 0 Then Source = "Test"
            Dim Entry As String = "".PadLeft(64000, "1"c)
            'Register the App as an Event Source
            If EventLog.SourceExists(Source) Then
                Dim slog As String = EventLog.LogNameFromSourceName(Source, ".")
                If slog <> logName Then EventLog.DeleteEventSource(Source) : needCreate = True
            Else
                needCreate = True
            End If
            If needCreate Then EventLog.CreateEventSource(Source, logName)
            objEventLog.Source = Source
            '*********** New Code ****************
            objEventLog.MaximumKilobytes = 20480
            objEventLog.ModifyOverflowPolicy(OverflowAction.OverwriteAsNeeded, 0)
            'WriteEntry is overloaded; this is one
            'of 10 ways to call it
            Dim tmp As String = ""
            Dim tmpSize As Integer = 32000 '31890 works 31891 does not
            Do While Entry.Length > tmpSize
                tmp = Entry.Substring(0, tmpSize - 1)
                objEventLog.WriteEntry(tmp, EventLogEntryType.Information)
                Debug.WriteLine(tmp.Length.ToString)
                Entry = Entry.Substring(tmpSize)
            Loop
            tmp = Entry
            objEventLog.WriteEntry(tmp, EventLogEntryType.Information)
        End Sub
    End Module

    Run the same code on an XP 64 bit box and it works? XP comes in multiple flavors.
    Perhaps you should compile to x86 CPU and see if it works on Win 7 64 bit. Win 7 comes in 32 and 64 bit also.
    On the other hand Win 7 service pack 1 mainstream support ended on the 13th of this month. Extended support ends in 2020 supposedly. Perhaps you should upgrade to Win 8.1 instead. Win 10 is coming soon enough.
    Windows lifecycle fact sheet
    Microsoft Product Lifecycle Search - Windows 7 result
    La vida loca

  • Weird Problems with K9A2 System

    Can Someone Help Me?
    I recently built a new system and have had nothing but problems.  See system config in signature (Left off OCZ PRO Xtreme 1000W Power Supply With 4 12 Vrails at a max of 26 Amps each or 82 Amp all together and a 5 Volt rail at 30 Amps Max.) After putting it all (except the seagate 250 IDE drive), system would not even enter post. After strippin memory down to just 2 GB system finally entered post (although my memory were the same models from G.Skill one set was older and one set was new they had different voltages old required 1.9-2.0 while the newer worked at the default 1.8 voltage all timing and specs besides voltage were the same). I entered the bios setup and set my Memory voltage to 1.95 (What I had been runnin the older memory in my old system). Inserted all the memory back in and system booted right up to allow me to install my OS (Vista Home Premium 64-bit).
    After the OS installed the system started having all kinds of wierd clitches/problems at one point it locked up and neither reset button nor the power button would work. After unplugging the power I noticed that the M connector for the front case switches was a little loose. I decided to just plug wires directly into board instead of using th M connector. Now my buttons worked again. I then proceded back into the bios and checked my voltages in the hardware monitor of the bios.  All voltages looked to be fine with only an ocassional voltage fluctuation in the 5V line from 4.97 to 4.92 Volts and the 12V line was a little high 12.4 Volts. However, after booting back into vista and installing Everest Ultimate Edition it detected the that the 5 Volt line was only at 4.67 Volts. But was not fluctuating at all.
    After installing the drivers for my system and proceding to install my anti-virus software the system started freaking out the mouse started lagging and sometimes not responding at all and the keyboard worked intermittently.  I decided to remove the M connectors from these as well and that solved that problem.  Upon rebooting the system and trying to install the Anti-Virus software again the system started telling me that I had just plugged in something to the audio connector.  I had not so I just ignored it and continued to install my anti-virus.  (the audio connector alert popped up 4X while I was finishing the installation of the software.  I decided to test the audo so I but a DVD in and and watched the whole movie sound worked fine and no more pop ups about the audio connector until I started to install more software.  During the next install of software the screen went black and the DVD and Hard Drive LED stopped flashing. It stayed this way for about 10 Min. I decided to hit the reset button and the system would not enter post again.
    Once again I started to pull the Memeory It finnally worked after removing the new memory that I had just bought but none of my Maxtor hard drives were recognized and I started smelling smoke. ( Strange only the Maxtor drives went out, all had the interface boards and one chip on each drive fried.  After disconnecting these drives and replacing the maxtor 120 GB IDE drive that had fried with a Seagate 250 GB IDE drive and reinstalling everyting onto it since the maxtor was my boot drive the system started up and was running fine except for the occasioal audio connector popup I finished Installing the rest of my software and everything was running good.  So I assumed the problems were due to faulty ram. I contacted NewEgg and arranges for an RMA  on the memory went shipped the memory back to NewEgg came back and started to move file some file to my NAS200 After about 4 hours the system locked up again (It had been almost 36 hours since I had had anyother problems with the system and it had not been turned off the whole time. All temps were good CPU was at 29C and GPU was at 46C system temp was 31C according to my Everest Ultimate so I didn't think it was a heat related issue) 
    Upon restarting my computer I got a message that a recent overclocking attempt had failed (I did not try to overclock!!) After going back into Bios and resetting all my settings the computer would not post agian. I tried to clear the CMOS with the jumper just to make sure that there wasn't any coruption inthe CMOS. Still no Luck. Pulled out one stick of the older ram and it booted but very slow. I went to a local parts dealer and bought some extremely over prived memory just so I could get my system back to 2 GB because I had video edditing software that didn't work very good on 1 GB. After installing no post again. So I started testing each stick of memory that I had in DIMM 1 they all worked but anytime I insert one into DIMM 2 it would not boot.  Finnally I but 2 sticks into DIMM 3&4 and It started up and ran good. I decided to set my bios Unganged option to enabled and put memory back into DIMM 1 No luck would not post. I removed the memory from DIMM 1 and computer has worked ever fine except for an error coming out from sleep mode. (Never had a computer that didn't have a problem with that) I even updated the BIOS to 1.5 which was suppose to fix the wakeup problem. 
    So here is what I have I can use Dimm 1 by itself or I can use DIMM 3&4 but not both together.  I'm about to buy a Power Supply (single 12V rail at 40 Amps and a 5V rail at 50 Amps) because I think that the 12 V reading as 12.4 and the 5 Volts reading as 4.67 in Everest Ultimate and 4.97 volts in Bios might have something to do with some of my problems.  I did not check the Memory that I RMA'd by them selves on DIMM 3&4.  I think that they may have been good now.
    Can the 5V line registering the way it is 4.97 Bios/4.67 in Windows cause DIMM 2 to not function and create the lockups or can the socket or board be bad and that be what is causing this problem?  And Should I RMA the motherboard back or just purchase a different motherboard?
    System is pretty Stable as it is now with the voltages as they are.  I really wantt to be able to put my new memory that I get back from NewEgg in and have my 4 GB of memory. 

    OK I have removed the mother board and and checked for grounding issue or any damage from the fried hard drives board looks good did not find any grounding issues in the case.  One thing I did not check was that I was using a Startech SATA to IDE converter to connect the the IDE drives that I didn't have the connectors on the board or.
    I did some research before buying them and made sure to get one with a plastic box around the pcb  due to so many people compaining that their's would short to the hard drive case.  Since the loss of the HDD I didn't need the adapter so I quit Using it.
    when I did my research on the adapter I found that many people had said that their HDD got hoter when using the adapter I guess my HDD just couldn't handle it.  The Drive that I had connected with it was about 6 years old and I had been having intermittent problems with the connector not making a good connection when it was in my old system. (Anytime I would shut the power off for a long period of time and the HDD had a chance to cool down I would have to unplug and reconnect the ide cable from that drive.)
    I didn't think that the problem would continue as I was moving it to an new case, motherboard, and cable.
    And it just so happened that the drives that fried were all connected the the sata controller in the SB600 chip.  My two SATA drives that survied the fire were on the Promise T3 controller.  So I guess it is possible that the adapter/HDD configuration I had with the SATA to IDE caused some sort of feedback into the Motherboard's SATA controller and back into the oter HDD on that Controller.  I have checked all SATA ports since this happened and they all still work so I'm assuming that it did not damage the chip. 
    As far as the memory  situattion I don't see how the HDD frying could have damaged the Memory unless there is some special connectin between DIMM2 and the SATA controller that doesn't exist with the other DIMM slots. and if it had somehow effected the memory controller to cause this problem I would assume it would have done alot more damage to the cpu than just the memory controller part. So I think I'll try to RMA a new motherboard, if ZippZoomFly will let me this long after getting the board I've had it for about 3.5 weeks waiting on the other parts for the new system) and see what happens.
    As for the memory, itself they are not mixed brands or models.  I bought one set about a year ago when I purchased my X2 6000 processor and they have worked great as long as I kept the voltage above  1.9 V.  The new memory has the same model # as the old but the label on them states the same timings and only a different voltage range.  So as long as they voltage was set to within the range of both sets they should work exactly the same.  I did notice that the board would only detect 3.25 GB instead of 4 GB, and I was prepared for this. Every Motherboard I have ever owned, no matter who the Manufacturer was, has had this problem.  However Vista reported the memory correctly.
    I guess if the new motherboard exhibits the same memory problem with not letting me use all  slots then i'll buy a 2X2GB set

  • Remote Resources: "A problem with the system proxy caused the connection to fail: End of file"

    Hi, I am trying to use "Remote Resources" on the current version of the Microsoft Remote Desktop for Android app, I can input the webfeed and it even shows the apps that I have configured on the server for "Remote App", sadly whenever
    I try to load any of the RemoteApps, I receive an error stating " A problem with the system proxy caused the connection to fail. End of File".
    I don't know what I can do to fix this, I've tried many things to no avail, also, normal Remote Desktop connections from the Microsoft Android app work flawlessly to the server.
    The relevant log is the following:
    [2014-Jan-09 04:40:54] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jan-09 04:40:54] RDP (0): Final rdp configuration used: memory bookmark [
    label 
    hostname DIAZSERVER
    port 3389
    loadbalanceinfo 
    ui.swapmousebutton false
    remote.program ||ZWaveUtil
    remote.workingdirectory 
    remote.name ZWave Adapter Utility
    remote.args 
    rail true
    soundmode 0
    connect_to_console false
    redirectsdcard true
    performance_flags 134
    arc.sessionid 0
    anonymous_username 
    authentication_level 2
    use_redirection_server_name false
    username administrator
    gateway [
      host = DIAZSERVER
      port = 443
      bypass = false
    connect info[
      hostnames = [localhost]
      gatewayHost = DIAZSERVER
      gatewayPort = 443
      routingToken = Cookie: mstshash=administrator
      redirectionGUID = 
      proxyHost = 200.5.68.10
      proxyPort = 8080
      sessionId = -1
    [2014-Jan-09 04:40:54] RDP (0): Using HttpConnect proxy at 200.5.68.10:8080
    [2014-Jan-09 04:40:54] RDP (0): Using Basic Authentication with username ''
    [2014-Jan-09 04:40:54] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    AsioEndpointContext (0): startup(): starting up down context
    [2014-Jan-09 04:40:54] RDP (0): Resolved '200.5.68.10' to '200.5.68.10' using NameResolveMethod_DNS(1)
    [2014-Jan-09 04:40:54] RDP (0): Resolved '200.5.68.10' to '200.5.68.10' using NameResolveMethod_DNS(1)
    ASIOSocketAdapter (9): readSomething error. message: End of file. instance: 0x5d39d5c0
    RpcOverHttp (9): Stream error in endpoint 0x5abbc170 : A problem with the system proxy caused the connection to fail: End of file
    [2014-Jan-09 04:40:55] RDP (0): Error message: A problem with the system proxy caused the connection to fail: End of file
    [2014-Jan-09 04:40:55] RDP (0): Error message: A problem with the system proxy caused the connection to fail: End of file
    [2014-Jan-09 04:40:55] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    ASIOSocketAdapter (9): handleRead(): exception: Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : Failed to read from channel: -1. instance: 0x5d39d5c0
    [2014-Jan-09 04:40:55] RDP (0): Disconnect initiated by client
    RpcOverHttp (9): Exception in endpoint 0x5abbc170 : Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : A problem with the system proxy caused the connection to fail: Failed to read from channel: -1
    [2014-Jan-09 04:40:55] RDP (0): Exception caught: Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : A problem with the system proxy caused the connection to fail: Failed to read from channel: -1
    [2014-Jan-09 04:40:55] RDP (0): Exception caught: Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : A problem with the system proxy caused the connection to fail: Failed to read from channel: -1
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    [2014-Jan-09 04:40:57] RDP (0): ------ END ACTIVE CONNECTION ------

    My problem is that the "proxy" is the proxy set up by my 3G configuration so, I tried connecting to the remote resources through my work wifi and I get the following:
    [2014-Jan-14 16:58:13] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jan-14 16:58:13] RDP (0): Final rdp configuration used: memory bookmark [
    label 
    hostname DIAZSERVER
    port 3389
    loadbalanceinfo 
    ui.swapmousebutton false
    remote.program ||chrome
    remote.workingdirectory 
    remote.name Google Chrome
    remote.args 
    rail true
    soundmode 0
    connect_to_console false
    redirectsdcard true
    performance_flags 134
    arc.sessionid 0
    anonymous_username 
    authentication_level 2
    use_redirection_server_name false
    username Administrator
    gateway [
      host = DIAZSERVER
      port = 443
      bypass = false
    connect info[
      hostnames = [localhost]
      gatewayHost = DIAZSERVER
      gatewayPort = 443
      routingToken = Cookie: mstshash=Administrator
      redirectionGUID = 
      proxyHost = 
      proxyPort = 0
      sessionId = -1
    [2014-Jan-14 16:58:13] RDP (0): Not using any proxy
    [2014-Jan-14 16:58:13] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    AsioEndpointContext (0): startup(): starting up down context
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d474090
    RpcOverHttp (9): Stream error in endpoint 0x5d46b678 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d445158
    RpcOverHttp (9): Stream error in endpoint 0x5d49fa30 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Disconnect initiated by client
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    [2014-Jan-14 16:58:17] RDP (0): ------ END ACTIVE CONNECTION ------
    Now, I know the host can be resolved because: if I connect to the same host but on a full remote desktop (as opposed to just RemoteApp on it) I have no trouble either through 3G OR through my work connection.
    Moreover, I also tried directly inputting the IP as opposed to the web address of my server, I get the same error, that is the Remote Resources tab is able to access the feed (because it shows the available RemoteApps) but when I click an app it says it can't
    find the Host, here's the log for the connection directly to the IP address/rdweb/feed/webfeed.aspx :
    [2014-Jan-14 17:09:27] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jan-14 17:09:27] RDP (0): Final rdp configuration used: memory bookmark [
    label 
    hostname DIAZSERVER
    port 3389
    loadbalanceinfo 
    ui.swapmousebutton false
    remote.program ||chrome
    remote.workingdirectory 
    remote.name Google Chrome
    remote.args 
    rail true
    soundmode 0
    connect_to_console false
    redirectsdcard true
    performance_flags 134
    arc.sessionid 0
    anonymous_username 
    authentication_level 2
    use_redirection_server_name false
    username administrator
    gateway [
      host = DIAZSERVER
      port = 443
      bypass = false
    connect info[
      hostnames = [localhost]
      gatewayHost = DIAZSERVER
      gatewayPort = 443
      routingToken = Cookie: mstshash=administrator
      redirectionGUID = 
      proxyHost = 
      proxyPort = 0
      sessionId = -1
    [2014-Jan-14 17:09:27] RDP (0): Not using any proxy
    [2014-Jan-14 17:09:27] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    AsioEndpointContext (0): startup(): starting up down context
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d372f28
    RpcOverHttp (9): Stream error in endpoint 0x5dd6b168 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d378de0
    RpcOverHttp (9): Stream error in endpoint 0x5e9cc1f0 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Disconnect initiated by client
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    [2014-Jan-14 17:09:31] RDP (0): ------ END ACTIVE CONNECTION ------
    I'm really puzzled here, I've tried checking if ports where open, and ports 443 and 3389 are wide open, I don't know what else it could be.

  • I have a problem with using MacBook Pro as wifi router when connected to ethernet

    I have a problem with using MacBook Pro as wifi router when connected to ethernet. The Airport icon changes to show a laptop inside, my iPad shows connected (I think) but Safari will not operate. I tried pinging my iPad, it seems to see the iPad, but no connection to Safari or to other apps such as Good on the iPad. I have read many posting and tried repeatedly via Sharing in Systems Preferences, but no luck. Suggestions to fix, or is this a Lion problem?

    Usually this is a problem related to the domain name server address. If you open Network preferences, select your Ethernet port then click on the Advanced button then on the DNS tab. You will likely see an entry like 10.0.1.1 already listed. Click on the Add [-] button and enter 208.67.222.222 then click on the OK button and then on the Apply button.  See if this helps.
    if it does not help then repeat the above but with the Airport port.

  • After installing Snow Leopard problems with using any of my Helvetica fonts

    I've never really have a problem with any of apple's products until now.
    After installing Snow Leopard I've found problems with using any of my Helvetica fonts,
    which is a BIG problem if you work in DTP or print. You CAN'T remove the system version of Helvetica, and replace it with your own anymore.
    Also Flash CS4 seems to be a dead duck, as after about 5-6 seconds of loading the program it crashes with a "KERNPROTECTIONFAILURE".
    <title edited by host>

    Thanks Tom but the original post title was "Work in DTP, don't install snow leopard", but of course apple were unhappy with the title. I know the issue/problem has been discussed for months, the real problem is that it shouldn't be a problem which everyone has to find work arounds for.
    After 4 days of playing about, I've finally got flash CS4 working and Quarkxpress was also a big problem for a few months. Printer description (PPD) files which snow leopard doesn't like, but worked in tiger & leopard.....means I can't use my two A3 inkjets for proofing anymore.
    I'm just disappointed by snow leopard

  • I am going to buy unlocked iphone 5.. i will be going to india nxt months and will stay there for a while... so my question is will i get warrenty in india.. and will there be any problem with using indian sims..?? thnx for the help..

    i am going to buy unlocked iphone 5.. i will be going to india nxt months and will stay there for a while... so my question is will i get warrenty in india.. and will there be any problem with using indian sims..?? thnx for the help..

    The warranty for the iPhone is not and has never been International.
    Warranty and support are ONLY valid in the country of origin.  The only exception is the EU where the entire EU is treated as one country.
    If the device will be used in India, buy it in India.
    An unlocked iPhone will work on any supported GSM carrier world wide.  The LTE portion of a US purchased, unlocked iPhone is unlikely to work outside North America as it does not support the appropriate bands used in other countries.

  • I have two Iphones with different email addresses sharing one Apple ID. Will that cause problems with using messaging and FaceTime?

    I have two Iphones 5 with different email addresses sharing one Apple ID account.Both are using IOS 8.
    I would like to set up a new Apple Id for one of the phones and remove it from the old account.
    If I do that, can I move all of the purchased apps and songs to the new Apple account?
    Also, will sharing one Apple ID account with two devices cause problems with using messaging and FaceTime?

    Sharing an iCloud account between two devices can be done without causing issues with iMessage and FaceTime, just go into Settings for each of these functions and designate separate points of contact (i.e. phone number only, or phone number and unique email address).  While that works, you'll then face the problem where a phone call to one iPhone will ring both if on the same Wi-Fi network -- but again, that can be avoided by changing each phone's settings.
    Rather than do all that, don't fight it -- use separate IDs for iCloud.  You can still use a common ID for iTunes purchases (the ID for purchases and iCloud do not have to be the same) or you can use Family Sharing to share purchases from a primary Apple account.

  • I purchased Adobe Creative Suite C2 and have been using it for years on the same computer no problem with using it. Recently upon opening Photoshop I received a pop up window saying due to Adobe Software security we need you to activate your CS2 software.

    I purchased Adobe Creative Suite C2 and have been using it for years on the same computer without any problems with using it. Recently upon opening Photoshop I received a pop up window saying due to Adobe Software security we need you to activate your CS2 software. I tried, phone activation, web activation, nothing is working. I have the serial number and my Adobe account information. Any suggestions?

    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3
    Mylenium

  • Workstation specs -- Any problems with this system quote?

    Here are the specs I have been quoted.  I'm not terribly knowledgeable about hardware, does anyone see any problems with this system?  I have recently started shooting and editing weddings, engagements and corporate videos.  I think it may be bit more than I need, but I would much prefer that to less than I need.  Any input from the more tech savvy users would be much appreciated.
    Darren Breckles
    65539
    ASUS Sabertooth X79 ATX LGA2011 DDR3 3PCI-E16 2PCI-E SATA3 USB3.0 SLI CrossFireX Audio Motherboard [Sabertooth X79]
    72374
    Mushkin Enhanced Blackline Frostbyte 32GB 4X8GB PC3-12800 DDR3-1600 CL10 Quad Channel Memory Kit [994055]
    64540
    Noctua NH-D14 SE2011 LGA2011 Heatpipe Cooler w/ NF-P14 140mm & NF-P12 120mm PWM Fans [NH-D14 SE2011] [Reg. $89.99]
    67678
    Intel 520 Series 240GB 2.5in SSD MLC 25nm SATA3 Solid State Disk Flash Drive OEM [SSDSC2CW240A310] [Reg. $279.99]
    4729477
    8 port internal via 2X SFF-8087, LSI2208 1GB cache, 6Gb/s, RAID 0/1/10/5/50/6/60 [RS25DB080]
    1
    84358
    MSI GeForce GTX 770 OC Twin Frozr IV 1098/1150MHZ 2GB 7GHZ GDDR5 2xDVI HDMI DP PCI-E 3.0 Video Card [N770 TF 2GD5/OC] [Reg. $429.99]
    62678
    ASUS BW-12B1ST Blu-Ray Writer 12X BD-R 16X DVD+R SATA Black Retail [BW-12B1ST/BLK/G/AS][Reg. $89.98]
    Environmental Fee $0.75 Per Item
    45275
    Microsoft Windows 7 Professional Edition 64Bit DVD SP1 OEM [FQC-04649] [Reg. $153.98]
    75044
    Fractal Design Define R4 ATX Tower Case Black Pearl 2X5.25 8X3.5INT No PSU Front 2XUSB3.0 Audio [FD-CA-DEF-R4-BL] [Reg. $119.99]
    77641
    Corsair AX860 860W ATX 12V V2.31 80 Plus Platinum Modular Power Supply Active PFC 120mm Fa *IR-$10* [CP-9020044-NA] [Reg. $189.89]
    49665
    nMedia ZE-C118 3.5in Multi Function Panel Flash Card Reader W/USB2.0 eSATA SDHC2.0 Win 7 Black [ZE-C118 ] [Reg. $19.99]
    58276
    StarTech.com 3.5in Hard Drive to 5.25in Front Bay Bracket Adapter [BRACKETFDBK]
    78186
    Noctua NF-A14 FLX 140mm Ultra Quiet Cooling Fan 900-1200RPM 115.5M3/H 19.2DBA 3-PIN [NF-A14 FLX] [Reg. $22.99]
    4
    22823
    Premium PC Assembly and Testing With 1 Year Limited NCIX Warranty (PRE-CONFIG WIN. OS If Purchased)
    Environmental Fee $3.00 Per Item
    Note: Includes extra attention to cabling, lighting installation and extra burn-in period. Recommended for windowed cases. Assembly requires an additional 4-5* business days to ship once all parts are in stock. *typical lead time (currently 2-5 business days)
    1
    $3.00
         73920-1
    NCIX 3 Year On-Site Care Coverage for PC $3000.00 - $3999.99 (22823)
    89510
    Intel Core i7 4930K 6 Core 3.4GHZ (3.9GHZ Turbo) 12MB Hyperthreading LGA2011 Processor No HSF [BX80633i74930K] [Reg. $649.99]
    81958
    Western Digital RE 2TB SATA3 7200RPM 64MB Cache 3.5in Internal Hard Drive [WD2000FYYZ] [Reg. $213.57]
    Environmental Fee $0.75 Per Item
    4

    Very nice build list Darren!
    I would have selected the Samsung 840 Pro 256GB SSD over the Intel 520, and Areca's ARC-1882i over the Intel SAS controller you list, but those are preferences not essential changes.
    Regards,
    Jim

  • Problem with use of COM+ Transaction and DB Transaction

    Problem with use of COM+ Transaction and DB Transaction
    We build a Web site that use sometime COM+ Transaction and sometime DB
    Transaction. If we use a COM+ Transaction and a few seconds later we try to use
    a Database Transaction (OracleConnection.BeginTransaction), we get the error
    Connection is already part of a local or a distributed transaction
    Of course the error does not produce everytime; it takes some try before we get
    the problem. And of course, if i use pooling=false on the connection string,
    the problem does not appear.
    i run the Web page
    and push the COM+ Transaction and DB Transaction one after the other for some
    times and the problem should appear.
    Environment: Windows server 2003, .Net Framework 1.1, ODP.Net 9.2.0.401,
    Database Server 9.2.0.4

    > Why in form builder can't I...
    Is this happening at runtime or at buildtime? You'll need to provide more info on what you are actually doing that's causing the problem.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • 8900 printer changed black cart. error code problem with printer system

    Changed black cartridge in 8900 series all in one printer error message says trouble with print system call HP.  Have removed and reinstalled catridge still same error message. HELP!!!!!

    Hi @melvinc 
    Welcome to the forums
    I read about the issue you are facing on your printer, as it's now showing a problem with the ink system. I cannot locate a "8900" printer, could you possibly have the Officejet 8600? If so, please try out the steps from the guide below. If you reach a step where it asks to replace the printhead or printer, call us directly to see what your replacement options are with HP.
    A 'Problem with Ink System' Error Message Displays on the Control Panel or Computer During Setup
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assis​t.html
    Have a great day
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Problems with use cases in JDeveloper 11.1.1.1.0

    Use cases made with JDeveloper 11.1.1.0.2 can not be used and edited in JDeveloper 11.1.1.1.0.
    Same problems with Use Case Diagrams.
    And it seems to be impossible to create new use cases in JDeveloper 11.1.1.1.0.
    What are the differences between 11.1.1.0.2 and 11.1.1.1.0 if you look at use cases??

    In JDeveloper 11.1.1.0.2 each use case has one file with the folllowing name: *.xhtml_usc.
    In JDeveloper 11.1.1.1.0 each use case has two files with a names like *.xhtml_usc and *.uml_usc (after standard migration with JDeveloper). I can still edit the *.xhtml_usc files, but I have no idea what to do with the *.uml_usc files. I can only open a Property-editor, but the properties I see have no relation with the text I used in my original use cases . New use cases only have a *.uml_usc file and a Property-editor. In javadoc the new use case does not appear.
    My question is: why do I have two different use case files in JDeveloper 11.1.1.0 and how can I use the Property editor??

  • AxWindowsMediaPlayer problem with using subtitle sami.file in winform

    Hello every body
    I have a problem with using sami caption in axWindowsMediaPlayer;
    how can I use it?
    I used
    axWindowsMediaPlayer1.closedCaption.SAMIFileName="FileNameAddress";
    and
    axWindowsMediaPlayer1.ShowPropertyPages();//and select sami file
    but in both ways the subtitle is not shown in my axWindowsMediaPlayer1 control;
    please help me for solving this problem

    Hi ,
    As i know the Synchronized Accessible Media Interchange (SAMI) file must use an .smi or .sami file name extension.
    set the smi-file direclty like following
    AxWindowsMediaPlayer.closedCaption.SAMIFileName = "subtitles.smi";
    Please also refer here
    for more details.
    Follow the steps below for your Windows Media Player to display captions and subtitles.
    http://support.3playmedia.com/entries/21934486-windows-media-files-windows-media-player-settings
    Related thread, please note the Style secttion.
    http://answers.microsoft.com/en-us/windows/forum/windows_7-pictures/wmp-12-doesnt-play-sami-files-closed-captions/96fe98b7-1cdf-41f5-aa9e-a4e55fd07c0a
    In addition, Could you please provide your smi or sami file and full code? It could be better to help us do some test on my side.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I am having problem with using the Basic brush definition

    I am having problem with using the Basic brush definition. When I try to click on it will not allow me to use it and will automatically use the 5 pt. oval brush definition. The only way I can use the basic brush is after I have already drawn something and then I have to click on the stroke and then press basic. This is incredibly annoying and if anyone could help I would greatly appreciate it. (I have Adobe CS6)

    for whatever reason, the basic 'brush' you see in the brushes palette effectively means removing any brush from a path. to draw with the brush tool you need a brush defined. in your case the last one selected being the 5 pt oval one.

Maybe you are looking for

  • JTable Horizontal Scroll WHEN NEEDED fix?

    Me again.... JTable in a JScrollPane When the Jtable width exceeds the scrollpane I would like a horizontal scrollbar to appear. If the Jtable does not exceed the width Id like it to fill the ScrollPane. If I use the AUTO_RESIZE_OFF I get a horizonta

  • FRM-92101: Load Balancing Forms 10g with Webcache

    Hi, I´m having some problems with Oracle Forms and Webcache 10g and I was wondering if you could help. Machines: (Pentium IV 2.6 GHz; 2GB RAM; 80GB HD) A. Red Hat Linux AS 2.1 Oracle AS 10g - Infrastructure Installation B. Windows 2000 Server - Serv

  • Can another site be loaded into a table cell on my site?

    I would like the user to click on a button that would cause "website_A.com" to open inside of a table cell on my site. Is that possible. If not is there another way to do it?

  • Tomcat...apache...linux

    like doing so that each user of a server in linux has his own folder of examples to be able to create and to compile his applications jsp without having to be root?

  • IDOCXMLtoFileConvertor Exception

    Hi, Can someone please let me know the reason for below exception for IDOC XML converter. Message processing failed. Cause: com.sap.conn.idoc.IDocParseException: (7) IDOC_ERROR_PARSE_FAILURE: The metadata for the parsed IDoc was not available. See ca