URGENT ASP - JSP conversion

Im looking at diffrent software that converts ASP/VB to JSP/Java.
I would appreciate any insights, info etc.
Im especially interested how would that software deal with VB dll's, COM+ objects,
ASP and JavaScript. Any help GREATLY appreciated.

I would appreciate any insights, info etc.
Im especially interested how would that software deal
with VB dll's, COM+ objects,
ASP and JavaScript. Do a manual rewrite, and use a Java-2-COM-Bridge,
eg from IBM alphaWorks. Don't hope you'll be able
to do the conversion automatically.

Similar Messages

  • Need help on integrating htmldb with asp/jsp/php

    Hello there, we have a few existing htmldb applications running at the moment, and now we would like to develop some asp/jsp/php applications. However there is one issue we still haven't solved yet, which is the SESSION(Login) problem. We don't know how the session is being generated, how to pull out session values manually from db etc etc.
    If you have done this before or any ideas, will be much appreciated.
    Thanks very much
    James

    James,
    sometimes it makes sense to look at these things from a different (and broader) perspective.
    Especially in a context of a corporation it makes sense to use a Single Sign On (SSO) server for authentication (usually against LDAP) . Something like Netegrity Siteminder, Oracle SSO Server (as part of Oracle Internet Application Server) or something similar.
    Then you could have all your applications use the authentication method of the SSO server which will keep track of the valid session and the applications that participate in the SSO context.
    On the Apex side you would have to write a custom authentication scheme to leverage that functionality, the session handling will no longer be of any concern to you.
    Just a different way to look at it.
    ~Dietmar.

  • ASP & JSP Sessions

    Can we share ASP & JSP sessions? Is there any possibility?
    regards
    Sreenivas

    Wouldn't do much good even if you could (which I'm not at all sure about).
    You couldn't share the data in the session as it's not stored in common format (Java Objects vs. ActiveX objects), though that might depend on the appserver in question and in some special cases Strings might be sharable.
    At the very least you'd need an appserver that can run JSP and ASP side by side in the same web application.

  • ASP ,JSP in one file

    Hi...i need to include ASP code in the JSP file...is it possible...if so how to run that file since each requires a different server.....plz advice me...
    Thanks in advance...

    But my problem is that i need to control the width of the Excel sheet cells dynamically...i tried to include macros in the JSP file ..but they are not getting reflected in the Excel sheet as JSP does not recognise the Macros(i am not sure abt this also...)...so what i am planning is writng some ASP code (which can modify my Excel sheet as it recognises Macros...even i am not 100% sure abt this..i have to test)in JSP page ....Plz Advice me
    Thanking you

  • ASP , JSP, both make me giddy. Oh what fun!

    Dear people,
    Any idea on how to change the following ASP sections of code into JSP? If possible, please post the solution in its entirely....if it isn't too much to ask. The codes aren't particularly long.
    -ASP REDIRECT - how to change to JSP REDIRECT? Session has already been created in JSP.
    if Session("UserRights") = 1 then
    response.redirect("student.asp")
    else if
    Session("UserRights") = 2 then
    response.redirect("teacher.asp")
    else if
    Session("UserRights") = 3 then
    response.redirect("admin.asp")
    else
    response.redirect("login.asp" )
    Darren

    <%
    String rights = session.getAttribute("UserRights");
    String target = "";
    if (rights.equals("1")) {
        target = "student.jsp";
    } else if (rights.equals("2")) {
        target = "teacher.jsp";
    } else if (rights.equals("3")) {
        target = "admin.jsp";
    } else {
        target = "login.jsp";
    response.sendRedirect(response.encodeRedirectURL(target));
    %>

  • CGI to JSP Conversion

    I was wondering if I had a message board similar to this one that was built in C++ CGI, how long would it take to convert, on average, to a JSP forum. I am basically looking for some kind of conversion time frame from CGI to JSP. Opinions are welcome...

    I cannot give you any estimate or anything in terms of an actual number.
    However I do know that your time will be significantly affected in the desired direction by using software such as Jive http://www.jivesoftware.com

  • XML file transfer between ASP & JSP

    Hi !
    Actually the requirement is to provide an interface between an ASP application and a JSP application.
    What i could understand is that commonly used way is transfering XML files using SOAP.
    But, i have no idea on SOAP and need few clarifications.
    1. What are the roles of SOAP, WSDL and UDDI ? and does SOAP needs WSDL or UDDI and web services?
    2. Do i need to use web services just to transfer XML file from ASP to JSP ?
    3. is HttpURLConnection also used in this approach ?
    actually what my purpose is to know that to implement SOAP for XML file transfer what all i need to do ?

    Hi !
    Actually the requirement is to provide an interface
    between an ASP application and a JSP application.
    What i could understand is that commonly used way is
    transfering XML files using SOAP.
    But, i have no idea on SOAP and need few
    clarifications.
    1. What are the roles of SOAP, WSDL and UDDI ? and
    does SOAP needs WSDL or UDDI and web services?SOAP is a transfer protocol for exchanging structured and typed information : go to the w3 web site to understand better.
    WSDL are files to describe a web service : you will find inside an access point and signatures from your methods; if you want it's a little bit like an interface in java but with more informations. You don't need wsdl for soap.
    Last uddi is a repository for web services. You need to publish your service inside a Uddi registry and it's associated access point and tmodel (go to oasis web site for more informations). It's a little bit like yellow pages. You need to use Uddi only if you want to discover serviecs dynamically.
    Usually you use SOAP by calling a web services, as a web service is over the SOAP layer. The advantages of using SOAP is that it describes your data too. In fact if you have complex types to transfer between your two applications the partners have to know how to understand these data.
    2. Do i need to use web services just to transfer XML
    file from ASP to JSP ?Well, what do you want to transfer exactly between your applications. If this is just a text stream you can simply send your file by opening a socket. But if you want to work with your informations, to use them (that means you have to build the corresponding object) you could use web services as your informations are explicitely defined : what do you want to do exactly ? Last but not least if you have already XML file you can get your info directly and parse ir or ????
    3. is HttpURLConnection also used in this approach ?Yes you could call a servlet or something like that to transmit your informations
    actually what my purpose is to know that to implement
    SOAP for XML file transfer what all i need to do ?you have to be more precise with what you want to do with the info; simply display it or ???
    PA
    http://www.doffoel.com

  • ASP - JSP Communication

    Hi All,
    My requirement is to get a couple of values from an asp page to a jsp page.
    For this i submitted an asp form containing my values to jsp as follows
    <form action="http:/nnn/uiwud/A.jsp">
    <input name = "userId" value="scott">
    </form>
    In the jsp page, I got these values and set it in the session. Now I used <jsp:forward > to forward it to an other jsp page which contains two frames.
    My problem here is i am not able to retrieve the values from the session from any of these frame pages. and i found that the session id is also different in the first jsp page from which i forwarded and the frame pages.
    When i do away with the frames, or when I am not coming from the asp page, I am able to retrieve the values from the session.
    Could any one please explain what is the problem in using frames when, the request is originated from an asp form submission.
    Thanks in advance,
    Sujith.

    So here's what happens:
    - asp page is sent to browser
    - browser returns filled-in form to jsp
    - jsp stores values in session, then forwards to another jsp
    - this jsp sends frameset response to browser
    - browser should pick up the session cookie from the response
    - browser should ask for the html page in the first frame, giving the session cookie as part of the request
    - browser should ask for the html page in the second frame, giving the session cookie as part of the request
    Now, if cookies are turned off in your browser, or if they're removed by something else (like a proxy) between the browser and the server, then a new session would be created each time a jsp is accessed. This would give you a new session for each of the "framed" html pages.
    Now, to make your app independent of whether the browser will receieve cookies or not, you need to call HttpServletResponse.encodeURL() on each of the URLs you're sending back to the browser. In this case, the jsp producing the frameset needs to pass the urls of the html pages to be put in each frame through this method. What encodeURL does, is to add the session id to the URL, so that the browser will pass it back as part of the URL, and not as a cookie.
    Btw, a good "development proxy", which will show you the complete text of all requests and all responses that go between your browser and the server, is invaluable when you need to debug something like this. I believe recent versions of JBuilder (and other IDE's) contain a proxy like this. If you download the Axis project from Apache Jakarta, it contains a proxy called tcpmon, which is also quite good.

  • Urgent, Help on conversion: xml to flat file

    Dear experts,
    Here is the scenario, XML FILE ->XI-> JMS
    In JMS recevier side, we use localejbs/AF_Modules/MessageTransformBean to convert xml to flat file.
    Transform.Class: com.sap.aii.messaging.adapter.Conversion
    Transform.ContentType: text/plain;charset=utf-8
    xml.conversionType: SimpleXML2Plain
    xml.fieldFixedLengths: 5,20,5,8
    When input source xml file contents are non-unicode, it works fine.
    But when the contents contain unicode characters such as Chinese word,  it works but with wrong length in the output flat file. It seems xi treat one Chinese word length is 1. Actually, one chinese word should take 2 bytes.
    My question is how to make XI handle unicode characters  with correct lengths while conversing to flat file.
    Thanks in advance.

    Jai Shankar
    Thanks for your response.
    I am already using the standard adapter modules provided by SAP:
    localejbs/AF_Modules/MessageTransformBean
    Transform.Class: com.sap.aii.messaging.adapter.Conversion
    My input file's encoding is UTF-8
    "You need to change the encoding scheme according to your input file" , do you mean change the output file's encoding or else?
    I can't find the article you mentioned: "Encoding schemes in XI", Would you please give me the link?
    Thanks a lot.

  • Forms to JSP conversion

    Hi all,
    I have some forms developed in Oracle 9i forms builder.
    I want to convert them in JSP.
    Can I do this by using JHeadStart?
    I have downloaded JHeadStart 10G.
    But I can not use it with JDeveloper 9i
    What else can I use for converting 9i forms to JSP???
    Thanks in advance.
    Reagards,
    MK

    I should read http://www.oracle.com/technology/products/forms/htdocs/10g/FormsJavaSOD.html first of all.
    Regards
    Grant Ronald
    Forms Product Management

  • Urgent! QT conversion automatically turn HD interlace video to Progressive

    I try to use quicktime to convert a HD clip to SD. I'm sure the HD clip was interlaced. But after using quicktime conversion to make a SD version, it turn out deinterlaced. I didn't click on the "Deinterlace" option in the QT conversion window. And then I use a SD clip convert again it came out normal. I'm using QT 7.5.5. Is there any ideas? Thanks.

    Frankly, the converted one looks better! But this is just a static shot! I think you'll know when it has quick pan, it will look a bit jerky. Especially when the director shot the video by 50i instead of 25p.
    My procedure was setup a ProPes 1440x1080 50i project, capture HDV 1080-50i footages via firewire with playback deck setup also 50i. Edit sequence is 50i upper field. After finish editing, output a dvd by the usually way (Upper field, 16:9 Aspect). Found out the dvd was not interlaced and double check field order setting is upper field. Then tried output a upper field SD qt to check still become de-interlaced. Trashed my preferences and no effect. Then I use videos from other old projects still the same. At this moment, I realize its not my capture setting but its the quicktime conversion cause the problem. But ONLY in HD file not SD. SD video is fine and its interlaced.
    I have no clue at all. Did Apple has any direct support for users??

  • Please help me urgently, Ajax Jsp issue (Escape Character issue)

    Hi all,
    in my application
    i am making an ajax call with a paramter
    like
    http://www.abc.com/Login.jsp?query=%25
    and iam encoding that parameter with encodecomponent() function of javascript
    but
    in my servlet iam getting the parameter as
    query=%
    how to solve this
    if i am not clear
    i will try to explain clearly again
    so it is failing to decode it again
    how to solve this issue
    iam using firebug debugger
    in that it is showing th url as specified above
    but in params tab it sho

    Can you use URLDecoder.decode(String) on the parameter
    [http://java.sun.com/j2se/1.4.2/docs/api/java/net/URLDecoder.html]

  • Urgent: Transport Connection Conversion: Wrong Setting : How to correct

    Hi Friends In our BI Ssystem somebody have wrongly put the Settings in Transport Connect -- "Conversion Button" The entry as DS4CLNT200 (Development BI System ---QS4CLNT200 (Quality BI System))
    Which should never be the case . It should always be DE4CLNT200 Development ECC System - QE4CLNT200 Quality ECC System.
    Please help me how to resolve this I just want to delete it but when i try deleting it gives error that entry not found in DE4CLNT200 . I guess it is already assigned now.
    please help me , will really appreciate it .how to delete this.
    Thanks
    Poonam

    Hi Poonam,
    Please take a look at this OSS note - 524554 (Storing destination in the BW environment), 325525 (Copying and renaming system in a BW environment).
    Hope this helps,
    Bye...

  • Swings to JSP conversion

    We have a huge swing application which was developed long back, Is there any tool where in we can convert the swing GUI into JSP. We need only the frontend to be changed , the business logic remains same in the back end

    yeah, JSP is not a front end GUI... HTML is the front end GUI. And there's sure no simple way to convert Swing to HTML. There's not very many overlapping components, except labels, text fields and comboboxes. If you could write a converter to do that, I bet you could make some money off it.

  • Urgent Help - Timestamp conversion in ORACLE 9i

    Hi Friends
    I need a help .We are using DB servers at different GEOgraphical locations. The timestamp is stored as GMT/UTC using the conversion function SYS_EXTRACT_UTC . But when retrieving from DB again I need to convert to the equivalent local time of DB Server . Is there is any way to do this?
    Thanks in advance
    gopal

    Mr Gopal
    I am also having the same problem .
    If you find the answer pl mail to me
    thanks in advance.
    Suresh

Maybe you are looking for