Stop weblogic services using StartStopServices.xml parameter leaves cmd.exe

When using the "Start > All Programs > Oracle Business Intelligence > Stop BI services" function it calls the StartStopServices.cmd file. This file then references the StartStopServices.xml file using the following statement;
<target name="stop_all" depends="set.is.stop.all, opmn.stop, wls.mgd.stop, wls.wait.mgd.shutdown, del.generated.managed.server.credentials, wls.stop, wls.wait.admin.shutdown, del.generated.admin.server.credentials">
     </target>
     <target name="set.is.stop.all">
     <property name="is.stop.all" value="true"/>
     </target
The problem that I'm having is that when the weblogic services are successfully stopped, 2 cmd.exe windows are left open on the server. I've created a batch file to call the StartStopServices.cmd and added parameters such as
Sleep.exe 30
c:\windows\system32\TASKKILL.exe /F /IM cmd.exe /T
Theoretically this should pause for a few, and then close the open cmd windows. However whenever the StartStopServices.cmd is called it closes the original command window before any statements are executed. So essentially I don't get to the taskkill or sleep parameters. I'm assuming that I need to edit the XML file somewhere to make it so it doesn't stop_all and close, but simply stops all and allows my added entries in the cmd windows to execute so ALL cmd windows are closed.
I'm scheduling a backup using RMAN in NOARCHIVELOG mode, and need to stop the weblogic processes in order to complete this backup function. However I need to end these cmd windows otherwise over the course of time they will be cascaded everywhere. Has anybody accomplished this?

Hope still you need a solution for your question.
Follow these steps to achive as expected file using StartStopServices.xml, do let me know for any questions.
File loc: MW_HOME\instances\instance3\bifoundation\OracleBIApplication\coreapplication
1) I've added a new target attribute( as 'veera' to existing code) at the end of the tag
<target name="stop_all" depends="determine.language, set.is.stop.all,find.or.get.credentials, opmn.stop, wls.mgd.stop, wls.wait.mgd.shutdown, del.generated.managed.server.credentials, wls.stop, wls.wait.admin.shutdown, del.generated.admin.server.credentials, veera">
</target>
2) Added new code as show below
<target name="veera" if="wls.domain.exists" depends="wls.check.exists" description="Stop WLS">
<echo message="Srini..." />
<exec spawn="true" executable="cmd.exe" osfamily="windows" dir="${DOMAIN_HOME}/bin">
<arg value="/c" />
<arg value="taskkill /f /IM cmd.exe" />
</exec>
</target>
If it is helpful, please mark as correct or helpful
Cheers,
Veeravalli
Edited by: svee on Jul 5, 2012 3:09 PM
Edited by: svee on Jul 5, 2012 3:12 PM

