Service '?' unknown TIME

Hi
  While testing JCO connections I get the following error even after making proper entries on the services file
     com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to message server host failed Connect_PM  TYPE=B MSHOST=ids GROUP=PUBLIC R3NAME=IDS MSSERV=sapmsIDS PCS=1 LOCATION    CPIC (TCP/IP) on local host with Unicode ERROR       service '?' unknown TIME        Fri Apr 06 14:49:06 2007 RELEASE     640 COMPONENT   NI (network interface) VERSION     37 RC          -3 COUNTER     1
Could some one please help me with this.....

Make sure System (Alias) is correctly configured. Test it, to make sure.

Similar Messages

  • When I try to install "Addblock Plus", a pop-up box displays "Add-on downloading", and "unknown time remaining - 0 bytes (0 bytes / sec)". My local area connection status box shows that it is connected but that nothing is being received.

    I am using Firefos 9.0.1 under Windows XP. I use Avast anti-virus. My Add-ons bar is empty. I have not initiated the installation of any plug-ins. Downloads keeps no record of my attempts.

    Thank you for your interest mha007. This is an update on my evenings activities so far.
    I have done that trouble shooting with results, as follows:
    Started in safe mode
    In Tools/Options/Advanced/General, I unchecked "Use hardware acceleration when available"
    Clicked on Tools/Add-ons
    "Get add-ons" displayed "Loading" indefinitely
    All 5 Extensions are dis-abled: it suggested that I remove "Microsoft.net framework assistant 1.2.1" & "Test pilot 1.2".
    On "Microsoft.net framework assistant 1.2.1" I Clicked "Remove". It remained but with version 0.0.0.
    On "Test pilot 1.2" I clicked "Remove". It disappeared.
    The single Appearance "Default 9.0.1" is disabled
    None of the 16 plug-ins are disabled.
    I clicked on Add-ons and "Get add-ons" displayed "Loading"
    Several minutes later I found that, "Add-ons" had loaded.
    I clicked on "Most popular" and then on "Add to Firefox " within "Adblock plus"
    A pop-up box displayed "Add-on downloading", and "unknown time remaining - 0 bytes (0 bytes / sec)".
    Within a minute, a Firefox "Alert" pop-up window opened with the message: "An error occurred during a connection to www.mozilla.org:443 / The OCSP server experienced an internal error. / (Error code: sec_error_ocsp_server_error)"
    I bookmarked the "Most popular add-ons page"
    I closed Firefox and opened it again - not in safe mode.
    Clicked on Tools/Add-ons. "Get add-ons" displayed "Loading".
    In Extensions, on "Microsoft.net framework assistant 1.2.1" I Clicked Disable", and Restart Firefox
    I clicked on Tools/Add-ons. "Get add-ons" displayed "Loading". Message displayed "Connected to services.add-ons.mozilla.org. Waited.
    10 minutes later I opened a new tab and clicked on the "Most popular add-ons page" bookmark. Message displayed "Connected to add-ons.mozilla.org". Waited.
    15 minutes later, neither of the tabs had responded. I re-started firefox in safe mode
    I clicked on Tools/Add-ons. "Get add-ons" displayed "Loading". Message displayed "Connected to static-ssl-cdn.addons.mozill.net"
    Using the new tab from above which was not active on restart, I clicked on the "Most popular add-ons page" bookmark.
    The bookmarked page opened. I clicked on "Add to Firefox " within "Adblock plus"
    Again, a pop-up box displayed "Add-on downloading", and "unknown time remaining - 0 bytes (0 bytes / sec)". (No Alert this time).
    I don't know what to read into all of this. Any advice on what the next best thing to do would be appreciated.

  • This window service has timer for update record once in a day at 5 pm.

    Hi Guys Please help me.
    Actully i create a window service. This window service has timer for update record once in a day at 5 pm.
    I have write a code but it is not working fin
    Here is my code.
    App.Config File:-
    <appSettings>  
        <add key="IsTrace" value="YES"/>
        <add key="SourceServerPath" value="Server=DATASERVER\SQL2008R2;database=WDSBHN;User ID=Wireless;pwd=chetu@123"/>
        <add key="ArchiveServerPath" value="Server=CHETUIWK091\SQL2008R2;database=Demo;User ID=sa;pwd=Chetu@123"/>
        <add key="ReportHour" value="22"/>
        <add key="ReportMinut" value="01"/>
        <add key="ReportSecond" value="20"/>
        <add key="ReportMilisecond" value="230"/>
        <add key="DailyTimer" value="tmrProductionDataTransfer"/>
        <add key="MonthlyTimer" value="tmrProductionCleanUp"/>
        <add key="ActionParameter" value="WDS-DataTransfer"/>
      </appSettings>   
    Vb.Net Code:-
    Protected Overrides Sub OnStart(ByVal args() As String)
            ' Add code here to start your service. This method should set things
            ' in motion so your service can do its work.
            Try
                LoggingTracing.WriteTrace("DataTransfer Service START " & Now.ToLongDateString & " " & Now.ToLongTimeString())
                '***Get the Time of service run
                Dim svcRunTime As System.DateTime = Configuration.ConfigurationManager.AppSettings("ServiceRunTime")
                '***differance of these two time
                Dim ts As TimeSpan = DateTime.Now.Subtract(svcRunTime)
                '***production data transfer
                tmrProductionDataTransfer.Enabled = True
                tmrProductionDataTransfer.Interval = 1000
                tmrProductionDataTransfer.Start()
            Catch ex As Exception
                LoggingTracing.WriteError(ex.ToString())
            End Try
        End Sub
    Private Sub tmrProductionDataTransfer_Elapsed(sender As Object, e As Timers.ElapsedEventArgs) Handles tmrProductionDataTransfer.Elapsed
            Try
                Dim time As Date = Date.Now
                Dim currHour As Integer
                Dim currMinute As Integer
                Dim currnSecond As Integer
                Dim reportHour As Integer
                Dim reportMinute As Integer
                Dim reportSecond As Integer
                Dim reportMiliSecond As Integer
                Dim actionParameter As String = Configuration.ConfigurationManager.AppSettings("ActionParameter")
                Dim actionTimerName As String = Configuration.ConfigurationManager.AppSettings("DailyTimer")
                currHour = time.Hour
                currMinute = time.Minute
                currnSecond = time.Second
                reportHour = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportHour"))
                reportMinute = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportMinut"))
                reportSecond = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportSecond"))
                reportMiliSecond = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportMilisecond"))
                If currHour = reportHour AndAlso currMinute = reportMinute AndAlso currnSecond = reportSecond Then
                    ObjProductionDataTransfer.CopyDataToArchiveServerDayWiseDL(Configuration.ConfigurationManager.AppSettings("SourceServerPath"), Configuration.ConfigurationManager.AppSettings("ArchiveServerPath"),
    actionTimerName, time, actionParameter)
                End If
            Catch ex As Exception
                LoggingTracing.WriteError(ex.ToString())
            End Try
        End Sub
    It is running at 5 pm , but run 3 times, for that records has updated 3 time 
    How i can resolve it, If any problem in this code please give me the write direction or code. And this thing i have been searching for 3 days , but stile i didn't get any solution
    sonesh

    Sonesh,
    Sorry but you have posted to a forum that deals exclusively with questions/issues about customizing and programming Microsoft Project, a planning and scheduling application. I suggest you delete this post and find a more appropriate forum.
    John

  • [Solved] Systemd user service and timer dbus error

    I have installed arch recently and added a few of my own services, for example the acpi_call commands and such. Now I want to create a systemd service that runs every 5 minutes and execute a script.
    I searched a lot and I found that I must use timers. I got the thing with the timers working, but because my script has to do with a specific user, I want it to run only every 5 minutes when i am logged in as that user.
    I tried to put the files in /etc/systemd/users, .config/local/users and all the possibilities but everytime i want to enable it, it says dbus connection refused.
    Can somebody please provide me a way to execute a systemd service every 5 minutes while I am logged in as a specific user?
    I did follow the wiki and created a dbus service and all. Everything works on that side but i can't enable my user service.
    thanks!
    Last edited by nopemopes (2015-03-25 11:10:06)

    jasonwryan wrote:
    What errors are you getting? https://bbs.archlinux.org/viewtopic.php?id=57855
    Not a Sysadmin issue, moving to NC...
    sorry, didn't mean to be incomplete.
    The error says "Failed to get D-Bus connection: Connection refused".
    I did what the wiki said: Create the dbus files, enable them and such.
    No i put my service files + timer in the places mentioned by the wiki but everytime i try to enable them, that error shows up.
    systemctl status dbus gives me all good
    dbus.service - D-Bus System Message Bus
    Loaded: loaded (/usr/lib/systemd/system/dbus.service; static; vendor preset: disabled)
    Active: active (running) since ma 2015-03-23 19:39:24 CET; 1h 18min ago
    Docs: man:dbus-daemon(1)
    Main PID: 246 (dbus-daemon)
    CGroup: /system.slice/dbus.service
    └─246 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
    mrt 23 19:39:34 Jordy-Laptop dbus[246]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='...ervice'
    mrt 23 19:39:34 Jordy-Laptop dbus[246]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1....ectory.
    mrt 23 19:39:34 Jordy-Laptop dbus[246]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='...ervice'
    mrt 23 19:39:34 Jordy-Laptop dbus[246]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1....ectory.
    mrt 23 19:39:39 Jordy-Laptop dbus[246]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='...ervice'
    mrt 23 19:39:39 Jordy-Laptop dbus[246]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    mrt 23 19:47:01 Jordy-Laptop dbus[246]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='...ervice'
    mrt 23 19:47:01 Jordy-Laptop dbus[246]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    mrt 23 20:51:38 Jordy-Laptop dbus[246]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='...ervice'
    mrt 23 20:51:38 Jordy-Laptop dbus[246]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    that's the log for dbus and these are my files:
    drive_sync.service
    [Unit]
    Description=Drive sync
    [Service]
    Type=simple
    ExecStart=drive_script.sh
    drive_sync.timer
    [Unit]
    Description=Drive sync
    [Service]
    Type=simple
    ExecStart=drive_script.sh
    these files are located in ~/.config/systemd/user
    Last edited by nopemopes (2015-03-23 20:00:55)

  • Compressor 3.0.5 "unknown time remaining"

    Each time I try to compress a file, the time remaining reads "unknown time remaining" and it doesn't move. When I send files to compressor from Final Cut, FCP and Compressor both lock up when I click submit. I have tried all the solutions listed in other post such as deleting the preferences, using compressor repair, uninstalling compressor and the entire final cut studio, but none work. I have reinstalled leopard done multiple times and it will work for a while, then I get the same problem again. I have tried to do Time Machine restores to backup taken while it was working, but it will not work when I restore it. Without compressor, I have great trouble making DVD out of my footage shot in HD. Help Please!
    thanks in advance

    Just as an addon, I found a fix offered by Digital Rebellion in another post somewhere in here. They have a (free) compressor repair utility, amongst other things on their website. I just ran it and now my Compressor works again. Thanks Digital Rebellion!
    Here's the link: http://www.digitalrebellion.com/compressor_repair.htm
    Hope this works for you.
    best,
    -alf

  • While downlaoding any type of file instead of showing the file size 'unknown time remaining' is showing?

    While downlaoding any type of file instead of showing the file size 'unknown time remaining' is showing? Please suggest solution to these problems?

    I followed ALL the Above suggestions to NO AVAIL!
    When I start a download, if I then Click PAUSE, it WILL NOT CANCEL & IT WILL NOT RESUME, just sits there stating "unknown time remaining"
    and I CAN'T GET RID OF IT!
    It would seem that Something Changed with the latest Firefox Beta Update that is causing this Anomalie.. Please FIX ASAP as I find this Very Annoying.
    With ANY Download in Limbo the Firefox Taskbar Icon displays a Partial Download Progress THAT NEVER CHANGES and I can not tell what Other Downloads are doing - It also Warns me that X-Number of Downloads are Still Pending when I go to Close Firefox, but as I stated, these Downloads are DOING NOTHING & CAN'T BE REMOVED!
    HELP! - BJ

  • Window service Timers.Timer

    Hi Guys Please help me.
    Actully i create a window service. This window service has timer for update record once in a day at 5 pm.
    I have write a code but it is not working fin
    Here is my code.
    App.Config File:-
    <appSettings>  
        <add key="IsTrace" value="YES"/>
        <add key="SourceServerPath" value="Server=DATASERVER\SQL2008R2;database=WDSBHN;User ID=Wireless;pwd=chetu@123"/>
        <add key="ArchiveServerPath" value="Server=CHETUIWK091\SQL2008R2;database=Demo;User ID=sa;pwd=Chetu@123"/>
        <add key="ReportHour" value="22"/>
        <add key="ReportMinut" value="01"/>
        <add key="ReportSecond" value="20"/>
        <add key="ReportMilisecond" value="230"/>
        <add key="DailyTimer" value="tmrProductionDataTransfer"/>
        <add key="MonthlyTimer" value="tmrProductionCleanUp"/>
        <add key="ActionParameter" value="WDS-DataTransfer"/>
      </appSettings>   
    Vb.Net Code:-
    Protected Overrides Sub OnStart(ByVal args() As String)
            ' Add code here to start your service. This method should set things
            ' in motion so your service can do its work.
            Try
                LoggingTracing.WriteTrace("DataTransfer Service START " & Now.ToLongDateString & " " & Now.ToLongTimeString())
                '***Get the Time of service run
                Dim svcRunTime As System.DateTime = Configuration.ConfigurationManager.AppSettings("ServiceRunTime")
                '***differance of these two time
                Dim ts As TimeSpan = DateTime.Now.Subtract(svcRunTime)
                '***production data transfer
                tmrProductionDataTransfer.Enabled = True
                tmrProductionDataTransfer.Interval = 1000
                tmrProductionDataTransfer.Start()
            Catch ex As Exception
                LoggingTracing.WriteError(ex.ToString())
            End Try
        End Sub
    Private Sub tmrProductionDataTransfer_Elapsed(sender As Object, e As Timers.ElapsedEventArgs) Handles tmrProductionDataTransfer.Elapsed
            Try
                Dim time As Date = Date.Now
                Dim currHour As Integer
                Dim currMinute As Integer
                Dim currnSecond As Integer
                Dim reportHour As Integer
                Dim reportMinute As Integer
                Dim reportSecond As Integer
                Dim reportMiliSecond As Integer
                Dim actionParameter As String = Configuration.ConfigurationManager.AppSettings("ActionParameter")
                Dim actionTimerName As String = Configuration.ConfigurationManager.AppSettings("DailyTimer")
                currHour = time.Hour
                currMinute = time.Minute
                currnSecond = time.Second
                reportHour = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportHour"))
                reportMinute = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportMinut"))
                reportSecond = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportSecond"))
                reportMiliSecond = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportMilisecond"))
                If currHour = reportHour AndAlso currMinute = reportMinute AndAlso currnSecond = reportSecond Then
                    ObjProductionDataTransfer.CopyDataToArchiveServerDayWiseDL(Configuration.ConfigurationManager.AppSettings("SourceServerPath"), Configuration.ConfigurationManager.AppSettings("ArchiveServerPath"),
    actionTimerName, time, actionParameter)
                End If
            Catch ex As Exception
                LoggingTracing.WriteError(ex.ToString())
            End Try
        End Sub
    It is running at 5 pm , but run 3 times, for that records has updated 3 time 
    How i can resolve it, If any problem in this code please give me the write direction or code. And this thing i have been searching for 3 days , but stile i didn't get any solution
    sonesh

    Sonesh,
    Sorry but you have posted to a forum that deals exclusively with questions/issues about customizing and programming Microsoft Project, a planning and scheduling application. I suggest you delete this post and find a forum appropriate for your issue.
    John

  • CPIC CALL service unknown

    Hi,
    We are trying to send idoc from r3 to Xi but in sm58 (r3 side) the error keeps hanging with following error :
    CPIC-CALL: 'ThSAPCMINIT' : cmRc=20 thRc=665#Service inconnu
    665 -> Gateway service unknown.
    The FM involved is IDOC_INBOUND_ASYNCHRONOUS
    Where is system checking for the service?
    Best regards,
    Laurent

    Hi,
    if you are configuring it to XI side try this blog,
    /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    else
    - You need to get Basis to register your program on the destination system.
    - Give the program Id in your communication channel then save and activate ur channel. Now test ur connection in SM59.
    - use this blog /people/shabarish.vijayakumar/blog/2008/01/08/troubleshooting--rfc-and-soap-scenarios-updated-on-20042009
    Regards
    Aashish Sinha
    PS : reward points if helpful

  • OSB Service Processing time

    Dear all,
    we have requirement to find out OSB Service Processing time. can you please suggest how we can get this information using OSB Console or if ther are any JMX Api available to get this data.
    requirement is: to know the actual execution time in OSB Request processing time.(should not include target system processing time)
    thanks in advance.
    pr

    PR,
    You can use inbuilt service monitoring (Oracle Service Bus Monitoring Framework) functionality to find out the same...
    http://docs.oracle.com/cd/E17904_01/doc.1111/e15867/monitoring_ops.htm#i1086439
    Service Health tab shows Service level metrics in the Oracle Service Bus Dashboard...
    http://docs.oracle.com/cd/E17904_01/doc.1111/e15867/monitoring_ops.htm#i1107760
    Hope it helps !!
    Regards,
    Abhinav Gupta

  • Compressor 3.0.5 stays on unknown time remaining

    Compressor 3.0.5 stays on unknown time remaining and I am not able to export video or audio files. I tried reinstalling the whole FCP studio 2 it works for a bit and then same problem occur. Can anybody help?
    Thanks,
    Scott

    Just as an addon, I found a fix offered by Digital Rebellion in another post somewhere in here. They have a (free) compressor repair utility, amongst other things on their website. I just ran it and now my Compressor works again. Thanks Digital Rebellion!
    Here's the link: http://www.digitalrebellion.com/compressor_repair.htm
    Hope this works for you.
    best,
    -alf

  • Avalibility  of  services real-time

    Hi participants in this forum
    I have a question regarding services scenario
    suppose I am a company selling furnitures and doing the assembly as a service so i want that the customer when orders some item they should select the kind of service (eg assembly within 3 days/assembly within 5 days /assembly within 10 days so on ) and when they select this service along in the item configuration or BOM they should also see the
    avalibility of these services real-time , we can use GOP etc also .

    At www.cs.purdue.edu you can find several pictures from ScanEagle that are public available.

  • I've gotten a SIM card failure message and lost service 4 times in the past half a day

    I've gotten a 'SIM card failure' message and lost service 4 times in the past half a day. Turning the phone off and on fixes it temporarily. Any similar problems? What did you do?

        this is definitely not the experience we want you to have with your phone wme1221. I recommend a SIM card pull. What type of phone do you have? Is the phone damaged?
    KInquanaH_VZW
    Follow us on Twitter @vzwsupport

  • COMPRESSOR 3 NOT WORKING, i just get "Unknown time remaining"

    Ok, I'm running on a g5 tower with 10.4.9 OSX, it's a 2x2.66 Dual-Core Intel Xeon with 4 GB 667 Mhx DDR2 FB-DIMM.
    I just installed FCS 2 last week. I'm converting 24 minute quicktime files to mp2 in compressor. First 5 episodes work great. So then i set up 7 more episodes and go home hoping that when i come into work today all will be converted. But no, the computer froze shortly after i left. Ok, no biggie, reboot try again. But now, when i try to compress something, instead of counting down telling me how much time is left on the conversion, it just says "unknown time remaining" But i let it sit overnight AGAIN, and nothing got converted.
    I tried re-installing FCS 2, didn't fix it, I tried deleting the preferences, didn't fix it. I've tried changing the location, different formats, different EVERYTHING and NOTHING WORKS.
    I've searched all morning on many forums for help but can't find anything. I've found that other people have this problem, but no ideas how to fix it. PLEASE PLEASE, if anyone knows how to fix this I'd be so thankful. My job is potentially on the line hear as I have to have this files delivered on DVD very soon.
    Oh, and I also tried updating my compressor to 3.01, but that didn't do anything either.
    Ok, I pray to God someone can help me.

    Hey all. I was having the same "unknown time remaining" issue until I found this post. Special thanks to all of you for the help. This is a particularly annoying bug that I have been able to repeat endlessly and I will say that the fix works. After I downloaded the updates for my purchased final cut 2, I was able to fix the problem. However, after 10 or so uses of Compressor, it seems to reappear. I have made a copy of the qmaster file on my desktop and by emptying it, and then "reset background processing", I have been able to start a new compression batch. It seems that I am asking a lot of compressor because I will open about 100 five minute videos, then set up my own single h264 compression to 800kpbs, 640 X 480, with brightness and contrast tweaked, and my watermark added... Compressor has been quitting almost every time. When I do 2 or 3 videos at a time, it seems to work fine. (btw: I have 4 gigs of RAM) Does anyone know if Compressor is supposed to be able to output 100 videos like this? Do i need a Mac Pro with 16 gigs RAM? Does that Sorensons Squeeze work any better? Any advice is appreciated. peace, dix.

  • After submitting i shows unknown time remaining and seems stuck there

    i have used it before and it works but now when i submit it i seems to freeze and show unknown time remaining....

    I have had the same problem. I spoke with Apple Care and made the tech aware of all the posts on the Internet and that this flaw in Compressor was a problem with many people using many different kinds of Macs.
    He claimed to have never heard of it. We solved the problem temporarily by trashing the cache and the prefs and then making a new account and using that one to compress the video. It didn't always work but it did once so it got me going so I completed the project.
    Compressor is a real buggy program and mine doesn't even work anymore. Apple needs to solve this problem or do a make good for us.
    At least do something.

  • Job submitted-"Unknown Time Remaining" with no progress. Please help!

    This is driving me crazy. I can't figure it out.
    I submit a job, I get the message "unknown time remaining" with no progress in the progress bar. Nothing happens.
    I am using an iMac.
    Processor 2.4 GHz Intel Core 2 Duo
    Memory 4 GB
    Version 10.5.8
    Compressor 3
    Movie is exported to my desktop from FCP as a Quicktime file. I am using current settings. Audio and video included. Self contained. DV NTSC 48KHz Anamorphic 720x480
    The setting I choose is H.264 800Kbps Quicktime 7 compatible. In the inspector under geometry I choose custom (16:9). Destination is desktop.
    When I submit, it shows in history but never does anything. Just get that message.
    Please help!

    Do you know what else I could use to compress? I'm about to google.
    This might help you. I've found Compressor Repair online. Unfortunately it did not fix the problem for me. You might have better luck.
    http://www.digitalrebellion.com/compressor_repair.htm
    let me know if it works for you.

Maybe you are looking for