• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Derprecated T3ShutdownDef replacement

 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Weblogicians..

There is one problem.

I have an java code written which works fine for weblogic 6.1 but now my task is to migrate from weblogic 6.1 to weblogic 8.1, very easy task but difficult too.

In my java code i am using

import weblogic.common.T3ShutdownDef;

public class myclass implements T3ShutdownDef {
-- here i am writing the two methods of that interface...
setServices(T3ServicesDef){
}
shutdown(...) {
}
}

Now T3shutdowndef is deprecated in weblogic 8.1 so what is the replacement for weblogic 8.1 if its deprecated.

What change i make in code so that i don't get deprecation warning, i want to make my code compatabile with weblogic 8.1 SP4 , jdk1.4

The same is the case with

import weblogic.io.common.T3FileSystem;

What to do .. please suggest

Regards

Vijay
 
Ranch Hand
Posts: 937
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Vijay,

This will help you.
 
vijaykumar shah
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That i got it, but we are planning for smooth migration, so this is code change where in jdk1.3 , weblogic 6.1 that t3shutdowndef code will remain and here in jdk1.4 this code will be gone and i have to configure in weblogic.. Is there no other alternative for it

Regards

Vijay
 
That's my roommate. He's kinda weird, but he always pays his half of the rent. And he gave me this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic