1
vote
1answer
28 views
Using Jython From Eclipse Plugin
I am having a tough time getting jython to work properly when run from an Eclipse plugin. I have a simple object factory that loads a python module conforming to a Java Interface. …
0
votes
1answer
23 views
Jython 2.1 __getattr__
I am trying to implement a wrapper/proxy class for a java object (baseClient) in jython v2.1. Everything seems to be working ok except when the following statement is encountered:
…
2
votes
4answers
68 views
Developing Eclipse plugins without Java
Is it possible to create Eclipse plugins/program Eclipse RCP apps without Java? (preferably in Jython)
1
vote
2answers
20 views
How can I add jars dynamically to jython, inside script?
I am writing a package in python that talks to an ldap server. I want it to work in CPython and Jython. To get it to work with CPython, I have successfully coded against python-lda …
1
vote
2answers
36 views
Jython exception handling within loops
Hi,
I am using Marathon 2.0b4 to automate tests for an application.
A shortcoming of wait_p, one of the script elements provided by Marathon, is that its default timeout is hardc …
3
votes
2answers
74 views
How can I make the PyDev editor selectively ignore errors?
I'm using PyDev under Eclipse to write some Jython code. I've got numerous instances where I need to do something like this:
import com.work.project.component.client.Interface.IS …
0
votes
2answers
47 views
Why does Jython refuse to find my Java package?
I know it's something silly, but for some reason Jython refuses to find javax.swing. I'm using Java 1.6.0_11. This is my start-up script:
@echo off
"%JAVA_HOME%\bin\java" -Xmx1 …
1
vote
1answer
73 views
BeautifulSoup with Jython
I just tried to run BeautifulSoup (3.1.0.1) with Jython (2.5.1) and I was amazed to see how much slower it was than CPython. Parsing a page (http://www.fixprotocol.org/specificatio …
0
votes
1answer
27 views
Set WAS Process Definition Environment Entries using Jython?
Is it possible to add custom Process Definition environment entry in a WebSphere Application Server using a jython script?
I see that the existing properties in the server.xml are …
1
vote
2answers
121 views
Jython 2.5.1: “ImportError: No Module named os”
I looked through the other posts and bug reports and couldn't figure out what's causing this. I'm using Jython 2.5.1, in a Java project in Eclipse (Ubuntu 8.10). It has been added …
0
votes
1answer
36 views
XStream-like XML serialization for Jython objects?
Jython is great for creating custom data structures on need basis, but how to store their instances? Apparently it's possible to do it via java.io.Serializable, but ObjectStreams a …
1
vote
1answer
57 views
Using Jython with M2Eclipse
I currntly use M2Eclipse for the majority of my Java development and Pydev for Python/Jython development within Eclipse. I would like to use Jython to prototype and test classes wi …
0
votes
0answers
37 views
Jython 2.5.1, Eclipse & os.path
I have imported the Jython2.5.1 standalone jar into my build path in Eclipse. Whenever I run any Jython code from within Eclipse, that uses the os.path module, the app barfs:
'Exe …
1
vote
1answer
48 views
Why can I not import the Python module ‘signal’ using Jython, in Linux?
I can't find any reference to the 'signal' class being left out in Jython. Using Jython 2.1.
Thanks
2
votes
2answers
80 views
Using/Creating Python objects with Jython
HI,
lets say I have a Java interface B, something like this. B.java :
public interface B { String FooBar(String s); }
and I want to use it with a Python class D witch inherits …
