Error with getOutputStream() when trying to post xml

Hi all,
I'm attempting to use the URLConnection class to open up a connection to peform an http post with some xml. When opening the data output stream, I am receiving an internal server error (500) on my Weblogic 6.1 server. The error is occuring at the line:
DataOutputStream dataOut = new DataOutputStream(urlConn.getOutputStream());
My entire code is as follows:
<%@ page language="java" %>
<%@ page import="java.util.*"%>
<%@ page import="java.io.*"%>
<%@ page import="java.net.*"%>
<%
String xml_body = "<my xml string here>"
String sourceUrl = "https://wwwcie.ups.com/ups.app/xml/Rate";
URL url = new URL(sourceUrl);
URLConnection urlConn = url.openConnection();
// prepare input and output, disable caching, set properties
urlConn.setDoInput(true);
urlConn.setDoOutput(true);
urlConn.setUseCaches(false);
urlConn.setRequestProperty( "Content-Type", "application/x-www-form-urlencoded");
urlConn.setRequestProperty("Content-Length", " " + xml_body.length());
((HttpURLConnection)urlConn).setRequestMethod("POST");
// Post output
DataOutputStream dataOut = new DataOutputStream(urlConn.getOutputStream());
dataOut.writeBytes(xml_body);
dataOut.flush();
dataOut.close();
//DataInputStream dataIn = new DataInputStream(urlConn.getInputStream());
// do input processing here
%>
Am I implementing this class properly? I see a NumberFormatException being thrown...but at not sure why this is occuring for my data output stream. The error in my log is as follows:
####<Jul 29, 2003 1:53:45 PM MDT> <Error> <HTTP> <SFNTCPSWEB> <PIA> <ExecuteThread: '44' for queue: 'default'> <> <> <101020> <[WebAppServletContext(7077998,PORTAL,/PORTAL)] Servlet failed with Exception>
java.lang.NumberFormatException: 1191
     at java.lang.Integer.parseInt(Integer.java:414)
     at java.lang.Integer.parseInt(Integer.java:463)
     at weblogic.net.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:168)
     at jsp_servlet.__send1._jspService(__send1.java:119)
     at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
     at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
     at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
     at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2502)
     at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2208)
     at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
     at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

Hi,
Assuming that you are making a valid connection to the https://
(What jre are you using, 1.4+ ?)
A DataInputStream is for reading primitive Java types, yea? Which is why you get a parse integer error, no doubt from some URLencoded data. Try using a BufferedInputStream instead. If it is not a tremendous amount of data, append it in a string buffer then use a java.net.URLdecoder to get the true data :-)
Hope this helps,
Thunder
Hi all,
I'm attempting to use the URLConnection class to open
up a connection to peform an http post with some xml.
When opening the data output stream, I am receiving
an internal server error (500) on my Weblogic 6.1
server. The error is occuring at the line:
DataOutputStream dataOut = new
DataOutputStream(urlConn.getOutputStream());
My entire code is as follows:
<%@ page language="java" %>
<%@ page import="java.util.*"%>
<%@ page import="java.io.*"%>
<%@ page import="java.net.*"%>
<%
String xml_body = "<my xml string here>"
String sourceUrl =
"https://wwwcie.ups.com/ups.app/xml/Rate";
URL url = new URL(sourceUrl);
URLConnection urlConn = url.openConnection();
// prepare input and output, disable caching, set
properties
urlConn.setDoInput(true);
urlConn.setDoOutput(true);
urlConn.setUseCaches(false);
urlConn.setRequestProperty( "Content-Type",
"application/x-www-form-urlencoded");
urlConn.setRequestProperty("Content-Length", " " +
xml_body.length());
((HttpURLConnection)urlConn).setRequestMethod("POST");
// Post output
DataOutputStream dataOut = new
DataOutputStream(urlConn.getOutputStream());
dataOut.writeBytes(xml_body);
dataOut.flush();
dataOut.close();
//DataInputStream dataIn = new
DataInputStream(urlConn.getInputStream());
// do input processing here
%>
Am I implementing this class properly? I see a
NumberFormatException being thrown...but at not sure
why this is occuring for my data output stream. The
error in my log is as follows:
####<Jul 29, 2003 1:53:45 PM MDT> <Error> <HTTP>
<SFNTCPSWEB> <PIA> <ExecuteThread: '44' for queue:
'default'> <> <> <101020>
<[WebAppServletContext(7077998,PORTAL,/PORTAL)]
Servlet failed with Exception>
java.lang.NumberFormatException: 1191
     at java.lang.Integer.parseInt(Integer.java:414)
     at java.lang.Integer.parseInt(Integer.java:463)
