Thanks Shahnavaz for the clarification. I have been struggling with 
this thing for the past two weeks. Hopefully there is a resolution 
soon...till then exploded form is the way to go.

Thanks for your input.

Shweta

--- In flexcoders@yahoogroups.com, "Shahnavaz Alware" <[EMAIL PROTECTED]> 
wrote:
> Hi Parekh,
> 
>  
> 
> Below is the reply we received recently from Macromedia about 
deploying
> Flex-Apps on Weblogic 8.1. It's a reported bug.
> 
>  
> 
>  
> 
> ------------------------------->
> 
> Reply from Brian at Macromedia
> 
>  
> 
>  
> 
> The bug numbers are only internal to Macromedia.  I provided it 
here just
> for reference when talking with someone from Macromedia.  I know 
of no
> complete workarounds other than expanding the war.  I did talk to 
someone
> who worked on the issue, and she said that if you are only using
> RemoteObject (not WebService/HTTPServlet) and precompile your SWFs 
(that is,
> not using .mxml directly ever on the production machine, so you 
have to save
> the HTML wrapper as well), then you don't run into this problem.  
I don't
> know how widely this workaround is being used or tested, however, 
so your
> mileage may vary.
> 
>  
> 
> -Brian
> 
>  
> 
>   _____  
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Shahnavaz Alware
> Sent: Thursday, July 28, 2005 7:57 PM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] Trouble Deploying on WebLogic 8.1 [ 
Brian Deitte ]
> 
> Hi Brian 
> 
>  
> 
> Are the internal bug numbers public, or are they only internal to
> Macromedia?  Are there any work arounds for this bug besides 
deploying
> exploded?
> 
>  
> 
> Thanks,
> 
>  
> 
> Shahnavaz
> 
>   _____  
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Brian Deitte
> Sent: Tuesday, July 26, 2005 9:40 AM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] Trouble Deploying on WebLogic 8.1
> 
>  
> 
> Yes this is a known issue (internal bug number 93750).  I believe 
this is
> documented but don't have a reference to it.  -Brian
> 
>  
> 
>   _____  
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Dave Kuncl
> Sent: Tuesday, July 26, 2005 11:58 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Trouble Deploying on WebLogic 8.1
> 
> I am having trouble deploying a Flex web app on WebLogic.  It 
deploys fine
> if I expand the war file and hot deploy, but when the app is 
bundled in a
> war file inside an ear file the servlets fail to load.
> 
>  
> 
> Can a Flex web app only be deployed expanded on WebLogic?
> 
>  
> 
>  
> 
>  
> 
>  
> 
>   _____  
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Parekh, Shweta - BLS CTR
> Sent: Tuesday, August 23, 2005 11:48 AM
> To: 'flexcoders@yahoogroups.com'
> Subject: [flexcoders] Error deploying flex application to Weblogic 
server
> 
>  
> 
> Hi,
> 
> I am trying to deploy my flex application in the form of an ear 
file to
> WebLogic 8.1 server through the console. While deployment, I get 
the
> following error. Strangely when the application is put in 
applications
> folder on the server in an exploded format, the application runs 
fine.
> The error that I get on deployment is:
> 
> ####<Aug 22, 2005 4:49:26 PM EDT> <Error> <HTTP> <PAREKH_S-DPPS> 
<cgServer>
> <ExecuteThread: '3' for queue: 'weblogic.kernel.System'> <<WLS 
Kernel>> <>
> <BEA-101165> <Could not load user defined filter in web.xml:
> flex.bootstrap.BootstrapFilter.
> javax.servlet.ServletException: flex.server.j2ee.DetectionFilter
> at
> flex.bootstrap.BootstrapFilter.init(Ljavax.servlet.FilterConfig
(BootstrapFil
> ter.java:53)
> at
> weblogic.servlet.internal.WebAppServletContext$FilterInitAction.run
()Ljava.l
> ang.Object;(WebAppServletContext.java:6745)
> 
> Also, the weblogic server is not able to preload the flex 
servlets. I gte
> the following error for all flex servlets defined in web.xml
> ####<Aug 22, 2005 5:07:09 PM EDT> <Error> <HTTP> <PAREKH_S-DPPS> 
<cgServer>
> <ExecuteThread: '1' for queue: 'weblogic.kernel.System'> <<WLS 
Kernel>> <>
> <BEA-101216> <Servlet: "AMFGatewayServlet" failed to preload on 
startup in
> Web application: "ppi".javax.servlet.ServletException: Unable to 
load
> configuration. Reason: nullat
> weblogic.servlet.internal.ServletStubImpl.createServlet()
Ljavax.servlet.Serv
> let;(ServletStubImpl.java:919)
> 
> My web.xml for filter and filter-mapping looks like this:
> 
> <filter>
> <filter-name>FlexDetectionFilter</filter-name>
> <filter-class>flex.bootstrap.BootstrapFilter</filter-class>
> <init-param>
> <param-name>filter.class</param-name>
> <param-value>flex.server.j2ee.DetectionFilter</param-value>
> </init-param>
> </filter>
> 
> <filter>
> <filter-name>FlexCacheFilter</filter-name>
> <filter-class>flex.bootstrap.BootstrapFilter</filter-class>
> <init-param>
> <param-name>filter.class</param-name>
> <param-value>flex.server.j2ee.cache.CacheFilter</param-value>
> </init-param>
> </filter>
> 
> <filter-mapping>
> <filter-name>FlexDetectionFilter</filter-name>
> <servlet-name>FlexMxmlServlet</servlet-name>
> </filter-mapping>
> 
> <filter-mapping>
> <filter-name>FlexCacheFilter</filter-name>
> <servlet-name>FlexMxmlServlet</servlet-name>
> </filter-mapping>
> 
> <filter-mapping>
> <filter-name>FlexCacheFilter</filter-name>
> <servlet-name>FlexSwfServlet</servlet-name>
> </filter-mapping>
> 
> Can anyone please tell me what I am missing here? Why is it not 
able to load
> the filter and why are the servelts not being preloaded?
> Thanks,
> Shweta 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com 
> 
> 
> 
> 
>   _____  
> 
> YAHOO! GROUPS LINKS 
> 
>  
> 
> *      Visit your group "flexcoders
> <http://groups.yahoo.com/group/flexcoders> " on the web.
>   
> *      To unsubscribe from this group, send an email to:
>  [EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]
subject=Unsubscribe> 
>   
> *      Your use of Yahoo! Groups is subject to the Yahoo!
> <http://docs.yahoo.com/info/terms/>  Terms of Service. 
> 
>  
> 
>   _____




------------------------ Yahoo! Groups Sponsor --------------------~--> 
<font face=arial size=-1><a 
href="http://us.ard.yahoo.com/SIG=12hvctgi1/M=362329.6886308.7839368.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1124842068/A=2894321/R=0/SIG=11dvsfulr/*http://youthnoise.com/page.php?page_id=1992
">Fair play? Video games influencing politics. Click and talk back!</a>.</font>
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to