Jorge Sereno

Greenhorn
+ Follow
since Jun 30, 2012
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Jorge Sereno

Hi Q Ball,
take a look at this libs

LibVLC

I think it can help you.
11 years ago
Hi,
I'm looking to do some internationalization in my working example of javafx.
I've looked in the internet and i found no valuable information how to do this.
I'm using a resource bundle but i don´t no how to update the rendered elements in the window to the new resource bundle.

Here's my example code:


the bundles are


and



How can i refresh all the elements in my scene to get the new value from bundle
when i press one of the language buttons.

Anyone can help me in that?
Thankx in advance
11 years ago
Specifying,
how can i define the global path for the method looks for?

Example.
A structure like
src
--pt.ts1
----Main.java
--pt.ts2
----MainTest.java
resources
--file.txt

when i use somewhere in the app looks for the path resources/file.txt.
11 years ago
Hi
Where is the path the method

looks for.

Thankx
11 years ago
I've coded this so far:



and i'm getting an error:
11 years ago
Hi,
I have the webservices url from my project server, just like this one "http://srv-project-t/pwa/_vti_bin/PSI/Project.asmx?wsdl".
this is the webservice for interact with projects in the MS PROJECT.
I consume the wsdl and generate the client (.jar) using the native function in eclipse.

I'm looking for a while in the internet how to instantiate the generated client from another java app and list all projects in the MS Project server.
Anybody can help me with this?

11 years ago
Hi Mohana thankx for the reply. Now it make more sence, and i know that code works.
The problem is when you type "localhost:8080\helloexample\startPage.html" like you said
you are not calling the welcome file, you are calling the action. To call the welcome file
you must type "localhost:8080\helloexample" and this is the problem, it gaves me the error:



I already have the welcome file like you said.
without "struts.action.extension" it works just fine when i type "localhost:8080\helloexample"
11 years ago
Hi thankx for your comment. but helloexample is just the application name, you can´t add extension. when i type "localhost:8080\helloexample" it must read the welcome file and then de refreshed action page wish is "startPage" action.
11 years ago
Hello. I have simple hello world application named "helloexample" where me index.hml, wish is my welcome file defined in web.xml, as the code:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh"
content="0;URL='startPage'">
</head>
</html>
where startPage is an action on struts.xml.
so i just type in browser localhost:8080\helloexample and the aplication starts running the startpage action.

With the “struts.action.extension” set to “html” in my struts.xml it does not work, whithout works fine. I can’t find the problem.
Anyone can help me?

Thankx
11 years ago