Parsing XML with VBS at a Windows Server 2008 R2

Hi
my name is Marius, and I have a little problem with my vbs script. I use this script to parse an xml File if there are errors inside. In my old environment Windows Server 2003 it would work fine.
Now I will run this script at a newer Server 2008 R2, and it is not working.
Dim sName
sName = "Path to xml file"
Dim xmlFile
Dim oneNode
Dim childNodes, childNode
Dim attribut
Dim EventID
Dim repGroup
Dim CustomDomain
Dim ErrorCounter
BackupNotes = ""
ErrorCounter = 0
wscript.Echo "sName: " & sName 'Wird in die Logdatei geschrieben
set xmlFile = CreateObject("Microsoft.XMLDOM")
'Es wird die XML Datei geladen
if xmlFile.load(sName) then
'Schreibt das Datum und die Uhrzeit des XML Datei in oneNode
set oneNode = xmlFile.selectSingleNode("//timestamp/systemTime")
if oneNode is Nothing then
BackupBeginTime = ""
BackupEndTime = ""
BackupBeginDate = ""
BackupEndDate = ""
'wscript.echo "Keine Daten vorhanden" 'Wird in die Logdatei geschrieben
else
'Friday, November 09, 2012 11:55:32
BackupBeginTime = right(oneNode.text, 8)
'nimm von rechts die 8 folgenden Zeichen (11:55:32)
BackupEndTime = BackupBeginTime
Dim Laenge
Laenge = LEN(oneNode.text)
'zaehlt die Lange des Strings in oneNode 'Friday, November 09, 2012 11:55:32 = 34
'wscript.echo Laenge
Laenge = Laenge - 9
'34 - 9 = 25
'es wird das Datum aus dem String der XML Datei gebaut, damit es in die DB geschrieben werden kann
Dim dfsDate
Dim dfsVon
Dim dfsBis
dfsDate = left(oneNode.text, Laenge)
'nimm von links die 25 folgenden Zeichen (Friday, November 09, 2012)
dfsVon = inStr(dfsDate, ",")
'pruefe wo das 1. Komma ist und schreiben die Zeichen in die Variable
dfsVon = dfsVon + 1
'wscript.echo dfsVon
dfsBis = LEN(dfsDate)
'wscript.echo dfsBis
dfsDate = mid(dfsDate, dfsVon, dfsBis)
'Nimm die daten ab dem Komme bis zum Ende des Strings
dfsDate = trim(dfsDate)
'entferne die Leerzeichen Vor und Nach dem Sting
'Wscript.echo dfsDate
dfsDate = cdate(dfsDate)
'dfsDate = November 09, 2012 und wird in 09.11.2012 durch cdate umgebaut
'wscript.echo dfsDate
BackupBeginDate = dfsDate
BackupEndDate = dfsDate
end if
set oneNode = xmlFile.selectSingleNode("//replicationGroup")
'Sucht nach der Replikationsgruppe und der Domain
repGroup = oneNode.getAttribute("name")
CustomDomain = oneNode.getAttribute("domain")
if oneNode is Nothing then
wscript.echo "Keine Daten vorhanden"
'Wird in die Logdatei geschrieben
else
wscript.echo "RepGroup: " & repGroup
'holt sich den Namen der Replikations Gruppe 'Wird in die Logdatei geschrieben
wscript.echo "Domain: " & CustomDomain
'holt sich den Domain 'Wird in die Logdatei geschrieben
end if
set childNodes = xmlFile.selectNodes("//serverErrors/error")
for each childNode in childNodes
'Zugriff auf den Type und die Event ID
attribut = childNode.getAttribute("type")
EventID = childNode.getAttribute("id")
if isNull(attribut) then
wscript.echo "MultiParameter nicht gefunden" 'Wird in die Logdatei geschrieben
'Fehlerhandling, da attribut nicht vorhanden
'wenn keines dieser Attribute vorhanden ist, ist der Backupjob erfolgreich
ErrorCounter = 0
else
' pruefen was im attribut steht und dann entscheiden ob erfolgreich oder nicht
if(attribut = "error") then
if(EventID = "6002") then
BackupNotes = BackupNotes & " "& attribut &"("& EventID &")"
wscript.echo "EventID: "& attribut &" ("& EventID & ") - http://support.microsoft.com/kb/953527" 'Wird in die Logdatei geschrieben
               'Fehlerbehandlung mit ErrrorCounter - Fehler bekannt = 0 Fehler unbekannt + 1
                ErrorCounter = ErrorCounter + 1
