Posts by Mr Guliarte • 267 points
14 posts
-
0
votes1
answer18
viewsA: Syntax error in SQL when starting OW2 Orchestra
"Solved"! If you are interested: I gave up Mysql and started using H2. In the end, the file Hibernate.properties was like this (does not include the commented lines (the ones that start with #)):…
-
0
votes1
answer74
viewsQ: Translate Connection String H2 (JDBC) to Mysql (JDBC)
Personal talk, I’m trying to run the OW2 Orchestra software, and it comes with a standard connection string belonging to H2 in the following format:…
-
0
votes1
answer18
viewsQ: Syntax error in SQL when starting OW2 Orchestra
I recently downloaded the OW2 orchestra software. In the user manual, after going through all the configuration steps (I’m using Mysql as my BD. The other settings are the defaults, including the…
-
0
votes0
answers196
viewsQ: Glassfish: Trying to access the server through HTTPS
I have Glassfish 4.0 running on my local machine. I then sought to add an http Listener, as follows: asadmin> create-http-listener --listeneraddress 127.0.0.1 --listenerport 80…
-
3
votes1
answer345
viewsQ: How do I make a Content Script communicate with iframe element extension for Chrome?
I developed a Toolbar for Google Chrome, adding it to the pages via an iframe: var iframe = document.createElement('iframe'); iframe.id="iframeId"; iframe.src =…
-
1
votes1
answer309
viewsQ: Placing static HTML element as an extension for Chrome
I would like to make an extension for Google Chrome that enables a horizontal bar that is always available at the top of the user window. The placement would be something like: The question is: how…
-
2
votes0
answers571
viewsQ: Reply XML does not display accented characters
I am using Jersey in a WEB application. In this application, I return an XML file to client requests (which are web-browsers). In order to ensure accented character display, I wrote the Produces…
-
2
votes2
answers842
viewsQ: How to add a JAR library to a Java project without IDE?
Save. I’m having trouble adding the Jfreechart library to my Java project (using Windows 8). I’ve unpacked Jfreechart, but I don’t know what to do from there. Since I’m an old school programmer and…
-
2
votes1
answer588
viewsQ: Wildfly - "Netty connector not found in main configuration file"
I added a connection factory to the file standalone-full of Wildfly.: <jms-connection-factories> <connection-factory name="K19Factory"> <connectors> <connector-ref…
-
1
votes2
answers554
viewsA: Emergence of the excited Div
Use the property Transition: <div id="mymenu" style="transition: 2s ..."> 2s is the amount of seconds that will last the animation. You can also specify Transition for a specific property:…
-
0
votes1
answer309
viewsQ: Java: Filereader reading number not in the file
I have this TXT: 1,2,4,8,7 45,18,27,35,44 17,45,2,8,6 And I want to read this matrix to a Java array. Here’s the code: public static void main(String[] args){ double[][] pesos = null; String…
-
1
votes1
answer177
viewsQ: SQL: Can I have clauses in Groupby that don’t appear in Select?
I know I can’t have clauses in select that don’t appear in Group By. But is it possible otherwise? For example: Select B From Table Group By A,B
-
1
votes1
answer1251
viewsQ: (Eclipse) Jboss never starts
I’m having trouble trying to get Jboss to run on the Eclipse self. I installed Jbossastools, downloaded the latest version of Jboss, and did the standard installation procedure of new server in…
-
2
votes1
answer1199
viewsQ: When I use an "Endpoint" class to publish a Web Service, where is the WSDL created?
For example, I have 3 classes in my Web Service: 1 - A SEI (the web service interface): package calc; import javax.jws.WebService; import javax.jws.WebMethod; import javax.jws.soap.SOAPBinding;…