Quantcast
Channel: Adobe Community : Popular Discussions - BlazeDS
Viewing all 57966 articles
Browse latest View live

login required before authorization can proceed

$
0
0

Hi,

 

We are using BlazeDS on Tomcat 7. We wrote our own LoginCommand login and the authentication works fine. However, sometimes and for no particular reason, we receive the login required before authentication can proceed error on some of our clients, but not all of them. It cannot be related to http session timeout, since the session timeout parameters on Tomcat are set pretty large, and the error sometimes occurs after a client recently logged in.

 

A complicating factor is that we use tomcat in a clusted environment where the name IP address is load balanced via mod_proxy. We enabled sticky sessions on the mod_proxy_balancer to ensure the requests are routed to the same tomcat server each time:

 


<Proxy balancer://mybalancer>


BalancerMember ajp://one:8009 route=jvm1


BalancerMember ajp://two:8009 route=jvm2


ProxySet stickysession=JSESSIONID|jsessionid scolonpathdelim=On


Order deny,allow


Allow from all

</Proxy>

 

What could be causing the error, even when we tried to set up all parameters correctly?

 

Thanks,

 

-Rogier


Server.Processing.DuplicateSessionDetected

$
0
0

Hi,

 

I am using BlazedDS remote objects in my application and following is the error I am getting.

 

faultCode:Server.Processing.DuplicateSessionDetected

faultString:'Detected duplicate HTTP - based FlexSessions, generally due to the remote host disabling session cookies. Session coolkies must be enable to manage the client connection correctly.'

faultDetail: 'null'

 

Along with this error I also get the following error most times.

faultCode:Server.Processing

faultString:'There was an unhandler failure on the server. The FlexSession is invalid.'

faultCode:'null'

 

My environment for the application is as follows:

 

Server - Websephere v6.1

Browser - IE 6, Mozilla 3.x. I have tried on both the browsers and it occurs in both of them.

Flex - Flex SDK - 3.2

Java - Java 5.0

 

My application is as follows:

I have configured BlazedDS on the server side to access remote objects to get data onto the client which is written in Flex/ActionScript.

 

when i run the application it seems to run fine. But at times the above error occurs. I am unable to reproduce this error AT WILL. I am not sure about the reason that this error seems to occur.

 

I have attached the config files for my application. The limit being 3 files the one remaining services-config.xml is as below:

 

<?xml version="1.0" encoding="UTF-8"?>
<services-config>

 

    <services>
        <service-include file-path="remoting-config.xml" />
        <service-include file-path="proxy-config.xml" />
        <service-include file-path="messaging-config.xml" />       
    </services>

 

    <security>
        <login-command class="flex.messaging.security.WebSphereLoginCommand" server="WebSphere"/>
    </security>

 

    <channels>

 

        <channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
            <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <polling-enabled>false</polling-enabled>
            </properties>
        </channel-definition>

 

        <channel-definition id="my-secure-amf" class="mx.messaging.channels.SecureAMFChannel">
            <endpoint url="https://{server.name}:{server.port}/{context.root}/messagebroker/amfsecure" class="flex.messaging.endpoints.SecureAMFEndpoint"/>
            <properties>
                   <!--HTTPS requests on some browsers do not work when pragma "no-cache" are set-->
                <add-no-cache-headers>false</add-no-cache-headers>
            </properties>
        </channel-definition>

 

        <channel-definition id="my-polling-amf" class="mx.messaging.channels.AMFChannel">
            <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amfpolling" class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <polling-enabled>true</polling-enabled>
                <polling-interval-seconds>4</polling-interval-seconds>
            </properties>
        </channel-definition>


    </channels>

 

    <logging>
        <target class="flex.messaging.log.ConsoleTarget" level="Error">
            <properties>
                <prefix>[BlazeDS] </prefix>
                <includeDate>false</includeDate>
                <includeTime>false</includeTime>
                <includeLevel>false</includeLevel>
                <includeCategory>false</includeCategory>
            </properties>
            <filters>
                <pattern>Endpoint.*</pattern>
                <pattern>Service.*</pattern>
                <pattern>Configuration</pattern>
            </filters>
        </target>
    </logging>

 

    <system>
        <redeploy>
            <enabled>false</enabled>
        </redeploy>
    </system>

 

