HTTP POST binding not available in 11g???

Hi,
I am trying to call a HTTP service using HTTP POST, passing HTTP params to it. I created a small bpel process in 10.1.3.4, and used the HTTP POST samples, which worked out really well.
However target platform is 11g. So I just tried to migrate the project and got the following warnings.
WARNUNG: UPGBPEL-02043: The WSDL used for "HTTPPostParam" has HTTP based binding definition for the porttype specified. SOA Suite 11g does not support this and hence upgrade will not carry this over to the generated composite. Compilation will fail if the composite reference is not setup with binding. After upgrade, setup the reference by specifying a WSDL with SOAP binding. Check SOA Upgrade guide for more information.
WARNUNG: UPGBPEL-02009: No Binding setup for : "HTTPPostParam". This will cause compilation of the upgraded project to fail. Check SOA Upgrade documentation on manual steps necessary to bind this composite reference. If necessary, upgrade and deploy any dependencies. If planning to retain 1013x nodes in this projects dependency tree, check earlier part of this log for 1013x WSDL URLs that can be used.
Does this really tell me that HTTP post or get is not available anymore? Or do I miss anything? Or is there a workaround?
Thanks and regards,
Thomas
PS: This is my POSTParam WSDL, which is not yet complete, but working on 10.1.3.4
<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://http.oracle.com/postParam"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
targetNamespace="http://http.oracle.com/postParam"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:get="http://xmlns.oracle.com/HttpClientBPELProcess">
<types>
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema">
<xsd:import schemaLocation="HttpClientBPELProcess.xsd"
namespace="http://xmlns.oracle.com/HttpClientBPELProcess"/>
</xsd:schema>
<!--
<xsd:schema elementFormDefault="qualified"
targetNamespace="http://http.oracle.com/postParam">
<xsd:element name="param" nillable="true" type="xsd:string"/>
</xsd:schema>
-->
</types>
<message name="HttpPostParamIn">
<part name="HighwayEndpointId" type="xsd:string"/>
<part name="HighwayMessageId" type="xsd:string"/>
<part name="HighwayMessage" type="xsd:string"/>
<part name="Synchronous" type="xsd:string"/>
<part name="DISABLE_MESSAGEINPUT_ECHO" type="xsd:string"/>
</message>
<message name="HttpPostParamOut">
<part name="Body" element="get:Request"/>
</message>
<portType name="HttpPostParamPortType">
<operation name="PostData">
<input message="tns:HttpPostParamIn"/>
<output message="tns:HttpPostParamOut"/>
</operation>
</portType>
<binding name="HttpPostParamBinding" type="tns:HttpPostParamPortType">
<http:binding verb="POST"/>
<operation name="PostData">
<http:operation location="/highway/http/SubmitMessage"/>
<input>
<mime:content type="application/x-www-form-urlencoded"/>
<!--
<mime:content type="text" part="param1"/>
<mime:content type="text" part="param2"/>
-->
</input>
<output>
<mime:mimeXml part="Body"/>
</output>
</operation>
</binding>
<service name="PostParamService">
<port name="HttpPostParamPort" binding="tns:HttpPostParamBinding">
<http:address location="http://itrax03.wlgore.com:8080"/>
</port>
</service>
<plnk:partnerLinkType name="PostParamService">
<plnk:role name="PostParamServiceProvider">
<plnk:portType name="tns:HttpPostParamPortType"/>
</plnk:role>
</plnk:partnerLinkType>
</definitions>

The sample that heidi posted above is basically the codebase to the http binding we are planning to ship with Patchset 2. It's based on Jax-WS' http binding.
Let me know if you run into any issues (the source is included - so you can play around :) - no license )

