Is it mandatory for changing conf files for weblogic 10.1.2 to 10.3.5

Hi Whom it may concern,
we are going to version changing from weblogic10g to 10.3.5,is it mandatory to change the configuration files like application-client.xml,orion-ejb-jar.xml,orion-application-client.xm to weblogic-ejb-jar.xmll,please let me know.
Thanks in advance.
Regards,
Venkatesh
Edited by: 1002131 on Apr 24, 2013 1:20 AM

Hi Venkatesh,
WebLogic Server will not be able to understand ,orion-ejb-jar.xml, orion-application-client.xml deployment descriptors.
I believe it is a application which you have deployed on Oc4j Container.
You need to migrate your application using the Smart upgrade tool.
The Smart upgrade tool helps you to migrate the application and generates the necessary weblogic specific deployment descriptors and also suggests you the configuration changes by reading your oc4j configurations, to be made compatible and deployable on Weblogic environment.
Please check the below doc.
http://docs.oracle.com/cd/E16764_01/doc.1111/e15878/intro.htm
Hope this helps!!
Thanks,
Vijaya

Similar Messages

  • What can i do for change CMYK file for RGB file?

    what can i do for change CMYK file for RGB file, in Photoshop?
    I have to upload BEHANCE.. so please teach me, hurry.

    In Photoshop, you just change the image mode in the Image > Mode menu. Pretty basic stuff. You might want to spend some time reading some manuals to get the most of all the money you're paying.

  • Not able to find mod_oc4j.conf file for setting Load Balancing on ESB

    Hi Guys,
    I am trying to set load balancing on ESB ,I got one document from oracle site for setting the load balancing on ESB. According to that document we have to change mod_oc4j.conf file for setting the roundrobin:weighted,metric,random algorithms.
    But I am not able to find mod_oc4j.conf file in my ORACLE_HOME directory.
    Actual path is
    ORACLE_HOME/Apache/Apache/conf/mod_oc4j.conf file
    I have All folders up to conf but in conf folder there is no mod_oc4j.conf file.
    I just want to know is there any installation problem or we have to create
    mod_oc4j.conf file in that conf folder for seting the loadbalancing on ESB
    kindly give me the exact solution on this .
    Thanks in advance

    Hi Chintan,
    I have apache folder ,but there i have cong folder but in that I am not able to find mod_oc4j ,I know ESB it maintain load in transparent way but in my project we have heavy load on ESB we have to maintain this load in a proper way
    Please give me the exact solution to set load balancing On ESB.
    Thank you
    Bollineni

  • Delete httpd.conf file for apache!

    I have mistakenly deleted httpd.conf file for apache.. then the localhost was not work anymore!! .. How can I solve this problem? I have XOS 10.9

    Look in the Originals folder inside the apache2 folder. Make a copy of the original httpd.conf file.

  • Looking for the *.ppd file for an HP P1102w printer (to install in eCS system (= OS/2)

    Looking for the *.ppd file for an HP P1102w printer (to install in an eCS system (=> OS/2)).  (.ppd means
    PostScript printer description, applies even if the printer is _not_ postscript.; available for most printers
    but isn't on the CD!)  Can anyone point me to the file ?
    John H. Lindsay

    The LaserJet P1102 models are 'host-based', which means that they do not understand any of the 'traditional' Page Description Languages (PCL5, PCL6 (a.k.a. PCL XL), PostScript).
    So unless your eCS system (whatever that is) has knowledge of the (various) proprietary and model-specific host-based languages, I don't think that a printer description file would help at all.

  • Java Module for changing the file's name

    Hi all
    I m developing a java module for altering a file's name. I m trying to append system date and time to the file name and send it back. I was successful in retrieving the file's name, appending date n time in it but now I want to send it back. How can I achieve this ? any pointers will be very helpful
    awaiting your reply
    Regards
    Kapil

    String SIGNATURE = "process(ModuleContext moduleContext, ModuleData inputModuleData)";
              TRACE.entering(SIGNATURE, new Object[] { moduleContext, inputModuleData });
    //          Access the XI message. I.e. this module must be placed in the module chain
               // behind a module that sets an XI message as principal data.
               Object obj = null;
               Message msg = null;
               try {
                         obj = inputModuleData.getPrincipalData();
                         msg = (Message) obj;
                        Message msgg = (Message)inputModuleData.getPrincipalData();     
                        AuditMessageKey amk = new AuditMessageKey(msgg.getMessageId(), AuditDirection.INBOUND);               
                        Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS, "RenameFile: Module Called");
    //               Read the channel ID, channel and the module configuration
                         String cid  = null;
                         String mode = null;
                         String fileName = null;
                         try {
                              // CS_GETMODDAT START
                              mode = (String) moduleContext.getContextData("mode");
                              // CS_GETMODDAT END
                              // CS_GETCHADAT START
                              cid  = moduleContext.getChannelID();
                              Channel channel = new Channel(cid);
    //                          channel = (Channel) LookupManager.getInstance().getCPAObject(CPAObjectType.CHANNEL, cid);
                              // Example to access a channel configuration parameter in a module: String someParameter = channel.getValueAsString("YourAttributeName");
                              // CS_GETCHADAT END
    //                         Hashtable mp = (Hashtable) inputModuleData.getSupplementalData("module.parameters");
    //                           if(null != mp)
    //                                 fileName = (String)mp.get("FileName");
    //                                 fileName = fileName + todaysDate;
    //                                 mp.put("FileName",fileName);     
                             fileName = channel.getValueAsString("file.targetFileName");
                             Date todaysDate = new Date(System.currentTimeMillis());
                             fileName = fileName + todaysDate;
                             Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS, "RenameFile: fileed" + fileName);
                              if (mode == null) {
                                   TRACE.debugT(SIGNATURE, "Mode parameter is not set. Switch to 'none' as default.");
                                   mode = "none";
                              TRACE.debugT(SIGNATURE, "Mode is set to {0}", new Object[] {mode});
                         } catch (Exception e) {
                              TRACE.catching(SIGNATURE, e);
                              TRACE.errorT(SIGNATURE, "Cannot read the module context and configuration data");
                              ModuleException me = new ModuleException(e);
                              TRACE.throwing(SIGNATURE, me);
                             Audit.addAuditLogEntry(amk, AuditLogStatus.ERROR, "Rerrrd" + me);
                              throw me;
    //               try{
    //                  Hashtable mp = (Hashtable) inputModuleData.getSupplementalData("module.parameters");
    //                  String fileName = null;
    //                  Date todaysDate = new Date(System.currentTimeMillis());
    //                  if(null != mp)
    //                       fileName = (String)mp.get("FileName");
    //                       fileName = fileName + todaysDate;
    //                       mp.put("FileName",fileName);     
    //                  inputModuleData.setSupplementalData("module.parameters", mp);
    //               }catch(Exception e){
               } catch (Exception e) {
                    TRACE.catching(SIGNATURE, e);
                    if (obj != null)
                         TRACE.errorT(SIGNATURE, "Input ModuleData does not contain an object that implements the XI message interface. The object class is: {0}", new Object[] {obj.getClass().getName()});
                    else
                         TRACE.errorT(SIGNATURE, "Input ModuleData contains only null as XI message");
                    ModuleException me = new ModuleException(e);
                    TRACE.throwing(SIGNATURE, me);
                    throw me;
              return inputModuleData;
    Please refer the above code, it might help you to understand what i m trying to do. I have also included some code that is in comments which I tried by referring the links given by other users but its nt working. Please tell me how to improve my code to set the filename into the <b>reciever file adapter</b>.
    Regards
    Kapil

  • DTD for deployment  xml file for providers

    Hi all,
    where can I find the DTD for the deployment file that is to be used in .par file for the custom providers for Portal Server 6.0 and 6.2. ?
    Thanks,
    Klara

    in case you mean portlets then it is:
    portlet.xsd contains reference to http://www.w3.org/2001/xml.xsd.
    in case you mean providers, e.g. smpleMailservice:
    /ps-base/SUNWam/dtd/sms.dtd
    or
    /ps-base/SUNWam/dtd
    with all the named dtd's
    cheers,
    Ulf

  • XSD for the input file for GTS offline screening program

    Hi Friends,
    We are running some performance tests for our current project to  evaluate how much time the offline screening program (report "/SAPSLL/SPL_OFFLINE_SCREENING") takes in GTS. This report expects the customers in an XML format - would you know where I can get the definition of this expected XML format (e.g. the XSD for this input file)?
    Can some one help me to provide response XML definition of what GTS generates for the SPL check ?
    Thanks,
    Sudheer.

    Hi Sudheer,
    please follwow the steps:
    1. Prepare an XML file  with Adress data
    -> you can create a simple excel file that has to be converted into an      
    XML-file. See also the GTS documentation http://help.sap.                
    com/saphelp_gts72/helpdata/en/b1/8dc5c62c885046ab71fdcddc6ad2c2/frameset 
    .htm.                                                                    
    2. Upload the local file  to GTS for SPL Screening
    3. Examine the SPL screening results in GTS
    4. Save the results in Audit trail and&or in local file
    Best regards,
    Christin

  • What is the price for changing the casing for iPod touch 4th Gen in Mac City Malaysia? (Back chrome casing get dented)

    My iPod touch back chrome casing get dented, what is the price of sending it for a change in official apple seller in Malaysia?
    Would like to know the approximate price for it    Thanks is advance

    Apple will only exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price      
    A third-party place like the following will replace the back for less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the back yourself
    iPod Touch Repair – iFixit

  • Configuring textpds.conf file for running Text Query in Oracle Reports 11g

    I'm trying to add a custom option in textpds situated in ORACLE_HOME\reports\conf folder by the given fileFormat:
    <fileFormat name = "ProductCSV" comment = "#" delimiter ="" type = "fixed">
    <columnInfo>
    <cloumn name = "S.No." type = "number" startpos = "1" width = "13"/>
    <column name = "Fruits" type = "string" startpos = "14" width ="10"/>
    </columnInfo>
    </fileFormat>
    before end tag of textPDS.
    but it is not getting reflected on my report wizard. I tried to remove all the existing fileFormats still no changes occur.
    Can anyone help me in my problem ?
    Note: I have restarted the reporting tool once the modification is done.

    For the more clarification, I have used JDBC Query as Data source type and Database connected via ODBC Driver in System DSN. The Driver selected from the drop-downs are jdbc-odbc.
    Kindly explain the mistake I m doing.

  • Change welcome file for webapp

    Hi,
    I just installed SunOne web server 6.1 SP4, and deployed the [simple] webapp coming with the server distribution by following the steps in "Sun One Web Server 6.1 Getting Started Guide". I pointed my browser to http://my-sunone-61-server/simple, I got the index page for [simple] webapp. Easy !
    I want to see if I can change the welcome page for the webapp, so I create a login.html in the root directory for the [simple] webapp, change the welcom-file from index.html to login.html in web.xml, and restart the server. Now I expect to get the login page when I point my browser to http://my-sunone-61-server/simple, I thought this should be simple and straightforward enough. But unfortunately it is not. The login page does not show up. I still get the index page.
    Do I have to add the login.html to the admin server's index filenames list ? Or am I missing anything in my configuration? Please advice. Thx.

    If you config the web.xml as this:
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list>The <welcom-file-list/> unit must be the last unit of web.xml just like this:
    <web-app>
    <servlet-mapping>
    <servlet-name>aa</servlet-name>
    <url-pattern>/aaServlet</url-pattern>
    </servlet-mapping>
    <mime-mapping>
    <extension>doc</extension>
    <mime-type>application/msword</mime-type>
    </mime-mapping>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list></web-app>
    I don't know whether it is helpful with you.But try ! Good Luck!

  • Listener for changes in file

    Hi
    I am trying to solve a problem that needs me to display server logs to client developer using an applet.
    I've written a logserver that reads the logfile and spits the output to the socket where my applet is connected to and reading for new data.
    The problem I am facing is that I don't know how to tell the logserver that there is new stuff in the logfile that needs to be read and send to the socket so that Applet can read it and display it.
    Can I register some kind of listner to this log file and set up a callback that then reads this file?
    Thanks
    Desi

    Create a Runnable. Read the time stamp of the file using getLastModified. The thread checks after some time the new time stamp.
    If value has changed just trigger an event.
    Hope that helps.

  • The 2 year old fix for changing temp files is no longer valid, I need to change the temp file location in the latest firefox.

    In 3.6.3 I'm unable to find the parent cache to change where the temp files are located. I have an SSD drive, and I need to get the temp file off, and onto my platter drive. I have read the previous fix of about:config and changing the parent cache location, but it no longer seems to be there. I'm unable to locate anything relating to my SSD drive location in about:config.
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.70 Safari/533.4

    Unfortunately, it appears that what I wrote about not being able to find the location IN about:config of the cache to change it from my C: drive to a different location, was mildly misunderstood that I didn't know how to get into about:config.
    The location of browser.cache.disk.parent_directory does not currently exist in 3.6.3. I'm assuming it's under a different location. Also using the simple string of "cache" lists several options, but none of them appear to be where firefox is currently dumping the temp files onto my C:
    I merely need to know how to switch the temp file location from 1 drive, to another. Not downloads, the temp file.

  • Changing source file for file sender adapter in adapter module

    Hi guys!
    3rd party partner send us files, which are not acceptable by file adapter, so we need to implement (I suppose) adapter module in file sender adapter to correct the file format before it is taken by standard adapter. I have no experience in this development field. Could you give me:
    1, whether it is possible (changing file contents before it is taken by standard file sender adapter)
    2. any ideas, where to start with the development (pdf with info etc.)
    Thanx a lot!
    Olian

    <i>2. any ideas, where to start with the development (pdf with info etc.)</i>
    >>>>>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/02706f11-0d01-0010-e5ae-ac25e74c4c81
    <i>1, whether it is possible (changing file contents before it is taken by standard file sender adapter)</i>
    >>
    yes you can achieve this in the logic in a module

  • How can i set a path for my deployment files in weblogic server 10.3

    Hi
    How can i set the path for my WAR ,JAR files while deploying.i am using the wls10.3 version.
    is there any scripts for this ,please provide me.
    my Application is ADF 11g application.

    By "path", I assume you mean "classpath".
    The simplest way is simply to include the jars you need inside the web application or web module's WEB-INF/lib directory, EJB module's META-INF/lib directory, or EAR lib directory.
    If that's not practical, if you use NodeManager to start your servers, you can go to the "Server Start" tab in the server definition in the WebLogic console and edit the "Classpath" field, which defaults to no value. You can specify a classpath value there. Note that if you specify a value there, it REPLACES the default classpath for the server, it doesn't add to it. If you need to just add to it (a much more likely scenario), if the value references the value "$CLASSPATH" in it, that will reference the original classpath value that the server would have had.
    So, for instance, if you wanted to include the MQ jars in the server classpath, you could set a value like this:
    /usr/java/mq/lib/mq.jar:/usr/java/mq/lib/mqstuff.jar:$CLASSPATH

Maybe you are looking for

  • New mac book pro setup questions

    I am about to get a macbook pro dual 2.6 4gb ram 320gb 7200 hard drive. I will be putting fc studio on it and was wondering how to arrange and use external hard drives. I am not a big fan on letting the internal hard drives to all the work, so I have

  • Facing error while creating CR in customer master MDG.

    Can anyone plz help me out.I am not able to create a customer in customer master MDG after activation of 0MDG_ANLY_CR_PROCESS BI component in BSANLY_BI_ACTIVATION Tcode.Becoz my activation was completed by error.So plz see the attaachment and help me

  • Acrobat X Pro install package does not remove Adobe Reader X

    I am using the Adobe Customization Wizard X to deploy our Acrobat X Pro install. In the transform I have both options checked to removed previous versions of Acrobat and Reader. The only version of Reader that does not get removed is Reader X. Has an

  • Best way to inject EJB's in Struts 2

    Hi all, I'd like to ask you what do you think is the best way to inject EJB's in Struts 2 Actions (and perhaps other struts classes such as type converters). I've read and implemented both a Struts 2 Interceptor and used CDI. About CDI I've read ther

  • FCP doesn't recognize .motn

    Just in the last week or so, FCP has taken a strong dislike to Motion. When I select a clip and do "Send to Motion" with "Embed Motion Content" and "Launch Motion" checked, I get the error: "File Error: Wrong Type." Same error with "Launch Motion" un