The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
13 views

spring web flow enable scopes

Spring web flow provides additional bean scopes like flow, conversation, flash etc. I can define flow scope beans in flow.xml using var or i can set values to new scoped variables. How i can define it ...
-6
votes
0answers
40 views

How do I created a flow diagram of my system? [closed]

I'm working on Hedge fund domain project. we have created SSIS packages which daily fetches files from various sources like Wall street office etc and dump data into Raw database table (SQL TABLES) ...
-1
votes
0answers
3 views

min cost max flow with nonconst function of cost

I am trying to find solution of the problem: There is a graph, with costs of edges and given capacity to each edge, but cost of edge depends on flow through edge. I can solve this task if cost is ...
-1
votes
1answer
33 views

UML Squence Diagram - visualize validation of data

A method performs successively validation checks with some passed data. If a validation check fails, a exception will be immediately thrown and the method aborted. How can visualize this flow with ...
0
votes
0answers
6 views

ArcHydro: Flow Accumulation 863988034 Cells

I've been using Arc Hydro for the last 7 years to determine catchment characteristics. I'm currently setting up a new model to determine structure locations along a proposed railway alignment. This is ...
0
votes
1answer
7 views

Using aggregates inside of control flow functions

The problem is this: create a query that will Group the IP addresses and display a sum of the number of requests by each IP address that had a return code (retcode) of greater than 300 order this ...
0
votes
0answers
28 views

Mule flow trigger another flow

I have 2 data sources I am building an integration for. I have a workflow that needs to do the following in this exact order: 1) Get records from datasource1 2) Post records into datasource2 3) Get ...
0
votes
1answer
36 views

Getting java.lang.IllegalArgumentException when trying to make a dynamic HTTP endpoint in Mule

I got an HTTP outbound-endpoint that does a GET method to an specific URL, thing is that if i add a variable in the path URL it will throw an exception... i believe this is not being supported. This ...
0
votes
0answers
24 views

Can we create a custom activity to have multiple outgoing connections in Microsoft Workflow?

I have created a custom activity using Microsoft Workflow ('Email Manager'), and depending on either approved or denied by manager, the workflow will then do different things. In order to do this, I ...
0
votes
0answers
69 views

Working with SOAP attachments using Mule’s CXF module

I'm working with MULE 3.3.0 CE This is AddAttachmentMessageProcessor class: import java.io.IOException; import java.util.ArrayList; import java.util.Collection; import javax.activation.DataSource; ...
0
votes
1answer
75 views

Call a CXF Client through a Java Bean with Mule

Im trying to consume this webservice: http://wsf.cdyne.com/WeatherWS/Weather.asmx?wsdl from another wsdl... Dont worry for that, im just tryng to make some kind of bridge to test the webservice call ...
0
votes
0answers
34 views

Loops in Salesforce Visual Flows. And, are Flows packagble?

two main concerns here: I need a Flow to be able to loop over a Create record step for N times. How could I achieve this without explicitly put N times the same Create record step? In the packaging ...
1
vote
1answer
145 views

Maximum flow bipartite with intermediate nodes

I'm working on a problem where one is to create a exam schedule based on some constraints by creating a flow network. A set number of courses C A set number of days D A set number of rooms R A ...
0
votes
0answers
42 views

mule log files into DB

In mule CE version 3.3.0, I have a mule project, and the URL for calling it is http://localhost:8086/mule?msg=Hello-World!!!. Every time that I call it, in a log file in mule server that it has as a ...
0
votes
3answers
84 views

Logcat continously shows messages

I don't know what's wrong. My logcat has been troubling me for two days. When device is connected to test, the logcat continuously gives messages though I don't run my app. If I run my app, I am ...
1
vote
1answer
188 views

Algorithm - Creating an exam schedule

I have a problem of creating an exam schedule based on three factors: rooms, courses, and days. There are a set number of rooms r, courses c, and days d where each day has three slots. There is also ...
0
votes
0answers
30 views

Generating a flow diagram for a legacy C project

