11g BI Server XML API: NQLocale.xml

Hi,
I want to use the BI Server XML API especially biserverxmlexec command to automaticaly modify my repository.
Like written in the library (http://download.oracle.com/docs/cd/E14571_01/bi.1111/e16364/xml_about.htm) I first executed the bi-init.sh script.
After that I got an error about the shared libraries. I could solve the problem by setting the env LD_LIBRARY_PATH correctly.
But now the next error occurred:
Xml File Not Found error number -9, /oracle/home/bifoundation/server/locale/NQLocale.xml
Anybody got an idea to solve that problem?
Regards,
Andre

Hi Guys,
the bug reference fixes this problem for you: https://support.oracle.com/epmos/faces/BugDisplay?id=10227146
Specifically, I think your question relates to HOW you invoke bi-init.sh, remember there is an extra dot and space *. ./bi-init.sh*
Hope this helps,
Justin
Edited by: justinjtownsend on Apr 11, 2013 4:58 AM

Similar Messages

  • Need XML APIs for finding server status details

    Hi,
    Can any one help me with the XML API format for finding server status details like Admin State,Avail State,Assoc State,etc.
    Thanks and Regards
    -Prateek

    Here is a very basic example.  I pulled out all the extra error trapping / logging.  I have been building a module that simplifies  most of this .. will produce simple Dumper output for what you are generally looking to do.
    The below example will connect to a default UCSM emulator ( http://developer.cisco.com/web/unifiedcomputing/start ) .. just change IP to match.  If you want a significantly more detailed information ( hierarchical ) ... change inHierarchical="false" to  inHierarchical="true".
    Let me know if you want something more specific.
    #!/usr/local/bin/perl
    use strict;
    use warnings;
    use Data::Dumper;
    use LWP::UserAgent;
    use HTTP::Request::Common;
    use XML::Simple;
    use POSIX;
    $Data::Dumper::Purity = 1;
    $Data::Dumper::Useqq = 1;
    ### Configurables
    my $ucsm = "10.#.#.#";
    my $user = "config";
    my $pass = "config";
    my $proto = "http";
    my $cookie;
    my $xml = XML::Simple->new();
    my $xml_blade = XML::Simple->new(ForceArray => ['computeBlade']);
    ## Setup User Agent
    my $ContentType = "application/x-www-form-urlencode";
    my $userAgent = LWP::UserAgent->new(agent => 'perl post');
    $userAgent->timeout(5);
    &connect;
    my $blades = &getblade;
    print Dumper $blades;
    &disconnect;
    ### Subroutines
    sub connect {
       my $message = q();
       print 'http://'.$ucsm.'/nuova\n';
       my $response = $userAgent->request(POST $proto.'://'.$ucsm.'/nuova', Content_Type => $ContentType, Content => $message);
       my $xml_ref = $xml->XMLin($response->content);
       $cookie = $xml_ref->{outCookie};
    sub getblade {
       my $message = q();
       my $response = $userAgent->request(POST $proto.'://'.$ucsm.'/nuova', Content_Type => $ContentType, Content => $message);
       my $xml_ref = $xml_blade->XMLin($response->content, keyattr => []);
       return $xml_ref->{outConfigs};
    sub disconnect {
       my $message = q();
       my $response = $userAgent->request(POST $proto.'://'.$ucsm.'/nuova', Content_Type => $ContentType, Content => $message);

  • How to login to a remote (FTP??) server and read an XML file?

    Hello all,
    I would like some information on how to login to a remote server using a Java program.
    The server might be a ftp server, because the client will ftp a xml file to this server, and the java program needs to login to this server and read the xml file, then convert it into a general report with headings and data from the xml file.
    How can I quickly find the API information to login to a server and read an xml file?
    If anyone knows the packages off the top of their heads, that would save me some time surfing.
    If anyone can provide me some links, code examples, or information I'd greatly be thankful.
    sharla

    You can also just use plain java.net. It supports FTP. Example:URL u = new URL("ftp://user:passwd@server/path/to/file.xml");
    InputStream in = u.openStream();
    // do what you want ...

  • How to use HTTP / XML API

    Hi,
    I have to communicate with a product . The product has HTTP / XML API . The API has some functions. The examples in the product docs ,
    If you send a HTTP request to URL of the product with function name and some input parameters , It returns XML response , this response corresponds to some DTD.
    Now from java Application I have to send some HTTP requests and do some things according to obtained responses.Some times I have to parse the XML responses returned to show the user some results.
    How can I do this in Java , I have not worked with this kind of requirements.
    Thanks,
    pandu

    I wanted to do both , from the java Application to server.
    1.Send HTTP (post) request
    2.Parse the returned XML response from the server.

  • Retrieving information from Adobe Connect XML API

    Hello guys. I'm very newbie working with Adobe Flex and Connect API...
    I'm trying to get some informations from an Adobe Connect Pro Server using API.
    I made a HTTP request to the server and I'm receiving the right response from the server (I see from the response body in network monitor).
    In the function that I'm handling the results, I need to get the fields TYPE and SCO-ID, from the XML that I received.
    The problem is... when I walk through the response, to get those values, flex can't understand that one of the fields in the response are named by SCO-ID...
    This is the function I'm trying to use...
    protected function breezeSCO_resultHandler(event:ResultEvent):void
         var step:int;
         var tempObject:Object = new Object();
         //Walking through the result trying to find the data that I want to use
         for (step= 0; step < event.result.length; step++)
              if(event.result.results.shortcuts.sco[step].type == "meetings")
                   tempObject.code = event.result.results.shortcuts.sco[step].sco-id; //This is the line that flex gives an error: "1067: Implicit coercion of a value of type String to an unrelated type Number."
                   tempObject.type = event.result.results.shortcuts.sco[step].type; //This line give me the right information
    Here's an example of the response in browser...
    <results>
         <status code="ok"/>
              <shortcuts>
                   <sco tree-id="11002" sco-id="11024" type="shared-training-templates">
                        <domain-name>http://192.168.0.233</domain-name>
                   </sco>
                   <sco tree-id="11006" sco-id="11449" type="my-courses">
                        <domain-name>http://192.168.0.233</domain-name>
                   </sco>
                   <sco tree-id="11003" sco-id="11023" type="shared-meeting-templates">
                        <domain-name>http://192.168.0.233</domain-name>
                   </sco>
              </shortcuts>
    </results>
    I believe that the error is because the minus signal that identifies the field, because when I removed the '-id' from the field, the error goes away.
    Anyone can give me any idea of how to get this value? I can't rename the field name, cause it's an XML response from the Adobe Connect Server...
    Thanks, and sorry about my english!

    Well... I found that others Web Services of the Adobe Connect have the same minus signal to identified the fields on the XML that is returned from the server, like the url-path that have the url for the meeting room. And I can't get those values too.... =/
    <sco sco-id="11451" source-sco-id="" folder-id="11450" type="folder" icon="folder" display-seq="0" is-folder="1">
         <name>Meus modelos</name>
         <url-path>/f11451/</url-path>
         <date-created>2011-02-10T11:40:52.983-02:00</date-created>
         <date-modified>2011-02-10T11:40:52.983-02:00</date-modified>
    </sco>
    Any tips?

  • Web Target & XML API use

    Hello there,
    I am going to make process to create Lun on NetApp Simulator.
    I had NetApp simulator, NetApp SDK server up n running on my server ...i made web target as my SDK API server and my TEO also on same server..http://172.21.***.**:8088  << this is my target connection.
    1> i want to check : does my connection work succefully or not for that i created process "web HTTP request" but that was not hit my target...
    so, please anybody have information for creating web http request process..please share with me...i appreciate you....
    2> I also have one more question regrding to using XML API in the process....As i said i also want to make process to crete Lun on my simulator...
    so..does anybody have information that how to use this XML API in our process...
    I really appreciate for help...
    Regards,
    Krupesh Patel

    Hello Christopher.......
    Now this time i just want to do simple web service target ...i want to use web service execute activity with wsdl use...
    Here ..i created web target as http://www.weather.gov/
    My process is to execute the web service ..this is my Relative url : http://www.weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl in for web service execute activity as i show in the image..
    Now..i want to select method by veryfing the url but i didn't get success....and got error...i want to execute this service on the target and want weather according to zip code i get from method...
    please help...appreciate you for information....
    Here is that image :

  • CCME xml api

    hi all!
    I'm trying to do some xml requests to a Cisco CallManager Express 4.1(0). But every time i get a "The underlying connection was closed: The connection was closed unexpectedly." error.
    After a while i found the default test page on the CCME for testing the xml API: http://CCME-IP/ISApi/AXL/V1/soapisapi.is You only need to past this in the url bar of your browser
    When i submit the gerenated code on that page i recieve the following error: "Cannot find server - The page cannot be displayed" But when i press the f5 button the default test page shows again.
    Is there anyone who can help me? Thanks in advance!

    Well, here's my chance to give back to the community. I've finally figured out how to communicate with CME 4.2.
    First a little background - My application creates the string that represents the SOAP XML messages, uses the WebRequest object (C#) to set the headers, send, and receive the response. This worked fine for the regular Cisco Call Manager, but once I tried it with Express, the server kept killing the connection. If I screwed with the authentication string, I would at least get a response saying that I did not have authorization, but got absolutely nothing back when sending a valid xml request.
    Using wireshark to examine the packets, I tried to reproduce the message that was being sent (successfully) from the API test page that is built into the server. I had first thought that my problem was with either the http headers or my xml was incorrect, but what I have found is this - The soap message MUST be preceded with "content=" and MUST be url encoded. It doesn't matter what the content type header is set to ("text/xml" or "application/x-www-form-urlencoded" as coming from the webpage); it will only respond to my request when I prefix content= and url encode the data.
    This was very frustrating to say the least. This is obviously contrary to anything in the XML Provisioning Guide for CME, which tells you to pass text xml just like Call Manager. Anyway, I posted this in hopes that it saves someone else the headache and in thanks to all of those that have helped me.
    Brian

  • UCS XML API Query Problem

    Currently I am attempting to power up and down a blade that is un-attached to a profile using a UCS XML API Query.
    Current progress:
    I have come up with this query that will power down a blade from a call from an attached profile...
    <configConfMo cookie="<SomeCookie>" inHierarchical="false">
    <inConfig>
    <lsPower dn="org-root/ls-profile1/power" state="down" status="modified"/>
    </inConfig>
    </configConfMo>
    This works for a server that is attached to a profile <profile1>, but I want to power down a server that is un-attached. I am currently using  UCS emulator 2.2 for testing these querys.

    There are a few options here that occur to me:
    Go to either the web interface of one of your UCSMs or the emulator with something like:
       http:///visore.html  or https:///visore.html
    traverse the objects or search for what you want and follow the '?' link to the right of the Class name.
    You could also try to find what you need here: http://www.cisco.com/en/US/docs/unified_computing/ucs/sw/api/VScgIX.html

  • UCS XML API - clarification on values

    Hey folks,
    I look through the XML API used to query the UCS manager. Where can I get the possible values of a particular attribute?
    Let me rephrase,
    Consider I am querying for 'equipmentChassis' with <configResolveClass cookie="cookie" response="yes" classId="equipmentChassis">
    I got a value as follows
    <equipmentChassis adminState="acknowledged"  configState="ok" connPath="A,B" connStatus="A,B" dn="sys/chassis-1" fabricEpDn="fabric/server/chassis-1" fltAggr="0" fsmDescr="" fsmPrev="nop" fsmProgr="100" fsmRmtInvErrCode="none" fsmRmtInvErrDescr="" fsmRmtInvRslt="" fsmStageDescr="" fsmStamp="never" fsmStatus="nop" fsmTry="0" id="1" lcTs="1970-01-01T01:00:00.000" licState="license-ok" managingInst="A" model="N20-C6508" operQualifier="" operState="operable" operability="operable" power="ok" presence="unknown" revision="0"  serial="1"  thermal="unknown" vendor="Cisco Systems Inc" versionHolder="yes"/>
    Lets take the attribute licState, we got a value 'license-ok', what are all the possible values I can get in that place? Do Cisco provide any key guides for this? I searched, I am sorry I might have missed something.
    Thanks

    There are a few options here that occur to me:
    Go to either the web interface of one of your UCSMs or the emulator with something like:
       http:///visore.html  or https:///visore.html
    traverse the objects or search for what you want and follow the '?' link to the right of the Class name.
    You could also try to find what you need here: http://www.cisco.com/en/US/docs/unified_computing/ucs/sw/api/VScgIX.html

  • XML API Authentication Fails

    Trying to set up the XML API on an ASR 9K and find myself unable to authenticate with the XML API using Netcat.
    I've configured the box as below:
    Building configuration...
    !! IOS XR Configuration 5.1.2
    !! Last configuration change at Wed Apr 15 07:19:42 2015 by root
    username xml
    group sysadmin
    secret 5 $1$LY8B$39t3eTXf/ajMGWnX99.ux0
    password 7 07182E414C080D1657
    aaa authorization exec default group tacacs+ local
    interface MgmtEth0/RSP0/CPU0/0
    ipv4 address 10.2.100.1 255.255.0.0
    interface MgmtEth0/RSP0/CPU0/1
    shutdown
    interface TenGigE0/0/2/0
    shutdown
    interface TenGigE0/0/2/1
    shutdown
    interface TenGigE0/0/2/2
    shutdown
    interface TenGigE0/0/2/3
    shutdown
    router static
    address-family ipv4 unicast
    0.0.0.0/0 10.2.0.1
    ssh server v2
    xml agent ssl
    xml agent tty
    xml agent
    iteration on size 100
    end
    and RP/0/RSP0/CPU0:ios# xml echo Wed Apr 15 07:27:10.765 UTC XML>
    I've got two test users, root:root and xml, both of which I can connect to using SSH though the XML interface seems to reject them - using nc:
    alexanderturner@Alexanders-MacBook-Pro~/Downloads> nc -v 10.2.100.1 38751
    found 0 associations
    found 1 connections:
    1: flags=82<CONNECTED,PREFERRED>
    outif en0
    src 10.0.1.40 port 61066
    dst 10.2.100.1 port 38751
    rank info not available
    TCP aux info available
    Connection to 10.2.100.1 port 38751 [tcp/*] succeeded!
    User Access Verification
    Username: root
    Password: root
    User Access Verification
    Is this not authing against local?
    Thanks,
    Alex

    hey alex,
    it is likely failing tacacs author because of this line:
    aaa authorization exec default group tacacs+ local
    as long as the tacacs server is available, it will try against him and if that user doesnt exist in tacacs, it will fail that shell author.
    revise config to:
    aaa authentication login default local
    aaa authorization exec default local
    have a local username available that has cisco-support/root-system
    or you can also do a debug aaa author and debug tacacs and see what service is requested so taht the user profile can be updated providing that author if you like to leave the existing tacacs author in place.
    cheers!
    xander

  • Can not use XML API from Sun (JAXP)

    Some of my EJBs and Servlets uses XML API from Sun (JAXP) but after deployment the J2EE Container uses its own XML engine (Oracle XML Parser....) instead.
    I try to add JAXP library to my deployment file and test again but this problem still occurred.
    My question is how to add my libraries to J2EE Container and these libraries can be shared by any applications.
    Regards,
    Narong

    Please post this in the misc or xml newsgroup.
    vipuld shah wrote:
    i have an application which is running through javaWebStart
    if u start the application first time(through clicking on
    link of .jnlp file), it will download necessary .jar files
    & it will store those files in javaWebStart's cache.
    when u will visit second time, it will check files in cache
    with the files in server, if both are same, then it will not
    download but will use from its cache.
    it works fine for .jar files, but is it possible for some .xml
    files which are changing very rarely.--
    Rajesh Mirchandani
    Developer Relations Engineer
    BEA Support

  • Unable to add xml-apis.jar

    When ever i add xml-apis.jar to the oracle application server as part of deployment of my application, the server gives the following error when i want to log into the application server control.
    This OC4J is configured to make JMX connections via RMIS and fall back to RMI if the RMIS port is not configured. The RMIS connection on the OC4J instance home on Application Server test.10.224.1.158 is configured but a connection could not be established. The JMX protocol is specified by the oracle.oc4j.jmx.internal.connection.protocol property in opmn.xml

    let follow your post on unable to add xml-apis.jar
    regards
    Tugdual Grall

  • XML API

    I'm interested in working on XML and I came across JDOM. I was wondering if that is the "best" XML API currently. If not, what API should I look into? Any help would be appreciated. Thank you.

    h1. DOM
    DOM's are only useful for small (say <=1 Mb) XML documents because DOM is very memory hungry.
    The rule of thumb is: minimumDomRam = sizeOfXmlFileOnDisk * 3... and that's a minimum, I've seen that go as high as 6 * sizeOfXmlFile.
    DOM keeps the whole of the parsed document-tree in memory, which can be especially problematic in a Java server, which must by it's nature be able to satisfy many concurrent client requests, which means no single user or process can be allowed to "hog resources". So on the server-side we mainly use SAX Parsers, or a "higher-level" XML-Binding technology like XMLBeans (or JAXB apparently, though I've never personally used it, because most of our stuff all predates JAXB's release, and why swap horses now).
    <snip>I was writing a treatise on virtual memory, thrashing, and how to avoid it... but you can google those terms and find more instructive articles than anything I could write.</snip>
    DOMs' strength is that it facilitates modifing the contents of the document directly in code. So you can build a new DOM document (or deserialize and then modify an existing one) and then just automagically serialize it. Marvelous! (so long as that process only ever handles small XML documents!).
    h1. JDOM
    JDOM: (as previously stated) is a java-native-DOM... In my mind it sits between a "real language agnostic W3C DOM" and the XML-binders like XMLBeans. It gives you much of the functionality of a DOM with a significantly smaller memory footprint and much faster (though still not brilliant) processing primitives. But it's still suitable only for small-ish XML documents (say < 2 or maybe 3 Mb, depending all sorts of stuff).
    h1. SAX
    SAX parsers process a "stream of elements" meaning that you only keep each xml-element's contents in memory for as long as you need to process that element... so (if you're sane) you don't ever have the whole document in memory at once, hance you use a ship-load less RAM than you would for the equivalent DOM. SAX's "callbacks" are very fast (as fast as can be). So SAX is the only way to go when you handle even-sometimes-big (say 5 Mb plus) documents.
    SAX doesn't facilitate modifying the contents of the document directly, though you can use XSLT's (transforms) to modify existing models, this process is very cumbersome and technically terribly confusterpating (ergo: basically pretty sh1tty), and therefore (IMHO) should (almost always) be avoided.
    h1. StAX
    StAX sort-of sits in between DOM and SAX.
    StAX also processes XML as a stream-of-elements. Conceptually speaking: StAX gives you forward-only element-iterator on the document-tree. It differs from SAX in that your program "pulls" the elements as you require them; where-as SAX logically "pushes" the elements to you to deal with as they occure in the document. In some circumstances, "pulling" the data as you need it can dramatically reduce the "statefullness" (the number/size of elements you need to remember at any one time) inherent in the process.
    StAX excels at processing large (not huge) documents with relatively complex (i.e. inherently stateful) schemas. The downside of StAX is that (IMHO) your parse-code is more complex than the SAX equivalent. StAX operations are also a tad slower than there SAX equivalents.
    If I wrote my own XML-binding-code-generator it would use StAX under the hood.
    h1. Binders
    XML-binders allow you to construct and/or modify an "object graph" (a tree-like-data-structure of Java objects which represent the same "model" as the XML). This graph is logically equivalent to a DOM. You still have the whole object-graph in memory at one time, but because they're "native objects" (as apposed to an abstract model of those objects) there's a lot less overhead; meaning that (depending on the nature of the data therein) an object graph tends to be much much smaller in memory than it's equivalent XML document (GOOD!) and the operations are much much faster because native object offer native accessors and mutators (GOOD! GOOD!).
    If anyone strongly disagrees with anything I've said I'm all ears... This is just my opinion, and I stand (or sit, as the case may be) to be corrected.
    Cheers. Keith.
    Edited by: corlettk on 21/03/2009 10:15 ~~ Can't spell, can't type, can't code. Darn!

  • Java.rmi.ServerException: Internal Server Error (deserialization error: XML

    I am trying to transmit a document as a byte array to a web service using jax-rpc, and I get the following error:
    2004-05-25 08:04:39,468 exception [Thread-5] - [email protected]33fd java.rmi.ServerException: Internal Server Error (deserialization error: XML parsing error: com.sun.xml.rpc.sp.ParseException:58: Expected "</ns0:receivexmldocument>" to terminate element starting on line 2)
         at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:370)
         at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:231)
         at com.mobius.cmsl.client.contentindexlistener.ContentWebServiceListenerIF_Stub.receivexmldocument(ContentWebServiceListenerIF_Stub.java:63)
         at com.mobius.cmsl.adapters.convera.client.ContentWebServiceClient.sendxml(ContentWebServiceClient.java:89)
         at com.mobius.cmsl.adapters.convera.client.ContentInterceptor.doGet(ContentInterceptor.java:89)
         at com.mobius.cmsl.adapters.convera.client.ContentInterceptor.doPost(ContentInterceptor.java:110)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    The code looks like:
    Client:
    clientStub = (ContentWebServiceListenerIF_Stub)new ContentIndexService_Impl().
    getContentWebServiceListenerIFPort();
    clientStub._setProperty(Stub.ENDPOINT_ADDRESS_PROPERTY, endPoint);
    obj = clientStub.receivexmldocument(cd.externalLink.contents,inxml);
    Web Service:
    public String receivexmldocument(byte docstream[],
    String inxml
    ) throws RemoteException {
    The wsdl looks like:
    <message name="ContentWebServiceListenerIF_receivexmldocument">
    <part name="arrayOfbyte_1" type="xsd:base64Binary"/>
    <part name="String_2" type="xsd:string"/></message>
    <operation name="receivexmldocument" parameterOrder="arrayOfbyte_1 String_2">
    <input message="tns:ContentWebServiceListenerIF_receivexmldocument"/>
    <output message="tns:ContentWebServiceListenerIF_receivexmldocumentResponse"/></operation>
    The documents I am sending do contain special characters like maybe japanese or italian.

    Sounds like the xml you are sending is not well-formed. Please start with simple xml documents to see if it works.

  • Can we option or property to remove xml prolog ?xml version="1.0" encoding="UTF-8"? )  in atg server

    Hi
    i have a doubt if any one knows please let me know.
    in atg rest service(POST Request) i am sending request as xml and also i am expecting response as xml
    i have configured to get response as xml,but i want to delete xml prolog<?xml version="1.0" encoding="UTF-8"?>)  from my response can we have property to remove  xml prolog by using  atg server.
    thanks in advance
    bala

    Hello Soumya,
    Good to know it worked, I have got some doubts of using XPATH have U ever worked on that, let me know.
    Bye,
    Sam Mathew

Maybe you are looking for

  • ICal dock icon wont update in Leopard

    My iCal dock icon has stopped updating the current date. I have dragged the icon off the dock and re-dragged a fresh version from the iCal application but this only works for the current day where again it will not update the next day. I have had Leo

  • Clearing Payment Advices

    Hi In SAP when we are creating a credit memo it allows you to assign this credit to a debit. Once its assigned it created a payment advice with this credit and debit information. I know how to clear this manually. I use FB05 and enter the payment adv

  • I can't believe prelude doesn't have "organize by date" in the Ingest window.

    I mean, like what, 99.9% of all apps, even cheap 'unprofessional' ones, have this. It's just standard coding procedure; and why?? ..because it SAVES TIME when you have many files to wade through!  At v3.2 this common and 'foundational' feature should

  • SSIS Dynamic Input Parameters

    Good day, I have a simple package that makes use of a stored procedure.  The stored procedure makes use of a start and end date parameter. I would like, when I execute the package, the first thing is an input box(es) to accept these parameters, then

  • Trying to get to home sheering

    how can i home sharing