Changeset 19


Ignore:
Timestamp:
05/23/13 15:34:55 (11 years ago)
Author:
stoda
Message:

Sysos added to control what's happening

Location:
trunk/objectmq/src/omq
Files:
6 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/objectmq/src/omq/client/proxy/Proxymq.java

    r18 r19  
    121121                // Publish the request
    122122                if (request.isAsync()) {
     123                        System.out.println("Publish async request ->" + request.getId());
    123124                        publishAsyncRequest(request);
    124125                        return null;
    125126                } else {
     127                        System.out.println("Publish sync request ->" + request.getId());
    126128                        return publishSyncRequest(request, method.getReturnType());
    127129                }
    128130        }
    129        
    130         private void publishMessage(Request request, String replyQueueName) throws IOException, SerializerException{
     131
     132        private void publishMessage(Request request, String replyQueueName) throws IOException, SerializerException {
    131133                String corrId = request.getId();
    132134
     
    139141
    140142                // Publish the message
    141                 byte[] bytesRequest = Serializer.serialize(request);                           
     143                byte[] bytesRequest = Serializer.serialize(request);
    142144                channel.basicPublish(exchange, routingkey, props, bytesRequest);
    143                 Log.saveLog("Client-Serialize", bytesRequest);         
     145                Log.saveLog("Client-Serialize", bytesRequest);
    144146        }
    145147
     
    167169                        } catch (TimeoutException te) {
    168170                                System.out.println("Timeout exception catched " + te);
     171                                te.printStackTrace();
    169172                        }
    170173                        i++;
    171174                }
    172175                throw new RetryException(retries, timeout);
    173 
    174176        }
    175177
  • trunk/objectmq/src/omq/client/remote/response/ResponseListener.java

    r9 r19  
    6060                                // Get the response with its uid
    6161                                uid_request = delivery.getProperties().getCorrelationId();
     62                                System.out.println("Response reveived -> " + uid_request);
    6263
    6364                                // Stores the new response
  • trunk/objectmq/src/omq/common/event/EventDispatcher.java

    r16 r19  
    9595                                event = Serializer.deserializeEvent(delivery.getBody());
    9696
     97                                System.out.println("Event received -> Topic: " + event.getTopic() + "CorrId: " + event.getCorrId());
     98
    9799                                // Dispatch it
    98100                                dispatch(event.getTopic(), event);
    99101                        } catch (InterruptedException i) {
    100102                                System.out.println("InterruptedException e: " + i);
     103                                i.printStackTrace();
    101104                        } catch (ShutdownSignalException e) {
    102105                                System.out.println("ShutdownSignalException e: " + e);
     106                                e.printStackTrace();
    103107                        } catch (ConsumerCancelledException e) {
    104108                                System.out.println("ConsumerCancelledException e: " + e);
     109                                e.printStackTrace();
    105110                        } catch (Exception e) {
    106111                                System.out.println("Exception e: " + e);
     112                                e.printStackTrace();
    107113                        }
    108114                }
  • trunk/objectmq/src/omq/common/util/ParameterQueue.java

    r18 r19  
    4747         * Time in milis
    4848         */
    49         public static long DEFAULT_TIMEOUT = 5 * 1000 * 60;
     49        public static long DEFAULT_TIMEOUT = 1 * 1000 * 60;
    5050
    5151}
  • trunk/objectmq/src/omq/common/util/Serializer.java

    r18 r19  
    2626                        enableCompression = Boolean.valueOf(env.getProperty(ParameterQueue.ENABLECOMPRESSION, "false"));
    2727                } catch (EnvironmentException e) {
     28                        e.printStackTrace();
    2829                }
    2930
     
    4041                                        throw new ClassNotFoundException("Class name is null or empty.");
    4142                                }
    42                                
     43
    4344                                serializer = (ISerializer) Class.forName(className).newInstance();
    4445                        } catch (Exception ex) {
  • trunk/objectmq/src/omq/server/remote/request/InvocationThread.java

    r18 r19  
    3838                                Log.saveLog("Server-Deserialize", delivery.getBody());
    3939
     40                                System.out.println("Invoke method: " + request.getMethod() + " CorrID: " + request.getId());
     41
    4042                                // Invoke the method
    4143                                Object result = obj.invokeMethod(request.getMethod(), request.getArguments());
     
    4850                                        BasicProperties props = delivery.getProperties();
    4951
    50                                         BasicProperties replyProps = new BasicProperties.Builder().appId(obj.getRef())
    51                                                         .correlationId(props.getCorrelationId()).build();
     52                                        BasicProperties replyProps = new BasicProperties.Builder().appId(obj.getRef()).correlationId(props.getCorrelationId()).build();
    5253
    5354                                        byte[] bytesResponse = Serializer.serialize(resp);
     
    5859
    5960                        } catch (InterruptedException i) {
     61                                i.printStackTrace();
    6062                                killed = true;
    6163                        } catch (Exception e) {
  • trunk/objectmq/src/omq/ztest/calculator/ClientTest.java

    r18 r19  
    1111import org.junit.Test;
    1212
    13 public class CalculatorTest {
     13public class ClientTest {
    1414        private static Calculator remoteCalc;
    1515        private static Calculator remoteCalc2;
Note: See TracChangeset for help on using the changeset viewer.