elseif(EventID = "11004") then
BackupNotes = BackupNotes & " "& attribut &"("& EventID &" - Temp File)"
wscript.echo "EventID: "& attribut &" ("& EventID & ") - Es konnten nicht alle Daten kopiert werden, Temporaere Dateien http://social.technet.microsoft.com/wiki/contents/articles/406.dfsr-does-not-replicate-temporary-files.aspx"
'Wird in die Logdatei geschrieben
               'Fehlerbehandlung mit ErrrorCounter - Fehler bekannt = 0 Fehler unbekannt + 1
                ErrorCounter = ErrorCounter + 0
elseif(EventID = "4302") then
BackupNotes = BackupNotes & " "& attribut &"("& EventID &" - Freigabeverletzung)"
wscript.echo "EventID: "& attribut &" ("& EventID & ") - Freigabeverletzung http://support.microsoft.com/kb/973836 - Fehler ist bekannt und kann ignoriert werden" 'Wird in die
Logdatei geschrieben
               'Fehlerbehandlung mit ErrrorCounter - Fehler bekannt = 0 Fehler unbekannt + 1
                ErrorCounter = ErrorCounter + 0
elseif(EventID = "4208") then
BackupNotes = BackupNotes & " "& attribut &"("& EventID &" - Staging Quota)"
wscript.echo "EventID: "& attribut &" ("& EventID & ") - Staging Quota zu klein http://blogs.technet.com/b/askds/archive/2011/07/13/how-to-determine-the-minimum-staging-area-dfsr-needs-for-a-replicated-folder.aspx"
'Wird in die Logdatei geschrieben
               'Fehlerbehandlung mit ErrrorCounter - Fehler bekannt = 0 Fehler unbekannt + 1
                ErrorCounter = ErrorCounter + 1
else
BackupNotes = BackupNotes & " "& attribut &"("& EventID &")"
wscript.echo "EventID: "& attribut &" ("& EventID & ")"  'Wird in die Logdatei geschrieben
               'Fehlerbehandlung mit ErrrorCounter - Fehler bekannt = 0 Fehler unbekannt + 1
                ErrorCounter = ErrorCounter + 1
end if
end if
if(attribut = "warning") then
if (EventID = "4208") then
BackupNotes = BackupNotes & " "& attribut &"("& EventID &" - Staging Quota)"
wscript.echo "EventID: "& attribut &" ("& EventID & ") - Staging Quota zu klein http://www.retherfords.com/blogs/CoryRetherford/Lists/Posts/Post.aspx?ID=104 - Fehler ist bekannt und
kann ignoriert werden"  'Wird in die Logdatei geschrieben
'Fehlerbehandlung mit ErrrorCounter - Fehler bekannt = 0 Fehler unbekannt + 1
ErrorCounter = ErrorCounter + 0
elseif (EventID = "11004") then
BackupNotes = BackupNotes & " "& attribut &"("& EventID &" - Temp Datei)"
wscript.echo "EventID: "& attribut &" ("& EventID & ") - Es konnten nicht alle Daten kopiert werden, Temporaere Dateien - Fehler ist bekannt und kann ignoriert werden"  'Wird
in die Logdatei geschrieben
'Fehlerbehandlung mit ErrrorCounter - Fehler bekannt = 0 Fehler unbekannt + 1
ErrorCounter = ErrorCounter + 0
elseif (EventID = "4302") then
BackupNotes = BackupNotes & " "& attribut &"("& EventID &" - Freigabeverletzung)"
wscript.echo "EventID: "& attribut &" ("& EventID & ") - Freigabeverletzung http://support.microsoft.com/kb/973836 - Fehler ist bekannt und kann ignoriert werden"  'Wird
in die Logdatei geschrieben
'Fehlerbehandlung mit ErrrorCounter - Fehler bekannt = 0 Fehler unbekannt + 1
ErrorCounter = ErrorCounter + 0
elseif (EventID = "4206") then
BackupNotes = BackupNotes & " "& attribut &"("& EventID &" - Staging Quota)"
wscript.echo "EventID: "& attribut &" ("& EventID & ") - Staging Quota zu klein http://mpwiki.viacode.com/default.aspx?g=posts&t=123818"  'Wird in die Logdatei geschrieben
'Fehlerbehandlung mit ErrrorCounter - Fehler bekannt = 0 Fehler unbekannt + 1
ErrorCounter = ErrorCounter + 0
elseif (EventID = "11001") then
BackupNotes = BackupNotes & " "& attribut &"("& EventID &" -)"
wscript.echo "EventID: "& attribut &" ("& EventID & ") - "  'Wird in die Logdatei geschrieben
'Fehlerbehandlung mit ErrrorCounter - Fehler bekannt = 0 Fehler unbekannt + 1
ErrorCounter = ErrorCounter + 0
else
BackupNotes = BackupNotes & " "& attribut &"("& EventID &")"
wscript.echo "EventID: "& attribut &" ("& EventID & ")"  'Wird in die Logdatei geschrieben
'Fehlerbehandlung mit ErrrorCounter - Fehler bekannt = 0 Fehler unbekannt + 1
ErrorCounter = ErrorCounter + 0
end if
end if
end if
next
else
wscript.echo "Pfad (sName): XML Datei nicht vorhanden" 'Wird in die Logdatei geschrieben
ErrorCounter = ErrorCounter + 1
'Wenn keine XML Datei vorhanden ist, wird dies in die DB geschrieben
BackupBeginTime = ""
BackupEndTime = ""
BackupBeginDate = ""
BackupEndDate = ""
BackupNotes = "XML Datei nicht vorhanden"
end if
Had somebody a Info for me what I'm doing wrong :)
Thanks & Regards
Marius