I have inherited a C project which is huge (more that 10,000 files) and my team needs to re-architect and clean it up. As a first step, I need to view the flow diagram of the entire project. Is there ...
1
vote
0answers
48 views

Weird JS flow in firefox

My JS code is as follows if (fileControl != NoFileMessage) { if (fileControl.val() != NoFileMessage) { var valid_extensions = /(.xlsx)$/i; if ...
0
votes
3answers
68 views

Python condition not applying (if/elif)

I have a problem with a condition in my python code. It's a mathematics application, and here's the part of the code that is not working well: def askNumber(): """Asks the number to test""" ...
0
votes
3answers
694 views

Best javascript library to create and interactive flow chart [closed]

I would like to create an interactive 'problem solving' type flow chart that is made up out div elements. I would like to do something very similar to what the new york times have done in this ...
2
votes
0answers
145 views

Mule Flow - Inserting BLOB attachment types into an Oracle database field

I am new to the Mule ESB and I am trying to find a solution to what is hopefully a common business requirement. I have a payload where one of its elements will be inserted into an Oracle database as ...
0
votes
1answer
145 views

How to catch any exception in the mule flow

I have a mule flow that could throw an exception (unable to connect to connector, component throws exception etc). When this happens, the mule flow stops where the exception happenned. I need to catch ...
0
votes
1answer
124 views

Starting a mule flow programmatically using groovy

I need to control the execution of a flow manually through a HTTP call. I have been told I can disable the flow from executing during startup using the initialState="stopped" attribute on the flow. ...
0
votes
1answer
59 views

jQueryUI 'Blind' effect introduces break in page flow while animating

I have an arbitrary number of links, each styled as a bootstrap button, in a div with ordinary left to right flow. <div id="btngrp"> <a href="#" class="btn" id="btn_1">Troll 1</a> ...
0
votes
1answer
184 views

Use an SQL result variable in a Mule flow

I got a Mule flow with 2 queries. The first simply validates if a username is duplicated. Does something like this: SELECT count(*) AS TOTAL FROM user_tests WHERE username = #[json:username] AND ...
2
votes
1answer
89 views

Delphi How to exit to TOP level routine on Error

In Delphi, I have a hierarchy of routines. Routine 'A' calls 'B' which calls 'C' which calls 'D'. 'D' does some checking, and it encounters an error of some type, maybe an Exception,maybe just a ...
0
votes
1answer
57 views

flow control choice router

In mule 3.3.0 CE, I add these lines in my configuration XML file: <flow name="muleService" doc:name="muleService"> <http:inbound-endpoint exchange-pattern="request-response" host="localhost" ...
0
votes
2answers
108 views

mule versioning on web service

I have the same mule webservice application with 2 different versions deployed on the same mule server. Let's call it MuleApp.1.0 and MuleApp.1.1. The flow is as simple as the example of webservice ...
1
vote
2answers
183 views

CSS: text hidden with text-overflow:ellipses still exists

I have an ul with varying-length li's, but a fixed width. I also have some icons in the li. <ul> <li><span class="icon"></span>Long Text with ...
0
votes
2answers
120 views

do Injecting Resources into JAX-WS Services in mule stdiuo

i am doing Injecting Resources into JAX-WS Services in mule stdiuo from page: here but i heve error in xml file : <spring:bean class="org.apache.cxf.bus.spring.Jsr250BeanPostProcessor" /> ...
0
votes
1answer
41 views

How can I calculate the flow rate of a tcp session?

In my project I need to calculate the flow rate of a tcp session, should I use total_bytes_of_session/total_time_elapsed or use tcp-windows and tcp-rtt to calculate? Thanks!
0
votes
4answers
65 views

Lets get a flow in java

im just a begginers and try to learn Java Target - try to create few flows in java, my program must to create 3 flows and 1 main flow, and than stop. Whats done: Created class with implemented ...
0
votes
0answers
331 views

Web Page Flow with JQuery, JSON, AJAX

I have read several books on JQuery, JSON, and AJAX. I am trying to convert a working web site that used older technology of jsp's and servlets over to jsp's with JSON, AJAX, and JQuery. I am having ...
1
vote
1answer
92 views

add a java class as a bean in MULE

In MULE 3.3.0 CE, I wrote a simple java class with constructor and two methods, I copied them at below: public class Book { private String title; public Book(String theTitle) { ...
1
vote
1answer
75 views

rabbitmq connections blocking but memory is blow watermark

we are use rabbitmq in our application, two hours ago, one of our app server is blocked when try to connect to rabbitmq, after check rabbitmq server , we found one node's memory is over watermark, a ...
0
votes
0answers
32 views

flow-tools. Get timestamp of first packet

Good day. There is an example on data: unix_secs,sysuptime,dpkts,doctets,first,last,srcaddr,dstaddr,srcport,dstport,prot ...
2
votes
1answer
53 views

Is it possible to pin an HTML element to the bottom of another?

A simple question for a simple problem. I'm working on a way to represent textual documents (such as book pages) with relatively simple HTML underlying them. Each HTML document can display many pages. ...
2
votes
1answer
134 views

Data Flow Graph Construction

I have been asked to write a program to construct a data flow graph of a input program code, given the abstract syntax tree. I search for the definition of data flow graph online and found there are a ...
0
votes
0answers
75 views

Algorithm to find all the cuts in a graph

I am looking for an efficient algorithm which can help me to list out all the cuts in a graph. The graph is a flow network (directed graph) and has a source and a sink fixed. I want to find out what ...
0
votes
1answer
119 views

How to access exceptionPayload in Flow

I have been looking for this on Google but couldn't find a solution. How can I access the exceptionPayload in the the mule flow like I can access the payload #[message.payload]. In the same way is ...
0
votes
0answers
83 views

Python multi-commodity network flow

I'm looking to solve multi-commodity minimum-cost flow problems for directed graphs, from within Python. These are a generalisation of network flow problems, for cases where you have multiple things ...
-1
votes
1answer
54 views

Framework for screens flow [closed]

I am struggling to find a best/reputed framework from Java platform to help me manage the screen flows within my application. So for example, for 10 screens ( although we have 200+ screens in the app ...
0
votes
0answers
44 views

flow-export says “flow-export: ftiheader_read(): failed flow-export: ftio_init(): failed” when i try to convert .flow file into csv

i am using flow export to convert the .flow into csv generated through nprobe and i am using the following command. flow-export -f2 <17.flows> flows.csv but it gives the following error ...
0
votes
0answers
27 views

Setting FlowDirection to RightToLeft for all windows in an application

I am trying to set the FlowDirection of all the windows the application will generate to RightToLeft. I tried the following Window.FlowDirectionProperty.OverrideMetadata( ...
0
votes
1answer
51 views

Mule 3.2 Flow Initialization in a specific order

I have two flows in mule. I want to make one of them start , only after the other has been up and running for a while. how can I do that? Thanks <flow name="newHttpClientRequestProcessor" ...
0
votes
0answers
68 views

How to simulate data flow between two sensor nodes using C#

I am building a very simple wireless sensor node simulator. What I want to do is have 2 sensor nodes (represented by objects) send data to another sensor node. I should also be able to simulate ...
1
vote
2answers
241 views

Testing sub-flows in Mule

I have started writing test cases to my Mule project. I have written the functional test case for my Main Flows as follows. public void testMainFlow_1() throws Exception{ MuleClient client = ...
0
votes
0answers
16 views

Absolute image versus text flow

I'm working on a site in Wordpress and i really like the design of webdesignerdepot and i want to achieve the same effect of the thumbnail of the article under the title tag. For most of the part i ...
0
votes
3answers
70 views

Achieving Fail-safe behaviour in flow

I am trying to create a fail-safe scenario in my flow. My flow looks like below. It involves some sub-flows which intern have call to web-services. In any scenario if one of the web-service is not ...
1
vote
2answers
301 views

Config <set-variable> with xpath gives empty string while extracting from xml payload

I am working on a service which add the detials sent in the request to to two different queues. For this I use to extract part of the XML without disturbing the payload. But it is giving blank. My ...

1 2 3 4 5 6