at
weblogic.net.http.HttpURLConnection.getOutputStream(Ht
pURLConnection.java:168)
     at jsp_servlet.__send1._jspService(__send1.java:119)
at
weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
at
weblogic.servlet.internal.ServletStubImpl.invokeServle
(ServletStubImpl.java:265)
at
weblogic.servlet.internal.ServletStubImpl.invokeServle
(ServletStubImpl.java:200)
at
weblogic.servlet.internal.WebAppServletContext.invokeS
rvlet(WebAppServletContext.java:2502)
at
weblogic.servlet.internal.ServletRequestImpl.execute(S
rvletRequestImpl.java:2208)
at
weblogic.kernel.ExecuteThread.execute(ExecuteThread.ja
a:139)
at
weblogic.kernel.ExecuteThread.run(ExecuteThread.java:1
0)

Similar Messages

  • Error with BAPI_CASHJOURNALDOC_CREATE when trying to post vendor

    Hi
    When using BAPI for Cash journal, I can create documents if they are expenses and go to the GL account. But when I do it to a vendor/customer I get errors.
    Below is my code. Please give me an indication where I'm going wrong.
    My error is "Specify a G/L account valid in company code XZA1". This indicates I need a GL account but I'm posting to a Vendor/Customer and that is not required to be entered when you it through the front end.
    DATA: pc_header LIKE BAPI_CJ_HEADER.
    DATA: pc_items LIKE BAPI_CJ_ITEMS OCCURS 0 WITH HEADER LINE.
    DATA: return LIKE bapiret2 OCCURS 0 WITH HEADER LINE.
    pc_header-COMP_CODE = 'XZA1'.
    pc_header-CAJO_NUMBER = 'BD'.
    pc_header-DOC_DATE = '20070914'.
    pc_header-PSTNG_DATE = '20070914'.
    pc_header-CURRENCY = 'ZAR'.
    pc_items-TRANSACT_NUMBER = '1'.
    pc_items-P_PAYMENTS = '100'.
    pc_items-Vendor_NO = '0000010000'.
    *pc_items-GL_ACCOUNT = '0000620000'.
    *pc_items-COSTCENTER = '1090ZA'.
    *pc_items-TAX_CODE = 'V0'.
    APPEND pc_items.
    CALL FUNCTION 'BAPI_CASHJOURNALDOC_CREATE'
    EXPORTING
            HEADER = pc_header
    *IMPORTING
           OBJ_KEY = doc_details_returned
    TABLES
            ITEMS = pc_items
            RETURN = return.
    DATA: error Type C.
    error = 'N'.
    LOOP AT return where type = 'A' OR type = 'E'.
        error = 'Y'.
        EXIT.
    ENDLOOP.
    IF error = 'N'.
        call function 'BAPI_TRANSACTION_COMMIT'.
    ELSE.
        call function 'BAPI_TRANSACTION_ROLLBACK'.
    ENDIF.
    Thanks in advance

    Hi
    When using BAPI for Cash journal, I can create documents if they are expenses and go to the GL account. But when I do it to a vendor/customer I get errors.
    Below is my code. Please give me an indication where I'm going wrong.
    My error is "Specify a G/L account valid in company code XZA1". This indicates I need a GL account but I'm posting to a Vendor/Customer and that is not required to be entered when you it through the front end.
    DATA: pc_header LIKE BAPI_CJ_HEADER.
    DATA: pc_items LIKE BAPI_CJ_ITEMS OCCURS 0 WITH HEADER LINE.
    DATA: return LIKE bapiret2 OCCURS 0 WITH HEADER LINE.
    pc_header-COMP_CODE = 'XZA1'.
    pc_header-CAJO_NUMBER = 'BD'.
    pc_header-DOC_DATE = '20070914'.
    pc_header-PSTNG_DATE = '20070914'.
    pc_header-CURRENCY = 'ZAR'.
    pc_items-TRANSACT_NUMBER = '1'.
    pc_items-P_PAYMENTS = '100'.
    pc_items-Vendor_NO = '0000010000'.
    *pc_items-GL_ACCOUNT = '0000620000'.
    *pc_items-COSTCENTER = '1090ZA'.
    *pc_items-TAX_CODE = 'V0'.
    APPEND pc_items.
    CALL FUNCTION 'BAPI_CASHJOURNALDOC_CREATE'
    EXPORTING
            HEADER = pc_header
    *IMPORTING
           OBJ_KEY = doc_details_returned
    TABLES
            ITEMS = pc_items
            RETURN = return.
    DATA: error Type C.
    error = 'N'.
    LOOP AT return where type = 'A' OR type = 'E'.
        error = 'Y'.
        EXIT.
    ENDLOOP.
    IF error = 'N'.
        call function 'BAPI_TRANSACTION_COMMIT'.
    ELSE.
        call function 'BAPI_TRANSACTION_ROLLBACK'.
    ENDIF.
    Thanks in advance

  • Internal order - error message M7064 when trying to post GR in MIGO

    Hi All,
    When trying to post GR against an internal order in MIGO system gives error message M7064
    "Document 000009000030   does not contain any selectable items"
    I'm not familiar with CO orders. What shall I check and how? Could you please help?
    In KO03:
    Status of order: REL  DLV  GMPS SETC VCAL
    Allowed transactions: I can see e.g. RMRU, RMWA, RMWE, RMWF
    Isn't it possible hat somehow the status of the order controls it? But how?
    Please help.
    Thanks,
    Csaba
    Edited by: Csaba Szommer on Feb 3, 2010 4:21 PM

    HI,
    I'm not sure if you got a chance to look at the long text of the error message, which shows the possible reasons and procedure to follow. You may want to check if any of these reasons applicable in your case..
    Diagnosis
    The document or document item entered cannot be adopted.
    Possible reasons for this are:
    The document items have already been processed
    (Suggest zero lines indicator set?).
    the document items have been deleted or are blocked.
    the document items have been created for a different plant.
    (for reservations only) movements are not yet allowed for the reservation items.
    (for reservations only) the document items are retrograde components of the order. These are posted using the order confirmations.
    A confirmation must exist for the document items.
    The document items must be released first.
    The document is an R/2 document.
    Procedure
    Make sure your entries are correct.
    If the system has already processed the total quantity, you can set the Suggest zero lines indicator. The system will suggest the quantity zero for the items that have already been processed.
    If you have entered a particular item, cancel the item. If you do not enter an item, the system searches all of the open items in the document.
    If the document is a purchase order, production order or a reservation, you can enter search criteria in the dialog box.
    You access the dialog box by choosing Enter with reference on the initial screen.
    If the document is an SAP R/2 document, you have to cancel it manually by entering the reversal movement type.
    Hope this helps.

  • Error with Flash when trying to publish

    Hi,
    I am currently working on a project in Flash and I can not
    publish, test or view the action script. I have around 20 different
    Flash files that I have created but only 2 work 100% fine. But last
    week they were all working fine.
    When I try to open the SWF it is all blank!
    Here is the error code, AppName: flash.exe AppVer: 9.0.0.494.
    I am not the only person to have this issue, as the link will
    prove,
    http://www.developmentnow.com/g/68_2007_9_0_0_1021366/Constant-error-message-Need-Help.htm
    I have also re-installed Flash 9 so thats made it even more
    confusing, I presumed it was a bug. Therefore I may need to contact
    Adobe if no one has any answers.
    Does anyone know why this is happening?

    Well, if your files are all on the same drive as Flash then
    that would rule out any problems with network files (it's not safe
    to keep FLA's on network drives...)
    Please open a support case. You can do that via web or
    phones:
    http://www.adobe.com/support/flash.

  • Error When Trying to POST: Method not implemented in data provider class

    Hi Experts,
    I have created an Odata Service using Netweaver Gateway Service builder. I am using Advanced Rest Client to test the service. I can successfully GET my data, but I run into issues when I try and POST new data.
    When trying to POST, I used the GET method to get the x-csrf-token, and added it to my header. I also updated the body XML with the data that I would like to POST. However, after sending the POST request, I am getting a "500 Internal Service Error" with the xml message "Method '<OdataServiceName>'_CREATE_ENTITY" not implemented in data provider class".
    Any help on this would be greatly appreciated. Thanks!

    Hi Kelly,
    Can you share screenshots of the error? Maybe something wrong with payload :can you share the same also? Did you try to debug it by putting a breakpoint in the CREATE_ENTITY method in the backend? Any luck?
    Regards,
    JK

  • "Sorry, this content is not allowed" Error when trying to post a reply.

    Has anyone else seen this error lately when trying to post a reply?
    Just to be sure.. I remove all the formatting and just used simple text.. Still the error persists.
    It works for some other posts in the same forum too.!
    Eg.. I am unable to post a reply to this thread
    List the files in a folder
    But was able to do so for
    control file question
    Let me know if any of you have seen this and have a workaround/solution :)
    Thanks,
    Rajesh.

    Rajesh Chamarthi wrote:
    I dont think it is an issue with specific words trying to be spam filtered....No content I tried to post i the reply went through.
    As I put in the earlier post,just the words "test" didn't work either.
    Another post i made had the same words and it went through fine..Hahahaha </sarcasm> ... I was wondering if the issue was to do with the subject, and was jokingly thinking that if the poster had a norty word (eg. l i s t) in the subject, that maybe they'd be allowed to post, but replies wouldn't be able to.
    Imagine my surprise when I opened the post you had problems with and found it has... l i s t in the subject. Head, meet desk.
    Fail?! *{;-)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Keep getting error code 2048 when trying to open wmv files, says realplayer cannot open with the installed version of Quicktime, any suggestions?

    Keep getting error code 2048 when trying to open wmv files, says realplayer cannot open with the installed version of Quicktime, any suggestions?

    wmv is a Windows Media format.  I don't know why Realplayer is coming into it since that deals primarily with Real format files and maybe a few generic formats.
    You need
    Free Flip4mac QuickTime player components - http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx
    After installation a new Flip4Mac pane will appear in System Preferences.  Make sure you set the boxes to ensure that it will play WMV files in Quicktime.
    or play the files with VLC
    VLC media player - http://www.videolan.org/vlc/ - general media player that plays just about anything.
    While you're at it you might install:
    Perian codecs for Quicktime - http://www.perian.org - plugins to add functionality to Quicktime for playing additional audio and video formats
    Quicktime audio problems, Perian, VLC - http://discussions.apple.com/message.jspa?messageID=9013669 - read note about uninstalling prior DIVX support before installing Perian.
    Perian doen't do WMV but it's handy to get many things to play in Quicktime.
    Note, if these are protected WMV, nothing on a Mac will play those (unless you also have Windows installed).

  • Sharepoint 2013 webDAV PROPPATCH fails with status code 409 error every time when trying to set custom property.

    Sharepoint 2013 webDAV PROPPATCH fails with status code 409 error every time, when trying to set custom property.
    anyone have any idea

    Hi
    Stumbled upon the resolution myself. The Bean Area item needs to be set to Visible=Yes in the property palette for the bean within Forms Builder, and also the implementation class also in the bean's properties must match exactly the package & class name specified in the PJC (my full implementation class string had to be set to oracle.forms.demos.runApplication).
    As this bean has no user interface component, and since the Visible property has to be set to Yes, to avoid having a random square shape for the bean sitting on the form's canvas, I also set the Width and Height properties for the bean to 0.001. This does show a very small dot on the form, but that will be acceptable.
    So in summary there has been a change for PJC / Bean Areas between 6i and 10g Forms, in 6i you could have the Bean Item to be set Visible=No, and the SET_CUSTOM_ PROPERTY built-in would work, however in 10g Forms the Bean Item must be set to Visible=Yes for the SET_CUSTOM_PROPERTY built-in to work.
    Daryl

  • Suddenly, *only with Firefox* all computers in the house show (Error code: ssl_error_rx_record_too_long) when trying to access any Google product.

    Today, all laptops in the house (latest ver of FF) began throwing the error:
    (Error code: ssl_error_rx_record_too_long)
    When trying to access any Google products: gmail, Google+, analytics, Google website, etc

    Aha! I'm in South Surrey, BC. I've got a call into a Shaw tech.

  • HT201303 An unknown error has occurred when trying to sign in , and I know I putting in the correct info, this stinks can anyone help? Because apple isn't...

    An unknown error has occurred when trying to sign in , and I know I putting in the correct info, this stinks can anyone help? Because apple isn't...

    urgh... just noticed my previous post said i have mountain lion... i meant that i have snow leopard.  no idea why i messed that up!
    anyway, i just tried reinstalling snow leopard from the usb key that came with the computer. Then, I installed software updates until it told me there were no more updates. After that, I tried the app store again, and it still is giving me the unknown error. really irked by that. may have to take it back to the apple store yet again, to see if i can figure out why the app store won't work.

  • Error F5 702  while trying to  post a parked document in MIRO

    Hi,
    Our Client is in SAP Version 4.6c, and a document is parked and we are trying to post it, it has two cost centers and one G/L account. We have applied SAP Notes related to this error and our client has applied Support packs also.
    How to overcome such an error and post this document?
    Is it relating to rounding errors, we get a amount difference of 0.02 and SAP does not allow the invoice to be posted.
    Can anyone help?
    Regards,
    Anitha

    Hello Raju,
    Its a invoice which the user posts via a MIRO.
    I can do it with a FM also, U r right.
    There have been lots of issues with rounding values when trying to post a parked document in MIRO , till now such invoices were getting posted. Now, we r getting errors, just trying to find if someone else had encountered with a similiar problem and what was the approach they used?
    we get a value of 0.02 difference when trying to post via MIRO for some invoices, till now such invoices were getting posted. Its purely a functional issue though.
    We checked the invoice also, its prefectly fine. There does not seems to any issue, just wondering if there  has been any exchange rate problems etc...
    Thanks,
    Anitha

  • I get an error message (-54) when trying to sync my iphone 6 plus wiht itunes, how do I correct this?

    I get an error message (-54) when trying to sync my iPhone 6 plus with iTunes on a window based computer, how do I fix this?

    I actually meant to post this link in my other post and now see I didn't.
    http://docs.info.apple.com/article.html?artnum=304893
    It may be of no use if you're up to date with software.
    Google also throws up these.
    http://www.google.com/search?client=safari&rls=en-us&q=ipoderror48&ie=UTF-8&oe=UTF-8

  • Error Code 1000 when trying to run Backup Assistant Plus.

    I am getting backup failed and Error Code 1000 when trying to run Backup Assistant Plus.  Have not been able to backup for several weeks.Droid Razr Maxx.

        Hi ellendritz- We are dedicated to make it easier to backup your data! We have integrated Backup Assistant with the Verizon Cloud service offering you many more features and 5GB of storage free! Visit http://www.vzw.com/cloud for more details. The Verizon Cloud app is currently available for download in the Google PlayStore. Please attempt backup with the new application and keep me posted on the status as I would be happy to offer additional support if needed.
    Thank you,
    YaleK_VZW
    Follow us on Twitter @VZWsupport

  • Getting  an error 1 message when trying to restore iPad.  Any suggestions?

    Getting an error 1 message when trying to restore iPad 2.  Any suggestions?

    I too am getting the same error message.  Along with "We Could not complete your itunes store request.  The network connection was refused make sure your network settings are connected and your network connection is active"....im posting on this forum so how is my network not connected? 
    I am using the OSX Mountain Lion 10.8.3 on an iMac

  • Exception when trying to post to a page

    In NetD we created and submitted a form with JavaScript.
    The form looked something like this
    <FORM ACTION=pgXYZ METHOD=POST>
    <INPUT TYPE=hidden NAME=SPIDERSESSION VALUE=12345>
    </FORM>
    So now in Jato, we're trying to do the exact same thing,
    except that instead of SPIDERSESSION, we use the three Jato
    variables. Now the form is like this:
    <FORM ACTION=pgXYZ METHOD=POST>
    <INPUT TYPE=hidden NAME=GXHC_GX_jst VALUE=12345>
    <INPUT TYPE=hidden NAME=GXHC_gx_session_id_ VALUE=12345>
    <INPUT TYPE=hidden NAME=pageAttributes VALUE=12345>
    </FORM>
    Notice we're not submitting to a handler, but just to the page itself.
    When we do this, we get an exception:
    [02/Oct/2001 16:29:59:4] error: Exception: SERVLET-execution_failed:
    Error in executing servlet portalServlet:
    javax.servlet.ServletException: The request was not be handled by the
    specified handler
    Exception Stack Trace:
    javax.servlet.ServletException: The request was not be handled by the
    specified handler^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.dispatchReque
    st(ApplicationServletBase.java:668)^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.processReques
    t(ApplicationServletBase.java:428)^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.doPost(Applic
    ationServletBase.java:296)^M
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:772)^M
    at
    com.putnaminvestments.bp.bpServletBase.service(bpServletBase.java:139)
    ^M
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:865)^M
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)^M
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unknow
    n Source)^M
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)^M
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)^M
    at com.kivasoft.thread.ThreadBasic.run(Native Method)^M
    at java.lang.Thread.run(Thread.java:479)^M
    So what are we missing??

    Thanks Kostas, good answer.
    Todd
    ----- Original Message -----
    From: "Kostas Morfis" <kmorfis@i...>
    Sent: Tuesday, October 02, 2001 4:31 PM
    Subject: RE: [iPlanet-JATO] Exception when trying to post to a page
    Hi Mark
    You are trying to submit to a view bean using java script right ?
    Notice we're not submitting to a handler, but just to the page itself.You are actually submitting the request to your JATO selvlet base, is that
    you intention ?
    The exception is being thrown because there is no request handler found.
    If you are trying invoke a handleBtnXXXmethod then your form action would
    look something like,
    <form method="post" action="../myServlet/pgMyPage?pgMypage.btnMyButton=">
    This adds to the request an appropriate handler as a parameter. Another
    option could be to add a hidden field
    with the same name as your button.
    Attempting to post the form without specifying a request handler will not
    work eg:
    <form method="post" action="../myServlet/pgMyPage">
    This throws a ServletException("The request was not be handled by the
    specified handler")
    because you are doing a post to ViewBean from a form which implies youwant
    to handle some kind web action.
    The way JATO enforces this is to check for the prescence of pageAttributes
    in the request (implemented using hidden fields)
    which you have in your form.
    Kostas
    -----Original Message-----
    From: Mark_Dubinsky@p... [mailto:<a href="/group/SunONE-JATO/post?protectID=174166091163159191130171186101229144026098131198043123114199021239115076086020224">Mark_Dubinsky@p...</a>]
    Sent: Tuesday, October 02, 2001 10:04 PM
    Subject: [iPlanet-JATO] Exception when trying to post to a page
    In NetD we created and submitted a form with JavaScript.
    The form looked something like this
    <FORM ACTION=pgXYZ METHOD=POST>
    <INPUT TYPE=hidden NAME=SPIDERSESSION VALUE=12345>
    </FORM>
    So now in Jato, we're trying to do the exact same thing,
    except that instead of SPIDERSESSION, we use the three Jato
    variables. Now the form is like this:
    <FORM ACTION=pgXYZ METHOD=POST>
    <INPUT TYPE=hidden NAME=GXHC_GX_jst VALUE=12345>
    <INPUT TYPE=hidden NAME=GXHC_gx_session_id_ VALUE=12345>
    <INPUT TYPE=hidden NAME=pageAttributes VALUE=12345>
    </FORM>
    Notice we're not submitting to a handler, but just to the page itself.
    When we do this, we get an exception:
    [02/Oct/2001 16:29:59:4] error: Exception: SERVLET-execution_failed:
    Error in executing servlet portalServlet:
    javax.servlet.ServletException: The request was not be handled by the
    specified handler
    Exception Stack Trace:
    javax.servlet.ServletException: The request was not be handled by the
    specified handler^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.dispatchReque
    st(ApplicationServletBase.java:668)^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.processReques
    t(ApplicationServletBase.java:428)^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.doPost(Applic
    ationServletBase.java:296)^M
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:772)^M
    at
    com.putnaminvestments.bp.bpServletBase.service(bpServletBase.java:139)
    ^M
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:865)^M
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)^M
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unknow
    n Source)^M
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)^M
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)^M
    at com.kivasoft.thread.ThreadBasic.run(Native Method)^M
    at java.lang.Thread.run(Thread.java:479)^M
    So what are we missing??
    [email protected]
    [Non-text portions of this message have been removed]
    [email protected]

Maybe you are looking for

  • Scenario - Stock Transfer with Delivery

    Hi Friend, I am doing a scenario Stock trannsfer with Delivery Here I am using the following t codes MD04 -   to Create purchase Requisition ME57  - For Standard Transfer order me22n - TO change Delivery date vl10b   -To create Delivery lt03  -  To c

  • Usage minutes not showing

    After fully charging then using, it should show minutes used since last charge, it is not showing this information?    the battery is showing fully green and an ap I have says 100% charged, so ??? 

  • BPC 10.0 and 10.1 NW performance Note

    Hello Friends, Can any one please provide the SAP Notes which are release regarding the BPC performance issue. Regards, Mahendra Dev.

  • Photoshop CS6 and Photoshop CS6 CC simultaneity

    Is is possible to run Photoshop CS6  and Photoshop-CS6 CC simultaneously in the same computer? For instance PSSC6 for batch processing and PSSC6-CC for image editing?

  • Following Beginner's Guide, but one command is "not found" - alsact1

    Hello I'm following the Beginner's guide and doing everything exactly as it says. However, when i get to the Sound Card setup instructions (using ALSA) one of the commands it is telling me to use returns the error "-bash: alsact1: command not found"