Searching volume on server from client for content in file

We have 9 macs networked to a mac G4 server running server software for 10.3.9. All macs are running 10.4.9. Is there a way to search from a network client for a the content of a file located on the server, to which the client has access privileges.

Since the server is running 10.3.9, it won't be indexed through Spotlight..
You might try using EasyFind.
Just be aware that every time you do a content search, it has to read through the files on the server, rather than relying on a pre-built index, so search times may be a lot longer than a comparable Spotlight search. You can mediate that to a degree by narrowing the range of the search. (Searching a particular folder instead of the whole volume)

Similar Messages

  • Creation of files on server from client

    i want to create a file on server from client.
    so i have to create the file using uri that resides on server, but i am not able to create file using that URI
    i want to create in this location.
    "http://localhost:8080/web/a.jsp"
    so please give me the syntax for that.
    thanks in advance

    i checked that url........but its talking ablut urlconnection and url......but i want to create file with uri....could u plz help me
    thx & regds

  • Can we stop shared server from client m/c

    Hi all,
    Can we stop Oracle Shared and Dedicated server from Client Machine if i am connecting through SYSDBA.
    Thanks
    Vipin

    > Can we stop Oracle Shared and Dedicated server from Client Machine if i am
    connecting through SYSDBA.
    Yes. No.
    Yes, you can stop shared server. Simply decrease the shared server pool to zero. (see below for details)
    No, you cannot stop a dedicated server as "The Thing" that creates dedicated server connections is the Listener. So you will need to stop that.
    # stop shared server:
    SQL> show parameter shared_servers
    NAME TYPE VALUE
    max_shared_servers integer 20
    shared_servers integer 10
    SQL> alter system set shared_servers=0 scope=memory;
    System altered.
    # now attempt a shared server connection
    /home/billy> sqlplus scott/tiger"(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL=TCP)(HOST=dev)(PORT=1521))) (CONNECT_DATA = (SID=dev) (SERVER=shared)))"
    SQL*Plus: Release 10.2.0.1.0 - Production on Wed Sep 5 12:21:06 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-12519: TNS:no appropriate service handler found
    # start the shared server (in the SYSDBA session)
    SQL> alter system set shared_servers=10 scope=memory;
    System altered.
    # now attempt a shared server connection
    /home/billy> sqlplus scott/tiger@"(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL=TCP)(HOST=dev)(PORT=1521))) (CONNECT_DATA = (SID=dev) (SERVER=shared)))"
    SQL*Plus: Release 10.2.0.1.0 - Production on Wed Sep 5 12:21:17 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning and Data Mining options
    SQL>

  • Connect 11g server from client

    Hi,
    i have 11g daatabase and 11 g client. can u please help me to connect 11g server from client
    pls help with steps
    thanks

    Chinu wrote:
    Hi,
    i have 11g daatabase and 11 g client. can u please help me to connect 11g server from client
    pls help with steps
    thankssqlplus
    / as sysdba
    Handle:      Chinu
    Status Level:      Newbie
    Registered:      Sep 19, 2009
    Total Posts:      323
    Total Questions:      123 (102 unresolved)
    why so MANY unresolved questions?

  • How to capture the message recived to the soap server from client -onMessag

    Hi,
    I want to send JAXM message from client to server
    and In server print the message to a text file.
    My client
    SOAPConnectionFactory scf = SOAPConnectionFactory.newInstance();
    SOAPConnection con = scf.createConnection();
    MessageFactory mf = MessageFactory.newInstance();
    SOAPMessage msg = mf.createMessage();
    SOAPPart part = msg.getSOAPPart();
    SOAPEnvelope envelope = part.getEnvelope();
    SOAPBody body = envelope.getBody();
    javax.xml.soap.Name name = envelope.createName("Text");
    javax.xml.soap.SOAPBodyElement bodyElement = body.addBodyElement (name);
    bodyElement.addTextNode ("Some Body text");
    This is the way i'm accessing now in theserver
    public SOAPMessage onMessage(SOAPMessage msg) {
    try {
    FileOutputStream out; // declare a file output object
    PrintStream p;
    out = new FileOutputStream("E:/Accepter.txt");
    p = new PrintStream(out);
    int count = msg.countAttachments();
    p.println("write");
    msg.writeTo(out);
    This creates the text file and write unwanted characters
    1)How do i access the message content and store in a text file or
    String variable??
    2)How do i access the message content in name wise in he case of many messages recived to the server
    Thanks for your time .
    suda

    * To save a message to a file.
    File file = new File("file.xml");
    msg.writeTo(new FileOutputStream(file));
    * To recreate a message (without attachments) from a file.
    MessageFactory mfactory = MessageFactory.newInstance();
    SOAPMessage msg = mfactory.createMessage();
    SOAPPart part = msg.getSOAPPart();
    StreamSource streamSource =
    new StreamSource(
    new FileInputStream("file.xml"));
    part.setContent(streamSource);
    // to view the recreated message
    msg.writeTo(System.out);
    * You should also be able to use DOMSource to recreate the message as:
    DocumentBuilderFactory factory =
    DocumentBuilderFactory.newInstance();
    factory.setNamespaceAware(true);
    DocumentBuilder builder = factory.newDocumentBuilder();
    Document domDoc =
    builder.parse(
    new File("file.xml"));
    Source domSource = new
    javax.xml.transform.dom.DOMSource(domDoc);
    MessageFactory mfactory = MessageFactory.newInstance();
    SOAPMessage msg = mfactory.createMessage();
    SOAPPart part = msg.getSOAPPart();
    part.setContent(domSource);
    Hope this helps.

  • Setup Java system directory server 6 client for user authentication

    I am trying to set up a native LDAP client for sun directory server 6 for network based user authentication. I checked the sun doc for naming service (LDAP) and the documentation are for setting up LDAP client for directory server 5. Is there any documentation for setting up LDAP client for directory server 6? Or the documents for setting LDAP client for directory server 5 is still good for 6? Particularly, I want to use SSL communication between server and client.

    Hi,
    could be one of the other 'bad jokes' of DS/ldapclient because the documentation describes a lot of stuff about profiles etc. but: you need some special schema files to use the whole stuff and they are not installed with Solaris or DS (and they include the NisDomainObject). I had to search for them in the internet. They are also printed in the documentation. Save them in your server's config/schema directory as i.e. 61DUAConfigProfile.ldif and 62nisDomain.ldif and try idsconf again (maybe you have to cleanup something).
    I test and prepare DS6 here, and we will use it in production too. I hadn't any problem with it and it has some important advantages over DS5.2. But we won't have a huge directory so I can't tell you anything more about it.
    Regards
    Jochem Ippers
    Here are the ldifs:
    61DUAConfigProfile.ldif:
    dn: cn=schema
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.0 NAME 'defaultServerList' DESC 'Default LDAP server host address used by a DUA' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.1 NAME 'defaultSearchBase' DESC 'Default LDAP base DN used by a DUA' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.2 NAME 'preferredServerList' DESC 'Preferred LDAP server host addresses to be used by a DUA' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.3 NAME 'searchTimeLimit' DESC 'Maximum time in seconds a DUA should allow for a search to complete' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.4 NAME 'bindTimeLimit' DESC 'Maximum time in seconds a DUA should allow for the bind operation to complete' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.5 NAME 'followReferrals' DESC 'Tells DUA if it should follow referrals returned by a DSA search result' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.6 NAME 'authenticationMethod' DESC 'A keystring which identifies the type of authentication method used to contact the DSA' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.7 NAME 'profileTTL' DESC 'Time to live, in seconds, before a client DUA should re-read this configuration profile' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.14 NAME 'serviceSearchDescriptor' DESC 'LDAP search descriptor list used by a DUA' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.9 NAME 'attributeMap' DESC 'Attribute mappings used by a DUA' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.10 NAME 'credentialLevel' DESC 'Identifies type of credentials a DUA should use when binding to the LDAP server' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.11 NAME 'objectclassMap' DESC 'Objectclass mappings used by a DUA' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.12 NAME 'defaultSearchScope' DESC 'Default search scope used by a DUA' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.13 NAME 'serviceCredentialLevel' DESC 'Identifies type of credentials a DUA should use when binding to the LDAP server for a specific service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'user defined' )
    attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.15 NAME 'serviceAuthenticationMethod' DESC 'Authentication method used by a service of the DUA' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'user defined' )
    objectClasses: ( 1.3.6.1.4.1.11.1.3.1.2.4 NAME 'DUAConfigProfile' SUP top STRUCTURAL DESC 'Abstraction of a base configuration for a DUA' MUST ( cn ) MAY ( defaultServerList $ preferredServerList $ defaultSearchBase $ defaultSearchScope $ searchTimeLimit $ bindTimeLimit $ credentialLevel $ authenticationMethod $ followReferrals $ serviceSearchDescriptor $ serviceCredentialLevel $ serviceAuthenticationMethod $ objectclassMap $ attributeMap $ profileTTL ) X-ORIGIN 'user defined' )
    62nisDomain.ldif:
    dn: cn=schema
    attributeTypes: ( 1.3.6.1.1.1.1.30 NAME 'nisDomain' DESC 'NIS domain' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'user defined' )
    objectClasses: ( 1.3.6.1.1.1.2.15 NAME 'nisDomainObject' SUP top STRUCTURAL MUST nisDomain X-ORIGIN 'user defined' )

  • Server or client for MAMP?

    I maintain a Java web application built on Apache, Tomcat 6, PHP, and MySql (with bits and pieces of CGI and Perl). It runs quite readily on both OS X 10.6 server and client. Server 10.6's Server Admin app adds monitoring and a firewall GUI, plus basic control over Apache and Tomcat, all of which is kind of nice.
    The current incarnation of OS X Server (Mountain Lion: 10.8), however, no longer includes Tomcat, MySQL or even Java by default. The firewall GUI is gone. Are there subsitutes provided and can anyone say from experience what the migration learning curve is like? I've been slowly adding MySQL, Tomcat, etc. to 10.8 but then I started wondering, why bother? I can add those to the client just as well.
    And, if anyone else is running MAMP/Tomcat applications on Mountain Lion, do you use client or server?
    I'm getting a bit fed up wrestling with AFP login problems and setting up DNS and LDAP servers I don't plan to use, but 10.8 won't work without them. Change IP and it breaks. It crashes periodically. Mountain Lion server is advertised as "the server for everyone". Does that mean everyone except MAMP users? I thought there were more of us… or am I missing something?
    More heretically, should I just bite the bullet and move our Tomcat app to a cloud Linux host? Is Apple giving up on the server market?
    edit: I'll just add, I wouldn't even be migrating to Mountain Lion except that the latest hardware no longer supports 10.6. Virtualization is looking better and better.

    Apple hasn't been aimed at the "enterprise" market and high-end nor at tailored or bespoke or custom servers for a while now, if ever.  Simple servers, yes.
    Without intending any snark, definitely consider running Linux or BSD here, or hosted equivalents.  That's probably a better choice for how you're seemingly preferring to operate with your servers.  (And again, this is not intended to be flippant, nor to dissuade you from OS X or OS X Server.  It's just that tussling with how Apple does things is... an effort.  If you want or need customizations, that's possible with Apple but tends to be more of an effort to install or maintain.)
    As for OS X, there are some command-level mechanisms for accessing various components that were once available via the GUI, including the firewall.  man pfctl, for instance.
    OS X Server does not "appreciate" operating on dynamic addresses, nor do most other servers I've worked with.  It'd be more typical to use a static IP address, or a NAT box out front that masks the DHCP shenanigans from view of the OS X Server box.  (There can also be ISP port blocks and other issues arising with dynamic addresses.)  This issue also also ties into DNS and security, as well; DNS and IP and certificates are all aspects of how connections are secured and how web and mail servers are authenticated...
    In general, DNS is a requirement for running most servers these days.  You could get away without that back around 10.5 or so, but more recent releases use DNS for both communications and for security; certificates are based on DNS, for instance.  (If you do choose Linux or BSD, you'll still need a correct DNS configuration for starting up and using HTTPS and SMTP, for instance.)
    Apple deprecated Oracle Java at 10.7, which would also apply to Apache Tomcat.  (For many folks using OS X and OS X Server, Oracle Java has been little more than an unnecessary security vulnerability, and a source of various security updates from Apple for releases prior to 10.7 deprecation and from Oracle with 10.7 and later.)
    I've used MAMP and it's a good testing environment and was (at the time I was using it more often) much cheaper than OS X Server, but wouldn't generally recommend mixing MAMP with OS X Server.  Particularly given the reduction in pricing with OS X Server.  (MAMP was also recommending against Internet-facing production use in the past, due to the fairly open configurations of the included products.  Haven't checked recently.)

  • How to upload an image from servlet/jsp into server from clients machine?

    can anybody send me the code to upload image from client to server using servlet/jsp.
    i'm using tomcat server.

    You can use the [Apache Commons FileUpload API|http://commons.apache.org/fileupload/] to upload files using Java.
    Here is a Filter example which uses the FileUpload API to process the request and stores the regular request parameters back in the ParameterMap of the request and puts the uploades files as attributes of the request: [http://balusc.blogspot.com/2007/11/multipartfilter.html] Just define it once in web.xml and you can continue writing the servlet logic as usual.

  • Cannot connect to Oracle 10g XE Server from Client

    I have tried in vain to connect to the Server from a client installation using both browser and SQLPlus. Someone help me out pls...
    Glogo.

    I have read the SelfStudy many times but Sheila can't help me. I have installed 10g XE Client on a different pc and tried connecting as follows to no avail:
    FROM Run SQL Command line; I entered "conn glogo/*****@GServer:8080/apex" the report I always get is
    ORA-12170: TNS:Connect timeout occured
    From Internet Explorer; I entered "http://GServer/127.0.0.1:8080/apex" the report I get is internet explorer cannot display the webpage
    I ensured the listener is on by typing LSNRCTL STATUS on the command line of the system running the Server. The report indicates that the Listener is ready.
    I am still wondering what is wrong! I have also changed network setting from DHCP to static IP without results. What next friend(s)? Do you know?

  • How to setup HTTP client for HTTP to File scenario

    Hey guys
    i have a scenario wherein one of our clients is sending invoices(as XML message) over  HTTP(client is outside our landscape) and i have to to send this invoice to a File system from where it will be picked up by an ABAP code(picking of the file has to be done by ABAper so i m not concerned with that)
    the way i m starting off this project is that
    i will create a sender and receiver data type,message type and Message interface,Message mapping is 1-1 so its kinda simple and then Interface mapping.
    in configuration i wont be creating and sender communication channel and sender Agreement,i need receiver communication channel,receiver determination and interface determination.
    does my design and configuration looks good to you guys?
    also i waz goin through some threads and it says that i need to setup HTTP client for this scenario and then specify a URL in a specific format.
    where will i setup the HTTP client and where will i specify the URL?
    thanx
    ahmad

    Ahmad,
    ><i>does my design and configuration looks good to you guys?</i>
    Is correct.
    ><i>where will i setup the HTTP client and where will i specify the URL?</i>
    Take a look at this thread and check the HTTP Client code.
    Copy the code and save it as a HTML file and you have the HTTP Cliet ready. GIve the details of your server, sender service, interface etc and trigger the call to XI.
    In a real time scenario, you will need to use the URL used in the HTTP Client code from your WebApplication to trigger the call to XI.
    /message/266750#266750 [original link is broken]
    Regards
    Bhavesh

  • Code for uploading a file to server from client

    please help me as soon as possible

    The Apache > Jakarta > Commons FileUpload package makes it easy to add robust, high-performance, file upload capability to your servlets and web applications.

  • Getting a csv file in server from client

    Hi,
    This is my first mail to the forum. I hope some one would help me to find a solution for me. I got a xyz . csv file in my server. I want to get that file and save it in my client (anywhere)having the same file type. Gimme source code if you have. I am looking for a solution for the past two days.
    please reply me as soon as possible.
    To be more clear, I am having a save button in my page.On clicking this button i should fetch the file from server and save it in my desired location as a file itself not as text content or anything.
    Please help me
    Thanks in regards,
    S.karthik

    You can open the textfile on the servlet and then send the information to the client (applet) as stirngs. The must then applet convert the stirngs into some object or simply display the information in someway. But then the text file that you are opening must be stored in some relevant tomcat directory e.g. on the server. If you want to open a file on the clients computer, you get into signed applets.

  • WHCK - Not able to access Server from client machine

    Hi,
    Server is running in : \\testserver
    Domain : ns.local
    Client : testclient 
    Test Name : TDI filters and LSPs are not allowed
    When the above test is run from the server side, Test fails with the following error:
    Cause : Failed to Start the Task
    Cause : Zero files are copied when Trying to Copy From Path "\\testserver.ns.local\TaefBinaries\x64"....Failing the Task
    Failure : Failed to Start the Task "Copy TAEF Binaries"
    Cause : Failed to Copy File : "\\testserver.ns.local\TaefBinaries\x64" Dest : "C:\WLK\JobsWorkingDir\Tasks\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1\"
    Cause : Cannot Find Pattern "\\testserver.ns.local\TaefBinaries\x64"
    From WttEa.log , it displays "The network path was not found". 
    CRunManager::ExecutionAgent: Working Dir C:\WLK\JobsWorkingDir\JobRuns\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1 
    CRunManager::ExecutionAgent: Saving RunXML to file C:\WLK\JobsWorkingDir\JobRuns\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1\WttJobRun.Xml
    CRunManager::ExecutionAgent: Saving EaDataXML to file C:\WLK\JobsWorkingDir\JobRuns\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1\WttEaData.Xml
    CRunManager::UserName : DTMShareUser
    CRunManager::Domain : TESTSERVER
    CRunManager::Password : Server2008,WTT5326ShareUser
    Build No Greater than 4000. This is a Windows Vista Machine
    Single User TS Enabled
    Comparing TESTSERVER testclient.ns.local 10
    Logon Netonly
    GetUserToken : Returns 0
    Error: 0x35, The network path was not found.   WTTCreateDirPAth : CreateDirectory \\testserver.ns.local\HCKLogs\EaFolderAccessCheck\CF82A2A5-E08D-49C7-A078-4BA1416F1AA1 Failed   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\common\eautil\src\eautil.cpp
    Line=1589
    Error: 0x80070035, The network path was not found.   (Error ( status = 53 ) in call: WttCreateDirPath(lpszTemp) )   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\eamanager\runmanager\src\runmanager.cpp Line=2232
    Retrying the log location creation 10 more times
    Error: 0x35, The network path was not found.   WTTCreateDirPAth : CreateDirectory \\testserver.ns.local\HCKLogs\EaFolderAccessCheck\CF82A2A5-E08D-49C7-A078-4BA1416F1AA1 Failed   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\common\eautil\src\eautil.cpp
    Line=1589
    Error: 0x80070035, The network path was not found.   (Error ( status = 53 ) in call: WttCreateDirPath(lpszTemp) )   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\eamanager\runmanager\src\runmanager.cpp Line=2240
    What could be the problem ??? What steps need to be done or checked further to proceed ??
    Could you please help why the client is not able to access Server ???
    Thanks.
    Regards,
    Pradeep VR

    Hi,
    Reason for this failure is that the test executable is not present in the HLK controller.
    It looks like a Microsoft issue. We have faced same type of problem for other tests also. Our problem gets fixed in HLK 10056.
    If you face the problem in current build also, then please log a bug to Microsoft.
    Thanks,
    Arpo

  • Searching Oracle 8.1.7 Client for Solaris on x86/Intel

    Hi all,
    I need an Oracle client 8.1.7 running on a Sun Solaris on a Intel/x86 chipset (in VMware)
    Exists there any location to download this client?
    thanx for help!
    Andreas
    Salzburg, Austria

    Are there plans to have a Solaris x86 version downloadable on OTN? I am making the OS decision for a new development server. I would like it to be Solaris x86 but if Oracle is a no-go on Solaris x86, I will have to use Linux or... hate to say it... M$

  • Setting interface name dynamically from client for SOAP Adapter...

    Hi,
    does anyone have experience in setting the sender interface name in the HTTP-SOAP request dynamically? I have followed the instructions in "How To Use the XI 3.0 SOAP Adapter" on page 17 (see also SAP Note 856597) which say:
    "If you select Use Encoded Headers and Use Query String,
    [...]The sender SOAP adapter creates the XI message header according to the
    information provided in the query string. [...] In the sender SOAP adapter, you can use only some of the parameters, but the first
    parameter must always be the version. For example, you send from the Web service client to the following URL: http://<host>:<j2ee-port>/XISOAPAdapter/MessageServlet?channel=<party>:<service>:<channel>&version=3.0&Interface=http%3A
    %2F%2Fsap.com%2Ftest%5ETest
    This will overwrite the default interface and namespace of the sender channel."
    This is exactly what I need! However, what I actually get as a response following this description is a SOAP:Fault with a java.lang.StringIndexOutOfBoundsException: String index out of range: -1.
    Has anyone got this to work properly?
    Thanks in advance.

    Thank you for your input. I am using the following format for the call (with "x" standing for one letter each):
    http://xix.xxx.xx.xxx:5xx00/XISOAPAdapter/MessageServlet?channel=:xx_xxx_xxx_xxxx:xx_xxx_x_SOAP_S&version=3.0&Interface=http%3A%2F%2Fxxxxxxxx.xx%2Fxxxxxx%2Fxxxxxxxxxxxxxxxxxxxxxxxx%5Exxxxxxxxxxxxxxxxxxxxxx
    Anything wrong with that? With unchecked "Use Encoded Headers" and "Use Query String" it works fine (default interface) but as soon as I set these flags I get the SOAP-Fault response.
    We are on XI 3.0 SPS18.

Maybe you are looking for

  • On XP SP3 can't run plug-in, get IE script error without running IE, click Yes or No, nothing more happens

    I am running XP SP3 and FF 3.6.18. I have been having trouble opening PDFs in FF but not in other browsers. FF tells me to update my Adobe PDF plug-in. I click in the FF list to update, go through the procedure and when I click on run I get the follo

  • [Solved] Amarok v2.8 doesn't start

    Hi, With the last Amarok update (v2.8), i am getting a notification at startup : Amarok could not find any collection plugins. It is possible that Amarok is installed under the wrong prefix, please fix your installation using: $ cd /path/to/amarok/so

  • Powermac g5 display incompatibility

    I have a powermac g5 late 2005 version. I use a VGA adapter to connect to my samsung 20" display. The PC boots up fine but the monitor stays blank. Please help. Thanks

  • Flash to DVD.... how and what format

    Im trying to get my flash file converted over to a looping video clip, on DVD that will play on a wide screen TV. Hope some experts here can help with a few pointers. 1. I made it 1020x720.... should it actually be.... 1280x720? 2. I've downloaded se

  • NLS bugs when running PL/SQL [fixed]

    Hi, Issuing select VALUE from NLS_SESSION_PARAMETERS where parameter='NLS_TERRITORY'; from a worksheet returns me a correct AMERICA, as specified in the preferences and my Windows registry. However, after noticing buggy behaviour of my procedures, I