Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. essive

    Can HTTP eWay support simultaneous end users?

    I assume you're speaking about using SeeBeyond's HTTP eWay as a client NOT as a server. You must have a web server in front of SeeBeyond in order to use it as a HTTP server. If you are using the HTTP eWay as a client you must use the Java eWay Connection with a MultiMode eWay to get the...
  2. essive

    URGENT - Unix Processes & SeeBeyond

    By look at the core message: mmew_enczip (Information): StackTrace: java.io.IOException: Not enough space This is suggesting a disk IO capacity problem. Look at where your files are located (volumes) and run df -k to see your utilization on the disk Are you out of tmp space?? Check you...
  3. essive

    Setting Application path

    Just get the objWord.Path property - that will return the default Office path.
  4. essive

    Unable to create Jintegra JVM object on Windows XP

    Ugh! It turned out to be simple. According to SeeBeyond you get this error if you have not assigned a delimiter in the ETD builder. Just by going to Edit/Delimiters and add an End Delimiter and the problem goes away for JIntegra. I could just 'scream' at SeeBeyond for the lost hours on that...
  5. essive

    Unable to create Jintegra JVM object on Windows XP

    MORE INFO: J-Integra and Windows XP As stated in the related article "JDKs and Platforms Supported by J-Integra", J-Integra is fully supported on the Windows XP platform. However, the following error may occur if you are using J-Integra v1.5.4 or older. The error reported below has...
  6. essive

    Unable to create Jintegra JVM object on Windows XP

    Ok, so now I eat my own words!! The company I work for just upgraded my system last night to Windows XP Pro. I now get an error compiling ETDs. I THINK THIS IS A JINTEGRA/.NET PROBLEM. I have 2 systems - one with WebSphere Studio (WSAD) and SeeBeyond and other with Visual Studio .NET and...
  7. essive

    Unable to create Jintegra JVM object on Windows XP

    I would suggest fully uninstalling your JDK (make sure you are on 1.3.1 NOT 1.4) removing any JDK references in the registry and environments and then reinstalling JDK1.3.1_08 and set the CLASSPATH - c:\jdk1.3.1_08\lib\tools.jar and PATH - c:\jdk1.3.1_08\bin
  8. essive

    Unable to create Jintegra JVM object on Windows XP

    It seems like your jintegra installation and JDK may be the culprit - look at this: Accessing Java Objects running anywhere from COM clients running on unmodified Windows machines In this article I will show you how you can access Java objects (including EJBs) running on any Operating System...
  9. essive

    String compression

    This could be helpful: import java.io.*; import java.util.zip.*; public class SaveEmployee { public static void main(String argv[]) throws Exception { // create some objects Employee sarah = new Employee("S. Jordan", 28, 56000); Employee sam = new...
  10. essive

    Search within a String and Extract one word based on one character

    Then just use the Right command - you can check for beginning or ending: If Left(vData(j), 1) = "K" Or Right(vData(j), 1) = "K" -------------------------- Code added Dim j As Integer Dim sData As String Dim vData As Variant 'Test data sData = "This is...
  11. essive

    Search within a String and Extract one word based on one character

    The easiest way - maybe not the most efficient is: Dim j As Integer Dim sData As String Dim vData As Variant 'Test data sData = "This is a test of the K1212121|0 string that has another K334343 value." 'Get the array of space delimited words into an array...
  12. essive

    All, Do we get any problems if ewa

    This should not be an issue unless the eWay has a memory leak. Version 4.5.2 has some components that leak over time. 4.5.3 seems to fix this problem.

Part and Inventory Search

Back
Top