Hi JRV,
I have checked my script und I have get it running by wscript.
And I have an error with the funktion cdate:
sName: \\S-49-NICSAS-201.nicsas.local\_logs\RH\S-49-RHBAD-001\DFS\S-49-RHBAD-001-Bad_Users.xml
10
27
December 19, 2013
C:\_scripts\xmltest.vbs(56, 3) Microsoft VBScript runtime error: Type mismatch:'cdate'
THis is the Code:
dfsDate = left(oneNode.text, Laenge)
'nimm von links die 25 folgenden Zeichen (Friday, November 09, 2012)
dfsVon = inStr(dfsDate, ",")
'pruefe wo das 1. Komma ist und schreiben die Zeichen in die Variable
dfsVon = dfsVon + 1
wscript.echo dfsVon
dfsBis = LEN(dfsDate)
wscript.echo dfsBis
dfsDate = mid(dfsDate, dfsVon, dfsBis)
'Nimm die daten ab dem Komme bis zum Ende des Strings
dfsDate = trim(dfsDate)
'entferne die Leerzeichen Vor und Nach dem Sting
Wscript.echo dfsDate
dfsDate = cdate(dfsDate)
'dfsDate = November 09, 2012 und wird in 09.11.2012 durch cdate umgebaut
wscript.echo dfsDate
I'm not sure why it is not working, could you help?
Thanks & Regards
Marius

