EJB / EE :: List Durable Subscriptions From JMS Topic
Jun 24, 2014
We have a requirement to list all the durable subscriptions from the JMS topic and written below code to get the Topic name
Topic topic = null;
Properties p = new Properties( );
p.put(Context.PROVIDER_URL, "jnp://localhost:1099");
p.put(Context.INITIAL_CONTEXT_FACTORY,"org.jnp.interfaces.NamingContextFactory");
p.put(Context.URL_PKG_PREFIXES," org.jboss.namingrg.jnp.interfaces");
Context ctx = new InitialContext(p);
[Code] .....
View Replies
ADVERTISEMENT
Jun 27, 2014
I am trying to test out the use of durable subscribers with activeMQ. I create the subscriber
connection.setClientID(clientId);
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
destination = session.createTopic("my.topic");
MessageConsumer consumer = session.createDurableSubscriber(destination, subscriptionName, null, false);
I then receive the message synchronously. No message as expected.If use ActiveMQ web admin console, it shows the topic, with enqueue and dequeue of 0.
I then run the test to send messages, and then exits
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
destination = session.createTopic("my.topic");
MessageProducer producer = session.createProducer(destination);
producer.setDeliveryMode(DeliveryMode.PERSISTENT);
String text = "Hello World! (" + i+ ")";
message = session.createTextMessage(text);
producer.send(message);
The test exits and if I look at the ActiveMQ admin console, it now shows two messages enqueued, 0 dequeued
This seems ok
Finally i run the consumer test again. It receives the messages just fine. But again the ActiveMQ admin console shows two messages enqueued and , 0 dequeued. It always shows 0 dequeued.
I even changed the test so that instead of doing a sync receive it used an async receive with a listener...but still the same behavior. The topic dequeued value is always 0 on the Topics base of the ActiveMQ web console.
View Replies
View Related
Feb 14, 2014
I have some class called sorted to sort the linked list through the nodes of the list. and other class to test this ability, i made object of the sort class called "list1" and insert the values to the linked list.
If i make other object called "list2" and want to merge those two lists by using method merge in sort class. And wrote code of
list1.merge(list2);
How can the merge method in sort class know the values of list1 that called it as this object is created in other class.
View Replies
View Related
Apr 22, 2015
I have a list of 100,000 + names and I need to append to that list another 100,000 names. Each name must be unique. Currently I iterate through the entire list to be sure the name does not exist. As you can imagine this is very slow. I am new to Java and I am maintaining a 15+ year old product. Is there a better way to check for an existing name?
View Replies
View Related
Dec 30, 2014
I receive a java.lang.NumberFormatException: For input string: ""DepDelayMinutes"" error when trying to filter a list and then assign the results to a new list.
I have edited the code so it is an int that throws the exception so it isn't the presence of a string that is causing the error - java.lang.NumberFormatException: For input string: ""0914"" .
I believe the issue is because of the two sets of double quotes but I do not understand how they came about. The original dataset does not have any quotes whatsoever.
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.function.Predicate;
import java.util.stream.Collectors;
public class FilterObjects extends Thread{
[Code]...
View Replies
View Related
Jul 5, 2014
Suppose i have given a List<Intervals> list; I am iterating over list and inserting each element from list into BST, if time require to insert into BST is logn then what is the total time require to insert all the elements into tree ?
logn or nlogn ?
View Replies
View Related
Oct 5, 2013
So we have an assignment regarding a linked list implementation of a given list interface.
In my list interface, the method contains(T anEntry) is defined.
In the LList implementation, contains is already implemented as part of getting the core methods in.
Now I am being tasked with the following:
Provide a second implementation of the method contains2(T anEntry) that calls a private recursive method
Private boolean contains (T anEntry, Node startNode) that returns whether the list that starts at startNode contains the entry anEntry.
I've written the private recursive method already. That's not an issue (at least not right now).
But what I don't understand is how startNode is supposed to be populated when this private contains method is called from the public contains2 method? contains2 only takes one parameter: anEntry. the private method takes two parameters: anEntry and startNode. How am i supposed to provide startNode when I am calling contains2?
View Replies
View Related
Feb 14, 2015
I saved the content of an ArrayList<SomeClass> to a file
I write each serialised object to the file by adding to each an id that is created with list.indexOf(object) (and saved before each object)
So I can repopulated the list with SomeClass objects in the same order as they were and once I reload the file, I do list.add(id,object)...
Well my list is populated upside down, I mean the first object is the last and the other way around, If i remove the id when I do the add(object)...
View Replies
View Related
Oct 6, 2014
I have this ListInterface class that has operations for my linked list and a LList class. The Llist and ListInterface classes are perfect. My job is to create a driver, or a demo class that showcases these operations. That being said, heres the driver so far:
import java.util.*;
public abstract class DriverWilson implements ListInterface
{
public static void main(String[] args)
{
LList a = new LList();
[code]....
View Replies
View Related
May 1, 2014
public void add(int d){
listNode l = new listNode (d, null);
l.next = first;
first= l;
}
public list Sum2List (list l1, list l2){
//variables
int sum;
[Code] .....
But I have a problem in my first listNode where it ll be pointing to null, thus in the sum2List method the program checks the while condition into false and doesn't go through the loop.
View Replies
View Related
Jan 7, 2015
I am creating a program called "Mad Math Machine". This program is to generate random arithmetic questions, with integers ranging from -12 to 12, for the user to answer. The user has three lives. Once they get more than three questions wrong, they run out of lives, and their "score" (the number of questions they answered correctly) is taken.
I have the large chunk of the program (the arithmetic questions and answers) completed. The only part I am stuck on is the scoring system. I believe that arrays would be useful for this task, but I have little idea of where to start. Here is what the scoring list should be able to do:
- It should print out the top ten recent players and their scores.
- A separate list should show the top-two highest scores of all time.
*I didn't think it was relevant, but I can include the program code. Up until this point, I have created methods to keep track of the score, but I have simply left them commented out so I could build the rest of the program.*
View Replies
View Related
Mar 18, 2015
I have arraylist which is already set in controller side.
I need to update the same list(removing few elements in the list) in jsp based on few conditions like, the selected values in dropdown kind off.
How to update the list in jsp?. Is there any way to handle this using JSTL?.
Instead of using scriptlets, can i do this?
View Replies
View Related
Nov 3, 2014
I first learned how to program with BYOB. In BYOB there were variables and lists. Variables worked the same as Java and lists were groups of variables. To create a list, I would give it a name. I could then add variables to this list as items throughout the program. Here's an example of what a list would look like:
[[List]]
item 1: Hello
item 2: world
I could then call upon item 1 or item 2 and delete them if needed. In Java, I want to have 3 lists of variables into which I put user input as variables. The code would look something like the following: (stuff with "//" at the end is detailing what I want to do, not actual working code)
import java.util.*;
public class Archives {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
[code]....
View Replies
View Related
Oct 16, 2014
How do you format an arraylist?
Mine looks like this:
[<?xml version="1.0" encoding="UTF-8" standalone="no"?> <DefEnv id="Dev">, <Envt id="Test">, , <DB id="DM">,
But I want it to look like: I'd prefer if the '[' , '<>' and ',' were not on them also but I'm not too bothered about that bit.
[<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<DefEnv id="Dev">,
<Envt id="Test">, ,
<DB id="DM">, ]
View Replies
View Related
Mar 26, 2014
Add accounts on a list, each account contain: name, accountCode, pinCode, balance.
How to show list sort by balance?
View Replies
View Related
Mar 30, 2014
I want to create a quiz in java in which questions and options will be retrieved from mysql database.I want the options to be in drop down list format.And I am using jsp for presentation layer and all the connections with database are in java..how to retrieve the options from database to drop down menu...
View Replies
View Related
Apr 1, 2014
I have figured out, how to diplay basic datatypes of an entity / object in a dataTable, but I can't find a way to display a List<String>.
I also tried it with ui:repeat, but the space, where it should appear, stays empty. This is my code right now:
Product.java (the entity)
...
@ElementCollection
@CollectionTable(name="NeededRessources", joinColumns=@JoinColumn(name="product_id"))
@Column(name="resource")
private List<String> neededResources;
...
And the page: index.xhtml
<ui:repeat value="#{product.neededResources}" var="t">
#{t}
</ui:repeat>
View Replies
View Related
Feb 11, 2015
I need to choose the value of a list item in jsp. There are many employees in various departments and i need to choose that employees in department wise.
Example. I have two list items in jsp
1. Select dept_no,dept_name from departments
2. SElect emp_name from employees, departments where emp_dept_no=curr_dept_no and curr_dept_no = dept_no
These two are the list items. When i choose the department from the first list item i need to display the employees in that particular department in the second list.
View Replies
View Related
Apr 24, 2014
I have a HashMap with multiple values at runtime. In that map one key has empty value , how to avoid this value to add in a list. some code sample is below:
public HashMap getLoop2Map(Map map, String xslFile , int sheetNo){
HashMap hashMap = new HashMap();
try{
ArrayList list = new ArrayList();
System.out.println("-------Map : " +map);
list.add(map.values());
//System.out.println("------- boolean : " +val);
System.out.println("------List : " +list);
}
I do not want to add the empty value in a list ...
result in map
-------Map : {Free Text Entry={},
Mouth / Throat={Free Text Entry={Free Text Entry=<FORMFILENAME>EditChartPhysicalExamText.form
</FORMFILENAME><TAG>"<MUSCULOSKELETAL.PE>"</TAG>},
Salivary Glands Condition={Salivary Glands Condition=MouthAttribute},
Examination Overview- Mouth / Throat={Examination Overview- Mouth / Throat=MouthAttribute},
Tonsils={Tonsils=MouthAttribute},
[Code] ....
View Replies
View Related
Aug 13, 2014
I want a list of all running application in my java code.I got list of all the running processes by my code but I dont want that. I want only main Application. Like if two application are running in my pc then I should get only those application's Name.
View Replies
View Related
Aug 29, 2014
I want to use the list element inside my scriptlet. Below is my code which is not working.
<c:forEach var="social" items="${sociallist}">
<%
callToFunction(%>${social}<%);
%>
</c:forEach>
How can i access social var inside scriptlet.
View Replies
View Related
Sep 16, 2014
I'm trying to mark a list of locations on a map. probem is how to get this list object inside javascript? This is the JSP
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
[Code] ....
View Replies
View Related
Apr 5, 2014
I am creating a hangman game and I want to read in a list of words from a text file, but after the user inputs the name of the text file. I get 'Exception in thread "main" java.lang.NullPointerException'.
Here is the code, where I think the problems lie.
public void runModel(){
ArrayList<String> pirateWordsList = new ArrayList<String>();
System.out.println("What is the name of the file you would like to load? (The file included is called piratewords.txt'");
Scanner in=new Scanner(System.in);
String file=in.next();
load(file);
[Code] ....
The full error message is this:
Exception in thread "main" java.lang.NullPointerException
at uk.ac.aber.dcs.pirate_hangman.Model.load(Model.jav a:108)
at uk.ac.aber.dcs.pirate_hangman.Model.runModel(Model .java:45)
at uk.ac.aber.dcs.pirate_hangman.Main.main(Main.java: 6)
View Replies
View Related
Feb 20, 2015
I'm trying to print sentences from a list which read in sentences from a text file. I'm able to get the program to print out the sentences in a numbered format corresponding to each sentence, but the first sentence in the list is always repeated, same as the next sentence. How can I print out the contents of a list in a numbered format (1. _ 2. _ 3._) without repeating sentences?
Here's my code:
package jacsim;
import java.util.Scanner;
import java.io.File;
import java.util.Arrays;
import java.util.List;
import java.util.ArrayList;
import java.io.FileInputStream;
[Code] ....
The output looks like:
Input Sentences:
1:The cat in the hat
2:The cat in the hat The cat sat on the mat
3:The cat in the hat The cat sat on the mat Pigs in a blanket
Sorted Single Arrays:
I'm trying to make it look like:
1. The cat in the hat
2. The cat sat on the mat
3. Pigs in a blanket
View Replies
View Related
Jun 12, 2014
I am reading a file and sorting a list, and I cannot figure out why I am getting an error on line 15 that contains the following code
Collections.sort(sortedContributorList, new Contributor());
This is the error I keep getting:
The method sort(List<T>, Comparator<? super T>) in the type Collections is not applicable for the arguments (LinkedList<Contributor>, Contributor)
import java.util.*;
import java.io.*;
public class myhashTable {
public static LinkedList<Contributor> sortedContributorList = new LinkedList<Contributor>();
public myhashTable(){
[code]....
View Replies
View Related
Sep 21, 2014
Right, so I got this method that creates and sorts 2 lists. What I want to do is merge these lists into a third list, have it sorted, and then print the contents of the list. The problem is, I'm tired and I don't remember how I can print it.
import java.util.*;
public class MergeTwoSortedListWilson {
public void CHANGEME() {
// To do
ArrayList<String> aList = new ArrayList<String>();
aList.add("Banana");
[Code] ...
MergeTwoSortedListWilson.java:35: error: cannot find symbol
System.out.println(aList);
^
symbol: variable aList
location: class MergeTwoSortedListWilson
1 error
View Replies
View Related