Patricia Fulk

Ranch Hand
+ Follow
since Sep 10, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Patricia Fulk

Hi All,

I am kind of new to the XML world and need some help. I have a web service that is giving me some XML. I need only a portion of the XML document to send it to another process. What would be the easiest way to do this? I could use the String object to pull the XML, but I wanted to see if there is a way to do this through XML API.

An example of what I am looking for:

XML returned from Web Service:

<?xml version="1.0"?>
<book>
<cover>
<title>Book1</title>
<author>John Doe</author>
</cover>
<contents>
<chapter id="chapterOne">
<title>Chapter 1: Introduction</title>
<paragraph>Here is paragraph one</paragraph>
</chapter>
<chapter id="chapterTwo">
<title>Chapter 2</title>
<paragraph>Here is paragraph two</paragraph>
</chapter>
</contents>
</book>

XML needed for next process (need as String just as it is below):

<chapter id="chapterOne">
<title>Chapter 1: Introduction</title>
<paragraph>Here is paragraph one</paragraph>
</chapter>
<chapter id="chapterTwo">
<title>Chapter 2</title>
<paragraph>Here is paragraph two</paragraph>
</chapter>


Any help would be greatly appreciated.
Thanks in advance,

Trish
Have you been able to fix this problem. I am also having this problem.

Thanks,
Trish
18 years ago
Hi All,

I am looking for some info on WebSphere CE. Can anyone give me some good links to documentation on WebSphere CE? Also, can you cluster with this version of WebSphere? If you have used WebSphere CE versus WebSphere 4,5 or 6 can you give me the pros and cons?

Thanks!
19 years ago
Thanks for the reply. I will look at this. :-)
20 years ago
Hello,

I have a program which is creating a key for encrypting and decrypting text in DES. The key is stored to a file using object serialization (JDK 1.3).



Now that I have this file I have given this file to someone else to use in .Net C#. They are to use this key file in order to decrypt a message that I have sent them.

Does anyone know if this is possible? Can you tell me how the data is stored to the file? I looked at the API for the ObjectOutputStream, but it is pretty vague to me.

Thanks for your help,

Trish
20 years ago
Hi,

I need some help in finding out what the default stream cipher mode is. Also, does it pad by default? I am using the following:



But, I don't know what the mode and padding is by default. Can someone help me out?

Thanks,

Trish
20 years ago
Hi Paul,

What it is telling you is that the provider that you are trying to use is not installed. In other words it can not find the DES provider. I am not sure how you installed JCE, but to find out if you have the provider look for the sunjce_provider.jar. This jar file should contain the DESCipher class file. Now, if you installed the JCE as an add on you will need to make sure that you have made the JCE accessible in the java.policy file.

I hope this helps.

Trish
20 years ago
Hi,

I need to verify that I am encrypting correctly using RC4. My output from the encryption is:

Mk8TYnKdcB%2BT1FzxgYVeIg6XwesVkNyRhQ11fk55IEeYl5vvZNQBBOI%3D

But, what another vender is expecting is more along these lines:

2O%13br%c2%9dp%1f%c2%93%c3%94%5c%c3%b1%c2%81%c2%85%5e%22%0e%c2%97%c3%81%c3%ab%15%c2%90%c3%9c%c2%91%c2%85%0du%7eNy+G%c2%98%c2%97%c2%9b%c3%afd%c3%94%01%04%c3%a2

They are quite a bit different. The code that I am using is as follows:



Can someone help me out?

Thanks,

Trish
20 years ago
Hi!

I am hoping that someone else has experienced this. I have a single application server and two enterprise applications on that server. Both of the enterprise applications have their own default error page (set in the ibm-web-ext.xmi files for each enterprise application). The problem that I am encountering is that the first enterprise application installed is handling all errors. For example, I have installed application A then application B. I create an error in a jsp that is in application B. I run the jsp and see the default error page for application A instead of the default error page for application B. Can anyone tell me how to fix this problem? Or why this problem is occuring?


Thanks,

Patricia
21 years ago
Hi!
Has anyone done part two using UML 2.0? I don't see where Sun has specified which version of UML to use. Does it matter? The reason I am asking is because I bought the book UML Distilled Third Edition which covers UML version 2.0.
Can someone help?
Thanks,
Trish
Ilja,
What I meant by "work with PowerBuilder" is can you set up test cases that would run agains PowerBuilder.
Does FitNesse have a GUI interface? I haven't had a chance to download the examples that they have.
Thanks for all your help,
Trish
21 years ago

Originally posted by Jeff Bosch:
Thanks, Ilja. Have you used the Fitnesse tool?


Hi Jeff,
Will the Fitnesse tool work with PowerBuilder? I am also guessing that
this is a free tool? Is it easy to use? What are some disadvantages of this tool?
Trish
21 years ago
Hi!
I need some help. Our company is looking for a functional testing tool. It needs to have a GUI interface and be simple to use because it would be nice for developers and QA testers to use the tool. If at all possible we would like it to be scalable meaning that our web applications as well as our PowerBuilder applications could use the tool (nice to have, not required). We would like to be able to kick off testing and not have to babysit it. We would like reports to be produced after testing.
By the way, our web applications use html, servlets, jsp, and ejb's.
Can anyone give me somewhere to start looking. If you have a tool that you have used or are currently using let me know what you like or dislike about it.
Thanks,
Patricia
21 years ago
Hey All!
I need a plugin for WSAD 5.0 (eclipse) that will automatically create a jar. For instance, say you have two projects. One is a java project and the other is a java utility project. The java project is dependant on the utility project. What I need is a plugin that will automatically build a jar file for the utility project and put the jar file in the other java project. I found a plugin that creates a zip file (com.ibm.sample.zip.creation) but it doesn't work with WSAD 5.0. Does anyone know of a different plugin or where I can get an updated version for com.ibm.sample.zip.creation?
Thanks in advance!
Trish
Hey All,
I have a question about using CVS and WSAD 5.0. I have an ear file that has all of my classes and jsp files. I can import this ear file into WSAD but, the ear file doesn't contain the source. The source is in CVS. I can connect to CVS and get the source code through WSAD. Problem is how do you tie the two together. Can someone help me out or point me in the right direction?
Thanks in advance,
Trish