Similar Messages

  • Http post issue in soa suite 11g  with 10g wsdl

    I have 10g process that has http post wsdl as below. When I'm trying to create a project in 11g 11.1.1.4 with same wsdl, getting the following error at building the project. "Error(12,61): Parse of component type files failed, check the adf-config.xml file : "Error at line 34 char 64: Malformed WS Binding port. Missing # between namespace URI and service/port names."
    I'm sure that http post mechanism is changed in 11g, but can you please help what exactly is wrong ?
    <?xml version="1.0"?>
    <definitions name="HTTPPostService"
    targetNamespace="http://services.otn.com"
    xmlns:tns="http://services.otn.com"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
              xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
              xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    >
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    TYPE DEFINITION - List of types participating in this BPEL process
    The BPEL Designer will generate default request and response types
    but you can define or import any XML Schema type and use them as part
    of the message types.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <types>
    <schema attributeFormDefault="qualified" elementFormDefault="qualified"
    targetNamespace="http://services.otn.com"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <element name="Postreq">
    <complexType>
    <sequence>
    <element name="Order_Update_Request">
    <complexType>
    <sequence>
    <element name="ORD_ID" type="string"/>
    <element name="E_MAIL" type="string"/>
    </sequence>
    </complexType>
    </element>
    </sequence>
    </complexType>
    </element>
    <element name="Postresp">
    <complexType>
    <sequence>
    <element name="Order_Update_Response">
    <complexType>
    <sequence>
    <element name="RETURN_STATUS" type="string"/>
    <element name="MESSAGE_TEXT" type="string"/>
    </sequence>
    </complexType>
    </element>
    </sequence>
    </complexType>
    </element>
    </schema>
    </types>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    MESSAGE TYPE DEFINITION - Definition of the message types used as
    part of the port type defintions
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <message name="HTTPPostServiceRequestMessage">
    <part name="payload" element="tns:Postreq"/>
    </message>
    <message name="HTTPPostServiceResponseMessage">
    <part name="payload" element="tns:Postresp"/>
    </message>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    PORT TYPE DEFINITION - A port type groups a set of operations into
    a logical service unit.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <!-- portType implemented by the HTTPPostService BPEL process -->
    <portType name="HTTPPostService">
    <operation name="IScript_Update_Order">
    <input message="tns:HTTPPostServiceRequestMessage" />
    <output message="tns:HTTPPostServiceResponseMessage"/>
    </operation>
    </portType>
    <binding name="HTTPPost" type="tns:HTTPPostService">
    <http:binding verb="POST"/>
    <operation name="IScript_Update_Order">
    <http:operation location="/PSIG/HttpConnector?From=PSFT_XINBOUND&amp;MessageName=ABC_ORD_UPDORDER&amp;MessageType=sync&amp;MessageVersion=v1"/>
    <input>
    <mime:mimeXml part="payload"/>
    <mime:content type="text/xml"/>
    </input>
    <output>
    <mime:mimeXml part="payload"/>
              <mime:content type="text/xml"/>
    </output>
    </operation>
    </binding>
    <service name="HTTPPostService">
    <port name="HTTPPost" binding="tns:HTTPPost">
    <http:address location="http://myserver.mycompany.com"/>
    </port>
    </service>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    PARTNER LINK TYPE DEFINITION
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <plnk:partnerLinkType name="HTTPPostService">
    <plnk:role name="HTTPPostServiceProvider">
    <plnk:portType name="tns:HTTPPostService"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>

    Can you make sure your helloworld is using adf bindings as mentioned in thread Re: Urgent :: 11g Invoking Composite from Java/From Webservice Proxy

  • Example-WSDL for http-POST binding

    Hi all,
    i'm looking for an example-WSDL of a http-POST binded service. I was searching in the ~\OraBPELPM_1\integration\orabpel\samples\tutorials\702.Bindings\HTTPBinding directory, but its the example is of a http-get binded service.
    I need to know, how the message-definitions for the input have to look like (in the message-section and in the operation-section) when using an XML-input message.
    thanks in advance
    Albrecht

    Gee! i didn't know there are some more samples! :o)
    Thanks Clemens, i will test it.

  • ORA-01034 oracle not available for 11g xe R2

    Hi Friends i downloaded 11g database and installed ,but when i am trying to connect database
    i am getting the following error
    ORA-01034 oracle not available
    ORA-27101 shared memory realm does not exist
    process id:0
    session id:0 serial no: 0
    In log i am getting like this
    Message 51 not found; No message file for product=RDBMS, facility=ORADIM
    My Tnsnames.ora is
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = siva-ae2ba51)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    Listener.ora
    =============
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = F:\oraclexe\app\oracle\product\11.2.0\server)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = F:\oraclexe\app\oracle\product\11.2.0\server)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = iswarya-ae2ba51)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)
    can any one pls suggest me what i need to do for this

    Hi;
    thanks for your reply orafad. I am posting this to XE forumplease change thread status to answered if it possible, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

  • Getting this error when running a form. HTTP Listner is not available

    I am using windows XP Professional. I have the 9i database running fine. I can launch form developer and connect to my database (which is on the same machine but in different homes.) I get a Http listner error no available when I go to run the form. I looked at my administrative settings for the HTTP listner service but I do not see it I only see the TNS lister.
    Does any one know what I need to do run a form successfuly with getting the HTTP listner error

    Hi,
    to start OC4J you go to start--> programs --> Oracle9i Developer Suite --> Forms Developer --> Start OC4J Instance
    Frank

  • Http_utl.text_write for http 'POST" does not work

    i have a proc that uses utl_http code I have seen all over on web sites for 'POST'ing to a REST web service ..... i use utl_http.write_text to write data to the request body but no data gets written ...... below are the code segments I use
    url entered directly into browser that **works fine**: http://www.media.com/admintool/Services.aspx?par_string=[{ "PAR_Transaction_Id" : 5566338, "MRI_Title_Name" : "4 Wheel & Off Road"}]
    calling routine:
    declare
    l_url varchar2 (300) := 'http://www.media.com/admintool/Services.aspx';
    l_data clob;
    l_query varchar2(32767);
    begin
    dbms_output.enable(3000000);
    l_data := '[{
    "PAR_Transaction_Id" : 5566338,
    "MRI_Title_Name" : "4 Wheel & Off Road"}]
    http_util_pkg.http_post(
    p_url_in => l_url, p_data_in => l_data);
    end;
    called routine segment:
    l_http_req := utl_http.begin_request (p_url_in, 'POST');
    -- Set the HTTP request headers
    utl_http.set_header(l_http_req, 'User-Agent', 'Mozilla/4.0');
    utl_http.set_header(l_http_req, 'content-type', p_data_type);
    utl_http.set_header(l_http_req, 'content-length', v_length);
    -- Write the data to the body of the HTTP request
    utl_http.write_text(l_http_req, 'par_string=');
    while v_index <= v_length
    loop
    utl_http.write_text(l_http_req, substr(p_data_in, v_index, 4000));
    dbms_output.put_line ('data = ' || substr(p_data_in, v_index, 4000));
    v_index := v_index + 4000;
    end loop;
    results .... you can see below that the header content length is non-zero but the response header says there is no content, so something is haywire with the write_text method
    url = http://www.media.com/admintool/Services.aspx
    length in data = 1271
    http package; url = http://www.media.com/admintool/Services.aspx
    after set authentication
    after write headers
    data = [{
    "PAR_Transaction_Id" : 5566338,
    "MRI_Title_Name" : "4 Wheel & Off Road"}]
    after write text
    status code: 200
    reason phrase: OK
    Connection: close
    Date: Tue, 06 Apr 2010 03:59:27 GMT
    Server: Microsoft-IIS/6.0
    X-Powered-By: ASP.NET
    X-AspNet-Version: 2.0.50727
    Cache-Control: private
    Content-Length: 0 *************** response header says no content !!!
    can you help me figure out what is wrong with the utl_http.write_text method ???
    thank you

    Please do not resurrect old threads - rather ask your question in a new thread. If need be, add a URL in your new thread posting that refers to the old thread. Also add as much relevant details as possible. Your Oracle version (all 4 digits). Your o/s. If possible, sample code and data that can be used as a test case. Complete error details. And what the intent of the code is (i.e. what the actual problem is that you're trying to solve).
    As for HTTP post - works just fine as far as I've used it.

  • REST (HTTP POST) Proxy Service in OSB 11g

    Hi everyone,
    I am pretty new to Oracle OSB, but I was searching through the forum but could not find any "guide", "tutorial" on how to implement a REST - HTTP Post for a Proxy Service. If anyone know of any disccussions prior, please send me the links!
    I have created a SOAP business service based on a WSDL, I have it working with a SOAP proxy service, but I want to implement a REST - HTTP Post proxy service to talk to the same SOAP business service. Can this be done? And if so, can someone guide me on how to create the HTTP Post Proxy service? I have tried implementing a proxy with the relative uri, http, but just could not get it to work, any help would be appreciated!
    THANKS!
    -ML

    Hi!
    A few links to help you on your way :
    http://blogs.oracle.com/jamesbayer/2008/07/using_rest_with_oracle_service.html
    http://blogs.oracle.com/christomkins/2008/10/a_look_at_oracle_service_bus_1.html
    http://blogs.oracle.com/jeffdavies/2009/06/restful_services_with_oracle_s_1.html
    http://www.oracle.com/technology/sample_code/products/osb/index.html (REST-2-REST Routing )
    http://wiki.oracle.com/page/Chapter+13+-TheOracle+Service+Bus
    http://biemond.blogspot.com/2009/05/osb-rest-service-with-xml-json-output.html

  • Http post does not work in portlet

    Hi,
    I have a simple portlet that has a form using http post. When I submit the portal page just displays a blank page. And request parameter name is prefix by only "_pirefnull" :
    <INPUT TYPE="hidden" name="_pirefnull.param1" value="hello" />
    When I call this funtion:
    pReq.getRenderContext().getBackURL()
    it also returns null.
    Sample code is as follows:
    <form      name="frmPage"
                        action="<%=HttpPortletRendererUtil.htmlFormActionLink(pReq,PortletRendererUtil.PAGE_LINK)%>"
                        method="get" >
    <%=HttpPortletRendererUtil.htmlFormHiddenFields(pReq, PortletRendererUtil.PAGE_LINK) %>
    <input      type="hidden"
                        name="<%=HttpPortletRendererUtil.portletParameter(pReq, "next_page")%>"
                        value="htdocs/myportlet/Page2.jsp" />
    <input type="hidden" name="<%=HttpPortletRendererUtil.portletParameter(pReq, "param1")%>" value="hello"/>
    <input type="submit" name="btnSubmit" text="Submit"/>
    <input type="button" name="btnCancel" value="Return" onClick="javascript:window.location='<%=pReq.getRenderContext().getBackURL()%>'"/>
    </form>
    This works in my development portal. However, it doesn't work in the production portal.
    Is there any version of the portal that only works on HTTP get method? How do I solve this problem. Any information would be very much appreciated.
    Rachel

    Rachel,
    there doesn't seem to be any problem in your code. Though I'm a bit surprised with the null values that you seem to be getting. Could you condirm the folowing the for me:
    1. Are you hitting the JSP directly or is the request to render coming from Portal? If you hit it directly then things like PortletRenderRequest will be null.
    2. Could you find out what exactly is null - PorltletRenderRequest, RenderContext?
    3. Why are you using HTTP GET for form submission? Can't you use POST for this?
    4. Do you see any errors in your application.log file? Might be helpful for debugging.
    5. What are the versions of your dev and producttion portals? What's the JPDK version you using?
    Regards,
    Abhinav

  • Still cannot REPLY to Posts & Posting formatting not available

    I can Post new Discussions.  Although, I do not have the Enhanced part of the Posting page available. -- I do not have any the Text formatting bar or the quote tool or Smilies or anything like that.
    I have tried every thing that Topher has tried, see his Post -- https://discussions.apple.com/thread/4059650
    It is NOT our machines or our browser set up.  It just started happening, was able to Reply before, and have not changed my setup.
    Topher and I both appear to be in California - maybe that's a clue.  Apple posted that they will be doing maintenance on the main page::
    Scheduled Maintenance: June 26th, 10:00PM PT Hide Details
    Apple Support Communities will be undergoing scheduled maintenance at 10:00PM PT on June 26th, 2012
    Beginning times:
    06/26/2012 - 10:00PM - Pacific
    06/26/2012 - 11:00PM - Mountain
    06/27/2012 - 12:00AM - Central
    06/27/2012 - 01:00AM - Eastern
    06/27/2012 - 06:00AM - London
    06/27/2012 - 07:00AM - Paris
    06/27/2012 - 08:00AM - Moscow
    06/27/2012 - 02:00PM - Tokyo
    by Matt K. Jun 25, 2012

    Guess it just took a few more minutes, because at 5:30 pm PST it started working again.  I changed nothing on my machine.

  • XI: HTTP adapter - Service not available

    Hello,
    We are facing a problem with our XI system, we have configured for a data processing using plain  HTTP adapter. For IntegrationEngine: Inbound channel, we have created a link to access XI service and given to access via HTTP request. The link has been created as given on help.sap.com i.e.http://sap-ag.com:8088/sap/xi/adapter_plain?service=sender&namespace=urn%3Asap-ag%2Ecom&interface=%2Fsap%2Forders
    Now, we are unable to get this service, we are getting 'Service unavailable' message 404. Can you please help me, where can I look for a cause and solution of this?
    I have checked in Integration Builder - service, interface and namespace are defined and ae acrive.
    TIA
    amit thombare

    Hello Amit,
    Please find below sample URL which we have used for one of our requirements. If you are trying to communicate with XI through an exteranl application , An XIAPPLUSER is required.
    http://netweaver:8000/sap/xi/adapter_plain?namespace=urn%3Aadaptive.mfg.tclproductionupdate&interface=MI_UPDATEPO&service=BS_XMII_TCL&party=&agency=&scheme=&QOS=BE&sap-user=xiappluser&sap-password=*****&sap-client=100&sap-language=EN
    Thanks & Regards,
    kiran

  • 9505 post office not available

    GW2012 on SLES11
    single PO - PO/MTA server, Webacc/GWIA/MTA server
    3 users are getting the 9505 error saying something about soap.
    But since datasync is working for these users, and other users are working in WebAcc am a bit lost for a reason.
    Did see a TID saying a 9505 error using secure soap was reported to engineering (9/25/12).
    But have not been able to determine if they are using secure soap for the server to server talking. Don't think so, but......
    Having issues remoting in to check this or other things.
    any ideas on what might be the issue appreciated.
    WO

    * whiteowl76 wrote, On 11/05/2012 10:56 PM:
    > GW2012 on SLES11
    > single PO - PO/MTA server, Webacc/GWIA/MTA server
    > 3 users are getting the 9505 error saying something about soap.
    > But since datasync is working for these users, and other users are
    > working in WebAcc am a bit lost for a reason.
    Are you using access control for WebAccess (gwac.xml)?
    Uwe
    Novell Knowledge Partner (NKP)
    Please don't send me support related e-mail unless I ask you to do so.

  • Icm/HTTP/file_access_ n not available

    Hi,
    I cannot find the icm/HTTP/file_access_<n> in my system profile. Could you please let me know what is the issue.
    Regards,
    Sivaganesh

    Hi,
    Look for  icm/HTTP/file_access_0 as the end <n> is an way of saying there can be several of thise parameters
    icm/HTTP/file_access_1 = PREFIX=bla bla bla
    icm/HTTP/file_access_2 = PREFIX = bla bla bla
    And so on....
    (remember that the system will need a restart for most parameters to work)
    Hope this helps you

  • TRex Server http Not Available

    Hi,
    I installed SAP portal 6.0 SP 20 wiht KM and TRex 6.1 on Windows 2003 server and IIS 6.0.
    In TRex monitor, http server is Not Available and when try to go url "http://server:30205/TREXHttpServer/TREXISAPIExt.dll" in a new browser (in the same server), the system prompt usar and password (I have set anonymous user on virtual directory from IIS).
    In the server, when go to url "http://localhost:30205/TREXHttpServer/TREXISAPIExt.dll", the system shows "<Return><ReturnCode>3499</ReturnCode><ErrorText>unknown request</ErrorText></Return>".
    Anyone have any idea of how to solve this?
    Best regards,
    Alvaro

    Hi Alvaro,
    have a look at SAP Note 1029783. Maybe this is the solution to your problem.
    Best regards,
    Denis

  • Pro C C++ GUI is not available

    Hi
    I have installed Oracle 11g enterprise edition. I am looking for Pro *C /C++ GUI. But it is not available. How can i get that. Is it not available with 11g
    Thanks
    Sas

    Pl post details of your OS and specific 11g versions. Assuming the OS is some certified version of Windows, the Pro*C/C++ compiler is a pre-req for the Oracle install. It needs to be installed separately (and before) the Oracle install.
    http://download.oracle.com/docs/cd/E11882_01/install.112/e10843/reqs.htm#CHDHGGFE
    HTH
    Srini

  • Java and Http posting through Peoplesoft.

    Hello everyone, not sure if you can help, but any input or ideas would be appreciated because I ran out of ideas.
    I created a java file that connects to a xyhtos server (WebDAV connection). The reason of this project is to be able to upload files to the xythos repository via peoplesoft pages. Uploading the files is fine and works great.
    My problem is getting a ticket from it. (A ticket is a string that is appended in the url of the document that is being requested without having the user login to xythos). To get such ticket I need to send login information to the server via a post method. The userid/password needs to be sent through a string that is base64Encode.
    When I execute this method the xythos server does not receive login information.
    Now here is the strange part, if I execute the same Java program from a Unix command line, with the same parameters, it performs beautifully.
    I'm wondering if there is something extra that I need to do when running this java program through PIA. Or if the peoplesoft server needs to be configured a certain way to allow such methods.
    If you need me to be more specific or anything that could help you help me, please post. I'm desperate.
    Thank you.

    HI Jim, thank you for replying.
    Unfortunately I can't tell exactly how it's posting because I'm using a package created by another department I work with. If I need to upload a file, delete a file, create directories, all of that is fine. The only trouble is requesting a ticket from xythos. I think for that function it is doing an http post, but not positive. The response I get from the server is
    <html><title>Error 401</title><body>
    Error: 401
    <BR><H1>Forbidden</H1><BR>That action is not authorized. Please ensure that you are authenticated.<BR>
    <p><p></p></p>
    </body></html>
    I just don't understand why through the command line of unix it works and PIA it doesn't. Very strange.

Maybe you are looking for

  • Hard drives, externals, enclosures,... help?

    If anyone could lend me their experience and or advice regarding what works well with the MBP (Santa Rosa chip) I would greatly appreciate it. I've attempted to do as much research on this myself, as I understand what works best is subjective a great

  • DLL basics Documents

    Hello every one, I know how to create a dll in labview and how to use it . But i need a good document which explains how to handle DLL with different data types. Thank you Solved! Go to Solution.

  • Photoshop CS5 launches Help without asking

    Ocassionally PhotoShop will launch the Help applet without being asked. It generally seems to happen while playing with settings in the Blending Options / Layer Styles window, though I've had it happen very rarely when doing other things too. I can c

  • Dreamweaver CS3 stops, with blank registration screen

    Today I started to work with Dreamweaver CS3 Mac, It opened fine until a registration screen appeared, on top of everything. The screen is blank but I remembered that sometimes Dreamweaver asks me to register. I always say: Later! But now, I cannot w

  • Verizon 4G LTE Support

    I am looking for any solutions that will allow Mac owners/users access to the Verizon 4G LTE network. Thank you,