Servlet Filters with WLS 7 webservice?

I'm currently in the process of porting our application from WLS 6.1 to WLS 7.
On our current webservice, we use a servlet filter that grabs the SOAP message
(request body), and some misc. request headers and stores it in a database. The
purpose of this is to have the raw request saved in case we need to rerun the
message (recoverability). This filter is also used for a non-SOAP servlet that
uses URL variables instead.
I'm a bit confused with Web Services in 7. There isn't a web.xml, so I'm not
sure what servlet the filter should map to, or if it's even possible. I have looked
into Handlers, but this is more than I need and would also be specific to SOAP
messages.
Any help that can be provided would be greatly appreciated!
- jz

Thanks!
The reason for wanting to know the servlet is that I was thinking of mapping the
service itself to a different url (instead of using the same one for the wsdl
and webservice home page). This is because I only want to use the the filters
on the actually webservice. I'm assuming you can modify the service url that
is reflected in the WSDL through the web-services.xml descriptor. If not, I am
going to have to build in additional logic in the descriptor, which isn't an ideal
solution.
Your help is enough to get me going towards the end goal. If you know of a better
way to go about the above scenario, please let me know.
Thanks...
- jz
"manoj cheenath" <[email protected]> wrote:
>
>
You can map the filter based on the url-pattern
in which case you dont have to know about the
servlet.
will this work for you?
Any way, the name of the servlet is:
weblogic.webservice.server.servlet.WebServiceServlet.
regards,
-manoj
"Josh Zook" <[email protected]> wrote in message
news:[email protected]...
Thanks for the reply... I understand how filters work and how to implement
them.
My point of confusion is how to determine which servlet is being executed
so
I can map the filter against it. I checked out the we-services.xml,
but this
doesn't provide me enough information to determine the servlet mapping.
Once
I know this information, I think I will be able to implement the filter.
Is there someplace where I can determine which servlet is being executed?
Thanks...
"manoj cheenath" <[email protected]> wrote:
In 7.0 the mapping between URL and the Web
service servlet is done internally (based
on the info provided in web-services.xml
DD file).
There is still a web.xml file in side a
web-service war file. You should be able
to define a filter inside this web.xml
file.
check out the details about filter at:
http://e-docs.bea.com/wls/docs70/webapp/filters.html#165478
To create a filter mapping using a URL pattern, specify the nameof
the filter
and a URL pattern. URL pattern matching is performed according tothe
rules
specified in the Servlet 2.3 Specification from Sun Microsystems,in
section
11.1. For example, the following filter-mapping maps myFilter to requests
that
contain /myPattern/.
a.. <filter-mapping> <filter-name>myFilter</filter-name>
<url-pattern>/myPattern/*</url-pattern></filter-mapping>
regards,
-manoj
"Josh Zook" <[email protected]> wrote in message
news:[email protected]...
I'm currently in the process of porting our application from WLS6.1
to WLS 7.
On our current webservice, we use a servlet filter that grabs the
SOAP
message
(request body), and some misc. request headers and stores it ina database.
The
purpose of this is to have the raw request saved in case we needto
rerun the
message (recoverability). This filter is also used for a non-SOAP
servlet
that
uses URL variables instead.
I'm a bit confused with Web Services in 7. There isn't a web.xml,
so I'm not
sure what servlet the filter should map to, or if it's even possible.
I have
looked
into Handlers, but this is more than I need and would also be specific
to SOAP
messages.
Any help that can be provided would be greatly appreciated!
- jz
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2713.1100" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DCourier size=3D2>In 7.0 the mapping between URLand
=
the=20
Web</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>service servlet is done internally=20
(based</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>on the info provided in=20
web-services.xml</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>DD file). </FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV><FONT face=3DCourier size=3D2>There is still a web.xml file inside
=
a=20
</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>web-service war file. You shouldbe=20
able</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>to define a filter inside this=20
web.xml</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>file.</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV><FONT face=3DCourier size=3D2>check out the details about filter=20
at:</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV><FONT face=3DCourier size=3D2><A=20
href=3D"http://e-docs.bea.com/wls/docs70/webapp/filters.html#165478">http=
://e-docs.bea.com/wls/docs70/webapp/filters.html#165478</A></FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV><A name=3D173065> To create a filter mapping using a URL =
pattern,=20
specify the name of the filter and a URL pattern. URL pattern matching
=
is=20
performed according to the rules specified in the <A=20
href=3D"http://java.sun.com/aboutJava/communityprocess/first/jsr053/index=
..html">Servlet=20
2.3 Specification from Sun Microsystems</A>, in section 11.1. For=
example, the=20
following <FONT class=3Dcode>filter-mapping</FONT> maps <FONT=20
class=3Dcode>myFilter</FONT> to requests that contain <FONT=20
class=3Dcode>/myPattern/</FONT>.</A> <A name=3D173076>
<LI type=3Ddisc>
<BLOCKQUOTE><PRE><FONT face=3DCourier =
color=3D#000000><filter-mapping><BR> <filter-name>=
myFilter</filter-name><BR> <url-pattern>/myPattern=
/*</url-pattern><BR></filter-mapping></FONT></PRE></BLOCKQUOT=
E></A>
<P>-- <BR><BR>regards,<BR>-manoj</P></LI></DIV>
<DIV> </DIV>
<DIV><BR> </DIV>
<BLOCKQUOTE=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px;=
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"Josh Zook" <<A=20
href=3D"mailto:[email protected]">[email protected]</A>> wrote
=
in message=20
<A=20
=
href=3D"news:[email protected]">news:[email protected]=
a.com</A>...</DIV><BR>I'm=20
currently in the process of porting our application from WLS 6.1to
=
WLS=20
7.<BR> On our current webservice, we use a servlet filter that
=
grabs the=20
SOAP message<BR>(request body), and some misc. request headers and
=
stores it=20
in a database. The<BR>purpose of this is to have the raw request
=
saved=20
in case we need to rerun the<BR>message (recoverability). This
=
filter is=20
also used for a non-SOAP servlet that<BR>uses URL variables=20
instead.<BR><BR>I'm a bit confused with Web Services in 7. There
=
isn't a=20
web.xml, so I'm not<BR>sure what servlet the filter should map to,
or =
if it's=20
even possible. I have looked<BR>into Handlers, but this is morethan
I =
need=20
and would also be specific to SOAP<BR>messages.<BR><BR>Any helpthat
=
can be=20
provided would be greatly appreciated!<BR><BR>- =
jz</BLOCKQUOTE></BODY></HTML>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2713.1100" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DCourier size=3D2>You can map the filter based on the=20
url-pattern</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>in which case you dont have to know
=
about=20
the </FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>servlet.</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV><FONT face=3DCourier size=3D2>will this work for you?</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV><FONT face=3DCourier size=3D2>Any way, the name of the servlet =
is:</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV><FONT face=3DCourier=20
size=3D2>weblogic.webservice.server.servlet.WebServiceServlet.</FONT></DI=
V>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV>-- <BR><BR>regards,<BR>-manoj</DIV>
<DIV> </DIV>
<DIV><BR> </DIV>
<BLOCKQUOTE=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"Josh Zook" <<A=20
href=3D"mailto:[email protected]">[email protected]</A>> wrote
=
in message=20
<A=20
=
href=3D"news:[email protected]">news:[email protected]=
m</A>...</DIV><BR>Thanks=20
for the reply... I understand how filters work and how to implement=20
them.<BR> My point of confusion is how to determine which servlet
=
is=20
being executed so<BR>I can map the filter against it.  I checked
=
out the=20
we-services.xml, but this<BR>doesn't provide me enough information
to=20
determine the servlet mapping.  Once<BR>I know this information,
=
I think=20
I will be able to implement the filter.<BR><BR>Is there someplace =
where I can=20
determine which servlet is being =
executed?<BR><BR>Thanks...<BR><BR>"manoj=20
cheenath" <[email protected]>
=
wrote:<BR>><BR>><BR>>In 7.0 the mapping between URL and the=20
Web<BR>>service servlet is done internally (based<BR>>on the
=
info=20
provided in web-services.xml<BR>>DD file).<BR>><BR>>There
is =
still a=20
web.xml file in side a<BR>>web-service war file. You should be=20
able<BR>>to define a filter inside this=20
web.xml<BR>>file.<BR>><BR>>check out the details about filter
=
=
at:<BR>><BR>>http://e-docs.bea.com/wls/docs70/webapp/filters.html#1=
65478<BR>><BR>><BR>>=20
To create a filter mapping using a URL pattern, specify the name =
of<BR>>the=20
filter<BR>>and a URL pattern. URL pattern matching is performed
=
according=20
to the<BR>>rules<BR>>specified in the Servlet 2.3 Specification
=
from Sun=20
Microsystems, in<BR>>section<BR>>11.1. For example, the =
following=20
filter-mapping maps myFilter to requests<BR>>that<BR>>contain=20
/myPattern/.<BR>>a.. <filter-mapping> =20
=
<filter-name>myFilter</filter-name><BR>><url-pattern>=
;/myPattern/*</url-pattern></filter-mapping><BR>>--<BR>>=
;<BR>>regards,<BR>>-manoj<BR>><BR>><BR>><BR>><BR>>&n=
bsp;=20
"Josh Zook" <<A=20
href=3D"mailto:[email protected]">[email protected]</A>> wrote
=
in=20
=
message<BR>>news:[email protected]...<BR>><BR>> =
; I'm=20
currently in the process of porting our application from WLS =
6.1<BR>>to WLS=20
7.<BR>>   On our current webservice, we use a servlet
=
filter that=20
grabs the<BR>>SOAP<BR>>message<BR>>  (request body),
and =
some=20
misc. request headers and stores it in a =
database.<BR>>The<BR>> =20
purpose of this is to have the raw request saved in case we need=20
to<BR>>rerun the<BR>>  message (recoverability).  This
=
filter=20
is also used for a non-SOAP<BR>>servlet<BR>>that<BR>> 
=
uses URL=20
variables instead.<BR>><BR>>  I'm a bit confused with Web
=
Services=20
in 7.  There isn't a web.xml,<BR>>so I'm not<BR>> 
=
sure what=20
servlet the filter should map to, or if it's even possible.<BR>>I=20
have<BR>>looked<BR>>  into Handlers, but this is more than
=
I need=20
and would also be specific<BR>>to SOAP<BR>> =20
messages.<BR>><BR>>  Any help that can be provided would
be =
greatly=20
appreciated!<BR>><BR>>  - =
jz<BR>><BR>><BR>><!DOCTYPE=20
HTML PUBLIC "-//W3C//DTD HTML 4.0=20
Transitional//EN"><BR>><HTML><HEAD><BR>><META=20
http-equiv=3D3DContent-Type content=3D3D"text/html;=20
=3D<BR>>charset=3D3Diso-8859-1"><BR>><META =
content=3D3D"MSHTML=20
6.00.2713.1100"=20
=
name=3D3DGENERATOR><BR>><STYLE></STYLE><BR>></HEA=
D><BR>><BODY=20
bgColor=3D3D#ffffff><BR>><DIV><FONT face=3D3DCourier
=
size=3D3D2>In=20
7.0 the mapping between URL=20
=
and<BR>>=3D<BR>>the=3D20<BR>>Web</FONT></DIV><BR>>=
;<DIV><FONT=20
face=3D3DCourier size=3D3D2>service servlet is done=20
=
internally=3D20<BR>>(based</FONT></DIV><BR>><DIV>=
<FONT=20
face=3D3DCourier size=3D3D2>on the info provided=20
=
in=3D20<BR>>web-services.xml</FONT></DIV><BR>><DIV&g=
t;<FONT=20
face=3D3DCourier size=3D3D2>DD file).=20
</FONT></DIV><BR>><DIV><FONT face=3D3DCourier=20
size=3D3D2></FONT> </DIV><BR>><DIV><FONT=20
face=3D3DCourier size=3D3D2>There is still a web.xml file in=20
=
side<BR>>=3D<BR>>a=3D20<BR>></FONT></DIV><BR>><=
;DIV><FONT=20
face=3D3DCourier size=3D3D2>web-service war file. You should=20
=
be=3D20<BR>>able</FONT></DIV><BR>><DIV><FONT=20
face=3D3DCourier size=3D3D2>to define a filter inside=20
=
this=3D20<BR>>web.xml</FONT></DIV><BR>><DIV><F=
ONT=20
face=3D3DCourier=20
=
size=3D3D2>file.</FONT></DIV><BR>><DIV><FONT=20
face=3D3DCourier size=3D3D2></FONT>=20
</DIV><BR>><DIV><FONT face=3D3DCourier =
size=3D3D2>check out=20
the details about=20
=
filter=3D20<BR>>at:</FONT></DIV><BR>><DIV><FON=
T=20
face=3D3DCourier size=3D3D2></FONT>=20
</DIV><BR>><DIV><FONT face=3D3DCourier=20
size=3D3D2><A=3D20<BR>>href=3D3D"<A=20
=
href=3D'http://e-docs.bea.com/wls/docs70/webapp/filters.html#165478">http=
'>http://e-docs.bea.com/wls/docs70/webapp/filters.html#165478">http</A=
=3D<BR>>://e-docs.bea.com/wls/docs70/webapp/filters.html#165478</A=
</FONT></DIV><BR>><DIV><FONT=20face=3D3DCourier size=3D3D2></FONT>=20
</DIV><BR>><DIV><FONT face=3D3DCourier=20
size=3D3D2></FONT> </DIV><BR>><DIV><A=20
name=3D3D173065> To create a filter mapping using a URL=20
=3D<BR>>pattern,=3D20<BR>>specify the name of the filter and
a =
URL pattern.=20
URL pattern matching<BR>>=3D<BR>>is=3D20<BR>>performed =
according to the=20
rules specified in the <A=3D20<BR>>href=3D3D"<A=20
=
href=3D"http://java.sun.com/aboutJava/communityprocess/first/jsr053/index=
">http://java.sun.com/aboutJava/communityprocess/first/jsr053/index</A>=3D=
<BR>>..html">Servlet=3D20<BR>>2.3=20
Specification from Sun Microsystems</A>, in section 11.1. For=20
=3D<BR>>example, the=3D20<BR>>following <FONT=20
class=3D3Dcode>filter-mapping</FONT> maps=20
<FONT=3D20<BR>>class=3D3Dcode>myFilter</FONT> to =
requests that=20
contain =
<FONT=3D20<BR>>class=3D3Dcode>/myPattern/</FONT>.</A>=
;=20
<A name=3D3D173076><BR>><LI=20
type=3D3Ddisc><BR>><BLOCKQUOTE><PRE><FONT =
face=3D3DCourier=20
=3D<BR>>color=3D3D#000000><filter-mapping><BR>=20
<filter-name>=3D<BR>>myFilter</filter-name><BR>=20
=
<url-pattern>/myPattern=3D<BR>>/*</url-pattern><BR>&=
lt;/filter-mapping></FONT></PRE></BLOCKQUOT=3D<BR>>E=
</A><BR>><P>--=20=
<BR><BR>regards,<BR>-manoj</P></LI></DIV=
<BR>><DIV>=20</DIV><BR>><DIV><BR>=20
=
</DIV><BR>><BLOCKQUOTE=3D20<BR>>style=3D3D"PADDING-RIGHT:
=
0px;=20
PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =3D<BR>>BORDER-LEFT: #000000
=
2px solid;=20
MARGIN-RIGHT: 0px"><BR>>  <DIV>"Josh Zook"=20
<<A=3D20<BR>>  href=3D3D"<A=20
=
href=3D'mailto:[email protected]">[email protected]</A'>mailto:norepl=
[email protected]">[email protected]</A</A>>>=20
wrote<BR>>=3D<BR>>in message=3D20<BR>>  =
<A=3D20<BR>> =20
=3D<BR>>href=3D3D"<A=20
=
href=3D'news:[email protected]">news:[email protected]=
'>news:[email protected]">news:[email protected]</A=
=3D<BR>>a.com</A>...</DIV><BR>I'm=3D20<BR>> =;=20
currently in the process of porting our application from WLS 6.1=20
to<BR>>=3D<BR>>WLS=3D20<BR>>  7.<BR> On our =
current=20
webservice, we use a servlet filter that<BR>>=3D<BR>>grabs=20
the=3D20<BR>>  SOAP message<BR>(request body), and some
=
misc.=20
request headers and<BR>>=3D<BR>>stores it=3D20<BR>> 
in =
a database.=20
The<BR>purpose of this is to have the raw=20
request<BR>>=3D<BR>>saved=3D20<BR>>  in case we need
to =
rerun=20
the<BR>message (recoverability). This<BR>>=3D<BR>>filter=20
is=3D20<BR>>  also used for a non-SOAP servlet =
that<BR>uses URL=20
variables=3D20<BR>>  instead.<BR><BR>I'm a bit
=
confused with=20
Web Services in 7. There<BR>>=3D<BR>>isn't a=3D20<BR>> 
=
web.xml, so=20
I'm not<BR>sure what servlet the filter should map to,<BR>>or
=
=3D<BR>>if it's=3D20<BR>>  even possible. I have =
looked<BR>into=20
Handlers, but this is more than<BR>>I =
=3D<BR>>need=3D20<BR>>  and=20
would also be specific to =
SOAP<BR>messages.<BR><BR>Any help=20
that<BR>>=3D<BR>>can be=3D20<BR>>  provided would be
=
greatly=20
appreciated!<BR><BR>-=20
=
=3D<BR>>jz</BLOCKQUOTE></BODY></HTML><BR>><BR>>=
;<BR></BLOCKQUOTE></BODY></HTML>

Similar Messages

  • IPlanet 6.0 And servlet filters with filter-test.war not working

    Hi, I am trying to get servlet filters running on iPlanet6.0. I deployed the 'filter-test.war' file, and then modified web-apps.xml to contain the filter configuration. I even modified the example classes to log to a file on disk. The only thing that happens is intialization. Further it never get's to call the 'doFilter' method at all.
    Is there anything I'm missing?
    All I did was deploy the war file, and then modify the web-apps.xml file, and then restart the server. Is there anything else?
    Here is my web-apps.xml file as been modified.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE vs PUBLIC "-//Sun Microsystems, Inc.; iPlanet//DTD Virtual Server Web Applications 6.0//EN"
         "http://developer.iplanet.com/webserver/dtds/iws-webapps_6_0.dtd">
    <vs>
    <web-app uri="/" enable="true"/>
    <web-app uri="/filter-test" dir="C:/temp/iplanet/deployed" enable="true">
    <!-- Define servlet-mapped and path-mapped example filters -->
    <filter>
    <filter-name>Servlet Mapped Filter</filter-name>
    <filter-class>filters.ExampleFilter</filter-class>
         <init-param>
         <param-name>attribute</param-name>
         <param-value>filters.ExampleFilter.SERVLET_MAPPED</param-value>
         </init-param>
    </filter>
    <filter>
    <filter-name>Path Mapped Filter</filter-name>
    <filter-class>filters.ExampleFilter</filter-class>
         <init-param>
         <param-name>attribute</param-name>
         <param-value>filters.ExampleFilter.PATH_MAPPED</param-value>
         </init-param>
    </filter>
    <filter>
    <filter-name>Request Dumper Filter</filter-name>
    <filter-class>filters.RequestDumperFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>Servlet Mapped Filter</filter-name>
         <servlet-name>invoker</servlet-name>
    </filter-mapping>
    <filter-mapping>
    <filter-name>Path Mapped Filter</filter-name>
         <url-pattern>/servlet/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>Request Dumper Filter</filter-name>
         <url-pattern>/servlet/*</url-pattern>
    </filter-mapping>
    </web-app>
    </vs>
    Thank you

    Why not try WS 6.1 -- which has the full support for Servlet 2.3 including filters.
    As for 6.0, what URI do you use? Is it:
    /filter-test/servlet/<servlet-name>

  • Servlet redeploy with wls 5.1, sp9

    Hi,
              the "reload servlet" command doesn't seem to work from the console in
              wls 5.1: After pressing the corresponding button in the console, I get
              the message:
              <ServletContext-General> GatewayServlet: destroy
              ...but init(ServletConfig config) gets called only once: when the
              servlet is first loaded. After the destroy() call, the servlet is still
              able to process requests, but the init() method doesn't get called
              again...
              Any ideas?
              Javier
              

    [att1.html]
              

  • Will Servlet Filters affect performance

    Hi,
    is it true that Servlet Filters will have impact on Web application performance by slowing things? any suggestion plz..
    Regards,
    A.

    The question "Will X affect performance" is almost always bogus.
    It only makes sense to compare the performance of two code bases that perform a certain predetermined task. In your case, you could make your question not be bogus by comparing an application that uses servlet filters with another application that performs the same functions in a different way. You don't seem to be prepared to do that.

  • Servlet filters work with OC4J 9.0.2, but not JDeveloper 9.0.2

    I spent a day or so last week building a servlet filter and testing it in OC4J 9.0.2. It works fine. I didn't bother loading it into JDeveloper because there weren't any complicated debugging issues.
    I just tried loading it into JDeveloper 9.0.2 this morning, and I discovered that even though OC4J 9.0.2 has no problem with servlet filters, apparently JDeveloper 9.0.2 does. It complains about validation of the "web.xml", saying that "filter" is not a valid element of "web-app". I was specifying the 2.3 dtd.
    Is this a problem that I can easily work around in JDeveloper 9.0.2?
    If I load the JDeveloper 9.0.3 developer preview, can I get it to use 9.0.2 for its embedded OC4J, and not produce any new problems?

    For JDev 9.0.2, this issue is documented in the release notes at
    http://otn.oracle.com/products/jdev/htdocs/readme_902.html#vmoption

  • JSF page goes blank  when using with servlet filters...

    Hi there,
    I have a JSF page, which shows up fine (in both IE and Firefox) in normal scenarios.
    But as soon as I apply servlet filters onto the faces extension, I get into trouble. So after setting up the filters, when I load the same page(s) in each of the browsers, the filters run fine in the background, but the page comes up blank (in both IE and FF).
    Happening only with JSF / Faces pages.
    Once I removed the filter mapping, the page loads up just fine.
    Would appreciate any feedback on this. TIA!

    More info on the original post...
    Platforms:
    Tomcat 5.5.15
    JSF/Faces - Sun RI 1.2
    Servlet Spec: 2.4
    Portion of the Web.xml code (after applying the filters onto the faces components):
       <listener>
          <listener-class>
             com.sun.faces.config.ConfigureListener
          </listener-class>
       </listener>
       <servlet>
          <servlet-name>Faces Servlet</servlet-name>
          <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
          <load-on-startup>1</load-on-startup>
       </servlet>
       <servlet-mapping>
          <servlet-name>Faces Servlet</servlet-name>
          <url-pattern>*.faces</url-pattern>
       </servlet-mapping>
       <filter>
          <filter-name>PreProcessFilter</filter-name>
          <filter-class>.....view.util.PreProcessFilter</filter-class>
       </filter>
       <filter-mapping>
          <filter-name>PreProcessFilter</filter-name>
          <url-pattern>*.html</url-pattern>
       </filter-mapping>
       <filter-mapping>
          <filter-name>PreProcessFilter</filter-name>
          <url-pattern>*.jsp</url-pattern>
       </filter-mapping>
       <filter-mapping>
          <filter-name>PreProcessFilter</filter-name>
          <url-pattern>*.faces</url-pattern>
       </filter-mapping> Thanks for your time!

  • Urgent : Problem with Servlet Filters in Weblogic6.1

    Hi,
    We have developed an application using Tomcat4.1.24 with Weblogic6.1 Service Pack2.
    Now we are removing the Tomcat and moving the web layer into weblogic. We have implemented Servlet Filters and Listeners.
    When I converted .jar and .war files into .ear file and deployed into Weblogic6.1. But that application is not deploying. I found that Weblogic6.1 does not support Filters and Listeners from Servlet2.3.
    When I tried to deploy in the Weblogic6.1, it is giving the error as " java.lang.reflect.UndeclaredThrowableException".
    Could somebody please give me a solution how my filters and listeners can make working with weblogic6.1.
    Is there any solution.. My application is successfully working with Weblogic8.1. But I want the solution in weblogic6.1. It would be great if somebody can give me solution how to make Filters n Listeners working with Weblogic6.1.
    Thanks in advance.

    Hi Prasanna,
    Thank you for the timely reply.
    I have already done according to the process given in the url which u have given me.
    set and getFilterConfig methods are implemented in my AuthenticationFilter class. But still I could not be able deploy the application and I am not able to get the ServletContext object from Session. When I tried commenting the Filters and Listeners in my web.xml file then my .ear file was successfully deployed but I could not get the ServletContext from Session.
    Below code is from my web.xml:
    <filter>
    <filter-name>HRSuthenticationFilter</filter-name>
    <filter-class>com.peramb.hrs.servlet.AuthenticationFilter</filter-class>
    <init-param>
    <param-name>encoding</param-name>
    <param-value>UTF-8</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>HRSAuthenticationFilter</filter-name>
    <url-pattern>/jsp/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>HRSAuthenticationFilter</filter-name>
    <servlet-name>action</servlet-name>
    </filter-mapping>
    <listener>
    <listener-class>com.peramb.hrs.servlet.HRSContextListener</listener-class>
    </listener>
    When I comment the above code from web.xml it is deploying with out errors.. but I am not getting the servlet context, hence my application is not working.
    When tried uncommenting the listerns part or Filters part or bothe, My application is deploying with an error on the console. I.e,
    “<Sep 22, 2005 12:20:36 PM IST> <Error> <Management> <Error deploying application
    .\config\mydomain\applications\hrsgb.ear: java.lang.reflect.UndeclaredThrowable
    Exception>”.
    And the error in Weblogic logs is below:
    ####<Sep 22, 2005 12:20:36 PM IST> <Info> <HTTP> <spacker> <myserver> <ExecuteThread: '0' for queue: '__weblogic_admin_html_queue'> <system> <> <101047> <[WebAppServletContext(6387482,hrsgb,/hrsgb)] registering JSPServlet with initArgs '[JspConfig: verbose=true,packagePrefix=jsp_servlet,-compiler=javac,compileFlags=,workingDir=E:\bea\wlserver6.1\config\mydomain\applications\.wlnotdelete\wlap36546\WEB-INF\_tmp_war_mydomain_myserver_hrsgb,pageCheckSeconds=1,superclass=weblogic.servlet.jsp.JspBase,keepgenerated=false,precompileContinue=false,compilerSupportsEncoding=true,encoding=null,defaultfilename=index.jsp,compilerclass=null,noTryBlocks=false]'>
    ####<Sep 22, 2005 12:20:36 PM IST> <Debug> <HTTP> < spacker > <myserver> <ExecuteThread: '0' for queue: '__weblogic_admin_html_queue'> <system> <> <101158> <Exception thrown while loading hrsgb: java.lang.SecurityException: sealing violation>
    java.lang.SecurityException: sealing violation
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:229)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:51)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:190)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:183)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:294)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:281)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:310)
    at weblogic.servlet.internal.WebAppServletContext.registerEventListener(WebAppServletContext.java:2031)
    at weblogic.servlet.internal.WebAppServletContext.initFromDescriptors(WebAppServletContext.java:1471)
    at weblogic.servlet.internal.WebAppServletContext.init(WebAppServletContext.java:943)
    at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:878)
    at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:515)
    at weblogic.j2ee.WebAppComponent.deploy(WebAppComponent.java:77)
    at weblogic.j2ee.Application.addComponent(Application.java:176)
    at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:117)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:364)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:150)
    at weblogic.management.mbeans.custom.WebServer.addWebDeployment(WebServer.java:76)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:374)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy37.addWebDeployment(Unknown Source)
    at weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeployment(WebServerMBean_CachingStub.java:1337)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:350)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:150)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:374)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at weblogic.management.internal.ConfigurationMBeanImpl.updateConfigMBeans(ConfigurationMBeanImpl.java:507)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:376)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:997)
    at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:984)
    at weblogic.management.internal.DynamicMBeanImpl.add(DynamicMBeanImpl.java:969)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:648)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:374)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy88.addTarget(Unknown Source)
    at weblogic.management.mbeans.custom.ApplicationManager.autoDeploy(ApplicationManager.java:930)
    at weblogic.management.mbeans.custom.ApplicationManager.addApplication(ApplicationManager.java:1039)
    at weblogic.management.mbeans.custom.ApplicationManager.addApplication(ApplicationManager.java:954)
    at weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:851)
    at weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:781)
    at weblogic.management.mbeans.custom.ApplicationManager.update(ApplicationManager.java:210)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:374)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy5.update(Unknown Source)
    at weblogic.management.console.webapp._domain.__upload_app._jspService(__upload_app.java:150)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:262)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:198)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:284)
    at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:119)
    at weblogic.management.console.actions.ForwardAction.perform(ForwardAction.java:35)
    at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:171)
    at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:85)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:262)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:198)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2678)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2412)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:140)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:121)
    ####<Sep 22, 2005 12:20:36 PM IST> <Error> <J2EE> < spacker> <myserver> <ExecuteThread: '0' for queue: '__weblogic_admin_html_queue'> <system> <> <160001> <Error deploying application hrsgb: Could not load hrsgb>
    ####<Sep 22, 2005 12:20:36 PM IST> <Error> <Management> < spacker> <myserver> <ExecuteThread: '0' for queue: '__weblogic_admin_html_queue'> <system> <> <141042> <Error deploying application .\config\mydomain\applications\hrsgb.ear: java.lang.reflect.UndeclaredThrowableException>
    I could not trace the problem. Please help me with some solution for the above problem

  • WLCS 3.5 with WLS 6.0 SP1--ERROR

    Hi,
    I just installed WLCS 3.5 with WLS 6.0 SP1. The weblogic server starts up
    great! However when i try starting WLCS 3.5 this is the error i get. I am
    however able to get to the tools page and there are no errors. I am also
    able to do stuff with the E-business control center! Any idea's of what this
    error is all abt
    CLASSPATH IS
    C:\bea\WebLogicCommerce3.5\lib\jdom.jar;C:\bea\WebLogicCommerce3.5\
    lib\mail.jar;C:\bea\WebLogicCommerce3.5\classes;C:\bea\WebLogicCommerce3.5\l
    ib\w
    lcsparsers.jar;C:\bea\WebLogicCommerce3.5\license;C:\bea\WebLogicCommerce3.5
    \eva
    l\Taxware\common\classes;C:\bea\jdk130\lib\tools.jar;C:\bea\wlserver6.0sp1\l
    ib\w
    eblogic_sp.jar;C:\bea\wlserver6.0sp1\lib\weblogic.jar;C:\bea\wlserver6.0sp1\
    lib\
    xmlx.jar;C:\bea\wlserver6.0sp1\ext\weblogic-tags.jar;C:\bea\wlserver6.0sp1\s
    ampl
    es\eval\cloudscape\lib\cloudscape.jar;C:\bea\wlserver6.0sp1\samples\eval\clo
    udsc
    ape\lib\tools.jar;C:\bea\wlserver6.0sp1\samples\eval\cloudscape\lib\client.j
    ar
    # Note: Server initialization may take several minutes.
    # Please be patient.
    <Apr 27, 2001 11:26:58 AM CDT> <Info> <Security> <Getting boot password from
    use
    r.>
    Enter password to boot WebLogic server:weblogic
    Starting WebLogic Server ....
    <Apr 27, 2001 11:27:17 AM CDT> <Notice> <Management> <Loading configuration
    file
    .\config\wlcsDomain\config.xml ...>
    log file: C:\bea\WebLogicCommerce3.5\.\config\wlcsDomain\logs\weblogic.log
    <Apr 27, 2001 11:27:23 AM CDT> <Info> <Logging> <Only log messages of
    severity "
    Error" or worse will be displayed in this window. This can be changed at
    Admin C
    onsole> wlcsDomain> Servers> wlcsServer> Logging> General> Stdout severity
    thres
    hold>
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:289)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:277)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:289)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:289)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:289)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:277)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDe

    Hi,
    This error message means that Rolling Patch 1 for WLS 6.0 is not installed. You
    can get it at: <http://commerce.bea.com/downloads/wls_patches.jsp>
    Cheers,
    Ted
    kapil khanna wrote:
    Hi,
    I just installed WLCS 3.5 with WLS 6.0 SP1. The weblogic server starts up
    great! However when i try starting WLCS 3.5 this is the error i get. I am
    however able to get to the tools page and there are no errors. I am also
    able to do stuff with the E-business control center! Any idea's of what this
    error is all abt
    CLASSPATH IS
    C:\bea\WebLogicCommerce3.5\lib\jdom.jar;C:\bea\WebLogicCommerce3.5\
    lib\mail.jar;C:\bea\WebLogicCommerce3.5\classes;C:\bea\WebLogicCommerce3.5\l
    ib\w
    lcsparsers.jar;C:\bea\WebLogicCommerce3.5\license;C:\bea\WebLogicCommerce3.5
    \eva
    l\Taxware\common\classes;C:\bea\jdk130\lib\tools.jar;C:\bea\wlserver6.0sp1\l
    ib\w
    eblogic_sp.jar;C:\bea\wlserver6.0sp1\lib\weblogic.jar;C:\bea\wlserver6.0sp1\
    lib\
    xmlx.jar;C:\bea\wlserver6.0sp1\ext\weblogic-tags.jar;C:\bea\wlserver6.0sp1\s
    ampl
    es\eval\cloudscape\lib\cloudscape.jar;C:\bea\wlserver6.0sp1\samples\eval\clo
    udsc
    ape\lib\tools.jar;C:\bea\wlserver6.0sp1\samples\eval\cloudscape\lib\client.j
    ar
    # Note: Server initialization may take several minutes.
    # Please be patient.
    <Apr 27, 2001 11:26:58 AM CDT> <Info> <Security> <Getting boot password from
    use
    r.>
    Enter password to boot WebLogic server:weblogic
    Starting WebLogic Server ....
    <Apr 27, 2001 11:27:17 AM CDT> <Notice> <Management> <Loading configuration
    file
    .\config\wlcsDomain\config.xml ...>
    log file: C:\bea\WebLogicCommerce3.5\.\config\wlcsDomain\logs\weblogic.log
    <Apr 27, 2001 11:27:23 AM CDT> <Info> <Logging> <Only log messages of
    severity "
    Error" or worse will be displayed in this window. This can be changed at
    Admin C
    onsole> wlcsDomain> Servers> wlcsServer> Logging> General> Stdout severity
    thres
    hold>
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:289)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:277)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:289)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:289)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:289)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    javax.naming.ServiceUnavailableException. Root exception is
    java.rmi.NoSuchObje
    ctException: The object identified by [9] could not because found. Either it
    was
    has not been exported or it has been collected by the distributed garbage
    colle
    ctor.
    at
    weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:4
    01)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:315)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:275)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:244)
    at weblogic.jndi.Environment.getContext(Environment.java:135)
    at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.<init>(EJBMBeanFactory.java:1
    01)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:577)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:1
    71)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:548)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:437)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
    at $Proxy20.load(Unknown Source)
    at
    weblogic.servlet.internal.WebService.configureDefaultWebApps(WebServi
    ce.java:341)
    at
    weblogic.servlet.internal.WebService.configureWebForManagedServer(Web
    Service.java:311)
    at
    weblogic.management.internal.RemoteMBeanServerImpl.getMBeans(RemoteMB
    eanServerImpl.java:150)
    at weblogic.management.Admin.start(Admin.java:309)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)
    java.lang.NullPointerException:
    at
    weblogic.ejb20.internal.EJBMBeanFactory.createEJBMBean(EJBMBeanFactor
    y.java:277)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.j
    ava:220)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.jav
    a:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Applica
    tion.java:587)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Applic
    ation.java:497)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.j
    ava:286)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:2
    30)
    at
    weblogic.management.mbea

  • Problems installing Axis with WLS 8.1

    I'm having problems installing Apache Axis with WLS 8.1.
    I'm totally new to WLS, so this may be at the heart of the problem.
    I install Axis as per the installation instructions.
    These are the steps I followed:
    1. Installed the axis directory to
    C:\bea\weblogic81\samples\domains\examples\applications\axis2. Added xml-apis.jar and xercesImpl.jar to the AXISCLASSPATH ( the complete AXISCLASSPATH is
    C:\axis-1_2RC2\lib\wsdl4j.jar;C:\axis-1_2RC2\lib\axis-ant.jar;C:\axis-1_2RC2\lib\commons-discovery.jar;C:\axis-1_2RC2\lib\commons-logging.jar;C:\axis-1_2RC2\lib\jaxrpc.jar;C:\axis-1_2RC2\lib\log4j.properties;C:\axis-1_2RC2\lib\log4j-1.2.8.jar;C:\axis-1_2RC2\lib\saaj.jar;C:\axis-1_2RC2\lib\axis.jar;C:\javasoft\javamail-1.3.2\mail.jar;C:\javasoft\javamail-1.3.2\lib\smtp.jar;C:\javasoft\javamail-1.3.2\lib\mailapi.jar;C:\javasoft\javamail-1.3.2\lib\pop3.jar;C:\javasoft\javamail-1.3.2\lib\imap.jar;C:\javasoft\jaf-1.0.2\activation.jar;C:\javasoft\Xerces\xerces-2_5_0\xercesImpl.jar;C:\javasoft\Xerces\xerces-2_5_0\xml-apis.jar)3.Added weblogic.xml file to C:\bea\weblogic81\samples\domains\examples\applications\axis\WEB-INF\weblogic.xmlas per instructions with <prefer-web-inf-classes>true</prefer-web-inf-classes> 4. Started the examples server.
    5. I then tried to validate the installation as per intructions using <a href="http://localhost:7001/axis"></a>
    Everything looks OK with the Axis start page displayed.
    6. I then tried happyaxis.jsp . All needed components are present with saaj.jar being picked up from :
    Found SAAJ API (javax.xml.soap.SOAPMessage) at C:\bea\weblogic81\samples\domains\examples\examplesServer\.wlnotdelete\extract\examplesServer__appsdir_axis_dir_axis\jarfiles\WEB-INF\lib\saaj.jar7. I'm missing optional component xmlsec.jar
    8. Now the trouble starts!!!
    pretty much anything I try now comes back with:
    AXIS error
    Sorry, something seems to have gone wrong... here are the details:
    Exception - java.lang.NullPointerExceptionI get this if I try:
    <a href="http://localhost:8080/axis/services/Version?method=getVersion"></a>
    or
    <a href="http://localhost:7001/axis/services/AdminService?wsdl"></a>
    or
    <a href="http://localhost:7001/axis/services/Version?wsdl"></a>
    So, what's going wrong? I cant think what to do next. Please help! I need this to work fairly urgently.
    Nigel
    PS. here's the NP exception in detail
    java.lang.NullPointerException
            at weblogic.xml.jaxp.ChainingEntityResolver.popEntityResolver(ChainingEn
    tityResolver.java:61)
            at weblogic.xml.jaxp.RegistryDocumentBuilder.setEntityResolver(RegistryD
    ocumentBuilder.java:168)
            at org.apache.axis.utils.XMLUtils.releaseDocumentBuilder(XMLUtils.java:2
    35)
            at org.apache.axis.utils.XMLUtils.newDocument(XMLUtils.java:312)
            at org.apache.axis.utils.XMLUtils.StringToElement(XMLUtils.java:485)
            at org.apache.axis.AxisFault.addFaultDetail(AxisFault.java:654)
            at org.apache.axis.AxisFault.addHostname(AxisFault.java:888)
            at org.apache.axis.AxisFault.addHostnameIfNeeded(AxisFault.java:877)
            at org.apache.axis.AxisFault.initFromException(AxisFault.java:280)
            at org.apache.axis.AxisFault.<init>(AxisFault.java:181)
            at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
            at org.apache.axis.server.AxisServer.generateWSDL(AxisServer.java:487)
            at org.apache.axis.transport.http.QSWSDLHandler.invoke(QSWSDLHandler.jav
    a:62)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at org.apache.axis.transport.http.AxisServlet.processQuery(AxisServlet.j
    ava:1132)
            at org.apache.axis.transport.http.AxisServlet.doGet(AxisServlet.java:233
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
            at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBas
    e.java:301)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
    (ServletStubImpl.java:1006)
            at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:419)
            at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:315)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:6718)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    121)
            at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:3764)
            at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2644)
            at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
            at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)

    I'm doing exactly the same thing (adding the xerces jars to my web-inf/lib), but happyaxis.jsp is saying the jar I'm using is invalid as follows:
    Error: Invalid version of SAAJ API found in D:\bea\weblogic81\server\lib\webservices.jar. Make sure that Axis' saaj.jar precedes D:\bea\weblogic81\server\lib\webservices.jar in CLASSPATH.
    Axis will not work.
    Maybe this worked in a previous release/SP? I'm using 8.1SP3. I've read some other post saying you cannot override stuff in the weblogic.jar, so I've tried to add the jars to the pre_classpath, which resolves the issue but I get a soap fault related to this thread. Any ideas?
    Thanks,
    Lou
    My weblogic.xml looks as follows:
    <weblogic-web-app>
    <jsp-descriptor>
    <!-- Comment the jspServlet param out to go back to weblogic's jspc -->
    <jsp-param>
    <param-name>jspServlet</param-name>
    <param-value>weblogic.servlet.WlwJSPServlet</param-value>
    </jsp-param>
    <jsp-param>
    <param-name>debug</param-name>
    <param-value>true</param-value>
    </jsp-param>
    </jsp-descriptor>
    <container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    <url-match-map>
    weblogic.servlet.utils.SimpleApacheURLMatchMap
    </url-match-map>
    </weblogic-web-app>

  • Servlet failed with ServletException.

    I'm using WLS 6.0sp1 in RedHat Linux.
              I can't deploy Servlet with folloing Exception.
              ====================================================================
              <Error> <HTTP> <test.mydomain.com> <mys
              erver> <ExecuteThread: '9' for queue: 'default'> <> <> <101018> <[WebAppServletC
              ontext(2639839,MyWebApp)] Servlet failed with ServletException>
              javax.servlet.ServletException: Servlet class: 'HelloWorld.class' could not be l
              oaded - the requested class wasn't found in the classpath: '/home/weblogic/wlho
              me/wlserver6.0/config/mydomain/applications/MyWebApp:/home/weblogic/wlhome/wlser
              ver6.0/config/mydomain/applications/MyWebApp/WEB-INF/classes:/home/weblogic/wlho
              me/wlserver6.0/config/mydomain/applications/MyWebApp/WEB-INF/_tmp_war_myserver_m
              yserver_MyWebApp'
              at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.
              java:532)
              =====================================================================
              But absolutly, I can find HellowWorld.class file in //home/weblogic/wlhome/wlser
              ver6.0/config/mydomain/applications/MyWebApp/WEB-INF/classes directory.
              is there anyone who can help me?
              The next is my web.xml file.
              =======================================================================
              <?xml version="1.0" ?>
              <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 1.2//EN
              " "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
              <web-app>
              <servlet>
              <servlet-name>HelloWorld</servlet-name>
              <servlet-class>HelloWorld.class</servlet-class>
              <load-on-startup>1</load-on-startup>
              </servlet>
              <servlet-mapping>
              <servlet-name>HelloWorld</servlet-name>
              <url-pattern>/hello</url-pattern>
              </servlet-mapping>
              <web-app>
              =======================================================================
              

    I'm using WLS 6.0sp1 in RedHat Linux.
              I can't deploy Servlet with folloing Exception.
              ====================================================================
              <Error> <HTTP> <test.mydomain.com> <mys
              erver> <ExecuteThread: '9' for queue: 'default'> <> <> <101018> <[WebAppServletC
              ontext(2639839,MyWebApp)] Servlet failed with ServletException>
              javax.servlet.ServletException: Servlet class: 'HelloWorld.class' could not be l
              oaded - the requested class wasn't found in the classpath: '/home/weblogic/wlho
              me/wlserver6.0/config/mydomain/applications/MyWebApp:/home/weblogic/wlhome/wlser
              ver6.0/config/mydomain/applications/MyWebApp/WEB-INF/classes:/home/weblogic/wlho
              me/wlserver6.0/config/mydomain/applications/MyWebApp/WEB-INF/_tmp_war_myserver_m
              yserver_MyWebApp'
              at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.
              java:532)
              =====================================================================
              But absolutly, I can find HellowWorld.class file in //home/weblogic/wlhome/wlser
              ver6.0/config/mydomain/applications/MyWebApp/WEB-INF/classes directory.
              is there anyone who can help me?
              The next is my web.xml file.
              =======================================================================
              <?xml version="1.0" ?>
              <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 1.2//EN
              " "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
              <web-app>
              <servlet>
              <servlet-name>HelloWorld</servlet-name>
              <servlet-class>HelloWorld.class</servlet-class>
              <load-on-startup>1</load-on-startup>
              </servlet>
              <servlet-mapping>
              <servlet-name>HelloWorld</servlet-name>
              <url-pattern>/hello</url-pattern>
              </servlet-mapping>
              <web-app>
              =======================================================================
              

  • Servlet failed with Exception java.lang.illegalaccesserror - hp-ux

    Hi,I installed WLS 5.1 with SP9 in HP-UX with Java1.2. Since I need to send mails from jmail, I added necessary .jar files in weblogic/lib directory. When ever I try to run this event. I get the following exception. Can anyone help me. Thanks in advance. Servlet failed with Exceptionjava.lang.IllegalAccessError: try to access class MailUserData from class MailServlet_Event1 at MailServlet_Event1.doGet(MailServlet_Event1.java:110) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:865) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:120) at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:158) at Member.doGet(Member.java:199) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:865) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:120) at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:915) at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:879) at weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:269) at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:365) at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:253) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
              

    can nyone please gimmie ny input wid dese ,,, i am really stucked here,,, help

  • Servlet failed with Exception java.lang.IllegalStateException: Response already committed

    Hi,
    can someone help with this issue. I've been getting this error in my logs since for the past 3 days and I don't know how to resolve it.
    os-aix-64 bit
    wls:10.3
    ####<Aug 25, 2014 11:36:18 AM GMT+05:30> <Error> <HTTP> <XXX-XXXXXX-XX> <examplesServer> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1408946778196> <BEA-101020> <[weblogic.servlet.internal.WebAppServletContext@2ee12ee1 - appName: 'consoleapp', name: 'console', context-path: '/console', spec-version: '2.5'] Servlet failed with Exception
    java.lang.IllegalStateException: Response already committed
            at weblogic.servlet.internal.ServletResponseImpl.objectIfCommitted(ServletResponseImpl.java:1553)
            at weblogic.servlet.internal.ServletResponseImpl.sendRedirect(ServletResponseImpl.java:838)
            at javax.servlet.http.HttpServletResponseWrapper.sendRedirect(HttpServletResponseWrapper.java:136)
            at com.bea.netuix.nf.HttpServletResponseWrapper.sendRedirect(HttpServletResponseWrapper.java:50)
            at com.bea.netuix.servlets.controls.content.NetuiContent.handleRedirect(NetuiContent.java:234)
            at com.bea.netuix.servlets.controls.content.NetuiContent.handlePreRenderResponseState(NetuiContent.java:630)
            at com.bea.netuix.servlets.controls.content.StrutsContent.handlePreRenderResponseState(StrutsContent.java:224)
            at com.bea.netuix.servlets.controls.content.NetuiContent.preRender(NetuiContent.java:310)
            at com.bea.netuix.nf.ControlLifecycle$6.visit(ControlLifecycle.java:428)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:727)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
            at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:146)
            at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395)
            at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
            at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:208)
            at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:162)
            at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:388)
            at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:258)
            at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:211)
            at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:196)
            at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:251)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
            at com.bea.console.utils.MBeanUtilsInitSingleFileServlet.service(MBeanUtilsInitSingleFileServlet.java:54)
            at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:130)
            at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
            at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
            at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
            at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
            at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(Unknown Source)
            at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    TIA,
    Vamsi

    Can someone please help me with this issue.

  • Servlet filter with the dispatcher set in the filter-mapping

    Hi all,
    I am porting an application from Tomcat to OC4J
    I am running on OC4J 10.1.3, it supports servlet 2.4 spec.
    They are some new features here, where you can decide how you servlet filters act when you use the request despatcher.
    This does not seem to work for me.
    I have an AccessFilter and a NoCacheFilter.
    The Access Filter just defines what you can access.
    The NoCacheFilter helps us with caching problems for example when I want a file
    called Test.js IE thinks its downloading Test_[MN899].js but really in the filter we fix the URL and forward it to Test.js .
    Its in this forwarding that we have the problem as when we forward OC4J applies the filters again. And so we enter an infinite loop.
    I have a bad work around, that works on some ocasions not in others so I need a better solution...
    I am new to Oracle.
    Is there there a bug database that I can search?
    Has anyone seen this problem before?
    Thanks for your time,
    Cormac

    If you are using a sessions.xml file, you can get your project from your session. Ensure that when you access your session from the SessionManager, that you do not have it login.
    Session session = SessionManager.getManager().getSession("my-session", false);
    session.getProject().setConnector(...);
    session.login();
    If not using a sessions.xml, you can either read your Project from the XMLProjectReader, or instantiate your Project class directly.

  • Using servlet filters- to read the rsponse

    Hi ,
    In my web application i am displaying the final result as an xml in a jsp.Now what ever I am displaying to the user i want to get that as a string and store it in a database.
    For this i think i have to get that from the response object, i just looking at the servlet filters , but i am not sure using the servlet filters is a good option or not.
    And i am really not sure exactly how to use the filters.
    Please somene help me with this , is there a way for this,Please let me know if you don't understand what i am trying to do, so that i explain in little more detail.

    Not exact but close. Describes a filter that caches the response to disc:
    http://www.onjava.com/pub/a/onjava/2003/11/19/filters.html?page=3

  • UnknownHostException with WLS 6.0

    Hi
    Have u some news about this case ?
    I have similar problems with WLS 6.0 in this moment, my server is
    unable to start correctly. It's up for 5 minutes and then go down.
    Lot's of error like that :
    java.net.UnknownHostException: 10.35.69.245, 10.35.34.10, 10.112.33.66
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 10.35.69.245, 10.35.34.10, 10.112.33.66
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 10.35.69.245, 10.35.34.10, 10.112.33.66
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 10.35.69.245, 10.35.34.10, 10.112.33.66
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 10.215.253.53, 172.26.75.120, unknown
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 10.215.253.53, 172.26.75.120, unknown
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 9.212.18.51, unknown
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 9.212.18.51, unknown
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    please mail me
    thx

    http://216.148.48.158/news/ArticleFrame.jsp?server=newsgroups.beasys.com&group=weblogic.developer.interest.servlet&article=<[email protected]>
    [email protected] (Lionel MANNU) wrote:
    Hi
    Have u some news about this case ?
    I have similar problems with WLS 6.0 in this moment, my server is
    unable to start correctly. It's up for 5 minutes and then go down.
    Lot's of error like that :
    java.net.UnknownHostException: 10.35.69.245, 10.35.34.10, 10.112.33.66
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 10.35.69.245, 10.35.34.10, 10.112.33.66
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 10.35.69.245, 10.35.34.10, 10.112.33.66
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 10.35.69.245, 10.35.34.10, 10.112.33.66
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 10.215.253.53, 172.26.75.120, unknown
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 10.215.253.53, 172.26.75.120, unknown
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 9.212.18.51, unknown
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.net.UnknownHostException: 9.212.18.51, unknown
    at java.net.InetAddress.getAllByName0(InetAddress.java:571)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:472)
    at weblogic.servlet.internal.ServletRequestImpl.getRemoteAddr(ServletRequestImpl.java:840)
    at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:54)
    at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
    at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
    at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    please mail me
    thx

Maybe you are looking for

  • Hardware missing -AGP Graphics card. How can I get my FCE 4 working on the new computer? Cheers

    Hi I have just upgraded my computer to Mac OSX 10.6.7 now I cant open my FCE 4. Message reads, Hardware missing -AGP Graphics card. How can I get my FCE 4 working on the new computer? Cheers

  • [HR] Infotype for checking the Passport Details

    Hi all, What is the infotype to check the passport details ?

  • Add On Issue ( HR Module  )

    Hi Team ,               I have installed Enterprise portal with dual stack JAVA & ABAP without ECC now i wanted to add on HR module . Is it possible and if it is how can i go ahead please guide me through the procedure Thanks in advance Regards , Mad

  • External HTML editor for RH

    Hi all, I would be interested in hearing of any external HTML editors that RH users like using with RH instead of its internal editor. Somebody please suggest a free (or almost free) HTML editor that features lots of features, eg, hiliting, split Des

  • Firefox refuses to update past v2 despite numerous attempts

    Hi! After seeing repeated nag msgs from youtube etc informing me I was using an out of date browser, I downloaded v 3.6 from mozilla website. I ran the program... it did 'a little housekeeping' and updated my FF, or so I thought... fast forward a cou