The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

Abstract Class and @Inject

I'm writing a web application and i need for many controller and DAO. I created the classes like you can see here (Class Diagram) . The problem is that i would like the CSCIControllerImpl class ...
0
votes
1answer
28 views

How to inject ServiceManager into a user defined class

In the doc it's said:"By default, the Zend Framework MVC registers an initializer that will inject the ServiceManager instance, which is an implementation of ...
0
votes
1answer
24 views

Loading external javascript in a bookmarklet via a script loader

Here is my current setup: I have a script on our Sharepoint. Each user adds this in a bookmarklet to use it. If I make an update, they have to go and set up the bookmark all over again. What I ...
0
votes
0answers
23 views

C# Webbrowser inject Javascript in html loaded js

Currently I redefine the functions window.open, window.unload, etc.; as a void function. for (int C = 0; C < webBrowser1.Document.GetElementsByTagName("head").Count; C++) { ...
0
votes
1answer
24 views

CDI @Inject throws NullPointerException on Websphere 8.5

I've deployed an ear on websphere 8.5. the application is composed of an ejb jar and a webapp ( Spring MVC ). Here is my ejb : @Stateless public class DiscrepanciesServiceImpl implements ...
0
votes
1answer
51 views

Spring autowire stops working for classes on the Tomcat classpath

Inside my library FooLibrary.jar Spring instantiates class com.example.FooImpl which has a property bars. I have lots of Bar instances also instantiated by Spring. A set of bars is autowired into ...
-2
votes
0answers
21 views

Append .exe inside another .exe file (VIRUS)? [closed]

I have a virus code in C language, that virus is a self replicating virus! in this code virus overwrites the target file, but i want a virus to copies itself in target file and both of them (virus and ...
0
votes
0answers
27 views

Chrome Extension - Replace text areas with RTF Editor

The university I go to uses FCK editor on text areas. I want to replace it with a different one. I was going with nicEdit, but I'm not set on that. I'm having trouble with the second script ...
0
votes
0answers
16 views

How to inject scripts into iOS Mach-O binary?

Is there a way by which I can inject scripts to an iOS app's binary? preferably on a non jailbroken device. I came across someone who happened to tell me that its possible but was unwilling to ...
1
vote
1answer
58 views

using inject to count elements in array

I'm trying to count the occurrences of elements in an array and save it in a hash. I'd like to use the inject function. I have this code: a = ["the","the","a", "it", "it", "it"] ...
0
votes
0answers
28 views

How to reuse objects in Request scope with (any) injector ? between different scopes

I'm using Google Guice 3.0 and RequestScoped. I understand that for the same Request, Guice will give me the same instance. But, it will not reuse the instance for different Request, even if other ...
0
votes
0answers
15 views

How can I prevent jQuery or the browser from re-requesting an injected script file with timestamp? [duplicate]

I'm using jQuery (1.9.1) and a custom plugin, which loads HTML text-snippets via Ajax and injects them into the page. My problem is, that when I am injecting a script tag like this: <script ...
1
vote
0answers
27 views

FromHandlePermanent always returns null in injected DLL

I am writing a test automation program, that must interact with a grid control in a legacy MFC application. My program must connect to the legacy app, and read the data from the grid. I know the HWND ...
0
votes
1answer
38 views

Android: Inject_Events

I have created a custom event. I want to execute that event, and I figured I would need Instrumentation.sendPointerSync(event) to execute it. However, I want to execute this event in other apps as ...
0
votes
0answers
23 views

Hook the process

Sorry for Google Translate Good day! There was probably a common problem. Put intercept (hook) to create a process (C++ / C). Common methodology: creation process with parameter CREATE_SUSPENDED the ...
0
votes
1answer
43 views

Spring unresolvable circular reference

I know this has been brought up before and that this is a noob question, but I cant get my head aroud how to fix this. Im getting unresolvable circular reference errors when starting up my app. ...
0
votes
0answers
41 views

Spring @EnableCaching with @Inject/@Autowired issue

I found an issue when using @EnableCaching annotation together with @Inject/@Autowired in @Configuration class: Simple example to reproduce: Configuration class: @Configuration @EnableCaching ...
0
votes
3answers
43 views

Build an array using inject

I'm trying to build an array using inject. I expect consents to be an array of ParticipantConsent objects. Each ParticipantConsent object can :have_many ParticipantConsentSample objects. I expect ...
-1
votes
1answer
32 views

jquery mobile and append/injecting HTML

check this out. <?php include('configdb.php'); if(isset($_POST['submit'])) { $email = trim($_POST['email']); $password = trim($_POST['password']); $query = "SELECT * FROM user ...
0
votes
1answer
27 views

Dotnetnuke - How to insert a module inside another module?

I am writing a Tabs module in which I want to be able to display other modules like html, third-party modules etc. How do I achieve that? C# code please.
0
votes
1answer
36 views

When adding book values to @Entity values turn out null JavaEE

i have probably done something very stupid and i have tried and tried for about 4 hours now and i can't figure out what is wrong. When i try to add a book to the database, MySQL increments but all the ...
0
votes
0answers
58 views

How to implement Instrumentation sendPointerSync inside Activity oncreate()?

Inside my Activity, I want send few key event. However, I do not know why it throw SecurityExcecption. protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0
votes
0answers
98 views

Inject javascript to remote webView and set visibility:visible after javascript render

I'm developing an application for Android sempicissima with a single WebView remote. My need is to change some parts of the html page using javascript and this happens without any problems, but just ...
0
votes
0answers
31 views

fetch value from cookie giving issue

When user login first time I set the user value in cookie and then set cookie in the response. This is my code snippet: Cookie cookie = new Cookie("userId","1"); cookie.setMaxAge((7*24) * 60 * 60); ...
3
votes
2answers
81 views

Memory efficiency of each versus reduce/inject in Ruby

I have a large array (10+ million objects) that I want to combine into a single object (for simplicity, let's assume here a string) and run each element in the array through some processing ...
4
votes
1answer
155 views

Java EE 6 @Inject lazy? [duplicate]

I am doing some refactoring and reviewing of the application that we are currently developing. While doing this I found that more beans are injected and I think making they loading in an lazy manner ...
1
vote
2answers
70 views

Please explain this method

I have a question regarding the stars in this method: def multiplies_array(*numbers) numbers.inject(1, :*) end What is the meaning of the star in the argument list (*numbers)? And what is the ...
3
votes
1answer
853 views

Getting Unknown Provider error when injecting a Service into an Angular unit test

I'm fairly new to Angular and have reviewed all the similarly related questions on Stack Overflow but none have helped me. I believe I have everything set up correctly but am still getting an 'Unknown ...
0
votes
1answer
40 views

FastInject not detecting objectId in Parsley

I have just started using Parsley recently and I ran into this issue. The thing is I have a custom component in my project, which is "configured" by Parsley and has a piece of code as follows: ...
0
votes
0answers
25 views

How to inject an image in every printed document sent to a printer

Firstly I am aware of PrintProcessors. I even made one and worked. I made what I needed but the problem is that this solution does not work for every possible printer. In my case I need to append an ...
0
votes
0answers
176 views

trying to use /dev/uinput to turn on built-in webcam

Basically, I would like to turn on my notebook's built-in webcam from a shell or shell script, without having to phisically press Fn+ESC every time I want to turn it on. I've been trying to activate ...
1
vote
1answer
96 views

Injecting a stateless EJB into Servlet

I'm trying to inject a stateless EJB into servlet. But it is not working. Did I understand something wrong? If I do this in a @WebService annotated class, I can use the injected EJB without problems. ...
-3
votes
2answers
78 views

Send input value to javascript function [closed]

I am trying to build a website page for meeting services. I would like to use the gotomeeting button: http://support.citrixonline.com/en_US/gotomeeting/all_files/GTM020011 However, I would like to ...
0
votes
1answer
54 views

Mootools inject not working on ul correct

In page I have that code: <ul> <li>Name 1</li> <li>Name 2</li> <li>Name 3</li> <li>Name 4</li> <li id="beforeInsert"></li> ...
0
votes
1answer
89 views

Can someone explain what com.google.inject does?

I've seen a class declared with its only constructor being annotated with @Inject. And I don't see the one constructor being called anywhere in the entire project. So two questions: <1> What does ...
0
votes
0answers
113 views

Cannot inject SessionScoped CDI bean into WebServlet in JBoss 7.1 [closed]

I currently have a SessionScoped CDI bean within my JSF based Java EE project running inside JBoss AS 7.1. The bean can be Injected into other beans and I can also access the bean from various JSF ...
0
votes
2answers
301 views

Simulating arrow key presses in android

I am currently working on an app that simulates the d-pad (up, down, left, and right). The problem is that I can't figure out how to send those key presses to other applications. Currently, I am ...
0
votes
1answer
51 views

CDI injection when instanciating bean manually

I know this kind of question is coming back regurarly but I wonder if there is a way to instanciate manually a bean (with new Xxxx()) and have my injection done. Maybe using BeanManager but I don't ...
1
vote
2answers
105 views

Spring, property value when having separators [duplicate]

I am loading a properties file with @PropertySource("classpath:propFile.properties") In this property file I have the following entry: list.of.stg=a,b,c Further, I do: ...
0
votes
1answer
175 views

JSF Deploy Exception: Unsatisfied dependencies for type EntityManager

I just followed the ticket-monster tutorial(http://www.jboss.org/jdf/examples/ticket-monster/tutorial/Introduction/) and added a rest-service class to my solution. package projectFoo.rest; import ...
4
votes
1answer
396 views

Spring JavaConfig for java.util.Properties field

Can you please tell me how to use Spring Javaconfig to directly load/autowire a properties file to a java.util.Properties field? Thanks! Later edit - still searching for the answer: Is it possible ...
0
votes
1answer
71 views

Mootools inject after not working

Mootools code: window.addEvent('domready', function() { var homeLink = $$('a.pathway'); new Element('a', {'href': '/ru/produktsiya', 'html': 'Click me!'}).inject(homeLink, 'after'); }); ...
0
votes
2answers
447 views

Injecting Javascript to Iframe

I am making a live editor for my website. I have the CSS and HTML parts down, only issue is the JS part now. Here is a snippet of the code var frame = $('#preview_content'), contents = ...
0
votes
5answers
117 views

Combine hash keys if values are same

I need to take a hash like this: {"10am - 2pm"=>"Sun - Sat", "5pm - 7pm"=>"Sun - Sat"} and create a new hash like this: {"10am - 2pm, 5pm - 7pm"=>"Sun - Sat"} If any values are the same ...
0
votes
2answers
203 views

Javascript : Inject inline code to a html tag

I would like to add my Google Analytics tracking event code inline to my input html tag : <input class="addtobag"> to have something <input class="addtobag" ...
1
vote
1answer
688 views

Spring Social: Superclass has no null constructors but no arguments were given

Im using Spring Social in my application: <spring.framework.version>3.2.0.RELEASE</spring.framework.version> <hibernate.version>4.1.9.Final</hibernate.version> ...
1
vote
1answer
74 views

Mootools Injecting new element

I am trying to inject one element in the div which have parent class . There is no problem when i am injecting with the ID selector but once i try using class selector it doesn't work.. ...
3
votes
1answer
92 views

How to add a “Virtual”/“Shadow” Group to SimpleCursorTreeAdapter?

i have a problem concerning a SimpleCursorTreeAdapter which i subclassed in my project. It currently communicates with a SQLite-DB over a ContentProvider. Now, i have the problem that i would like to ...
0
votes
0answers
176 views

Someone injected a javascript code on my website code [closed]

so i was just loading my website and i noticed a reference to wap-ttd.in website and also some other .ru site and it was an include statement to a .js file on those sites. the actual sites are down ...
0
votes
2answers
296 views

SQL Injection : Syntax error

I have an essay on SQL injection ( what it is - how its done and how can it be avoided ). I get what it is and how it works. But i dont seem to be able to reproduce an injection on my database. I ...

1 2 3 4 5