Search found 42 matches

by William
Sat Aug 04, 2012 3:47 pm
Forum: XSLT and FOP
Topic: XPath on a 'broken' HTML page.
Replies: 2
Views: 2107

Re: XPath on a 'broken' HTML page.

Hello George.

Read the bumph and it sounds just what I need, thank you for your time.

--
William
by William
Sat Aug 04, 2012 2:32 pm
Forum: XSLT and FOP
Topic: XPath on a 'broken' HTML page.
Replies: 2
Views: 2107

XPath on a 'broken' HTML page.

Hello, I'm trying to scrape data off a web page that I have no control over and during testing I've saved the page to the local file system. When I execute the transform I get various errors regarding the errors within the page, is there any way I can bypass this to get to the data I want? If I corr...
by William
Thu Aug 02, 2012 6:52 pm
Forum: Common Problems
Topic: Stopping an XQuery Transform
Replies: 10
Views: 4401

Re: Stopping an XQuery Transform

Costin wrote:William,

Thank you for the details.
Sure, it would be great if you could email us the files for analysis.

Best,
Costin
Sent.
by William
Thu Aug 02, 2012 3:34 pm
Forum: Common Problems
Topic: Stopping an XQuery Transform
Replies: 10
Views: 4401

Re: Stopping an XQuery Transform

Hello, Could you please provide more details about the transformation you were trying to perform ? The transformation is used to concatenate XML files into a single output while removing duplicates. Also, what transformation engine are you using? Saxon EE-9.4.0.3 Are you trying to perform the XQuer...
by William
Thu Aug 02, 2012 2:43 pm
Forum: Common Problems
Topic: Stopping an XQuery Transform
Replies: 10
Views: 4401

Stopping an XQuery Transform

Hi, I'm running oXygen XML Developer 14.0, build 2012062215 on Debian x64, while running an XQuery I noticed a mistake in my XPath so I decided to stop the transformation about 20 minutes in. Some 7 minutes later it (oXygen) is still telling me "Transformation - is stopping ...". Now after...
by William
Wed Jul 25, 2012 5:11 pm
Forum: General XML Questions
Topic: Sequential attribute values.
Replies: 2
Views: 2524

Re: Sequential attribute values.

Excellent Adrian. Thank you very much for your time and effort, I really do appreciate it.

--
William
by William
Fri Jul 20, 2012 10:05 am
Forum: XSLT and FOP
Topic: Transform - system cannot find path specified
Replies: 11
Views: 8346

Re: Transform - system cannot find path specified

Can I suggest that you remove the space from the Path.

SystemID: C:\LSP Project\LSP7.xml

And maybe use : SystemID: C:\LSP_Project\LSP7.xml

Instead.

--
William
by William
Thu Jul 19, 2012 7:06 pm
Forum: General XML Questions
Topic: Conceptual XML loading question
Replies: 1
Views: 1840

Re: Conceptual XML loading question

Hi.

You don't say what or how this process will be hosted so maybe with a bit more information you may well get more replies.

But for what its worth I'd do this in Java and use my own Content Handler.

--
William
by William
Thu Jul 19, 2012 6:53 pm
Forum: General XML Questions
Topic: Sequential attribute values.
Replies: 2
Views: 2524

Sequential attribute values.

Hello, Is there an easy way to verify that an attribute's value is sequential from a series of elements and if not what ones are missing? Assuming that the values started at 1 I could use @id = position() but that doesn't answer the what's missing question. I would appreciate your thoughts on this. ...
by William
Tue Jul 17, 2012 12:08 pm
Forum: XSLT and FOP
Topic: Location of extension classes
Replies: 5
Views: 3113

Re: Location of extension classes

Hi, By default Oxygen uses Java SE 6 (1.6). If you compile the Java classes with JDK 1.7, you will have to compile them with 1.6 compatibility. e.g. javac -source 1.6 -target 1.6 or if you use an ant script use the javac task like this: <javac source="1.6" target="1.6"> Regards,...
by William
Tue Jul 17, 2012 11:31 am
Forum: XSLT and FOP
Topic: Location of extension classes
Replies: 5
Views: 3113

Re: Location of extension classes

Hello, It doesn't matter where the .jar library is located, what's important is to configure the transformation scenario and add it there as an extension. Edit the scenario: Document > Transformation > Configure Transformation Scenario (there's a corresponding action in the toolbar), Edit . In the ...
by William
Tue Jul 17, 2012 10:43 am
Forum: XSLT and FOP
Topic: Location of extension classes
Replies: 5
Views: 3113

Location of extension classes

Hello, Can you tell me where I put a .jar file containing a class I want to use within an XSLT transformation? I simply can't get this to work I have tried every conceivable logical location. I'm using XML Developer v14 Ent Ed on Debian (x64). Within my stylesheet declaration I'm using : xmlns:xalan...