Migration from ATG Dynamo 5.1 to Weblogic 10.3 Server

Hi,
We are currently involved in a project in which the application has be
migrated from the ATG Dynamo Server 5.1 to Weblogic 10.3 application
server.
While doing this we are facing some problems related to
DynamoHttpServletRequest.
Previosly the code was written as below:
DynamoHttpServletRequest atgRequest = (DynamoHttpServletRequest)
request;
HttpSession atgSession = (HttpSession) atgRequest.resolveName("/" );
Since we are moving to the weblogic server we are planning to remove
the DynamoHttpServletRequest and use the javax HttpServletRequest.
But to do this i am unable to find the functionality that does
resolveName("/" ).
I tried writing the below 2 lines of code inplace of the 2 lines of
code above, but it is not solving the purpose.
HttpServletRequest weblogicRequest = (HttpServletRequest) request;
HttpSession weblogicSession = (HttpSession)
weblogicRequest.getSession();
Can anybody please help me in solving this problem where i can replace
DynamoHttpServletRequest with HttpServletRequest.
Any suggestions are welcome.
Thanks in advance
Shailendra

Hi Ravi,
Thanks for your response.
While migrating we have tried to remove the ATG dependency and we are getting session invalid. We are unable to find a similar method for “resolveName” in HTTPServletRequest. The method “resolveName” of the DynamoHttpServletRequest is being used to retrieve the session object by passing a String parameter (‘/’ or any URL).
Whereas the HTTPServletRequest has only two methods [getSession() or getSession(Boolean)] to retrieve the session object and here we cannot pass any String parameter. Thus we are unable the replicate the existing functionality using the HTTPServletRequest class.
Below are some code examples for your reference.
Sample1:
Below commented code is original one. we tried to as mentined below:
//import atg.servlet.DynamoHttpServletRequest;
/* DynamoHttpServletRequest atgRequest = (DynamoHttpServletRequest) request;
HttpSession atgSession = (HttpSession) atgRequest.resolveName("/" );
String atgsession = "jsessionid=" + atgSession.getId();
HttpServletRequest weblogicRequest = (HttpServletRequest) request;
HttpSession weblogicSession = (HttpSession) weblogicRequest.getSession();
String weblogicsession = "jsessionid=" + weblogicSession.getId();
Sample2:
Below commented code is original one. we tried to as mentined below:
/* ATG Dynamo for Session Last Access Time functionality */
//import atg.servlet.DynamoHttpServletRequest;
/* DynamoHttpServletRequest atgRequest = (DynamoHttpServletRequest) request;
HttpSession session = (HttpSession) atgRequest.resolveName("/atg/dynamo/servlet/sessiontracking/SessionManager/" + sessionID);
HttpServletRequest weblogicRequest = (HttpServletRequest) request;
HttpSession session = (HttpSession) weblogicRequest.getSession();
we would like to know is there any smilar functionality or methods available so we can use in HttpServletRequest or servlets.
Thanks,
Nagesh

Similar Messages

  • Migration from ATG 5.1.1 to Weblogic 10.3

    Hi,
    we are migratiing our application server from ATG 5.1.1 to Weblogic 10.3. but there are some ATG Nuclear menthods are used in application. we want to know simiar ones for those.
    what is the similar method of resolveName?
    Thanks,
    Nagesh

    Hi Ravi,
    Thanks for your response.
    While migrating we have tried to remove the ATG dependency and we are getting session invalid. We are unable to find a similar method for “resolveName” in HTTPServletRequest. The method “resolveName” of the DynamoHttpServletRequest is being used to retrieve the session object by passing a String parameter (‘/’ or any URL).
    Whereas the HTTPServletRequest has only two methods [getSession() or getSession(Boolean)] to retrieve the session object and here we cannot pass any String parameter. Thus we are unable the replicate the existing functionality using the HTTPServletRequest class.
    Below are some code examples for your reference.
    Sample1:
    Below commented code is original one. we tried to as mentined below:
    //import atg.servlet.DynamoHttpServletRequest;
    /* DynamoHttpServletRequest atgRequest = (DynamoHttpServletRequest) request;
    HttpSession atgSession = (HttpSession) atgRequest.resolveName("/" );
    String atgsession = "jsessionid=" + atgSession.getId();
    HttpServletRequest weblogicRequest = (HttpServletRequest) request;
    HttpSession weblogicSession = (HttpSession) weblogicRequest.getSession();
    String weblogicsession = "jsessionid=" + weblogicSession.getId();
    Sample2:
    Below commented code is original one. we tried to as mentined below:
    /* ATG Dynamo for Session Last Access Time functionality */
    //import atg.servlet.DynamoHttpServletRequest;
    /* DynamoHttpServletRequest atgRequest = (DynamoHttpServletRequest) request;
    HttpSession session = (HttpSession) atgRequest.resolveName("/atg/dynamo/servlet/sessiontracking/SessionManager/" + sessionID);
    HttpServletRequest weblogicRequest = (HttpServletRequest) request;
    HttpSession session = (HttpSession) weblogicRequest.getSession();
    we would like to know is there any smilar functionality or methods available so we can use in HttpServletRequest or servlets.
    Thanks,
    Nagesh

  • Migrating from Crystal Enterprise 10 to Business Objects XI / Crystal Server XI

    Post Author: Karthik003
    CA Forum: Deployment
    Hi,
    Anyone please explain me which one is right,
    At present we are running on Crystal Enterprise10,which is advantages
    Migrating from Crystal Enterprise 10 to Business Objects XI
    or
    Migrating from Crystal Enterprise 10 to Crystal Server XI
    Please explain me the things that needs to be had in mind while going for the migration.
    Thanks
    kartik

    Post Author: TAZ
    CA Forum: Deployment
    CRS is limited to single server installs, it has less functionality such as no auditing. Enterprise can be clustered across many servers, has auditing and webi/deski from E6. So which one is best would depend on the size of your planned implementation and the features that you want.
    Regards,
    Tim

  • Migrating from JBoss 3.0.6 to WebLogic 7.0

    Hello all,
    I currently have a "EAR" packaged with EJB jars, a war, and support jars
    (common java code). I use a standard "application.xml" file with everything
    declared in there (beans, war, and jars as module-java).
    Within our development environment, using JBoss 3.0.6, this works fine and
    it deploys and shares the common jars for both the beans and the war. When
    I go to deploy this same EAR over to weblogic I get a host of "class not
    found" errors.
    Any suggestions as to what this might be or what I can do to get this same
    ear working?
    As a note, we are not using the classpath in the manifest but instead
    relying on the application.xml to descrive the inclusions.
    Any help would be appreciated - Thanks.
    KJQ

    Hi - Were you able to resolve the above error. I am also having a similar problem and I would like to know your resolution on this.
    Thanks in advance.

  • JumpServlet issue in migration to ATG 10.1

    Hi all,
    I am doing migration from ATG 10.0.3 to 10.1 version. I am using JumpServlet component to convert some URLs, like browse/category.jsp, to other friendly URLs.
    In version 10.0.3 it was working fine, but in 10.1 it is not loading any page with the friendly URL. See my log:
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Start of Jump Servlet service method
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Inbound URL=</store/home-accents/cat10016/>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Number of templates is <4>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     forward url is <null>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     forward url is <null>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     forward url is <%2Fbrowse%2Fdepartment.jsp?categoryId=cat10016&itemType=department>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Got first matching URL
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Template supports the browser type
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Using exact match URL <%2Fbrowse%2Fdepartment.jsp?categoryId=cat10016&itemType=department>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Forwarding to URL <%2Fbrowse%2Fdepartment.jsp?categoryId=cat10016&itemType=department>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Start of Jump Servlet service method
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Inbound URL=</store/home-accents/cat10016/%2Fbrowse%2Fdepartment.jsp>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Number of templates is <4>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     forward url is <null>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     forward url is </index.jsp?categoryId=%252Fbrowse%252Fdepartment.jsp&itemType=category>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Got first matching URL
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Template supports the browser type
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Using exact match URL </index.jsp?categoryId=%252Fbrowse%252Fdepartment.jsp&itemType=category>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     Forwarding to URL </index.jsp?categoryId=%252Fbrowse%252Fdepartment.jsp&itemType=category>
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     End of Jump Servlet service method
    **** debug     /atg/dynamo/servlet/dafpipeline/JumpServlet     End of Jump Servlet service methodIt seems like the component is putting some code, like %2F, instead of / signal, and this is making problem in the URLs. But I don't have any idea to solve this issue.
    Anyone can help me?
    Thanks a lot

    Hi Gautam Singh,
    My DepartmentIndirectTemplate.properties file is:
    $class=atg.repository.seo.IndirectUrlTemplate
    # Url template format
    urlTemplateFormat=/store/{item.friendlyURL}/{item.id}/
    # Regex that matches above format
    indirectRegex=.*/store/[^/]*?/([^$].*?)(/$|\\?.*$|$)
    # Regex elements
    regexElementList=\
              item | id | /atg/commerce/catalog/ProductCatalog:category,\
              | |
    # Forward Url template
    forwardUrlTemplateFormat={item.template.url}?categoryId\={item.id}&itemType\=department
    # Web App registry
    defaultWebApp=/atg/registry/webappregistry/ATGCommerceReferenceStore
    # Supported Browser Types
    supportedBrowserTypes=\
         robot,\
         background-image,\
         bad-cacher,\
         checker,\
         cookie,\
         euc,\
         Emacs-W3,\
         file-upload,\
         font-sizer,\
         frames,\
         HotJava,\
         indexer,\
         inlinejpeg,\
         java,\
         javascript,\
         Lynx,\
         MSIE,\
         MSIE4,\
         MSIE5,\
         MSIE6,\
         MacOS,\
         Mosaic,\
         Mozilla,\
         Netscape,\
         Netscape4,\
         NonFunctionalXDC,\
         ssl,\
         server-push,\
         slurper,\
         tables,\
         Unix,\
         WML,\
         WebTV,\
         Win3X,\
         Win95,\
         WinNT,\
         Windows,\
         X11Any suggestion?
    Thanks a lot

  • Migration of the database from Microsoft SQL 2014 Express to Microsoft SQL 2012 Server

    I posted a similar thread yesterday, and I realized that there was a serious typo.
    Link: https://social.msdn.microsoft.com/Forums/sqlserver/en-US/b3e201ea-6c7c-43a4-8908-842b714ea451/migration-of-the-database-from-microsoft-sql-2014-express-to-microsoft-sql-2012-server?forum=sqlservermigration
    Therefore, I made a decision to post another thread right now.
    I am
    writing to ask if there are any known issues when migration from MS SQL 2014 Express to MS SQL 2012 Server version. Are there any step-by-step instruction on how I can go about doing this?
    Looking forward to your response. Thank you for your time.
    Regards,
    Jeff Yoo 

    Hello,
    SQL Server 2012 setup program won’t allow you to perform a downgrade from SQL Server 2014 Express Edition. Backup/Restore
    and Detach/Attach won’t help you either.
    One option you have left is using SQL Server Import/Export Wizard as explained on the following article.
    http://www.mytechmantra.com/LearnSQLServer/Downgrade_SQL_Server_Database_P1.html
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Migrating From IMAP to Exchange 2013

    Hi
    I'm looking to migrate from a hosted imap email provider to racked exchange server 2013
    we have about users, but also some of the services we provide generate and send mail
    We are looking to just migrate the users for now, but at the risk of sounding stupid, I don't think this is possible due to the domain and the mx records, as in we don't want to change the email address' and we would be able to have both hosted and in house,
    using the same domain
    Any help and advice is very much appreciated 

    Do you have access to hosted environment to move the mailboxes?
    What is the number of users you are talking about?
    To move the mailbox you would require some third party tool.
    Cheers,
    Gulab Prasad
    Technology Consultant
    Blog:
    http://www.exchangeranger.com    Twitter:
      LinkedIn:
       Check out CodeTwo’s tools for Exchange admins
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Creation of domain issues - migration from weblogic 10.3.0 to 10.3.5 versio

    Hello,
    i would like to kindly ask for a help with following issue:
    Basically we are migrating from the 10.3.0 to the 10.3.5 version. We are building the domain using the template in "silent mode". And when i try to create the domain with new weblogic 10.3.5 im getting some errors.
    The command to run the creation of the domain is following:
    ${WL_HOME}/common/bin/config.sh -mode=silent -silent_script=${SILENT_SCRIPT} -log=${WLLOGFILE} >> ${LOGFILE} 2>&1
    returnCode=$?
    SILENT_SCRIPT contains following commands:
    read template from "/local/wg372/BM/appl/config/NEW_DOMAIN_CONFIGURED.jar";
    write domain to "/local/wg372/BM/appl/BmDomain";
    set OverwriteDomain "true";
    close template;
    When i setup new env(solaris) with weblogic 10.3.5 im getting following error when the silent_script command (*write domain to "/local/wg372/BM/appl/BmDomain";*) is executed:
    2011-07-18 16:53:00,427 INFO [runScript] com.oracle.cie.domain.script.ScriptExecutor - succeed: read template from "/local/wg372/BM/appl/config/NEW_DOMAIN_CONFIGURED.jar"
    2011-07-18 16:53:00,427 INFO [runScript] com.oracle.cie.domain.script.ScriptExecutor - write Domain to "/local/wg372/BM/appl/BmDomain"
    2011-07-18 16:53:00,505 ERROR [runScript] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - There was an error executing the script: /local/wg372/BM/appl/installer/silent_script
    java.lang.NullPointerException
         at com.oracle.cie.domain.security.SecurityGenerateLDIFT.buildSecurityInfo(SecurityGenerateLDIFT.java:460)
         at com.oracle.cie.domain.security.SecurityGenerateLDIFT.<init>(SecurityGenerateLDIFT.java:119)
         at com.oracle.cie.domain.script.ScriptExecutor.writeDomain(ScriptExecutor.java:718)
         at com.oracle.cie.domain.script.ScriptParserClassic$StateMachine.processWrite(ScriptParserClassic.java:573)
         at com.oracle.cie.domain.script.ScriptParserClassic$StateMachine.execute(ScriptParserClassic.java:429)
         at com.oracle.cie.domain.script.ScriptParserClassic.parseAndRun(ScriptParserClassic.java:148)
         at com.oracle.cie.domain.script.ScriptParserClassic.doExecute(ScriptParserClassic.java:110)
         at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:72)
         at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:35)
         at com.oracle.cie.wizard.domain.helpers.Executor.runSilentScript(Executor.java:68)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.runScriptWithExecutor(RunScriptTask.java:551)
         at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.execute(RunScriptTask.java:335)
         at com.oracle.cie.wizard.silent.tasks.AbstractSilentTask.run(AbstractSilentTask.java:28)
         at java.lang.Thread.run(Thread.java:662)
    In Windows env im getting following error:
    create.domain:
    [exec] -mode="silent" -silent_script=J:/_dev/build/installer/silent_script
    [exec] << read template from "J:/_dev/build/config/NEW_DOMAIN_CONFIGURED.jar"
    [exec] >> succeed: read template from "J:/_dev/build/config/NEW_DOMAIN_CONFIGURED.jar"
    [exec] << write Domain to "J:/_dev/build/BmDomain"
    [exec] CFGFWK-60550: Script execution aborted. The script may contain an error.
    [exec] null
    CFGFWK-60550: - doc says
    CFGFWK-60550: Script execution aborted. The script may contain an error.
    Cause:
    Action:
    Level: 1
    Type: ERROR
    Impact: Configuration
    I tried to google for this issue, look into the weblogic documentation but with no luck.
    So i would like to kindly ask, if anyone of you perhaps could give me a hint/advise with this problem.
    Thanks in advance.

    Hi,
    thanks for the reply but im not sure if we are talking about the same thing. What i need is to upgrade the weblogic "DOMAIN" not the weblogic installation itself.
    Anyway,
    after some googling and testing im again stucked with another issue:
    1. First i have created the old doman (10.3.0)
    2. Then i have tested the domain with the new weblogic version 10.3.5 - as it should be (and is) compatible within those 2 versions
    ---> worked fine
    3. Then via offline WLST(of weblogic 10.3.5) i have managed to create new template with command writeTemplate(nameOfTemplate.jar)
    4. But when i try to create the new domain with the new template via WLST(of weblogic 10.3.5) im again stucked (im able to read the template in wlst but not able to writeDomain ) - error:
    wls:/offline> readTemplate('/home/wg372/tmp/new_template.jar')
    wls:/offline/BmDomain>writeDomain('/home/wg372/tmp/new_domain')
    Error: writeDomain() failed. Do dumpStack() to see details.
    wls:/offline/BmDomain>dumpStack()
    com.oracle.cie.domain.script.jython.WLSTException: com.oracle.cie.domain.script.ScriptException: The application location must have write permission.
    at com.oracle.cie.domain.script.jython.CommandExceptionHandler.handleException(CommandExceptionHandler.java:51)
    at com.oracle.cie.domain.script.jython.WLScriptContext.handleException(WLScriptContext.java:1538)
    at com.oracle.cie.domain.script.jython.WLScriptContext.writeDomain(WLScriptContext.java:803)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.python.core.PyReflectedFunction.__call__(Unknown Source)
    at org.python.core.PyMethod.__call__(Unknown Source)
    at org.python.core.PyObject.__call__(Unknown Source)
    at org.python.core.PyInstance.invoke(Unknown Source)
    at org.python.pycode._pyx3.writeDomain$15(/var/tmp/WLSTOfflineIni6651397525640719781.py:71)
    at org.python.pycode._pyx3.call_function(/var/tmp/WLSTOfflineIni6651397525640719781.py)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyFunction.__call__(Unknown Source)
    at org.python.pycode._pyx24.f$0(<console>:1)
    at org.python.pycode._pyx24.call_function(<console>)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyCode.call(Unknown Source)
    at org.python.core.Py.runCode(Unknown Source)
    at org.python.core.Py.exec(Unknown Source)
    at org.python.util.PythonInterpreter.exec(Unknown Source)
    at org.python.util.InteractiveInterpreter.runcode(Unknown Source)
    at org.python.util.InteractiveInterpreter.runsource(Unknown Source)
    at org.python.util.InteractiveInterpreter.runsource(Unknown Source)
    at weblogic.management.scripting.WLST.main(WLST.java:173)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at weblogic.WLST.main(WLST.java:29)
    Caused by: com.oracle.cie.domain.script.ScriptException: The application location must have write permission.
    at com.oracle.cie.domain.script.ScriptExecutor.writeDomain(ScriptExecutor.java:757)
    at com.oracle.cie.domain.script.jython.WLScriptContext.writeDomain(WLScriptContext.java:795)
    ... 29 more
    I tried to have a look around for the "The application location must have write permission." problem but again with no luck.
    Furthemore when i try to do the same with old domain template, with old version of WLST (of weblogic 10.3.0), i have no problems with creating of the domain.
    Any ideas?
    Ill keep you updated :-)

  • Problem with servlet after migrating from OC4J to WebLogic 10.3

    I come across a problem when I was migrating from jDev 11g TP4 to production version in that step also server got changed from OC4J to webLogic.
    I am running java http servlet along other jspx pages. When everything was on OC4J there was no problem whit security on this servlet ( servlet was under same authorization automatically, and I was able to create new application module on this servlet by createRootApplicationModule
    ) but when I changed to WebLogic 10.3 I come across a numerous problems. First one is solved i managed to put the servlet under same authorization as jspx pages by
    *&lt;servlet&gt;*
    *&lt;servlet-name&gt;report&lt;/servlet-name&gt;*
    *&lt;servlet-class&gt;path.to.class&lt;/servlet-class&gt;*
    *&lt;security-role-ref&gt;*
    *&lt;role-name&gt;name&lt;/role-name&gt;*
    *&lt;role-link&gt;valid-users&lt;/role-link&gt;*
    *&lt;/security-role-ref&gt;*
    *&lt;/servlet&gt;*
    but when I trying to create new application module I get JBO-30003 error which is Caused by:
    oracle.adf.share.security.ADFSecurityAuthenticationException: JAAS login error.
    Invalid null input: name
    Has anybody any idea what I am doing wrong?
    Thank you for your help, Rok Kogov&scaron;ek

    for example:
    web.xml
    <security-role>
    <role-name>yourrole</role-name>
    </security-role>
    weblogic.xml
    <security-role-assignment>
    <role-name>yourrole</role-name>
    <principal-name>wlsuser</principal-name > <!-- wlsuser is define at wls console-->
    </security-role-assignment>

  • Migrating a application from bea 8.1.6 to Weblogic 10.3.0

    Hi All,
    I'm migrating a web servcies (JAX-RPC 1.1) from developed from the servicegen ( weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask ) bea weblogic 8.1.6 to weblogic 10.3.0.The WSDL generated in WL 10.3.0 has the <element name="CreditCheckRequest" type="*java:CreditCheckRequest*" >
    where as the WSDL generated in bea 8.1.6 has <element name="CreditCheckRequest" type="*stns:CreditCheckRequest*">.
    _My problem is i dont want this element type java: instead element type="stns:". The segment of the WSDL are given below for more clarity_*
    I have used the below servicegen scripts to generate the WSLD for the 8.1.6 and for 10.3.0 jwsc script which follows next to it. Since 10.3.0 is based on java 1.6 I'm using annotations The annotated services and java bean class can also be found next to jwsc script,
    The Bottom-Up appraoch is being followed.
    If any body can help me with this, please reply with your suggestion/solution
    your help will be appriciated.
    Thanks
    SCRIPT FOR BEA 8.1.6*
    ++ <servicegen forcewsicompliance="true"+
    +               destEar="${deploy.dir}/CreditCheckService.ear" contextURI="/cdtibws"+
    +               classpath="${wls.lib}/webserviceclient.jar;.">+
    +               <service javaClassComponents="credit.sfa.ws.CreditCheckService"+
    +                    targetNamespace="http://www.qwest.com/webservices/CDT"+
    +                    generateTypes="false" style="document" expandMethods="True"+
    +                    serviceName="CreditCheckService" serviceURI="CreditCheckService" />+
    +          </servicegen>++
    SCRIPT FOR WL 10.3.0*
    +<jwsc srcdir="src" destdir="${ear-dir}" keepgenerated="false" defaultexcludes="false"               +
    +               classpathref="lib.path">+
    +               <jws file="credit/sfa/ws/CreditCheckService.java" type="JAXRPC">+
    +                    <WLHttpTransport contextPath="cdtibws" serviceUri="CreditCheckService" portName="CreditCheckServicePort" />+
    +               </jws>+
    +               +
    +          </jwsc>+
    Annoatated Services Class Script*
    +@WebMethod(operationName = "processRequest")+
    +     @WebResult(name = "CreditCheckResponse",partName="CreditCheckResponse",targetNamespace = "http://www.qwest.com/webservices/CDT")+
    +public CreditCheckResponse processRequest(@WebParam(name="CreditCheckRequest",targetNamespace="http://www.qwest.com/webservices/CDT")credit.sfa.beans.CreditCheckRequest creditCheckRequest) {+
    +     //EventLog.write(1, "**CreditCheckService**", "inside the processRequest()");+
    +          +
    Annotated java bean class*
    +@XmlRootElement(name = "CreditCheckRequest", namespace = "http://www.qwest.com/webservices/CDT")+
    +//@XmlType(name = "CreditCheckRequest", namespace = "http://www.qwest.com/webservices/CDT")+
    +//@XmlAccessorType(XmlAccessType.NONE)+
    +public class CreditCheckRequest implements Serializable {+
    +     @XmlElement(name = "SrcSystem", namespace = "http://www.qwest.com/webservices/CDT" )+
    +     +
    +     private String SrcSystem = null;+
    +     @XmlElement(name = "UserId", namespace = "http://www.qwest.com/webservices/CDT" )+
    +     private String UserId;+
    +     @XmlElement(name = "RequestCd", namespace = "http://www.qwest.com/webservices/CDT" )+
    +     private int RequestCd;+
    The WSDL generated from the bea 8.1.6*
    ++ <definitions xmlns:wsr="http://www.openuri.org/2002/10/soap/reliability/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap12enc="http://www.w3.org/2003/05/soap-encoding" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.qwest.com/webservices/CDT" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:conv="http://www.openuri.org/2002/04/wsdl/conversation/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://www.qwest.com/webservices/CDT">+
    - <types xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsr="http://www.openuri.org/2002/10/soap/reliability/" xmlns:soap12enc="http://www.w3.org/2003/05/soap-encoding" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:tns="http://www.qwest.com/webservices/CDT" xmlns:conv="http://www.openuri.org/2002/04/wsdl/conversation/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/">
    - <xsd:schema xmlns:stns="http://www.qwest.com/webservices/CDT" xmlns:xsd="http://www.w3.org/2001/XMLSchema" attributeFormDefault="qualified" targetNamespace="http://www.qwest.com/webservices/CDT" elementFormDefault="qualified">
    <xsd:element nillable="true" name="processRequest" type="*stns:CreditCheckReques*" />
    <xsd:element nillable="true" name="processRequestResponse" type="*stns:CreditCheckResponse*" />
    - <xsd:complexType name="CreditCheckRequest">
    - <xsd:sequence>
    +++
    WSDL Generated in wl 10.3*
    ++ <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.qwest.com/webservices/CDT" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://www.qwest.com/webservices/CDT" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xs="http://www.w3.org/2001/XMLSchema">+
    +<xs:import namespace="java:credit.sfa.beans" />+
    +<xs:element name="CreditCheckResponse" type="*java:CreditCheckResponse*" xmlns:java="java:credit.sfa.beans" />+
    +<xs:element name="CreditCheckRequest" type="*java:CreditCheckRequest*" xmlns:java="java:credit.sfa.beans" />+
    +</xs:schema>+
    - <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="java:credit.sfa.beans" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://www.qwest.com/webservices/CDT" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    - <xs:complexType name="CreditCheckResponse">
    +++

    Hello,
    we can't help you in this forum as it is dedicated for migrations from foreign databases to Oracle, using the SQL Developer Migration Workbench.
    There is a bunch of WebLogic forums and you should really better try one of those:
    http://forums.oracle.com/forums/category.jspa?categoryID=193
    Regards
    Wolfgang

  • Error while migrating from Weblogic 8.1 to 10.1.3

    Hi
    I am getting the below error while building the xml during migrating from Weblogic 8.1 to 10.1.3.
    Could anyone please suggest how to resolve the below error:
    Error:
    Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/i18n/logging/LogMessage
    [java]      at weblogic.application.compiler.Appc.runBody(Appc.java:179)
    [java]      at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [java]      at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [java]      at weblogic.application.compiler.Appc.main(Appc.java:188)
    [java]      at weblogic.appc.main(appc.java:14)
    [java] Caused by: java.lang.ClassNotFoundException: weblogic.i18n.logging.LogMessage
    [java]      at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    [java]      at java.security.AccessController.doPrivileged(Native Method)
    [java]      at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    [java]      at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    Regards
    Kiran
    [java]      at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    [java]      at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    [java]      ... 5 more

    You have to make sure the LogMessage class (weblogic/i18n/logging/LogMessage) is in the classpath
    Using WebLogic Internationalization utilities: http://download.oracle.com/docs/cd/E17904_01/web.1111/e13704/utilities.htm#i1011073
    and an example: http://download.oracle.com/docs/cd/E17904_01/web.1111/e13704/textformatterclasses.htm#g1016464
    and: http://download.oracle.com/docs/cd/E17904_01/web.1111/e13704/loggerclasses.htm#g1020871

  • JMS issues when migration from weblogic 9.2 to 10.3.5

    We are facing some issues when migration from weblogic 9.2 to 10.3.5
    In  weblogic 9.2 :_
    BMP Entity EJBs used in our project are read-only in nature using entity cache, below is the configuration details
    <!DOCTYPE weblogic-ejb-jar PUBLIC "-//BEA Systems, Inc.//DTD WebLogic 6.0.0 EJB//EN" "http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd">
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>
    Company
    </ejb-name>
    <entity-descriptor>
    <pool>
    <max-beans-in-free-pool>300</max-beans-in-free-pool>
    <initial-beans-in-free-pool>150</initial-beans-in-free-pool>
    </pool>
    <entity-cache>
    <max-beans-in-cache>3500</max-beans-in-cache>
    <idle-timeout-seconds>100000</idle-timeout-seconds>
    <read-timeout-seconds>0</read-timeout-seconds>
    <concurrency-strategy>ReadOnly</concurrency-strategy>
    </entity-cache>
    Entity beans will get refreshed using the JMS messges. with in the MDB descriptor files(weblogic-ejb-jar.xml) we are using the provider URL directly and XA enabled connection factory is set to false.
    migration to Weblogic 10.3.5_
    With the same configurations MDB are not not getting deployed in weblogic 10 with some exception, so we removed the provider URL from weblogic-ejb-jar.xml and changed the JMS configuration to use foreign JMS and XA enable connection factory is set to true. Now when ever the JMS message is triggered Entity bean is not getting refreshed with the updated values. i.e values are stale.
    Can some one look into this and provide your inputs to resolve this issue.

    I think the Entity bean refresh problem appears to be unrelated to MDBs. The MDB is only responsible for getting the message to your application (which in turn interacts with Entity beans). You might want to try posting your question to an EJB newsgroup.
    Tom

  • Migration from OAS 10g to Weblogic 10.3

    Hello,
    I migrate large app from OAS 10g to Weblogic 10.3.
    1.
    The main part of the job was to prepare descriptors for Weblogic. Unfortunatelly I don't find any tool that could do the job:( There are some problems with descriptors namespaces. This schema and namespaces given in 10.3 docs are not working (not available):
    http://edocs.bea.com/wls/docs103/ejb/DD_defs_reference.html
    So I use the one from 10 release in weblogic-ejb-jar.xml:
    weblogic-ejb-jar xmlns="http://www.bea.com/ns/weblogic/10.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.bea.com/ns/weblogic/10.0 http://www.bea.com/ns/weblogic/10.0/weblogic-ejb-jar.xsd"&gt;
    and form 9 release in weblogic-cmp-rdbms-jar.xml:
    &lt;weblogic-rdbms-jar xmlns="http://www.bea.com/ns/weblogic/90" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-rdbms20-persistence.xsd"&gt;
    There are also some bugs in docs about ejb relations.
    After fixing some schema compliance exc this step success.
    2. Next the EJBComplianceChecker - its much more restrictive than OAS verification. So updates in ejb interfaces are necessary. It is not a problem with small app but when there ale a lot of code/branches to migrate it's become a problem. I have been looking for some switch that could help with this but with no result/
    EJBComplianceChecker - Spec veryfication level
    3. Now after EJB compliance checker done its job with success I have an exception that I do not understand:
    An error occurred during activation of changes, please see the log for details.
    Exception
    preparing module: EJBModule(corpo_ejb.jar)
    Unable to deploy EJB: corpo_ejb.jar from corpo_ejb.jar:
    There are 1 nested errors:
    java.io.IOException: JDT compilation error! at
    weblogic.ejb.container.ejbc.CompilerForJDT.compile(CompilerForJDT.java:66)
    at
    weblogic.ejb.container.ejbc.EJBCompiler.doCompile(EJBCompiler.java:357)
    at
    JDT compilation error!
    Could you please give me some point where the problem could be? I don't have any idea where to start looking for..
    What are your experiences with migrations from OAS to Weblogic 10?
    Thanks in advance!
    Edited by: Stoigniew Sztank on Oct 10, 2008 4:00 AM
    Edited by: Stoigniew Sztank on Oct 10, 2008 4:01 AM
    Edited by: Stoigniew Sztank on Oct 10, 2008 4:02 AM
    Edited by: Stoigniew Sztank on Oct 10, 2008 4:04 AM
    Edited by: Stoigniew Sztank on Oct 10, 2008 8:05 AM

    Hi Stoigniew Sztank,
    I am working on migrating Enterpirse application developed using Struts, Ejb2.0, JMS. Its been deployed on OAS 10G and Websphere, but I need to deploy the application on Weblogic 10.3. It seems you have migrated a J2ee application from OAS 10G to Weblogic 10.3. Please can you list me the steps that you followed to migrate the application.
    As per my understanding follwing things needsto be taken care of:-
    1) Weblogic Descriptor files:
    1.1 Weblogic.xml:- we added security roles and ejb-reference-description for the ejbs.
    1.2 Weblogic-ejb-jar.xml for all the ejbs used in the application.
    1.3 Weblogic-application.xml
    1.4 Resource Adapter
    2) JMS queue set up
    3) JDBC set up
    It would be a great help if you can let me know what are the steps to migrate the application.
    Thanks and Regards
    Deepak Dani

  • Regarding Migration from Weblogic 10.3.0 to 10.3.3

    We have configured a domain in our weblogic 10.3.0 installation. With in this domain A J2EE application has been deployed with datasources configuration, JAAS configuration.
    Is it possible to migrate to Weblogic 10.3.3 without making any changes in our existing application configuration and domain setup?
    If yes can any one please tell us what is the procedure?
    Thanks in advance.

    Hi,
    first of all could you please clarify the need for migration from  BO XI 3.0 to 3.1, as you can simply apply SP1 on top of 3.0 and it becomes 3.1.
    if you have considered this and still needs to migrate, following are the 3 posible options.
    1. Live-Live Migration - Import Wizard is the tool
    2. BIAR - Live Migration - Import Wizard is the tool
    Please reffer the Import Wizrd User guide for the option 1 and 2 link provided in the above thread.
    Also the 3rd option is to perform the Databse and Filesystem copy, find the step below.
    Launch CCM from the Destination System
    Copy all of the file store from your Source implementation to the file store folder for your Destination implementation
    Stop SIA - right click and select properties - Go to the Configuration tab - Click on the button to specify the data source -
    Select "Copy Data from another Data Source". This will copy the data from your source to the Destination.
    Regards,
    Ramu.

  • Migration from Weblogic 7.0 to 8.1

    Hi,
    I have this project where we have to migrate from Weblogic Portal 7.0 to 8.1 . I have a few questions,
    1. Is there any anything like a wildcard event in Page Flow, which existed in the Webflow?
    2. What about proxy nodes? Does Page flow support proxy nodes?
    The reason I ask is my webflow has these things and I need to manually convert it into a page flow.
    Thanks
    PS: This is just the beginning of a long path of migration.:-)

    Hi,
    I have this project where we have to migrate from
    m Weblogic Portal 7.0 to 8.1 . I have a few
    questions,
    1. Is there any anything like a wildcard event in
    Page Flow, which existed in the Webflow?i believe it does - you shoudl post your question on the pageflow newsgroups, as this is not portal specific
    2. What about proxy nodes? Does Page flow support
    proxy nodes?
    The reason I ask is my webflow has these things and I
    need to manually convert it into a page flow.
    Thanksfrom what i remember about webflow the proxy thing was just an IDE thing and as used to kind uf break up you weblows in to nested ones. Pageflow do support tru nested pageflows
    PS: This is just the beginning of a long path of
    migration.:-)

Maybe you are looking for

  • DECODE Function in Oracle Froms 6.0

    I have discovered that in Oracle Forms 6.0 (Version 6.0.5.34.0) the DECODE Function performs an implicit TO_CHAR conversion that the DECODE Function in the Oracle 8 database does not. I discovered this when working with dates on the form. Dates prior

  • Unable to access internet via my airport extreme base station

      I have an AirPort Extreme Base Station which is hard wired to a Mac and which communicates wirelessly to a Mac in another room.  My internet access is via comcast.  Direct connection from this computer to my modem works fine, but not if I go throug

  • Create a view-only PDF

    I need to create some view-only PDFs that cannot be printed, copied, forwarded, or saved electronically.  I see the security settings for printing, but I'm still able to save and forward the file.  Is there a way to do this?  I have Acrobat Standard

  • PSD files into Premier Elements?

    I have used Photohop Elements for years. I am familiar with it, do I need to resize a PSD file before taking it into Premier Elements to add to a video project?

  • Print Confirmation (CO11N)

    Hi PP's. Pls, I need to print a document at the confirmation time (with CO11N). The user need the Activity Times and Goods Movements. Pls, tellme if exit a standard form (sap script / print program) and the config steps in order to do this. thanks.