Similar Messages

  • Connect to SharePoint web service using the XML / Web Service connector

    Hi experts,
    I am currently trying to display my SharePoint list in Crystal Report. Therefore my plan is to use a SharePoint web service to get the data and paste them to the Crystal Report.
    Is it possible to use the "XML and Web services" connector of the Crystal Reports database expert?
    When I enter the web service URL, for instance:
    https://[url]/_vti_bin/lists.asmx?wsdl
    and click next... I have to enter the web service credentials.
    On the next page I have to enter Service, Port and Method.
    Do I have to enter the service URL again here?
    What If, there is no port? Can I leave that field empty?
    I know the methods, but where can I add the mandatory parameters?
    Thanks for any helps and comments!
    Sebastian

    Hi Ananth,
    thank you, but this document does not help at all.
    We are using Crystal Reports 2008 SP2.
    We want to use the Web Service Connector.
    What I need is more informationen about the Web service connect. For example - the connection in Microsoft InfoPath is much easier - there I don't have to enter a port and can choose the methods from a list.
    Is it possible to use the Crystal web service connector for MS SharePoint Webservices?
    Or must I use the Crystal SDK to carry out a connection?
    Best regards,
    Sebastian

  • How to stop oracle services using Net8

    Hi
    each time I try to install oracle report 6i in myy machine (of course in the same developer home on which form installed ).
    a message with title Stop oracle application
    saying the following
    you must stop all  oracle services and application using Net8 for the Net8
    installation to be successfull
    press ok to continue the installation once the services and applications
    have been stopped or press ok to abort this installation.
    can any one help me?
    oracle database 10g
    windows xp
    developer 6i

    You can stop any service either
    a) using the services applet in the control panel window
    b) start a cmd box and issue
    net stop <servicename>
    Hth
    Sybrand Bakker
    Senior Oracle DBA

  • Web Service using HTTP-XML Protocol

    Can anyone provide an example of a web service in WebLogic 8.1 using the http-xml protocol (i.e., not using SOAP)? I am trying to understand how to gain access to the xml within the http post using WebLogic's web service paradigm within WebLogic Workshop.

    Hi Ananth,
    thank you, but this document does not help at all.
    We are using Crystal Reports 2008 SP2.
    We want to use the Web Service Connector.
    What I need is more informationen about the Web service connect. For example - the connection in Microsoft InfoPath is much easier - there I don't have to enter a port and can choose the methods from a list.
    Is it possible to use the Crystal web service connector for MS SharePoint Webservices?
    Or must I use the Crystal SDK to carry out a connection?
    Best regards,
    Sebastian

  • Example for calling document type service using a XML

    Hi,
    Can anybody give me some pointers to any examples about Document type webservice
    that is passed an XML document? The service expects a custom java object.
    I am running WLS 7.0 with sp2.
    This is what i have done so far:
    I have created a document type web-service with the following signature
    public CustomReturnObject provideService(customParameter) { }
    The 'customParameter' is based on a "CustomParameter.xsd" and 'CustomReturnObject'
    is based on its schema. I ran the "autotype" to generate the java classes for
    the schema.
    Now, we would like to invoke the service by passing an XML document instead of
    calling it by creating instances of "CustomParameter" java class. Also we would
    like to get the XML represented by "CustomReturnObject" in the client program
    instead of the java object.
    Can anybody help?
    Thanks
    Raghu

    The latest version of WLS is 8.1.
    I think the the "endpoint" needs to be string.
    String endpoint =
    http://RASUBR-2K:7001/SubscriptionServicesWS/SSApplicationService.jws;
    Regards,
    -manoj.
    http://manojc.com
    "Raghu Subramaniam" <[email protected]> wrote in message
    news:[email protected]...
    >
    SAAJ did work!
    But it is not working with the BEA client libraries (WLS 8.0 Beta). I amgetting
    the following exception
    exception ejava.lang.IllegalArgumentException: endpoint shou
    ld be String or URL
    java.lang.IllegalArgumentException: endpoint should be String or URL
    atweblogic.webservice.core.soap.SOAPConnectionImpl.call(SOAPConnectionI
    mpl.java:43)
    at TestMain.main(TestMain.java:51)
    Attached is my test file.
    I used the libraries from Sun's web services kit and it works.
    Is it a known problem? Any fixes?
    Raghu
    "manoj cheenath" <[email protected]> wrote:
    SAAJ will work. You can also use DII client with
    generic type mapping. Check this out:
    http://manojc.com/tutorial/sample27/Main.java
    Regards,
    -manoj
    http://manojc.com
    "Raghu Subramaniam" <[email protected]> wrote in message
    news:[email protected]...
    But how did you call the web service. Did you use the stubs in yourclient
    code?
    We don't want to use the stubs generated from "clientgen". Rather wantto
    call
    the service by passing a XML string that adheres to our schema expectedby
    our
    service. Our service is document-style.
    I am trying to use the SAAJ api to generate a SOAPMessage and callthe
    service.
    Anybody has tried this before. Does it work?
    Raghu
    "Mike DeAngelo" <[email protected]> wrote:
    I just did this the first time a few weeks ago, but I had some
    gotchas...
    >>>>
    First, run the autotype ant task against your xsd file to generateyour
    value
    objects (I think you already did this).
    Second, write your java class or EJB to use the value objects asparameter/return
    type. (I think you did this too.) If you are going to invoke anEJB,
    create
    the EJB-Jar file.
    Third, use the servicegen ant task to create the an ear file. Theear
    file will
    contain both the ejb-jar and file webservice.war which is generatedby
    weblogic.
    Fourth, unbundle the ear file, then unbundle the war file. Edit the
    file WEB-INF/web-service.xml
    Add the contents of your original xsd under the <types> element (iftypes
    doesn't
    exist, it should be the first subelement under the root element).Add
    the contents
    of types.xml (generated by autotype) to the <type-mapping> element(It
    should
    be the second element under the root element.
    Rebundle the war file, rebundle the ear file, and deploy it.
    Here is a fragment of the ant stuff...
    <taskdef name="servicegen"
    classname="weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask"/>
    <target name="check-servicegen" depends="stage">
    <uptodate property="servicegen.notRequired"
    targetfile="${stage}/my_webservice.ear"
    srcfile="${stage}/my_ejb.jar">
    </uptodate>
    </target>
    <target name="servicegen"
    depends="check-servicegen"
    unless="servicegen.notRequired">
    <servicegen destEar="${stage}/my_webservice.ear"
    warName="my_webservice.war">
    <classpath refid="compile.classpath"/>
    <service ejbJar="${stage}/my_ejb.jar"
    targetNamespace="http://foo/bar/baz"
    serviceName="process"
    serviceURI="/process"
    generateTypes="False"
    expandMethods="True"
    style="document">
    </service>
    </servicegen>
    </target>
    Mike
    "Raghu Subramaniam" <[email protected]> wrote:
    Hi,
    Can anybody give me some pointers to any examples about Document
    type
    webservice
    that is passed an XML document? The service expects a custom javaobject.
    I am running WLS 7.0 with sp2.
    This is what i have done so far:
    I have created a document type web-service with the following
    signature
    >>>>>
    public CustomReturnObject provideService(customParameter) { }
    The 'customParameter' is based on a "CustomParameter.xsd" and'CustomReturnObject'
    is based on its schema. I ran the "autotype" to generate the javaclasses
    for
    the schema.
    Now, we would like to invoke the service by passing an XML documentinstead
    of
    calling it by creating instances of "CustomParameter" java class.
    Also
    we would
    like to get the XML represented by "CustomReturnObject" in the client
    program
    instead of the java object.
    Can anybody help?
    Thanks
    Raghu

  • Automate start/stop essbase service using Maxl or batch

    Hi - how would my batch or Maxl file look like if I wanted to come out with a script to stop and start my essbase service? The reason why i am doing this is because I wanted to stop the essbase service, so that I can archive the essbase.log file.
    I am on essbase 7.0, I have read on some postings that stopping and starting the essbase service can potentially corrupt the sec file. If so, then is there any other way of archive the essbase.log file so that it does not grow to megs.
    Thanks.

    Hi,
    You could use the following maxl
    alter system shudown;
    it may be useful to stop all the applications first e.g.
    alter system unload application all;
    or you can use windows command line
    net stop essbaseservicename
    and to start
    net start essbaseservicename
    Another method to backup the essbase.log is to make a copy of the log then use maxl to delete the log.
    alter system clear logfile;
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How can I disable windows firewall and install cluster software and its service using unattended.xml file?

    platform: 2008r2
    services which need install: MSDTC Service, Windows Cluster Service, SQL Cluster

    Hi,
    I am not quiet understanding your question, could you clarify your question, as far as I know, an answer file is an XML-based file that contains setting definitions and values
    to use during Windows Setup. In an answer file, you specify various setup options, including how to partition disks, the location of the Windows image to install, and the product key to apply. You can also specify values that apply to the Windows installation,
    such as names of user accounts, display settings, and Internet Explorer favorites. The answer file for Setup is typically called Unattend.xml.
    The related KB:
    Building an Answer File
    http://technet.microsoft.com/en-us/library/cc748874(v=ws.10).aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Weblogic Server 7.0 - can't find cmd.exe

    Hi
    I am having a simular problem I have succefully installed web logic server 7.0 and created a domain "dlidomain". When I am trying to start->Programs-> " WebLobic Platform 7.0 -> User Projects --> dlidomain" its searching for "cmd.exe" which is not found in windows98. Your answer below was to rename cmd to bat. What files are you referring to? Is this still the soloution. Please let me know as soon as possible.
    Darryl
    renamed .cmd to .bat and see if it works or not.
    krishna ramineni wrote:
    hi
    i installed weblogicserver 7.0 on windows 98.and when iam trying to run
    setExamplesEnv.cmd file from dos prompt it says bad command or file name.and
    when iam trying to start->Programs-> "Launch Examples Server" its
    searching for "cmd.exe" which is not found in windows98.please let me know
    the solution for this asap

    What leads you to believe WLS is supported on Windows 98?
    Wayne
    Darryl wrote:
    Hi
    I am having a simular problem I have succefully installed web logic server 7.0 and created a domain "dlidomain". When I am trying to start->Programs-> " WebLobic Platform 7.0 -> User Projects --> dlidomain" its searching for "cmd.exe" which is not found in windows98. Your answer below was to rename cmd to bat. What files are you referring to? Is this still the soloution. Please let me know as soon as possible.
    Darryl
    renamed .cmd to .bat and see if it works or not.
    krishna ramineni wrote:
    hi
    i installed weblogicserver 7.0 on windows 98.and when iam trying to run
    setExamplesEnv.cmd file from dos prompt it says bad command or file name.and
    when iam trying to start->Programs-> "Launch Examples Server" its
    searching for "cmd.exe" which is not found in windows98.please let me know
    the solution for this asap

  • About XML Parameter for Web Service invoking

    I would like to use the XML parameter as the Web Service's input(Attachment is
    the XML schema) in WebLogic Server 8 sp1. When I generated the Web Service and
    use the WebLogic Server generate test web page to test it, I got Exception. The
    WebLogic Server can't constructe the input XML.
    The correct XML should look like this:
    <ids>
    <desc>Description</desc>
    <id>1</id>
    <id>2</id>
    <id>3</id>
    </ids>
    Is there any one can tell me whether this kind of XML was permitted for Web Service
    invoking or not?
    [sample.xsd]

    Hi Andy,
    On the test page, before the invoke of the operation, did it say
    something like:
    <!-- Do not know how to create a sample instance for this part due to
    the following exception:java.lang.InstantiationException:
    javax.xml.soap.SOAPElement. Pls replace this with the correct XML before
    invoking the service. --->
    if so, the service itself may be working OK, the deficiency is that the
    test page tries its best to determine sample values for the invoke,
    however it does not know in this case.
    Did you try with a client?
    Your XML should be fine.
    Regards,
    Bruce
    Andy wrote:
    >
    I would like to use the XML parameter as the Web Service's input(Attachment is
    the XML schema) in WebLogic Server 8 sp1. When I generated the Web Service and
    use the WebLogic Server generate test web page to test it, I got Exception. The
    WebLogic Server can't constructe the input XML.
    The correct XML should look like this:
    <ids>
    <desc>Description</desc>
    <id>1</id>
    <id>2</id>
    <id>3</id>
    </ids>
    Is there any one can tell me whether this kind of XML was permitted for Web Service
    invoking or not?
    Name: sample.xsd
    sample.xsd Type: ACT Project (text/xml)
    Encoding: base64

  • Start and stop Cisco Secure ACS services using batch.

    Hello.
    I need to start and stop Windows service using a batch.
    What is the correct order?
    Thanks.
    Andrea

    Here is the batch file I use to stop and start services on ACS 4.x Windows and it works perfectly. @ECHO OFF net stop csmon >null 2>&1 net stop cslog >null 2>&1 net stop csdbsync >null 2>&1 net stop csauth >null 2>&1 net stop csadmin >null 2>&1 net stop cstacacs >null 2>&1 net stop csradius >null 2>&1 net start csauth >null 2>&1 net start csmon >null 2>&1 net start cslog >null 2>&1 net start csdbsync >null 2>&1 net start csadmin >null 2>&1 net start cstacacs >null 2>&1 net start csradius >null 2>&1 echo Complete restart finished exit 0

  • Starting and Stopping ALM Services in linux

    How to stop and Start ALM Services linux.
    I have installed new ALM application in my linux as root user. Now i am trying to stop the service using command HPALM. When i check the status it show not running and  i can see script located in app/wapper and deployment/wrapper.
    So please help how to stop the service and is there any env i have to set.
    Below are the details
    Install Folder Details
    Install Folder:     /u01/ALM/app
    Deployment path:      /u01/ALM/deployment
    Repository Path:      /u01/ALM/repository
    Script Details:
    /u01/ALM/app/wrapper
    sh HPALM status
    HP Application Lifecycle Management is not running.
    /u01/ALM/deployment/wrapper
    sh HPALM status
    HP Application Lifecycle Management is not running.
    root     25657     1  0 Oct29 ?        00:01:27 /u01/ALM/deployment/wrapper/wrapper /u01/ALM/deployment/wrapper/wrapper.conf wrapper.syslog.ident=HPALM wrapper.pidfile=/var/opt/HP/ALM/runtime/HPALM
    root     25660 25657 99 Oct29 ?        2-23:16:23 /u01/ALM/app/java/bin/ALM -server -XX:+PrintCommandLineFlags -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+PrintCommandLineFlags -X

    SREE400,
    You are in the consumer end products forum.  You will also want to ask your question over at the Enterprise Business Community.
    Click the plus sign (+) next to Discussion Boards to drop down all the options for server, networking and any other professional equipment problem.
    http://h30499.www3.hp.com/
     For Linux:
    http://h30499.www3.hp.com/t5/Linux/ct-p/itrc-118
    Good luck.

  • Stopping Database Service in Windows 2008

    Hi,
    Our Oracle 11g R2 Database 2 node rac runs on Windows 2008 Release 2.
    I use srvctl to stop database service instead of stopping the oracle database service on Services (services.msc).
    Even after stopping the services using srvctl, the oracle.exe will come in the process tab of Task Manager. In this case i need to invoke services.msc and stop the database services manually.
    Is there any way to stop the oracle process or the oracle services using srvctl.
    Thanks in advance for your help.
    Thanks,
    Yusuf

    944470 wrote:
    Hi,
    Our Oracle 11g R2 Database 2 node rac runs on Windows 2008 Release 2.
    I use srvctl to stop database service instead of stopping the oracle database service on Services (services.msc).
    Even after stopping the services using srvctl, the oracle.exe will come in the process tab of Task Manager. In this case i need to invoke services.msc and stop the database services manually.
    Is there any way to stop the oracle process or the oracle services using srvctl.
    Thanks in advance for your help.
    Thanks,
    YusufWhen you stop using SRVCTL, can you check the alert log file whether the instance was completely down?
    And all memory freed?
    Once you stop the service using SRVCTL, what is the memory usage from task manager for "oracle.exe"
    Check above points and post your findings.
    Also for better confirmation, check if is it ASM instance? just an crosscheck.

  • Error while stopping Apache Services.

    Hi partners,
    I am having a problem while I want to stop Apache Service using "standard" script "adapcctl.sh".
    I am getting next error message, when I execute "adapcctl.sh stop apps/<apps_password>
    /d03/applmgr/prodcomn/admin/scripts/PROD_gamhap22/adapcctl.sh stop
    Timeout specified in context file: 100 second(s)
    script returned:
    adapcctl.sh version 115.53
    Apache Restricted Web Server Listener :httpd ( pid 7244 ) is running.
    Service can not be stopped using this script
    Apache Restricted Web Server Listener (PLSQL) :httpd ( pid 7522 ) is running.
    Service can not be stopped using this script
    adapcctl.sh: exiting with status 1
    .end std out.
    .end err out.
    GSM Enabled profile is setted to "Y", but I have similar "TEST" environments where GSM is enabled and Apache Server is shutted down without any problem.
    Any advice or help will be really appreciated.
    Thanks in advance.
    Kind regards,
    Francisco Mtz.

    Hi list,
    I have the solution to this problem.
    I have taken a llok inside of the <b>adapcctl.sh</b> script and I have found next lines:
    elif [ "$control_code" = "stop" ]; then
    if [ "$RUNNING" = "0" ]; then
    exit_code=2;
    elif [ "$RUNNING" = "1" -a "$RESTRICT_RUNNING" = "1" ]; then
    STATUSMSG="Service can not be stopped using this script\n"
    printf "$STATUSMSG"
    printf "$STATUSMSG" >> $OUTFILE
    exit_code=1;
    else
    RUNNING is equal to 1 and RESTRICT_RUNNING is equal to 1 when next condition is meet:
    if [ -f $RESTRICT_PIDFILE ] ; then
    restrict_pid=`cat $RESTRICT_PIDFILE | grep -i "TRUE"`
    if [ "x$restrict_pid" != "x" -a "$RUNNING" = "1" ] ; then
    RESTRICT_RUNNING=1
    RESTRICT_FILE is pointing to file "$IAS_HOME/Apache/Apache/logs/apache_runmode.properties" which was created in this environment (I don't know who created it).
    Kind regards,
    Francisco Mtz.

  • Unable to pass xmlbeans object in weblogic web services using OEPE

    Migrating Weblogic web services from Weblogic Workshop 10.3 to Oracle Enterprise for Eclipse...Passing xmlbean generated types in arguments of webservice call
    How to work around the following errors? I do not have this error when in workshop 10.3 only in OEPE eclipse
    "oracle.eclipse.tools.webservices.compiler.CompilationException: Errors: JAX-WS web services must not have xmlBean parameter or return type"
    PLease note that I want DocType to be xmlbeans generated or inherited from org.apache.xmlbeans.XmlObject....
    @WebMethod
         public void upload(String filename, DocType doc) {
    Hi, I have legacy codes from Weblogic workshop 10.1 and 10.3.....
    I am able to compile and run in Weblogic workshop 10.3 by passing the xmlbean generated DocType as arguments in the web services call.... but why am I not able to do this in Oracle Enterprise for Eclipse OEPE......
    If I were to generate the web service from teh wsdl...it will generate it's own DocType.class in the jar files and not use the xmlbean generated class one....
    How to get iOEPE to generate the classes in build\jws\ for
    testWSService-annotation.xml
    weblogic-webservices.xml etc like in workshop
    How can I resolve this??? Am I stuck with Workshop on this?? How to work around??
    Any help or clarifications would be much appreciated.
    Inside testWS.java,
    package ws;
    import java.io.File;
    import javax.jws.*;
    import org.example.doc.DocType;
    @WebService
    public class testWS {
         @WebMethod
         public void upload(String filename, DocType doc) {
              try {
                   doc.save(new File(filename));
              catch(Exception e) {
                   System.out.println(e);
    Inside xmlbeans generated DocType.java.....and DocTypeDocuments.java
    * XML Type: DocType
    * Namespace: http://www.example.org/doc
    * Java type: org.example.doc.DocType
    * Automatically generated - do not modify.
    package org.example.doc;
    * An XML DocType(@http://www.example.org/doc).
    * This is a complex type.
    public interface DocType extends org.apache.xmlbeans.XmlObject
    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
    org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(DocType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.testWSTypeSystem").resolveHandle("doctypec217type");
    * Gets the "element1" element
    java.lang.String getElement1();
    * Gets (as xml) the "element1" element
    org.apache.xmlbeans.XmlString xgetElement1();
    * Sets the "element1" element
    void setElement1(java.lang.String element1);
    * Sets (as xml) the "element1" element
    void xsetElement1(org.apache.xmlbeans.XmlString element1);
    * Gets the "element2" element
    java.lang.String getElement2();
    * Gets (as xml) the "element2" element
    org.apache.xmlbeans.XmlString xgetElement2();
    * Sets the "element2" element
    void setElement2(java.lang.String element2);
    * Sets (as xml) the "element2" element
    void xsetElement2(org.apache.xmlbeans.XmlString element2);
    * A factory class with static methods for creating instances
    * of this type.
    public static final class Factory
    public static org.example.doc.DocType newInstance() {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
    public static org.example.doc.DocType newInstance(org.apache.xmlbeans.XmlOptions options) {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
    /** @param xmlAsString the string value to parse */
    public static org.example.doc.DocType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
    public static org.example.doc.DocType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
    /** @param file the file from which to load an xml document */
    public static org.example.doc.DocType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
    public static org.example.doc.DocType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
    public static org.example.doc.DocType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
    public static org.example.doc.DocType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
    public static org.example.doc.DocType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
    public static org.example.doc.DocType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
    public static org.example.doc.DocType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
    public static org.example.doc.DocType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
    public static org.example.doc.DocType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
    public static org.example.doc.DocType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
    public static org.example.doc.DocType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
    public static org.example.doc.DocType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
    /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
    public static org.example.doc.DocType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
    /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
    public static org.example.doc.DocType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
    return (org.example.doc.DocType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
    /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
    public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
    /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
    public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
    private Factory() { } // No instance of this class allowed
    Edited by: user11079482 on Jan 1, 2010 2:09 AM

    Ok just as I expected. So I guess I am left with the following two options
    1) either I switched to using JAXB in my apps instaed of xmlbeans....
    2) or if I still wanna use the old JAX-RPC web services to deploy on the Weblogic 10gR3 server i will have to create my own ant task jwsc directly......as shown below in your docs
    Programming Web Services for WebLogic Server (ant tasks)
    http://download.oracle.com/docs/cd/E13222_01/wls/docs92/webserv/anttasks.html
    Getting Started With WebLogic Web Services Using JAX-RPC
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/webserv_rpc/index.html
    Will OEPE be supporting the old JAX-RPC anytime in the near future release? or have to create own build ant task to call jwsc ant task directly to compile JAX-RPC web services??

  • Logging of from NT stops the WebLogic Service

    Platform:
    WinNT 4.0SP6a
    WebLogic 6.0 (JDK 1.3)
    We have three instances running as a service on a server. Now, if someone
    logs off from the server all the WebLogic services just stop.
    Now, we found a tool JNT (http://www.eworksmart.com/jnt) which prevents
    killing the WebLogic instances.
    Are there others who experience this problem? (Pretty serious problem
    IMHO.) Now, the source of the problem is that the JVM stops when it gets
    the CTRL_LOGOFF_EVENT. Will it be fixed in 6.0SP1?
    Regards,
    Merg

    file for each replicated Service Object. I thought of using the PID (if
    possible) of the process, but then have to manage a clean-up process for the
    file system as the partition starts and stops over a period of time (the file
    gets created each time the partition starts). I would like to reuse the files
    if possible. Any suggestions?If you are starting the service object partitions manually, you can set an
    environment variable (eg. APP_LOG_FILE) to a different value prior to
    starting each service object partition. The code in the service object can
    use the environment variable contents to name its log file. This could all
    be scripted in the application startup.
    -Dave Muskatel
    David Muskatel
    Fort&eacute; Software, Consulting
    Phone: 703/749-1445
    HQ Vmail: Extension 2325
    Email: [email protected]
    At 02:03 PM 5/29/96 -0400, you wrote:
    Hi,
    I have an interest in logging messages to a file from a Service Object that
    will be replicatied multiple times. All copies of the Service Object run on
    the same server in which I wish to log the messages. I want to have a unique
    file for each replicated Service Object. I thought of using the PID (if
    possible) of the process, but then have to manage a clean-up process for the
    file system as the partition starts and stops over a period of time (the file
    gets created each time the partition starts). I would like to reuse the files
    if possible. Any suggestions?
    Thanks,
    Bill Plumstead

Maybe you are looking for

  • Passing Char Values to Key figure

    Hi All, I have one issue for Inventory cube. Every thing is fine with the cube, every thing is fine. since i wanted Last usage date i have enhanced the data source and the date is coming to cube well. Since i dont want to put the Date as charecter ,

  • ORA-04088: error during execution of trigger

    Error Description : We have more than 100 of records in a csv file which we are processing through a script. At the first execution let say it generates trigger exception for five records ... when I execute the script second time those five records a

  • Error while installing Oracle 9i Application server

    Hi All, I am trying to install oracle 9i Application Server 9.0.2.0.0 Enterprise Edition on Windows 2000. The installation gets stuck up after 40 percent , while trying to copy a file named 'PGPUS.MSB' . There is no update in the Install Actions Log

  • Delete tree nodes from Table

    I have created a tree table create table subforums ( id          NUMBER(5) primary key, parent_id     references subforums, name          varchar2(100) And now i dont know how to delete a tree with a specified id and all of his children. I tried to f

  • Excel Export issue in Web Dynpro ABAP

    Hello, We are facing a problem and need suggestion. In one of our WD Abap applications the output is displayed in an ALV table. We have a button (provided by standard ALV functions) to export Excel. So far so good, but the issue is the amount columns