Start Runbook with Parameter over Webservice with JSON / Jquery / Javascript

Hi i try to figure out to add a Job to the Webservice with JQuery/Json to the Webservice
The follow i have:
I tryed it with Various things, but i cannot get it to work, there must be something special about the Parameter Node, someone got an Idea or an working sample?
var paramJson = {
"Data": {
"Parameter":{
"ID": "8665b6e6-acea-498f-ac35-5c239a0c1023", "Value": "Test"
var paramJsonWithoutData = {
"Parameter": {
"ID": "8665b6e6-acea-498f-ac35-5c239a0c1023", "Value": "Test"
var paramString = "<Data><Parameter><Name>Username</Name><ID>{8665b6e6-acea-498f-ac35-5c239a0c1023}</ID><Value>tester</Value></Parameter></Data>";
var paramXML = "<Data><Parameter><ID>8665b6e6-acea-498f-ac35-5c239a0c1023</ID><Value>Tester</Value></Parameter></Data>";
//var stringParamData = JSON.stringify(jsonRBID);
var jsonData = { "RunbookId": runbookId, "Parameters": paramXML };
//var jsonData = { "RunbookId": runbookId, "Parameters": "<![CDATA['&lt;Data&gt;&lt;Parameter&gt;&lt;Name&gt;Username&lt;/Name&gt;&lt;ID&gt;{8665b6e6-acea-498f-ac35-5c239a0c1023}&lt;/ID&gt;&lt;Value&gt;tester&lt;/Value&gt;&lt;/Parameter&gt;&lt;/Data&gt;]]>" };
var datastring = JSON.stringify(paramJsonWithoutData);
var orchurl = GetOrchURL(server) + "Jobs";
$.ajax({
url: orchurl,
async: false,
contentType: "application/json; charset=utf-8",
type: "POST",
data: datastring,
dataType: 'json',
success: function (json) {
JobID = json.d.results[0].Value;
error: function (json) {
alert(datastring + " || " + json.responseText);
Its the ghost in the machine how dont let me go in vadication :-)

Here is my new Test Script but still not working
I writed the Response for Each Parameter in Comment Above.
Maybe we can Check this out and i write a jquery  ODATA wrapper class then :-)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<script src="script/jquery-1.4.4.js" type="text/javascript"></script>
<script src="script/date.js" type="text/javascript"></script>
<title></title>
<script type="text/javascript">
$(document).ready(function () {
//Response An Error occured while processing this request
var paramXML = "<Data><Parameter><ID>8665b6e6-acea-498f-ac35-5c239a0c1023</ID><Name>Username</Name><Value>Tester</Value></Parameter></Data>";
//Response An Error occured while processing this request
var paramXML2 = "<Data><Parameter><ID>8665b6e6-acea-498f-ac35-5c239a0c1023</ID><Value>Tester</Value></Parameter></Data>";
//Job parameter not in expected format. <Data><Parameter><ID></ID><Value><Value></Parameter><Parameter><ID></ID><Value></Value></Parameter></Data>
//So Somethings Works here with the CDATA Tag or it not Works and it is invalid Datan and the other 2 XML requests look good
var paramXML3 = "<![CDATA[<Data><Parameter><ID>8665b6e6-acea-498f-ac35-5c239a0c1023</ID><Value>Tester</Value></Parameter></Data>]]>";
//Job parameter not in expected format. <Data><Parameter><ID></ID><Value><Value></Parameter><Parameter><ID></ID><Value></Value></Parameter></Data>
var paramString = "&lt;Data&gt;&lt;Parameter&gt;&lt;Name&gt;Username&lt;/Name&gt;&lt;ID&gt;8665b6e6-acea-498f-ac35-5c239a0c1023&lt;/ID&gt;&lt;Value&gt;tester&lt;/Value&gt;&lt;/Parameter&gt;&lt;/Data&gt;";
//Job parameter not in expected format. <Data><Parameter><ID></ID><Value><Value></Parameter><Parameter><ID></ID><Value></Value></Parameter></Data>
var paramString2 = "&lt;Data&gt;&lt;Parameter&gt;&lt;ID&gt;{8665b6e6-acea-498f-ac35-5c239a0c1023}&lt;/ID&gt;&lt;Value&gt;tester&lt;/Value&gt;&lt;/Parameter&gt;&lt;/Data&gt;";
//Job parameter not in expected format. <Data><Parameter><ID></ID><Value><Value></Parameter><Parameter><ID></ID><Value></Value></Parameter></Data>
var paramString3 = "<![CDATA[&lt;Data&gt;&lt;Parameter&gt;&lt;ID&gt;{8665b6e6-acea-498f-ac35-5c239a0c1023}&lt;/ID&gt;&lt;Value&gt;tester&lt;/Value&gt;&lt;/Parameter&gt;&lt;/Data&gt;]]>";
var paramJsonShort = {
"RunbookId": "c979eb39-3b00-481c-881b-20ab1ba1e081",
"RunbookServerId": "76bac998-57ec-4246-8efa-a4aac43ae3b2",
"Parameters": paramString3
var JobID;
var datastring = JSON.stringify(paramJsonShort);
var orchurl = "http://<enter_server_here>:81/Orchestrator2012/Orchestrator.svc/Jobs";
$.ajax({
url: orchurl,
async: false,
contentType: "application/json; charset=utf-8",
type: "POST",
data: datastring,
dataType: 'json',
success: function (json) {
JobID = json.d.results[0].Value;
alert(JobID);
error: function (json) {
alert(datastring + " || " + json.responseText);
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
Nothing to see Here
</div>
</form>
</body>
</html>
Its the ghost in the machine how dont let me go in vadication :-)

Similar Messages

  • Starting SMA runbook with parameteres using powershell via REST

    Hello!
    I am trying to start SMA runbook using powershell via REST. I can do that normally for simple runbook without parameters using REST web service (for example
    https://my.server.com:9090/00000000-0000-0000-0000-000000000000/Runbooks%28guid%27bd55d199-c261-4c50-9cef-a83d5c976ce2%27%29/Start
    However, I do not understand how to start a runbook which has parameters? For example I have 2 runbooks - 1 with single parameter and second with 3 parameters, how can I pass parameters value? I would really appreciate any help!

    Hello
    Does this Link answer your question?
    http://msdn.microsoft.com/en-us/library/hh921685.aspx
    Thanks
    Josh
    Code from that URL in case the link ever dies:
    # Details of the runbook we are going to run
    $rbid = "00000000-0000-0000-00000000000000001"
    $rbParameters = @{"00000000-0000-0000-00000000000000002" = "This is the value for Param1.";" 00000000-0000-0000-00000000000000003" = " This is the value for Param2."}
    # Create the request object
    $request = [System.Net.HttpWebRequest]::Create("http:// server01.contoso.com:81/Orchestrator2012/Orchestrator.svc/Jobs")
    # Set the credentials to default or prompt for credentials
    $request.UseDefaultCredentials = $true
    # $request.Credentials = Get-Credential
    # Build the request header
    $request.Method = "POST"
    $request.UserAgent = "Microsoft ADO.NET Data Services"
    $request.Accept = "application/atom+xml,application/xml"
    $request.ContentType = "application/atom+xml"
    $request.KeepAlive = $true
    $request.Headers.Add("Accept-Encoding","identity")
    $request.Headers.Add("Accept-Language","en-US")
    $request.Headers.Add("DataServiceVersion","1.0;NetFx")
    $request.Headers.Add("MaxDataServiceVersion","2.0;NetFx")
    $request.Headers.Add("Pragma","no-cache")
    # If runbook servers are specified, format the string
    $rbServerString = ""
    if (-not [string]::IsNullOrEmpty($RunbookServers)) {
    $rbServerString = -join ("<d:RunbookServers>",$RunbookServers,"</d:RunbookServers>")
    # Format the Runbook parameters, if any
    $rbParamString = ""
    if ($rbParameters -ne $null) {
    # Format the param string from the Parameters hashtable
    $rbParamString = "<d:Parameters><![CDATA[<Data>"
    foreach ($p in $rbParameters.GetEnumerator())
    #$rbParamString = -join ($rbParamString,"&lt;Parameter&gt;&lt;ID&gt;{",$p.key,"}&lt;/ID&gt;&lt;Value&gt;",$p.value,"&lt;/Value&gt;&lt;/Parameter&gt;")
    $rbParamString = -join ($rbParamString,"<Parameter><ID>{",$p.key,"}</ID><Value>",$p.value,"</Value></Parameter>")
    $rbParamString += "</Data>]]></d:Parameters>"
    # Build the request body
    $requestBody = @"
    <?xml version="1.0" encoding="utf-8" standalone="yes"?>
    <entry xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
    <content type="application/xml">
    <m:properties>
    <d:RunbookId m:type="Edm.Guid">$rbid</d:RunbookId>
    $rbserverstring
    $rbparamstring
    </m:properties>
    </content>
    </entry>
    # Create a request stream from the request
    $requestStream = new-object System.IO.StreamWriter $Request.GetRequestStream()
    # Sends the request to the service
    $requestStream.Write($RequestBody)
    $requestStream.Flush()
    $requestStream.Close()
    # Get the response from the request
    [System.Net.HttpWebResponse] $response = [System.Net.HttpWebResponse] $Request.GetResponse()
    # Write the HttpWebResponse to String
    $responseStream = $Response.GetResponseStream()
    $readStream = new-object System.IO.StreamReader $responseStream
    $responseString = $readStream.ReadToEnd()
    # Close the streams
    $readStream.Close()
    $responseStream.Close()
    # Get the ID of the resulting job
    if ($response.StatusCode -eq 'Created')
    $xmlDoc = [xml]$responseString
    $jobId = $xmlDoc.entry.content.properties.Id.InnerText
    Write-Host "Successfully started runbook. Job ID: " $jobId
    else
    Write-Host "Could not start runbook. Status: " $response.StatusCode

  • HT3964 I have a Macbook 2.1, running 10.5 8. with a new battery. It won't start with the battery, but after you start it with the charger, disconnect the charger,it will run for over an hour on the battery,all the while it shows 0% charge! tried reset, no

    I have a Macbook 2.1 that runs 10.5.8.   I cannot get it to start on battery power. It will run for over an hour on the battery, if you start it with the charger, but even then it shows a 0% charge! I've tried pulling the battery out while it's booted, pulling battery out and discharging the system by holding the power switch, nothing seems to make it work. any ideas? It has all the updates Apple offers, too.

    Try resetting the SMC
    Shut down the computer.
    Disconnect the MagSafe power adapter from the computer, if it's connected.
    Remove the battery.
    Press and hold the power button for 5 seconds.
    Release the power button.
    Reconnect the battery and MagSafe power adapter.
    Press the power button to turn on the computer.

  • Starting workflow with HTTP-Post

    Hello,
    like I wrote in Starting workflow with HTTP-Post I have a problem with starting a workflow with a http-post:
    I have an installation of SAP ERP 2005 SR2 IDES on Win2003 SR2 SP2 and want to start a simple workflow with an external application. Therefor I created an elementary test-workflow and set the general task flag so everybody is allowed to start it. So far everything work fine as I start it manually.
    Now I want to start the workflow by an external application over a HTTP-Post as described in
    http://help.sap.com/saphelp_47x200/helpdata/EN/54/de9e3887d6174fe10000009b38f842/content.htm
    I configured the webserver (Customizing Web-Server) as follows:
    Service: WebFlow (Intranet)
    Address: http://192.168.0.216:8000/
    Path: SAP/BC/WORKFLOW_XML/?
    and sent a post via perl to http://192.168.0.216:8000/SAP/BC/WORKFLOW_XML/?protocol=01&localkey=WS99900004
    <?xml version="1.0" ?>
    <WfMessage Version="1.0" xmlns="http://www.wfmc.org/standards/doc/WF-XML">
    <WfMessageHeader>
    <Request ResponseRequired="No">
    <Key>http://192.168.0.216:8000/SAP/BC/WORKFLOW_XML/?protocol=01&localkey=WS99900004</Key>
    </WfMessageHeader>
    <WfMessageBody>
    <CreateProcessInstance.Request StartImmediately="true">
    <ObserverKey>http://192.168.0.224</ObserverKey>
    </CreateProcessInstance.Request>
    </WfMessageBody>
    </WfMessage>
    The Web-Server returns
    C:\FH\SAP\perl-scripte>perl http-post.pl
    HTTP/1.1 200 OK
    Server: SAP Web Application Server (1.0;700)
    Content-Length: 0
    Content-Type: text/plain
    Client-Date: Sun, 01 Jun 2008 11:00:24 GMT
    Client-Peer: 192.168.0.216:8000
    Client-Response-Num: 1
    but it seems that nothing happens.
    I also tried to post the XML via html-form-field with the same result.
    Did I forgot something essential?

    Hello Daniel
    It's 6 years after you posted your question, but I found your post very useful and thought it would be worth updating for future reference.
    I've just managed to trigger a workflow via http.
    URL :
    http://server.domain:8000/sap/bc/workflow_xml?sap-client=110
    Java :
    URL obj = new URL(url);
    URLConnection con = (URLConnection) obj.openConnection();
    String userpass = "username:password";
    String basicAuth = "Basic " + javax.xml.bind.DatatypeConverter.printBase64Binary(userpass.getBytes());
    con.setRequestProperty ("Authorization", basicAuth);
    con.setRequestProperty("Content-type", "text/xml");
    con.setDoOutput(true);
    DataOutputStream wr = new DataOutputStream(con.getOutputStream());
    wr.write( xml.getBytes("UTF-8") );
    wr.flush();
    wr.close();
    You can then read the response.
    I found that until I added the sap_client parameter I couldn't debug in CL_HTTP_WORKFLOW_XML->IF_HTTP_EXTENSION~HANDLE_REQUEST. Then I found that the content type has to be "text/xml".
    I set the xml variable (the data sent to ECC) to :
    <?xml version="1.0" ?>
    <WfMessage Version="SAP.1.0" xmlns="http://www.wfmc.org/standards/doc/WF-XML">
    <WfMessageHeader>
    <Request>
    <ResponseRequired>Yes</ResponseRequired>
    </Request>
    <Key>HTTP://server.domain:8000/SAP/BC/WORKFLOW_XML/?~localkey=WS90000074</Key>
    <Operation>CreateProcessInstance</Operation>
    </WfMessageHeader>
    <WfMessageBody>
    <CreateProcessInstance>
    <Key>HTTP://server.domain:8000/SAP/BC/WORKFLOW_XML/?~localkey=WS90000074</Key>
    <ContextData>
    <YOUR_CONTEXT_VARIABLE>x</YOUR_CONTEXT_VARIABLE>
    </ContextData>
    <StartImmediately>Yes</StartImmediately>
    </CreateProcessInstance>
    </WfMessageBody>
    </WfMessage>
    regards
    Steve

  • How can I start anew with Photos and clear the (minimal) stuff it has uploaded

    I've about had it up to here with this new Photos scheme. I reorganised my Aperture libraries on both my iMac and MBA in preparation for this, delayed turning Photos on for a couple of days until I thought everything was ready based upon the limited advice that was out there, and then got stuck in an endless loop of "uploading" and "preparing" every time I opened Photos. There are 19,975 images in my Aperture library on the iMac. I was stuck at Uploading at anywhere between that number and 19,000 with no progress after hours of waiting. I tried all the tricks mentioned here including re booting, restarting the app, repairing/rebuilding the database, killing the "cloudd" process, etc.today Today when I restarted Photos, it now said I had 23,775 images to upload- 4000
    more than I have-and of course it got stuck there, like it has for the last week.
    I copied the previous Aperture library (pre Photos migration)back to my iMac and opened it in Aperture. Thankfully, all the photos I had taken on my iPhone this week during this Photos clusterphuck transition were in the Aperture Stream so I didn't lose any of those. I'm willing to give this whole thing one more shot. So  i need some advice. How can I start anew with Photos and clear the (minimal) stuff it has uploaded (about 6000 of 19,000 images in the last 7 days) ? If I simply delete the Photos.photolibrary file will that do the trick and lt me start a new fresh library using?
    <Re-Titled By Host>

    How can I start anew with Photos and clear the (minimal) stuff it has uploaded (about 6000 of 19,000 images in the last 7 days) ? If I simply delete the Photos.photolibrary file will that do the trick and lt me start a new fresh library using?
    It is hard to say from your post, why the migration did not succeed in your case.
    by "stuck on upload" do you mean, you opened the Aperture library in Photos, and Photos converted it to a Photo Library, and then the upload to iCloud Photo Library did hang?  Or did already the upgrade to the Photo Library fail?
    If you want the Aperture library to upload to iCloud Photo Library, it needs to be on a disk formatted MacOS Extended (Journaled) and the original image files must not be referenced. Referenced originals will not upload.
    Also, the upload may hang, if you do not have enough free iCloud storage, orr if one of the videos or photos in your library is in an unsupported format or corrupted.
    To start over, try to repair and rebuild the Aperture library before opening it in Photos. Try all Aperture Library First Aid options - starting with repairing the permissions.  (Repairing and Rebuilding Your Aperture Library: Aperture 3 User Manual)
    If I simply delete the Photos.photolibrary file will that do the trick and lt me start a new fresh library using?
    You will have to delete the photos that are already in icloud too; otherwise you are risking duplicates.
    Can you launch Photos at all?  If yes, delete all photos in Photos and empty the Recently Deleted album. Wait for the deletion to sync to iCloud. Then delete the Photos.photolibrary.

  • What's the right way to start up with Portal's dev?

    Hi to all Portals experts,
    I am really struggling to start up learning Portals and more specific their development.Here is the problem - I am a bit new in the NetWeaver  but not new in J2EE environment. I went trough all WebDynpro tutorials and really the documentation was written nice.Good hands-on approach with lots of examples and that is what I found with WebDynpro - everything well explained step by step.
    But when I started the Portal’s Tutorials I was  a bit disappointed.
    1.First of all, there is no explanation which tools one needs to start up with Portal Dev?
    I only have  SAP Netweaver Development Studio SP15 installed on my PC and I don’t have any access to R/3, CRM or other system. Is this enough to at least start to learn Portal Development or not?
    2. I realize well that at some point I will need real system to play with but , until than what useful practice I can do on my own and how?
    - Even within the WebDynpro tutorial , the very first Part :’ Define a system’ - (http://help.sap.com/saphelp_nw04/helpdata/en/cb/f4bc3d42f46c33e10000000a11405a/frameset.htm) -‘In the portal, navigate to System Administration - System Configuration - System Landscape’
    Which Portal ? I don’t have System Administration on my NWDS SP15?Is is something I should install?unclear?
    3. My understanding is that NWDS SP15 contains EP , within its J2EE local engine , but is this EP.6.0, is this enough to develop complete Portal Application A-Z or not - unclear ?
    4.  PDK. Somewhere I read that Portal Application can be developed with either WebDynpro or with PDK. I’ve read about PDK but It is not clear if  it is Dev Kit as its name says , should it be downloaded , installed or imported into NWDS, again? And bottom line do I need PDK as a  Portal Developer, and at which point?
    I only need the starting point for Portal Develop. or some guide that should set milestones 1st ,2nd .. I would prefer the hands-on approach. If some of you  has already taken this path and can help me with your directions, links, at least how to get started, I will highly appreciate it! Thanks in advance!Regards, Bob

    Hi Bob,
    The below reply is as per my experience with Development so far:
    1> It is not necessary to have access to R/3 or any other SAP/non SAP application unless you are writing an application in connection to them.
    Example: An application which is reading data from R/3 and displaying the same in a table. Yes, in this scenario you would require access to R/3.
    2> System Administration is a role just like Home, User Administration, etc in Portal itself.
    It contains all the configuration related to System Landscape, Knowledge Menegement, etc
    If in case you have not been given this role, you may ask your System Administrator to create the required system (PCD Object). You may then use this system from your Profile (Personalize Portal) link directly.
    3> NWDS resides over Portal so you may create your own standalone application or application thats talking to the underlying Portal.
    WebDynpro is used to create UI & likewise you may build Web applications or EJB applications.
    4> PDK stands for Portal Development Kit. YUou may ask your administrator to download and assign the same to you. This would appear as a "Java Developer" named role in your portal. It contains all APIs required for Java development.
    If you do nto have this, you may still use the Javadocs provided on SDN itself.
    Depending what custom developmetn you do, depending upon the type the .par (portal archieve), .ear (Enterprise archieve), .war (web archieve) needs to be deployed in portal, so that users may access/view the custom created data.
    Hope this helps
    All the best!
    Warm Regards,
    Ritu

  • Problem starting servers with nodemanager

    Hi,
    I'm following the Oracle By Example:
    [http://www.oracle.com/technology/obe/fusion_middleware/wls103/InstallConfig/admin_mngd_srvr/admin_ms_using_nm.htm]
    I have installed on Windows (not on Linux), but that shouldn't make much difference.
    Now look at what I got on Step 10 of the OBE:
    OUTPUT
    D:\oracle\Middleware\user_projects\domains\dizzyworld\bin>startManagedWebLogic.cmd dizzy1 http://localhost:7001
    JAVA Memory arguments: -Xms256m -Xmx512m -Xns128m -Xgcprio:pausetime -XpauseTarget:200ms
    WLS Start Mode=Production
    CLASSPATH=D:\oracle\MIDDLE~1\patch_wls1032\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\oracle\MIDDLE~1\JROCKI~1.5-3\lib\to
    ols.jar;D:\oracle\MIDDLE~1\utils\config\10.3\config-launch.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\oracle\MIDDLE~1\W
    LSERV~1.3\server\lib\weblogic.jar;D:\oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.2.0.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\ser
    ver\lib\webservices.jar;D:\oracle\MIDDLE~1\modules\ORGAPA~1.0/lib/ant-all.jar;D:\oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;D:
    \oracle\MIDDLE~1\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar;D:\oracle\MIDDLE~1\pa
    tch_wls1032\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\oracle\MIDDLE~1\JROCKI~1.5-3\lib\tools.jar;D:\oracle\MIDDLE~1\util
    s\config\10.3\config-launch.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.j
    ar;D:\oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.2.0.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;D:\orac
    le\MIDDLE~1\modules\ORGAPA~1.0/lib/ant-all.jar;D:\oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;.;C:\Program Files\Java\jre6\lib\
    ext\QTJava.zip
    PATH=D:\oracle\MIDDLE~1\patch_wls1032\profiles\default\native;D:\oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;D:\oracle\MIDDLE~1\WLSERV~1
    .3\server\bin;D:\oracle\MIDDLE~1\modules\ORGAPA~1.0\bin;D:\oracle\MIDDLE~1\JROCKI~1.5-3\jre\bin;D:\oracle\MIDDLE~1\JROCKI~1.5-3\bin;D:\oracl
    e\MIDDLE~1\patch_wls1032\profiles\default\native;D:\oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;D:\oracle\MIDDLE~1\WLSERV~1.3\server\bin
    ;D:\oracle\MIDDLE~1\modules\ORGAPA~1.0\bin;D:\oracle\MIDDLE~1\JROCKI~1.5-3\jre\bin;D:\oracle\MIDDLE~1\JROCKI~1.5-3\bin;D:\app\alsemgpa\produ
    ct\11.2.0\dbhome_2\bin;D:\oracle\product\11.1.0\client_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\Win
    dowsPowerShell\v1.0\;C:\Program Files\Microsoft Application Virtualization Client;C:\Program Files\ThinkPad\ConnectUtilities;C:\Program File
    s\Windows Imaging\;C:\Program Files\IDM Computer Solutions\UltraEdit-32;C:\Program Files\QuickTime\QTSystem\;D:\oracle\MIDDLE~1\WLSERV~1.3\s
    erver\native\win\32\oci920_8;D:\oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    [INFO ][memory ] GC mode: Garbage collection optimized for throughput, initial strategy: Generational Parallel Mark & Sweep
    [INFO ][memory ] heap size: 65536K, maximal heap size: 1048576K, nursery size: 32768K
    [INFO ][memory ] s-end: GC beforeK-after K (heap K), pause ms
    [INFO ][memory ] s/start - start time of collection (seconds since jvm start)
    [INFO ][memory ] end - end time of collection (seconds since jvm start)
    [INFO ][memory ] before - memory used by objects before collection (KB)
    [INFO ][memory ] after - memory used by objects after collection (KB)
    [INFO ][memory ] heap - size of heap after collection (KB)
    [INFO ][memory ] pause - total sum of pauses during collection (milliseconds)
    [INFO ][memory ] run with -Xverbose:gcpause to see individual pauses
    java version "1.6.0_14"
    Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
    BEA JRockit(R) (build R27.6.5-32_o-121899-1.6.0_14-20091001-2107-windows-ia32, compiled mode)
    Redirecting output from WLS window to D:\oracle\MIDDLE~1\USER_P~1\domains\DIZZYW~1\servers\AdminServer\logs\garbage.log
    Het proces heeft geen toegang tot het bestand omdat het door een ander
    proces wordt gebruikt.
    D:\oracle\Middleware\user_projects\domains\dizzyworld\bin>
    The last line says in Dutch "The process has no access to the file because it is being used by another process". I don't know if that is relevant.
    Question
    Now when I go back to my admin console, I don't see dizzy1 server RUNNING, it has status SHUTDOWN. Screen refresh doesn't help either.
    Any suggestions ??
    Edited by: PaulAlsemgeest on Apr 12, 2010 9:43 AM
    Edited by: PaulAlsemgeest on Apr 12, 2010 9:44 AM
    Edited by: PaulAlsemgeest on Apr 12, 2010 9:44 AM
    Edited by: PaulAlsemgeest on Apr 12, 2010 9:45 AM
    Edited by: PaulAlsemgeest on Apr 12, 2010 9:45 AM

    user12115898 wrote:
    Try to see if anything is running on that port ( the port you specified for dizzy1) also try to see if anything is running with the name dizzy1 on that box. Because sometime it happens that console doesnt update so if anything is running on that box with the same name or on that port, then kill it and try to restart it again.Hi,
    I did an netstat -na > checkports.log
    The server dizzy1 has been configured with Listen Port 7003 and SSL Listen Port 7004. Both are not in the checkports.log.
    What I did see in my nodemanager.log was:
    Domains file not found: D:\oracle\MIDDLE~1\WLSERV~1.3\common\NODEMA~1\nodemanager.domains, this is strange, because the file is really there.
    And when I try to start server dizzy1, the Console gives the
    Messages
    -  Warning For server dizzy1, the Node Manager associated with machine dizzyMachine1 is not reachable.
    - Warning All of the servers selected are currently in a state which is incompatible with this operation or are not associated with a running Node Manager or you are not authorized to perform the action requested. No action will be performed.
    Any further help greatly appreciated.

  • Starting again with iphoto

    hi, i have been trying to deal with a messy problem with iphoto and had to start my library all over again. My pictures are saved to my hard disk and i need to reimport them to my new iphoto library, however there are many many many duplicates of each photo (i originally had around 5000 photos and somehow this has increased to 26000) and i want only to import one of each. can anyone help? i know that when importing photo's in to an album and one photo already exists in the library it will ask if you want to import the duplicate, but because nothing is in the library at the moment it dose not seam to recognise a duplicate. Is there a way i can do this?

    Later versions of iPhoto have a feature that helps avoid importing duplicates. Other than that there are various apps that will search for duplicate files, and you can try them on the images before importing them to iPhoto. TidyUp is one but there are others. Search on MacUpdate
    Regards
    TD

  • I have a 2007 Macbookpro and it started up with gray checkered boxes ann across the screen I tried to re load OSX and it work 1 day and started again is this a hard drive problem or Video?  Now as it starts to load a screen comes up saying to restart

    I have a 2007 Macbookpro and it started up with gray checkered boxes and across the screen I tried to re load OSX and it work 1 day and started again is this a hard drive problem or Video?  Now as it starts to load a screen comes up saying to restart over and over again

    I'd suspect this known issue:
    http://support.apple.com/kb/TS2377
    if you have a late 2007 MBP.
    The only testing you can do at home is to attach an external monitor and see if the defects repeat on the external. If so, get to an Apple store. If the computer's video chipset fails a test the Apple Store will perform, you get a free logic board replacement. Turnaround is usually one day to one week--not bad at all.
    If the defects do NOT repeat on an external monitor, then the problem is not covered by the above Repair Extension Program
    The issue is heat-triggered. Be certain that you control heat once you get it fixed. Don't use the computer in your lap without a lapboard; don't block the vents under the display hinge; don't us in clamshell mode, etc.

  • TS3148 my mackbook air starts up with a  persistent grey screen, apple logo and spinning gear

    my mackbook air starts up with a persistent grey screen, apple logo and a spinning gear. It will not show the login window

    Press and hold the power button down to force a hardware shutdown (emergency use only!)
    Next find the Shift key and hold it and press the power button, the machine will boot into Safe Mode.
    Next backup your files to a external drive just in case.
    Emergency backup procedure
    Drag and drop copy your users file folders (music, pictures, documents etc) to a regular external powered drive as soon as possible.
    Do not use, setup or trust only TimeMachine at this troubled time as it will copy corrupted data and we need just your users files safe just in case. TimeMachine cannot be used with a Windows PC.
    Unmount and Disconnect all external drives once the backup process is completed.
    Note:
    If you have any over 4GB sized files, those won't copy to a standard formatted FAT32/MSDOS drive from the factory, if you need to save these 4GB+ files use another blank/empty drive and use Disk Utility to format it 1 Partition, Option: GUID,  Format: OS X Extended Journaled (or the standard default one for older Mac's).
    Mac's cannot copy to nor format a NTFS  drive. ExFAT format to be used with a Windows machine must be right click formatted by Windows, not OS X (does it wrong) XP macines can install a free exFAT update from Microsoft. Vista-Win 8 can format exFAT.
    Formatting a drive will erase all data on it.
    Most commonly used backup methods
    Your problem is likely due to a incompatible third part at boot kernel extension file that some program installed into OS X at some time.
    If you can recall which programs you installed using your Admin password then that's a good place to start and update or uninstall those programs.
    The next solution is a #8 Reinstall Just OS X + Software Update fully,  this will replace OS X with a new copy, fix OS X if it's the cause and kick out ALL third party kext files out of OS X.
    You also can manually drag and drop the third party kext files (if you know what they are) out of of the System/Library/Extensions folder and reboot.
    ..Step by Step to fix your Mac
    Solving at boot kext issues in Snow Leopard

  • IBook starts up with a beep, no video

    Hello,
    I recently encountered another problem with my iBook G3. A few days ago it stopped showing video and now starts up with a single beep I take to mean "no RAM installed" from the support page. Luckily it came back to life briefly after I reset the parameter RAM so I was able to back up most of my stuff. Now, nothing is working from the Apple help for no video (resetting the PMU, starting up from disc, external screen, removing the RAM I installed). I will try contacting Apple again, but this computer is well out of the 3-year Applecare I bought. I had the logic board replaced about a year and a half ago, but this beep thing is worrying. Does this sound like the typical logic board problem again or perhaps a dead hard drive?
    Thanks for your help!
    iBook 800 MHz G3 w/serial number of death   Mac OS X (10.4.3)  

    Hi Ronda,
    Thanks very much for your reply. I explained my problem and everything I did to try to fix it to Applecare US on Sunday, and they authorized an extention to my warranty to make the repair. I am counting my lucky stars about now. Yeah Apple! Hopefully this fix will last awhile, but in the meantime I will back up regularly and starting saving my pennies for a new iBook!
    Cheers,
    Brenda
    Hi, and welcome to Apple Discussions.
    This is not the fault in the logic board that was
    covered by the iBook
    Logic Board Repair Extension Program. However, it
    does sound like the memory that is soldered to the
    logic board has failed. This means you will need a
    new logic board.
    Here in the United States, I know of places that will
    repair it for $195 plus shipping, but I don't know of
    any inexpensive repair places in the UK.
    Your "serial number of death" isn't, really. The
    program was gradually expanded to include all the
    Dual USB G3 iBooks, so every serial number is
    included in the program.
    If it turns out to be an expensive repair, maybe the
    money would be better spent on a new iBook?

  • My address book and iPhone pics have become low resolution.  Is there a way I can prevent this from happening when I start out with a higher resolution picture?

    I guess I squeezed my entire issue into the subject line.  lol   When I sync my iphone to my laptop I notice that all my address book pics and iphone pics have become lower resolution, even though I started out with the resolution that I really needed to produce decenty address book printouts.  I doubt I can correct the losses of resolution that have occurred but can anyone help me figure out how to prevent future losses?  Thank you!

    Plugins usually are installed externally to Firefox. However, you can disable them in Firefox so that Firefox does not use them.
    SearchReset is supposed to automate the task of resetting certain preferences, but you still can edit them manually if necessary.
    '''''Address Bar Search'''''
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''keyword''' and pause while the list is filtered
    (3) Right-click '''keyword.URL''' and choose Reset. This should restore Google as the default for address bar search.
    Does that work?
    '''''Search Box'''''
    Usually it works to choose your preferred search engine from the drop-down. To remove an unwanted search engine plugin, usually the Manage Search Engines... choice at the bottom of the drop-down takes care of it.
    Do either of those work?
    There might be another way to hijack that search box; I think some of the other frequent responders probably are more familiar with it than I am.

  • Fire fox opens with tabs from preveous session not home page in tools under options and tab general I have start up with home page but all tabs from previous session open instead

    fire fox opens with tabs from preveous session not home page in tools under options and tab general I have start up with home page but all tabs from previous session open instead

    It is possible that there is a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • Why does my itunes crash after start up with an "APPCRASH" error every time i open it?! I have been trying to fix this for weeks but all i can do it re-install it every other day which does nothing!

    Why does my itunes crash after start up with an "APPCRASH" error every time i open it?! I have been trying to fix this for weeks but all i can do it re-install it every other day which does nothing! I am desperate to get access to my itunes to get music on my phone and all of this just makes me want me to sell my iphone since there is no other way to add music to my phone. If things go get sorted soon you can say goodbye to my support.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • Lightroom crashes at start up with the error message "Lightroom encountered an error when reading from its preview cache and needs to quit".  Please advise on how to fix this error.  Thanks

    Lightroom crashes at start up with the error message "Lightroom encountered an error when reading from its preview cache and needs to quit".  Please advise on how to fix this error.  Thanks

    You probably need to delete your preview cache.  See here  
    Why And How To Clear Your Lightroom Cache - Lightroom Fanatic
    Preference and other file locations in Lightroom 5

Maybe you are looking for