</services-config>

 

It has been quite some time that i have been unable to resolve the issue. Any help in resolving the issue is appreciated.

 

Thanks a bunch..!!

 

Please let me know if you need to know anything else regarding the issue.

java.sql.SQLException: The url cannot be null" faultCode="Server.Processing

$
0
0

Hi Everyone i am getting the following exception while envoking a java method from the flex using blazeds. Any help would be highly appreciated.

 

Fault faultString="com.Employee.Employeedetails.connection.DAOException : java.sql.SQLException: The url cannot be null" faultCode="Server.Processing" faultDetail="null"]

Blazeds 4 flex.messaging.FlexContext .getServletConfig().getServletContext() throw NPE in JSP

$
0
0

We are using spring and Blazeds. And just upgrade to blazeds 4 from blazeds.

 

In our index.jsp page we have following code:

 

 

final WebApplicationContext webAC = WebApplicationContextUtils.getWebApplicationContext(flex.messaging.FlexContext

.getServletConfig().getServletContext());

 

Everything works before we moved blazeds 4, but now everytime a user load index.jsp, NPE happens(By the way, we are using same codes in service side, and they works ok):

 

org.apache.jasper.JasperException: An exception occurred processing JSP page /index.jsp at line 22

19:      }
20:      
21:      final WebApplicationContext webAC = WebApplicationContextUtils.getWebApplicationContext(flex.messaging.FlexContext
22:                               .getServletConfig().getServletContext());
23:      final AmazonS3ManagementService amazonS3 = webAC.getBean(AmazonS3ManagementService.class);
24: %>
25:


Stacktrace:
     org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:498)     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:411)     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)     javax.servlet.http.HttpServlet.service(HttpServlet.java:717)     org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:343)     org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:78)     org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)     com.utest.service.security.FlexSecurityContextPersistenceFilter.doFilter(FlexSecurityContextPersistenceFilter.java:85)     org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)     org.springframework.security.web.session.ConcurrentSessionFilter.doFilter(ConcurrentSessionFilter.java:109)     org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)     org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:149)     org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:237)     org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:167)     org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)

 

root cause

java.lang.NullPointerException     org.apache.jsp.index_jsp._jspService(index_jsp.java:78)     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)     javax.servlet.http.HttpServlet.service(HttpServlet.java:717)     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)     javax.servlet.http.HttpServlet.service(HttpServlet.java:717)     org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:343)     org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:78)     org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)     com.utest.service.security.FlexSecurityContextPersistenceFilter.doFilter(FlexSecurityContextPersistenceFilter.java:85)     org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)     org.springframework.security.web.session.ConcurrentSessionFilter.doFilter(ConcurrentSessionFilter.java:109)     org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355)     org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:149)     org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:237)     org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:167)     org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)

 

 

Any help is appricated, thx.

Question about BlazeDS Data Synchronization?

$
0
0

#NOTE: yes, i cross-posted. please don't delete. i'm just trying to get an answer! thanks

 

hi, i have a bit of a friendly bet going with my manager. He insists that BlazeDS offers such features as:

 

1-paging

2-data synchronization (live updates of database fields in Flex components)

 

 

he  insists that because Flash Builder facilitates linking data services in  the GUI that this must mean it is through BlazeDS, not LiveCycle  Services, since the latter costs money. I think that these services are  ONLY offered through LiveCycle.

 

Can anyone prove this  DEFINITIVELY either way? Any good pages to show me either way? I showed  him the feature comparison chart, but he doesn't seem to think that is  definitive.

 

Help me win this bet! i'm SURE i'm right!

blazeds unexpected error encountered in message borker servlet

$
0
0

java.lang.IllegalStateException: getAttribute: Session already invalidated


at org.apache.catalina.session.StandardSession.getAttribute(StandardSession.java:1011)
at org.apache.catalina.session.StandardSessionFacade.getAttribute(StandardSessionFacade.java :109)
at flex.messaging.HttpFlexSession.getFlexSession(HttpFlexSession.java:230)
at flex.messaging.MessageBrokerServlet.service(MessageBrokerServlet.java:257)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.ja va:175)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Htt p11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
at java.lang.Thread.run(Thread.java:619)

BlazeDS and Tomcat 7 (Java 6)

$
0
0

Is anyone aware of BlazeDS being supported on a Tomcat 7 installation, specifically for running against Java 6?  I am hosting Java code in a war file that will only build successfully against Java 6 and need to have BlazeDS deployed into a Tomcat 7 installation.

 

Thoughts / ideas?

 

Thanks

Cannot destroy my flex session using FlexSessionListener

$
0
0

Hi all,

 

I have what I thought was a simple need: destroy a session once a user logs out of my application either via a logout button or by closing the browser.

I have implemented the body ... onunload="disconnectAll()" .. method which I found numerous examples of on the net and have my logout button call the same disconnectAll() upon click.

 

All this is good and my FlexSessionListener sessionDestroyed() gets called. However, I can see from my logs that a sessionCreated() also gets called straight after the call to sessionDestroyed!

 

Has anybody seen this or have any idea why this is happening?
Are there threads running or feeds from clients that are keeping my session alive through recreating another one?

 

Any help would be greatly appreciated!


Blazeds + HTTPS + IE

$
0
0

Hi,

 

I have a problem getting Blazeds to work with IE (at least with versions 7 and 8) using Https. IE stops loading the application as soon as it receives a bad http header response.

 

Here is the configuration:

Flex (remote object) ---> Apache 2 proxy with Verisign certificate --> Blazeds running on Tomcat

 

It works fine with Firefox or a web tracer like Fiddler (which apparatly re-write the http headers) openned on the client machine with IE.

 

I followed the instructions on that page: http://livedocs.adobe.com/blazeds/1/blazeds_devguide/help.html?content=lcconfig_5.html

But that didn't solved the problem.

 

I'm totally blocked on the problem. Thanks in advance for your help!

Oracle Coherence*Web and BlazeDS: Multiple FlexSessions created for the same HttpSession

$
0
0

Hi all,

 

I have searched this forum and found a lot of good information from Alex Glosband and others about the infamous "Detected duplicate HTTP - based FlexSessions, generally due to the remote host disabling session cookies. Session coolkies must be enable to manage the client connection correctly." message.

 

It seems, however, none of the cases are identical to ours. This is ours:

 

- Resin 3.1.9

- Oracle Coherence 3.7.1 with Coherence*Web (session replication)

 

With this setup we get the "Detected duplicate HTTP..." message on the first attempt to use BlazeDS and on every subsequent call.  The same client and server code works fine in a local sessions setup.  With Coherence 3.3 (currently our production environment) it seems to occur less frequently, but still as frequent as it is a major issue for us.  It fails even with a single node using in-process distributed caching in our test setup (as well as with multi node out of process caching in our staging environment, for Coherence knowledgeable the resin app server runs with tangosol.coherence.session.localstorage=true in the first case and false in the second).

 

Both the listener and message broker are mapped as "Coherence aware" in web.xml[1] so that they should use clustered sessions.

 

We have been digging a bit and we found out that if we commented out lines 427 and 434 of flex.messaging.endpoints.BaseHTTPEndpoint from version 4.0.0.14931 it seems to mask the bug.  We added some logging in the setupFlexClient method and it seems that we get more or less a new FlexSession for each and every call - but they have the same cookie and thus underlying HttpSession. I.e. the list returned from flexClient.getFlexSessions() keeps growing. Thus we are not so keen on going to production with that memory leak and the above mentioned ugly hack of commenting out the detection of duplicates.

 

We use request scope for the remote object, but could in theory use any scope as we do not really have any state on the object itself, it is all HttpSession state and return values that are key (logon is performed prior to doing the first blaze call, in pure forms and ajax, and it is not a timing issue in that regard we are seeing).

 

Hope someone can shed some light on what can be happening. Is there any "reference testing"[2] or something when the FlexSessions are created that makes them being created as new? Where are they created?  We do not know the inner workings of the BlazeDS source, we just watched the call trace of the unwanted invalidation and found that to be line 427 of flex.messaging.endpoints.BaseHTTPEndpoint.

 

Can we disable FlexSessions?  Since the flex and plain html parts of the app share the sessions, we always use FlexContext.getHttpRequest().getSession() anyway, never storing any state directly in the FlexSession or on the remote object. Or maybe there is a config option to help us with this detection (or creation) of multiple FlexSessions?

 

Cheers and TIA,

 

-S-

 

[1] - For instance, this i the message broker servlet def:

 

<servlet>

<servlet-name>MessageBrokerServlet</servlet-name>

  <display-name>MessageBrokerServlet</display-name>

<servlet-class>com.tangosol.coherence.servlet.api22.ServletWrapper</servlet-class>       

<init-param>

<param-name>coherence-servlet-class</param-name>

<param-value>flex.messaging.MessageBrokerServlet</param-value>

</init-param>       

<init-param>

<param-name>services.configuration.file</param-name>

<param-value>/WEB-INF/flex/services-config.xml</param-value>

</init-param>

<load-on-startup>1</load-on-startup>

</servlet>

 

[2] - As you undertstand this is speculation based on pure air, but it could be that in Coherence there was a serialization/deserialization happening somehow that would break such a test?

Channel.call.failed error NetConnection.Call.Failed:HTTP:Status 504

$
0
0

Hi All,

 

 

 

I have a flex application which has been built using flex 3.2 and Blazeds. Its working fine in the test server(and also in local machine), but getting following error when i uploaded it to production server.

 

 

 

Fault handler error:

 

Channel.call.failed error NetConnection.Call.Failed:HTTP:Status 504

 

 

 

Above error popups only on particular action(its connecting to backend and configuration in  remoting-config.xml also correct). I checked the log in tomcat server for exception, there is nothing.

 

 

 

 

 

Configuration in services-config.xml for channel definition is as below:

 

 

 

<channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">

 

            <endpoint url="http://localhost:8080/blazeds_Sample/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>

 

</channel-definition>

 

 

 

Please suggest me a solution.

 

 

 

 

Thanks,

 

Suchithra

Broswers that allow extra IP address 0 (zero) character causes BlazeDS connection to fail

$
0
0

Both in FireFox and IE, if I add an address of http://10.97.150.01 the browser will not strip off the extra "0" before the 1.  For pretty much all of our code (javascript, application loading, etc), it handles it without an issue.   But then our application creates a connection to our server via the BlazeDS interface and we are failing when trying to retrieve data.  Yet if I use the address of http://10.97.150.1, then everything is ok.

 

Yes, I know...do not use an address with the extra zero.  Problem is that for some reason some of our customers use the extra 0.   Looking at the network traffic via firebug, I see that for most of the traffic, it uses the 01, yet the AMF connection is using 1.

 

blazeds.jpg

 

And for the successful case, it all uses 1.  We currently use version 3.2.0, but I just downloaded and tried the 3.3.0 version with the same results.

 

Any insight would be greatly appreciated.

[svn:bz-trunk] 23960: Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel

$
0
0

Revision: 23960

Revision: 23960

Author:   ashishv@adobe.com

Date:     2012-06-15 04:15:18 -0700 (Fri, 15 Jun 2012)

Log Message:

***********

Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel

While invalidating session, make sure a new one does not get created.

 

Modified Paths:

**************

    blazeds/trunk/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java

 

[svn:bz- blazeds] 24025: New branch for Apache

$
0
0

Revision: 24025

Revision: 24025

Author:   amundra@adobe.com

Date:     2012-07-31 03:18:09 -0700 (Tue, 31 Jul 2012)

Log Message:

***********

New branch for Apache

Its derived from BlazeDS 4.6 branch

 

Added Paths:

***********

    blazeds/branches/4.6_Apache/

 

How to use an ActiveMQ broker plugin

$
0
0

Sorry in advance if this is a stupid question but I've just inherited this project and have never used BlazeDS or ActiveMQ before. I've got a collection of various programs that are communicating through BlazeDS and ActiveMQ and I've been tasked with recording all the messages being passed between them for later analysis. It appears from this link that I could just develop a BrokerPlugin that could take care of this pretty easily. However I don't know how to add this BrokerPlugin to the system. There doesn't any appear to be any configuration data for ActiveMQ in the current system. I believe it was built on the BlazeDS turnkey server with ActiveMQ added to handle the JMS integration.

 

Also, I had originally just created a small app that subscribes to all the topics and saves the messages out to an xml file. That part worked for most of the messages but some of the message destinations are defined as queues though so they can't have more than one subscriber. I wasn't sure how to go about getting these messages without using a BrokerPlugin.

 

Any help would be greatly appreciated.


blazeds,how to know the client has “disconnected”?

$
0
0

The blazeds server-side don't know the client-side has disconnected.But it seems to know the client-side's network has down.

 

In my case,i use the polling channel,i download the blazeds's source code,and add some log output in the FlexClientOutboundQueueProcessor.flush(MessageClient messageClient, List outboundQueue) method.Then i saw this,when a client subscibed,the server-side invoke the FlexClientOutboundQueueProcessor.flush method every 3 seconds,and print what i added in the flush method,then i only shut down the client's network,not close browser(client and server with difference network),i found the server-side don't print anything,it means that the server-side don't invoke the flush method.And after more than 30 minutes i recover the client's network,the server-side continue to invoke the flush method(the client's session does't destroyed,if i close the client's browser,after 30 minutes the server-side will destroy the session).

 

Now,i have two questions,it's my pleasure that someone to answer my questions:

1.How the server-side know the client's network has downed?Is there a listener to monitor the client's network?If so,where is it?If not,how and where the codes?

2.It seems that the server-side will invoke the FlexClientOutboundQueueProcessor.flush method every 3 seconds,can this interval be configured?And where the code to start or stop this timing task?

 

I'm new to blazeds,so if anyone explain to me,i will thank you very much!

Unsupported Message Exception

$
0
0

Hi I am getting unsupported Message durinf deserialzation and Error message file are getting downloading in client system.

[svn:bz-4.6_Apache] 24055: Added changelog for donation to Apache.

$
0
0

Revision: 24055

Revision: 24055

Author:   nagpal@adobe.com

Date:     2013-05-28 02:22:00 -0700 (Tue, 28 May 2013)

Log Message:

***********

Added changelog for donation to Apache.

 

Modified Paths:

**************

    blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/src/spring-samples/src/org/spring framework/flex/samples/contact/ContactDAO.java

    blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/src/spring-samples/src/org/spring framework/flex/samples/marketfeed/MarketFeed.java

    blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/src/spring-samples/src/org/spring framework/flex/samples/simplefeed/SimpleFeed.java

    blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/src/spring-samples/src/org/spring framework/flex/samples/util/DatabaseInitializer.java

 

يا مصريين توكيل كلفينيتور اهة//01227713067

$
0
0

توكيل وايت وستنجهاوس باألاسكندرية الأن 01227713067_01286629661وايت وستنجهاوس خدمة العملاء بالاسكندرية  توكيل وايت وستنجهاوس بالاسكندرية مركز الخدمة والصيانة صيانة وايت وستنجهاوس الاسكندرية °¤§ ---√ بالضمان المعتمد من المركز الرئيسى للصيانة فى مصر و جميع المحافظات . حيث ان خدمة الصيانة تتميز بالسهولة في الإجراءات والسرعة والدقة والالتزام بالمواعيد .
 
توكيل وايت وستنجهاوس الإسكندرية , توكيل وايت وستنجهاوس للغسالات بالإسكندرية , مركز صيانة وايت وستنجهاوس الاسكندرية , صيانة غسالات وايت وستنجهاوس الاسكندرية
 
نسعى جاهدين ان نكون افضل مما كنت ان تتوقع لاننا خبرتنا تتفوق بمراحل ونتميز بأننا نملك عدة حلول مبتكرة لصيانة اجهزة وايت وستنجهاوس بأعلى كفاءة .
 
نعمل بأحدث أجهزة لتحديد الاعطال و التغلب عليها لدينا افضل مهندسين متخصصون فى التعامل مع أجهزتكم بتقنية عالية .
 
هدفنا هو أرضاء العميل , وراحة بالة بعد زيارتنا عملاؤنا هم سر نجاحنا .
 
اذا كنت فى احتياج لعمل صيانة على ثلاجة وايت وستنجهاوس او غسالة وايت وستنجهاوس و انتة فى اطمان فعليك الاتصال بنا على 01227713067_01286629661_01111747277 - نحن فى خدمتك اينما كنت نحن نخدم جميع المحافظات و المراكز و المدن من المركز الرئيسى للصيانة لنسعى أن نكون الاول و الاسرع فى التعامل معك  .
 
تتبع الشركة الأساليب الحديثة فى تنفيذ اعمال الصيانة لآرضاء احتياجات العملاء فى عنصر الوقت و الاحساس بالتميز و الرقى فى التعامل معنا  .
 
قمة الالتزام بمعايير جودة الخدمات التى نقدمها لعملائنا حرصا على بناء علاقة دائم معهم لنكون الوحيدين الذين يشعرون اتجاههم بالامان والثقة ونسعى جاهدين الى تغيير النظرة السائدة فى مصر عن الصيانة نحن فى ثقة متابدلة مع العميل .
 
خدمة وايت وستنجهاوس الاسكندرية // مركز خدمة وايت وستنجهاوس الاسكندرية || مركز خدمة غسالات وايت وستنجهاوس الاسكندرية  .
 
نحن الوحيدون الذين لدينا قطع غيار أصلية لجميع منتاجات وايت وستنجهاوس مستوردة لجميع الموديلات توكيل وايت وستنجهاوس نسعى دائما للاحدث و الموديلات الجديدة وايت وستنجهاوس مما يشمل قطع غيار ثلاجة وايت وستنجهاوس , قطع غيار غسالة وايت وستنجهاوس , قطع غيار دراير وايت وستنجهاوس , قطع غيار ديب فريزر وايت وستنجهاوس , قطع غيار غسالة اطباق وايت وستنجهاوس , غسالات ال 5 كيلو و 7 كيلو و 10 كيلو // للحفاظ على كفاءة الجهاز و استمرارية التشغيل و تجنب الاعطال الى الابد و تفعيل ضمان على الجهاز مجددا من الشركة . 01227713067_01286629661_01111747277 -
 
مركز وايت وستنجهاوس - خدمة الصيانة المعتمدة  .
 
مركز صيانة وايت وستنجهاوس الاسكندرية ؛ مركز صيانة غسالات وايت وستنجهاوس الاسكندرية
 
تتشرف أسرة الشركة في تلبية كافة رغباتكم ونعدكم بالالتزام والكفاءه في تقديم خدمة الصيانة المنزلية .
 
توكيل وايت وستنجهاوس المركز الرئيسى للصيانة بالاسكندرية . توكيل وايت وستنجهاوس فى الاسكندرية / توكيل وايت وستنجهاوس بالاسكندرية / توكيل وايت وستنجهاوس داخل الاسكندرية
 
توكيل وايت وستنجهاوس الساحل الشمالى ؛ توكيل وايت وستنجهاوس الساحل الشمالى / فرع الاسكندرية
 
توكيل وايت وستنجهاوس يخدم مدينة برج العرب ؛ توكيل وايت وستنجهاوس برج العرب / فرع الاسكندرية
 
توكيل وايت وستنجهاوس فى البحيرة / توكيل وايت وستنجهاوس بالبحيرة / توكيل وايت وستنجهاوس داخل البحيرة .
 
توكيل وايت وستنجهاوس يخدم مركز دمنهور ؛ توكيل وايت وستنجهاوس يخدم مركز كفر الدوار ؛ توكيل وايت وستنجهاوس يخدم مركز كوم حمادة  .  01227713067_01286629661_01111747277 -
 
توكيل وايت وستنجهاوس فى طنطا / توكيل وايت وستنجهاوس بالغربية / توكيل وايت وستنجهاوس داخل طنطا .
 
توكيل وايت وستنجهاوس يخدم محافظة الغربية ؛ توكيل وايت وستنجهاوس يخدم المحلة الكبرى ؛ توكيل وايت وستنجهاوس يخدم كفر الزيات  .
 
توكيل وايت وستنجهاوس فى كفر الشيخ / توكيل وايت وستنجهاوس كفر الشيخ / توكيل وايت وستنجهاوس داخل كفر الشيخ .
 
توكيل وايت وستنجهاوس يخدم مركز دسوق ؛ توكيل وايت وستنجهاوس يخدم مركز فوة ؛ توكيل وايت وستنجهاوس يخدم مركز الحامول ؛ توكيل وايت وستنجهاوس يخدم مركز سيدى سالم - كفر الشيخ .
 
توكيل وايت وستنجهاوس فى دمياط / توكيل وايت وستنجهاوس بدمياط / توكيل وايت وستنجهاوس داخل دمياط .
 
توكيل وايت وستنجهاوس يخدم مدينة راس البر ؛ توكيل وايت وستنجهاوس الاسكندرية - توكيل وايت وستنجهاوس فى الاسكندرية - توكيل وايت وستنجهاوس خدمة العملاء بالاسكندرية §¤° توكيل وايت وستنجهاوس بالاسكندرية°¤§ مركز الخدمة والصيانة §¤° صيانة وايت وستنجهاوس الاسكندرية °¤§ ---√ بالضمان المعتمد من المركز الرئيسى للصيانة فى مصر و جميع المحافظات . حيث ان خدمة الصيانة تتميز بالسهولة في الإجراءات والسرعة والدقة والالتزام بالمواعيد  .
 
توكيل وايت وستنجهاوس الإسكندرية , توكيل وايت وستنجهاوس للغسالات بالإسكندرية , مركز صيانة وايت وستنجهاوس الاسكندرية , صيانة غسالات وايت وستنجهاوس الاسكندرية
 
نسعى جاهدين ان نكون افضل مما كنت ان تتوقع لاننا خبرتنا تتفوق بمراحل ونتميز بأننا نملك عدة حلول مبتكرة لصيانة اجهزة وايت وستنجهاوس بأعلى كفاءة .
 
نعمل بأحدث أجهزة لتحديد الاعطال و التغلب عليها لدينا افضل مهندسين متخصصون فى التعامل مع أجهزتكم بتقنية عالية
وستنجهاوس راس البر . 01227713067_01286629661_01111747277 -

[svn] 1502: Bug: BLZ-148 - Repeat invocation of invalidate() on HttpFlexSession throws java.lang.IllegalStateException: invalidate: Session already invalidated

$
0
0
Revision: 1502
Author: shodgson@adobe.com
Date: 2008-04-30 16:36:53 -0700 (Wed, 30 Apr 2008)

Log Message:
-----------
Bug: BLZ-148 - Repeat invocation of invalidate() on HttpFlexSession throws java.lang.IllegalStateException: invalidate: Session already invalidated
QA: Yes
Doc: No

Ticket Links:
------------
http://bugs.adobe.com/jira/browse/BLZ-148

Modified Paths:
--------------
blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/HttpFlexSession.java
Viewing all 57966 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>