Similar Messages

  • OS 10.7, SMB Connection, Change to Unicode with Extended Security on Windows Server 2008 Standard

    Hi All,  I've searched Google, and I've also contacted Apple Support with no luck:  I want to implement unicode with extended security on Windows Server 2008 Standard server shared folders so that Lion can connect normally (i.e. Finder->Go->Connect to Server->IP Address or server name) to SMB shares and access files.  I'm lacking information; has anyone actually implemented unicode with extended security?  If so, how?
    Thanks in advance.
    Tom

    Thanks for the reply aorlich. Do you mean enable file sharing on my Mac? With file sharing enabled, I still cannot get to my Windows 7 shares, although the files on my Mac do become available to Windows. Thanks again.

  • ACS any Version with Domain Controller on Windows Server 2008 R2 64bit

    Hi All
    Is there currently any ACS version working with Windows Server 2008 R2 domain controllers?
    Our server stuff has recently upgraded the Domain Controllers to 2008r2 and turned off the 2003 servers. This didn't make our ACS 4.1.4 really happy.
    I've read now serveral posts regarding issues with ACS and Server 2008r2 and hope to find a solution (besides switching to LDAP, yukk).
    Thanks
    pato

    Hi AllIs there currently any ACS version working with Windows Server 2008 R2 domain controllers?Our
    server stuff has recently upgraded the Domain Controllers to 2008r2 and
    turned off the 2003 servers. This didn't make our ACS 4.1.4 really
    happy.I've read now serveral posts regarding issues with ACS and
    Server 2008r2 and hope to find a solution (besides switching to LDAP,
    yukk).Thankspato
    Hi Pato,
    Just check out the below link hope that help.
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_server_for_windows/4.2/release/notes/ACS42_RN.html
    As per the link it says The support for Windows Server 2008 is applicable for ACS 4.2 Patch 4 onwards.
    Hope to Help !!
    Remember to rate the helpful post
    Ganesh.H

  • Upgrade of OS windows server 2008r2 from without Hyper-v to Hyper-V with out re installing Windows server 2008 R2

    Hi,
    I have server with Windows server 2008 R2 Std, in this server, Hyper V feature is not available in Role and Feature in Server Manager, I want to add Hyper V with out re installing OS.
    If it is possible Please provide the solution step by step.
    Waiting for your reply.
    Thanks
    Sumit

    Hi,
    Any one can response on this?
    Thanks
    Sumit

  • Is anyone having trouble with itunes running on Windows server 2008?

    We use to have iTunes running on a Dell desktop box that was acting as our file server for years. I upgraded both our hardware to a Dell Pwoeredge server running Windows Server 2008 RS and now I'm finding that iTunes will only stay running for about 3 days. It stops running and has to be force quit and then restarted to get songs playing again. Does anyone know why this is happening and how I can stop it for happening in the future? We use iTunes based music for our on-hold music for our phone system and for in-store ambiance music.
    Kirk

    We use to have iTunes running on a Dell desktop box that was acting as our file server for years. I upgraded both our hardware to a Dell Pwoeredge server running Windows Server 2008 RS and now I'm finding that iTunes will only stay running for about 3 days. It stops running and has to be force quit and then restarted to get songs playing again. Does anyone know why this is happening and how I can stop it for happening in the future? We use iTunes based music for our on-hold music for our phone system and for in-store ambiance music.
    Kirk

  • Routing Issue with 2 Nics on Windows Server 2008 R2

    Good Day
    My issue is I needed to set up port forwarding for a web server to communicate with our hotels management server to check availability.
    Initially the server has a single Nic configured in the 172.26.1.0 /24 network  , Its default gateway the Switch vlan interface 172.26.1.1
    We have many vlans for all the systems in the hotel and the server also needs to communicate with 3 other servers on different subnets which it does just fine.
    I now added an additional adsl line with a managed router which has an interface of 192.168.10.1 /24 , My servers second NIC has the IP address 192.168.10.2 with its gateway being the 192.168.10.1
    This 192.168.10.0 network is in a L2 Vlan and the rest of the network does not know it exists. It was working fine then just stopped asfter i added a static route to the server , which i did with RRas... I did this as the server could not communicate with
    just one of the servers..
    If i disable the 172.26.1.0 NIC the port forwarding works but then obviously the rest of the network goes down.. I know its a routing issue but am lost
    please help

    Hello,
    using multiple default gateways is not a good idea.
    See details in http://support.microsoft.com/kb/159168/en-us
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • Dynamic Crystal Report with Windows Server 2008

    I am creating a report through code with Crystal report on Windows Server 2008 R2. When I am executing the following command:
    CRAXDRT.Report.Database.AddADOCommand
    This is generating an error which is given below:
    Error description: Logon failed
    Details: [Database Vendor Code: -205]
    But its working fine with Windows Server 2003.
    Private Sub AddRptDatabase(a_CRReport As CRAXDRT.Report, a_sStartDT As String, _
                               a_sEndDT As String, a_sDept As String, a_sStatus As String)
        Dim cnnRpt As ADODB.Connection
        Dim cmRpt As ADODB.Command
        Dim sSQL As String
        Dim sWhere As String
        Dim sTemp As String
        Dim sTemp1 As String
    sSQL = sSQL & sWhere & " Order by AdminData.RONumber"
      Set cnnRpt = New ADODB.Connection
        cnnRpt.open g_objBA.LocalConnectionString
    Set cmRpt = New ADODB.Command
        cmRpt.ActiveConnection = cnnRpt
        cmRpt.CommandType = adCmdText
        cmRpt.CommandText = sSQL
        'Create data set
        a_CRReport.Database.AddADOCommand cnnRpt, cmRpt
      Exit Sub
    Please suggest some solution.

    Moved to Legacy SDK forum.
    CR XI R2 Service Pack 6 and Fix Pack 6.4 should work on Windows 2008. CR 2008 SP 2 and above also. Older version, no support for it.
    CR is 32 bit, make sure the 32 bit client is installed and being used.
    Thank you
    Don

  • Error In Installing AddOn on Windows Server - 2008

    Hello,
    I have created an addon on Visual Studio 2005 in Windows Server 2003 OS and then packaged that using B1DE Tool as ard file and run that on my system and the addon is working properly . But when i want to run that addon on system with operating System as Windows Server 2008 the addon is not getting installed and is giving as error message " Incorrect Format " and not even the exe of addon is not running on that server machine .What to do so that my addon works .
    Thanks & Regards
    Amit

    Hello ,
    My main problem occurs while creating the ard file .Normally While building AddOn installer file system creates .Ard file in Bin Folder. But when i creates the Ard File by changing the Target CPU as x86 Then a folder named x86 get created in the bin folder of AddOn Installer file without any ard file in that folder.Then i again build the addon installer project and copies the
    Exe file of x86 folder & Ard File of Bin Folder and deploy that on Server 2008 .Then the system is throwing a message "
    Wrong Digital Signature " that's where i am facing problem while creating ard file bychanging the compile mode to x86.
    Please suggest since its causing me problems in deploying on Client Server .
    Thanks & Regards,
    Amit

  • Joining Windows Server 2008 to Windows Small Business Server 2008

    We have Windows Small Business Server 2008 and it came with a copy of Windows Server 2008 and MS SQL. (A packeged deal from Microsoft).
    Long ago I installed Windows Server 2008 and MS SQL on a computer and joined it with SBS2K8.
    My Windows Small Business Server 2008 crashed and I had to redo it and now I can't get the Windows Server 2008 to join it.
    We are not using the computers for a domain or anything but they are on our network with regular IP addresses.
    The Windows 2008 Server uses the SBS2K8's IP address for it's DNS. The DNS for the  SBS2K8 is 127.0.0.1
    We are using Windows Server 2008 for SolidEdge and MS SQL has to authenticate against the SBS2K8 to run.
    Should I hook both computers up to a switch for their own network to get them talking to each other?
    Do I have to put the Windows 2008 Server name in the SBS2K8 for a user?
    Please advise and thanks.

    Hi:
    Read the warning at the end of this and be sure you follow it.
    Can you explain further this part:  We are not using the computers for a domain or anything but they are on our network with regular IP addresses.
    I ask because SBS MUST be a domain controller or it will not work.  Right click My Computer -  Properties - Computer name tab and let us know if the SBS is "domain" or "workgroup".
    What I expect is the SBS is a Domain, and when you reinstalled it it becomes a new domain, even if it has the same name.  The Server was a member server in the old domain, so the solution to this is to change the Server 2008 with SQL from domain to
    workgroup in the same place as above, then after it restarts rejoin it to the SBS domain by changing it once again to Domain.
    Both the SBS and the Server 2008 should have static ip addresses and the SBS should be the DHCP server for the rest of the network, not your router/firewall.
    Warning:  You MUST check in control panel - users on the Server 2008 to verify you have a local administrative level account and you are positive you know the password for that account.  When the server restarts after being placed into workgroup
    mode the domain administrator will no longer be able to logon to the Server 2008.
    Larry Struckmeyer[SBS-MVP] If your question is answered, please mark the response as the answer so that others can benefit.

  • Installing Forms 11g 64bit on Windows Server 2008 64bit

    Hi,
    we are trying to install Forms 11g 64 bit with WebLogic 64bit on windows Server 2008 64bit and followed the short checklist of Jan Carlin :
    - installed JDK 64bit
    - installed WLS1032-generic
    - started installation of Forms/Reports
    Installation of Software worked fine and the configuration part did create the domain, but starting the domain fails (hang).
    Info in Log-File :
    =========================================================
    oracle.as.provisioning.util.ConfigException:
    Fehler beim Starten der Domain.
    Cause:
    Zeitüberschreitung beim Starten von Admin_Server.
    Action:
    Weitere Informationen finden Sie in den Logs.
         at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
         at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3142)
         at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3033)
         at oracle.as.provisioning.engine.WorkFlowExecutor._startAdminServer(WorkFlowExecutor.java:1647)
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:637)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:393)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    [2010-02-22T19:37:39.730+01:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000IRqToJA5uXW5Pzw0yd1BWefv00000B,0] [[
    oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:688)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:393)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    ================================================
    Somewhere I've read that the reason might be that the installation uses 32bit JDK, but I don't know if I did something wrong.
    Somewhere else I've read that the reason could be the Path setting, which may include some directories with emphasis in the name which might be a problem for Weblogic.
    Any idea or help is appreciated.
    Thanks,
    Mark

    FYI,
    This is related to Oracle-Bug 9370799 which hopefulls get sorted out sometimes. Having "(" or ")" somewhere in the PATH is not working. The workaround til the Bug is solved as of support is :
    =================================
    1) Remove the directory with "(" ")" from the System Path at install time only (this is what you have already performed)
    2) Roll back the change so the System Path contains again the directory path with parenthesis
    3) Copy in the clipboard the current PATH value and edit the <Middleware Home>\wlserver_10.3\common\bin\commEnv.cmd file and look for the following line:
    if "%WL_USE_X86DLL%" == "true" set PATH=%PATCH_PATH%;%WL_HOME%\server\native\win\32;%WL_HOME%\server\bin;%ANT_HOME%\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%PATH%;%WL_HOME%\server\native\win\32\oci920_8
    4) Before this line define PATH to value you have in the clipboard without the reference to the directory with "(" and ")"
    5) Save the commEnv.cmd and you should be able to start up your domain having the directory containing the "(" and ")" in the System Path
    ==================================
    Thanks for your replies,
    Mark

  • Oracle 11g Client for Windows Server 2008 Relase2 Operating Stystem

    Hi,
    I am having a server with Operating System as Windows Server 2008 R2 version 64 - bit.
    I am using SSRS 2008 which is 64 bit, for retreiving the data from Oracle (which is 11g - 32 bit), I am unable to create data source for Oracle.
    I had installed ODAC Components of Oracle 11.1.0.7.20 on the server, but still I am getting the following error:
    "The 'OraOLEDB.Oracle.1' provider is not registered on the local machine."
    Does any one know how to install Oracle Client 11g on Windows Server 2008 R2 Operating system?

    Helios,
    It is wonderful that you are polite and encouraging to new people.
    While you are responding, could you explicitly direct people to use the correct forum. This has at least 2 benefits:
    1) Ensures that the person gets the widest possible amount of assistance;
    2) Ensures that the rest of us do not need to waste time on improperly placed questions.
    I suggest 'explicitly' since some people do not get the hint, and keep returning to the original thread.
    This thread belongs in 'Database - General' or 'Database - Install'.

  • Pb with pro*C / Oracle 11 / VS2010 on Windows server 2008

    Hello,
    I am migrating an application from Windows server 2003 / Oracle 10gr2 / Visual Studio 2003 to Windows Server 2008 / Oracle 11gr2 / Visual Studio 2010 and I am having some issue with the compilation of our oci files.
    After fixing the common issue related to path change for Visual Studio, I ran in the following error message while trying to compile one of my file:
    Syntax error at line 48, column 9, file C:\Program Files\Microsoft Visual Studio 10.0\VC\include\vadefs.h:
    Error at line 48, column 9 in file C:\Program Files\Microsoft Visual Studio 10.0\VC\include\vadefs.h
    typedef W64 unsigned int uintptrt;
    ........1
    PCC-S-02201, Encountered the symbol "__w64" when expecting one of the following:
    auto, char, const, double, enum, float, int, long,
    ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    union, unsigned, utext, uvarchar, varchar, void, volatile,
    a typedef name,
    Syntax error at line 0, column 0, file C:\mgt_sita\Integration\MS\Archive\dev\TOOL\gSGBD\gSGBD.pc:
    Error at line 0, column 0 in file C:\mgt_sita\Integration\MS\Archive\dev\TOOL\gSGBD\gSGBD.pc
    PCC-S-02201, Encountered the symbol "<eof>" when expecting one of the following:
    ; : an identifier, end-exec, random_terminal
    Error at line 0, column 0 in file C:\mgt_sita\Integration\MS\Archive\dev\TOOL\gSGBD\gSGBD.pc
    PCC-F-02102, Fatal error while doing C preprocessing
    Searching on the web lead me first to use a work around to define W64 and _W64, but that only leads to more errors of the same kind after.
    Also, I've found that "Error at line 0, column 0" may be an indication of missing semi-column or brace, but as the source file has not been changed during this migration, it is still syntactically correct as it was compiling with earlier version of pro*c. Of course, I have double checked and I don't think I am missing any obvious brace or semi-column, or coma ...
    Any help or suggestion will be greatly appreciated.
    Thanks
    Eric

    I'm not sure how much help my post will be, but perhaps it will have some value for you.
    There's an unpublished bug on this issue (Bug 10017848 - PRO*C PRECOMPILER CANNOT HANDLE _W64 IN TYPEDEF) but it has not been resolved as of this writing.
    If you are not familiar with the purpose of "__w64" (which has been deprecated) you can see the following in the MS documentation:
    [url http://msdn.microsoft.com/en-US/library/s04b5w00(v=vs.100).aspx]Visual Studio 2010 __w64 description
    Now, one thing that you may be able to use in your situation is to simply make "__w64" an "empty define" at the top of your source file(s) like so:
    #ifdef WIN32
    #define __w64
    #endif
    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    #include <sqlca.h>
    #include <sqlda.h>
    #include <sqlcpr.h>
    ... rest of code ...Of course the above assumes that WIN32 has been defined - if it has not, you will need to use another symbol, make adjustments, etc.
    As an example:
    proc define=(_WSTDIO_DEFINED,WIN32) code=ansi_c parse=full common_parser=yes atest.pcIf you have a large amount of files that can be tedious of course but it may be a potential workaround for you.

  • Essential event viewer bugs with "Forwarded Events" log in Windows Server 2008 R2 and Windows 7

    To my general experience, Windows event viewer is one of the most problematic, faulty management tools in the case of extensive use of its more sophisticated capabilities. The sole description as well as reproduction of some entangled failures would require
    remarkable effort.
    With the "Forwarded Events" log however, the situation becomes particularly worse in that even simple functionality fails and workarounds are difficult to find. That’s what I’ll describe here in order to share my experience with interested users.
    For precision: I’ve extensively used event viewer on a German Windows Server 2008 R2 SP1 (Windows SBS 2011 Standard SP1). The bugs I found on that system, I could reproduce on a German Windows 7 Professional 64-Bit SP1, too.
    Problem 1: Failure of even simple event filtering
    To reproduce this problem, execute these steps on a test machine with any of the two OS mentioned above:
    (i) To prepare log contents, do either of the following:
    (a) populate some events to your local "Forwarded Events" log (most simply by subscribing events from other logs of the same machine; stop subscription if you have collected some events)
    Or
    (b) copy a non-empty log file "ForwardedEvents.evtx" from another machine (with any of the two OS mentioned above) to your test machine and open the file in event viewer.
    (ii) Navigate to your "Forwarded Events" test log and open the filtering dialog. In the "Includes/Excludes Event IDs" field, type: 1-9000. Click OK.
    (iii) Look at the results pane: Surprise, 0 Events! Do you really have no event IDs between 1 and 9000 in your test log?
    (iv) Another example, if you have forwarded security events in your test log: Clear filter, if any previous filter is in place. Open the filtering dialog. In "Keywords" sub-dialog, choose "Audit Success". Click OK.
    (v) Look at the results pane: Surprise, 0 Events! Do you really have no successful security monitoring events in your test log?
    I’ll finish here. If you have a rich variety of events in your test log available, let your imagination run wild to test around. Finally include some simple manually created or modified XPath filters on the XML tab of the filtering dialog. I promise, you’ll
    find a lot of additional strange results.
    Problem 2: Cannot save manually selected events to .evtx file
    Navigate to your "Forwarded Events" test log. In the results pane, select one or more events by highlighting them by mouse clicks. In context menu, choose "Save selected events". In the "save as" dialog, choose file type *.evtx
    and save your file. Open the newly created file in event viewer. Result: Surprise, no events inside the new file!
    Have more fun with forwarded events
    Helmut

    Did you mean that right click Forwarded Event and select "Filter Current Log..."? Since I can filter correct event vai the "Filter Current Log..." in my Lab environment.
    Hi Justin,
    yes, I mean "Filter Current Log ... " (in my German systems: "Aktuelles Protokoll filtern ... ").
    What do you mean with "my Lab environment" exactly?
    In the meantime, I performed additional tests. I copied the "ForwardedEvents.evtx" test file from Server 2008 R2 resp. Windows 7 to
    (i) German Windows 8 Pro 64-Bit RTM
    (ii) German Windows 8.1 Pro 64-Bit, up-to-date
    in order to view and filter the file there.
    Results: Same event viewer problem on Windows 8 RTM, but correct behavior on Windows 8.1!
    Best regards, Helmut

  • Windows Server 2008 xml sync not working

    Windows Server 2008  message -  xml sync has stopped working.  this is preventing me from having my documents automatically upload to a client website for their viewing.   these file are uploaded with FTP automatically when
    printed form the computer.  I will also get an error that SBS Console has stopped working and restart.  The console will then work after clicking restart.  These are probably related issues.  Appreciate any step by step instructions to
    get the XML Sync issue resolved so hopefully documents will upload again.

    Hi,
    à
    Windows Server 2008 message - xml sync has stopped working.
    Would you please let me know more details of this issue? Please let me know the complete error message or provide
    a screenshot of it. (please hide or remove all private and protected information.) Did you remember which specifc operation had been done before this issue occurred? For examples, install updates or install third-party applications?
    à
    I will also get an error that SBS Console has stopped working and restart.
    For the SBS console issue, please follow the path:
    C:\Program Files\Windows Small Business Server\Logs and check Console log file if find more relevant clues.
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Pin Programs on the Windows 7 Taskbar & Start Menu with Group Policy (Windows Server 2008 R2)

    Dear ALL,
    I want to Pin Programs on the Windows 7 Taskbar & Start Menu with Group Policy (Windows Server 2008 R2) as per below description. Can someone please help me how to proceed and achieve this. 
    Pin the following applications to the Taskbar:
    Outlook
    Pin the following applications to the Start Menu:
    Outlook
    Excel
    Word
    Internet Explorer
    Software Center
    Regards,
    Amit Kumar Rao

    https://www.google.de/search?q=windows+7+pin+to+taskbar+vbs
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

Maybe you are looking for

  • Differences between Oracle 10G Client ODBC from 10.1.x to 10.2.x (datatype)

    What differences where implemented to Oracle 10G Clients ODBC connectivity drivers between 10G Release 1 and Release 2 concerning datatypes? I have an application that performs a qualified read returning a group of records (this is successful) and th

  • Problem with spectrasonic plug-ins

    Since I have updated my old Lacie FW Drive to a new bigger one, I get the following error message from my spectrasonics plug-ins when starting up my project: The UVI-engine reported an error... Could not change preset Error ID -1409 Error ID -1409 Th

  • Musical Rubiks Cube

    Can anyone pose the solution to this problem: I am composing a piece synced to picture that consists of 1musical note for 1 shot. there are 14 shots. i am tempo mapping everything and my 14 note melody is finished. the kicker is it "rewinds", then pl

  • Iphone 3G stuck in recovery when updating to 4.1

    I don't really know what to do at this point -- I've had so many issues with iphone 3G that I'm ready to toss it all together. I tried to upgrade iphone from an older version of 3.0 series OS, but of course pressing the update button, and after waiti

  • Trouble in BEx Analyzer when try to set values to the variables in ZXRSRU01

    Hi Experts! I have the trouble in BEx Analyzer when try to set values to the variables in ZXRSRU01 on i_step = 1. When variable's screen apeares the values is not those what was set in ZXRSRU01. When I try to trace this in RSRT I have no this problem