User Profile

Collapse

Profile Sidebar

Collapse
mcelrob5
mcelrob5
Last Activity: Nov 13 '12, 02:51 PM
Joined: Jun 2 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Which version of OpenSSL is best for Windows Server 2003?

    I am trying to create an application link between Atlassian Jira and a Liferay application. I have consulted the Atlassian support sites and they pointed me to use OpenSSL to create private and public keys for the two servers. My issue is that OpenSSL seems to be a piece of Linux OS software (i could be wrong, very wrong) and I am working with Windows Server 2003 OS; so I understand that there is are versions for Windows machines available but which...
    See more | Go to post

  • Why do I keep getting a "service-specific error 0 (0x0)" when i try starting tomcat?

    I have installed a tomcat 6 server on Windows Server 2003 as a service; and every time I try to start it it keep terminating with a service-specific error 0 (0x0). Now I have gone through and starting and configured this server via the startup.bat just fine but when no matter how many times I install/remove the service it fails to start. Does anyone know why this happening and how I can fix it?...
    See more | Go to post

  • I think I have found the solution. It has to do with the fact that I am using dhtmlmodal window object. I cannot directly reference the window object (auditpop) in the onclose function instead i have to define it in reference to its content so i had to replace the auditpop in the onclose function with this.content. ...

    Thank you for your replies.
    See more | Go to post

    Leave a comment:


  • I haven't checked because the overall application is only meant to run in IE. I used this site

    http://www.codeproject.com/Articles/...window-or-vice

    and it got to the point i am right now. But still it doesn't seem to work. Could it be that the child window is an iframe or something?

    Also, I have my internet options set to allow almost anything and everything to occur...
    See more | Go to post

    Leave a comment:


  • The section of code in the onclose function where it is trying to gather information from the child window (auditpop). Mainly thr section of below.

    Code:
    {var audit_data = auditpop.document.getElementById("audit_main_div").innerHTML;
                                                    var map = {"app" : auditpop.auditedApp
                                                                  , "user" :
    ...
    See more | Go to post

    Leave a comment:


  • mcelrob5
    replied to Writing html to a file using java?
    I was talking about storing it in a text file on the host. however, I have decided to go a new route and am attempting to store it in a database. I have another question with an issue i am having in this area though: http://bytes.com/topic/javascript/an...-parent-window
    See more | Go to post

    Leave a comment:


  • How do you access child window data from the parent window?

    I have this onclose function for a window that in it it is suppose to grab data from the child window and store it the parent the parent then sends it via ajax to and jsp to store the data in a database. The code is shown below

    Code:
    var auditpop;
    
    	
    
    	function auditPopup(){
    		var map = {"userid" : temp_user};
    		jQuery.ajax({
    			type: "GET",
    ...
    See more | Go to post

  • mcelrob5
    started a topic Writing html to a file using java?

    Writing html to a file using java?

    I have a JSP that while being used holds the current state of an audit. What I want is to be able to grab the current state of this html and write it to a file so that the progress being made to the audit is saved for future progress. How can this be done using Java?
    See more | Go to post

  • How can i do a comparison on responseHTML/responseText?

    I have an ajax call that looks like this:
    Code:
         		jQuery.ajax({
         			type: "GET",
         			url: '/configaudit-portlet/audit_App2App_list.jsp',
         			dataType: "text",
         			data: map,
         			global: true,
         			success: function(responseText){
         				if(responseText == ""){
         					createJvmTable();
         				}else{
    ...
    See more | Go to post

  • how do I join two complex Statements with different number of targets

    I am working on a SQL statement the works on relationships mapped amongst software and hardware.

    The result I am looking for from the following statement should look like this: (the example table is in code style for formatting purposes)
    Code:
    -----------------------------------------------
    | App Name | Server | Environment | DR Server |
    -----------------------------------------------
    | App1     | svr1
    ...
    See more | Go to post

  • Thanks that is exactly what I was looking for
    See more | Go to post

    Leave a comment:


  • mcelrob5
    started a topic How do I disable a page behind a pop-up?

    How do I disable a page behind a pop-up?

    I creating a pop-up audit application for my company and when the application runs it is suppose to prevent the user from using the web page until the audit is complete. I was wondering if anyone knows how to do that or could point me to a reference that might help?

    The pop-up is a wizard, which means the pop-up is part of the page and not a separate window. I don't know is that helps but it is some more information about what i am...
    See more | Go to post

  • mcelrob5
    started a topic How do I tell the browser not to cache an xml file?
    in XML

    How do I tell the browser not to cache an xml file?

    I am writing an intranet application that uses Fusion Charts to display the results of a database query. My problem is the results are stored in an xml file that gets rewritten with each search. The Fusion Chart uses the xml file to render the results into a graph. The problem is that the xml file gets cached by the webserver when the application gets loaded and the chart only displays the data from a when the application last ran. What i need to...
    See more | Go to post

  • mcelrob5
    started a topic Why wont this AJAX method work?

    Why wont this AJAX method work?

    I am writing an application that should query an sql server every time the application is run with parameter specified by the user. the .load() method calls for another .jsp page to be opened in a div on the main page. I believe i am calling the function correctly but it keeps giving me a null exception for the other .jsp page. The code is below and the second jsp page is stored locally with the main page.

    Code:
    jQuery("#d_results").load("Lookup_Results.jsp?date1="+date1+"&ReportType=45");
    ...
    See more | Go to post

  • Actually I found that the name 'getRange' was the cause of the problem so I just changed the name toi 'createRange' and it works fine now. But again thank you for your advice.
    See more | Go to post

    Leave a comment:


  • mcelrob5
    started a topic The onchange command wont call my function

    The onchange command wont call my function

    I think I may have already posted something similar but I cant find it so i will psot it again.

    I have a drop-down selection box on an HTML page and when you select a value in the box that changes the value it should call a function. However it doesn't work and it is driving me nuts because it should be right the way i see it.

    If anyoine sees what I am missing please let me know what it is and how i can fix it....
    See more | Go to post

  • mcelrob5
    replied to Why won't this these links work?
    in Java
    Never mind I figured the problem out it was my url/pathname
    See more | Go to post

    Leave a comment:


  • mcelrob5
    started a topic How do i make text wrap to fit a window?

    How do i make text wrap to fit a window?

    I have an application that opens new windows and right now the windows re-size and have scroll bars to see all of the text.

    I was wondering if there is a way to make the text wrap or auto-format itself so that it doesn't require a horizontal scroll bar or need to re-size the window. Like how a Wikipedia page will reformat when you re-size the window.

    Can anyone help me out?
    See more | Go to post

  • mcelrob5
    started a topic Why won't this these links work?
    in Java

    Why won't this these links work?

    Ok I am writing a portlet using jsp with embedded java. The Java code accesses a file stored in a folder on a drive which contains HTML files located in the same folder however when i create links to access these HTML files the browser says it cannot find the page. Is it my pathname/url or is it my code both are below:

    URL:
    String path = "C:/liferay-portal-5.2.3/tomcat-6.0.18/webapps/ROOT/html/";

    Code to...
    See more | Go to post
    Last edited by Niheel; Jun 4 '10, 08:10 AM. Reason: added code tags
No activity results to display
Show More
Working...