Reg:Consuming WS from External Server

HI All,
        We have a requirement of consuming a WS from TIBCO using Adaptive WS Model,
should a logical destination is manditary to connect(If service does not reside in the same server)?
please suggest me..
Thanks
Nagaraju

Hi Nagaraju,
If you are consuming your web service created in TIBCO, then you need not to have logical destination. WSDL of that web service is enough to consume that web service . Also web services ceated in any language/technology can be used without creating its logical destination. Hope your doubt was clear ..
Thanks
Sagar Ingalwar

Similar Messages

  • How to extract files from external server

    Dear Friends,
    I need to connect to an external non SAP server, from which i need to extract invoice files.
    Invoice files are of two types:
    1. .dat format files which contain invoice data
    2. .PDF or .JPEG documents, which are supporting documents for those invoice.
    My question are
    1. How do i connect to the external server?
    2. Do i have to do a FTP from SAP to that file server?
    3. Do i have to fetch the .dat file using dataset statments?
    4. What are the basis and network related activities involved to get connected to that external server?
    Any inputs and help on this is highly appreciated and rewarded.
    Thanks,
    Simha

    Hi Simha,
    1. How do i connect to the external server?
    Using  FTP or RFC, BAPI are also possible to get the data from Non SAP server.
    2. Do i have to do a FTP from SAP to that file server?
    based on your company policy use FTP to transfer the data.
    3. Do i have to fetch the .dat file using dataset statments?
        yes. if u using ECC6.0 try this method
    CL_RSAN_UT_APPSERV_FILE_READER=>APPSERVER_FILE_READ
    Reward if found helpful.

  • Cant do a file get from external server using file sender adapter with ftp

    Hi all,
    Up until now our company has only used the file sender adapter with ftp protocol to get a file from our XI server for processing and input the file into an integration process
    I have a requirement to do an ftp file get from an external server
    From our XI development server I can ftp directly to the external server and view the required directory using the command window via a DOS prompt (FTP open ...).  So all firewall issues and communications are fine
    Unfortunately I cannot currently pull files from the external server using the XI file adapter with ftp protocol from the XI development server AWB017
    FTP Connection Parameters: External server name using port 21, Data Connection is Passive, No security, I supply a userid and password
    Processing Parameters: Processing Mode is Archive (I tried test but this did not work either)
    No messages appear in the RWB
    Is there something else that I need to set up in order for the external ftp get to work via the XI file adapter?
    Regards,
    Mike

    Thanks for your responses.
    I have found the error messages in the File Adapter Monitor
    Scenario 1
    When I prefix the source directory with a forward slash, eg <b>/Folder/Subfolder</b> the error message is as follows
    <b>EST: Error: Error connecting to ftp server 'ip address': FTPEx: /Folder/Subfolder: The system cannot find the path specified</b>
    Scenario 2
    When I DO NOT prefix the source directory with a forward slash, eg <b>Folder/Subfolder</b> a different error message is returned
    <b>Error: Retrieving file 'FILENAME.XML' failed unexpectedly: FTPEx: Folder/Subfolder: The system cannot find the path specified</b>
    At least in this scenario the adapter has been able to identify the file on the external FTP site but cannot retrieve it
    Questions
    I thought that the backslash prefix for the source directory was mandatory but I am receiving an error in each scenario
    I receive the same error message whether the Processing Mode is 'Archive' or 'Test'
    The logs on the external ftp server seem to indicate that I am simply connecting, sending username and password then quiting straight away. I am not issuing any commands that they can see
    I thought that being a Sender adapter it would inherently execute a Pull or Get command
    To recap, from our XI development server I can ftp directly to the external server and view the required directory using the command window via a DOS prompt (FTP open ...). So all firewall issues, communications, userid and password are fine
    Has anyone experienced these issues?
    Please advise on next course of action?
    Regards,
    Mike

  • Download servlet from external server

    I write a download file servlet. It should download files from external ftp and make the save as dialog window save it with proper extension.
    It gets 3 parametes:
    http://10.60.1.1:8080/sd-sp45/DownloadServlet?fileName=55555.doc&filePath=000/000/000/000/000/000/010/002/8c8/f07/57/00000000-0000-0000-0001-00028c8f076e&fileType=doc
    fileName - original file name;
    filePath - path and file name on ftp server;
    fileType - file type;
    I get an error IOException : java.oi.FileNotFoundException :
    ftp:\sdattach:[email protected]\sdftp\Servicecall\000\000\000/000\000/000/010\002\8c8\f07\57\00000000-0000-0000-0001-00028c8f076e (The file name, diroctory name, or volume label syntax is incorrect)
    I'm not sure if I can use here File class (maybe some network stuff)
    Besides, what shoud I change here :
    response.setContentType("application/octet-stream");
    response.setContentLength((int)F.length());
    response.setHeader("Content-Disposition","attachment;filename="+file);
    to save file with the extension i need?
    Thank you for help
    import java.net.*;
    import java.io.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.net.*;
    public class DownloadServlet extends HttpServlet {
        File F;
        BufferedInputStream fif;
        ServletOutputStream stream;
        public void init(){
            F=null;
            fif=null;
            stream =null;
        public void doGet(HttpServletRequest request ,HttpServletResponse response) {
            try{
                try{
                // Setting Buffer size
                response.setBufferSize(50000);
                int buffersize;
                String filePath="";
                String fileName="";
                String fileType="";
                //Receiving variables
                fileName=request.getParameter("fileName");
                filePath = request.getParameter("filePath");
                fileType = request.getParameter("fileType");
                System.out.println("========New compile==");
                System.out.println(fileName);
                System.out.println(filePath);
                System.out.println(fileType);
                String downloadFile = "ftp://sdattach:[email protected]/sdftp/Servicecall/" + filePath;
                F=new File(downloadFile);
                String file=F.getName();
                buffersize= 10248;
                byte b[]=new byte[buffersize];
                // Setting Content Type
                response.setContentType("application/octet-stream");
                response.setContentLength((int)F.length());
                response.setHeader("Content-Disposition","attachment;filename="+file);
                stream = response.getOutputStream();
                fif = new BufferedInputStream(new FileInputStream(F));
                //writing data to output stream
                int count=fif.read(b,0,buffersize);
                while(count!=-1){
                stream.write(b,0,count);
                count=fif.read(b,0,buffersize);
                //closing objects
                fif.close();
                stream.flush();
                stream.close();
                F.delete();
                }catch(SocketException se){
                System.out.println("SocketException " +se);
                catch(IOException io){
                System.out.println("IOException " + io);
                catch(Exception e){
                System.out.println("Exception " +e);
            }catch(Exception e){ System.out.println("Exception " +e); }
    }

    assuming the filepath is absolutely correct, try doing this:
    String downloadFile = "ftp://sdattach:[email protected]/sdftp/Servicecall/" + filePath;
    response.setHeader("Content-Disposition","attachment;filename=\""+downloadFile+ "\"");

  • How to Call ScheduleBatch.cmd from External Server

    I am attempting to kick off a set of Hyperion Reports after data is loaded to the Essbase. Currently, our data warehouse is loaded and then triggers a bat file which loads Essbase using a MAXL script. I want to add the automatic sending of Hyperion Financial Reports to the end of this process using ScheduleBatch.cmd. I can do this from the reports server but the Bat/Maxl exist on a separate server. Is there a way to call ScheduleBatch.cmd from an external server? If not, is there another way to accomplish this?
    Thanks for your help.
    Heather

    I do something similar, in my environment although I use esscmd.
    I first exported the Batch for command line scheduling, which generates an XML file. In my case, I stored the XML in c:\bin\financial_reporting\batch_reports\exported_batch.xml
    I then created a bat file that executes the batch (Contents of batch file in italics)
    REM START_BATCH_FILE
    d:
    cd D:\Hyperion\products\biplus\bin
    D:\Hyperion\products\biplus\bin\ScheduleBatch C:\bin\financial_reporting\batch_reports\exported_batch.xml <<REPORT_SERVER_HOST_NAME>>
    REM END_BATCH_FILE
    I created a Scheduled Task on the Reports Server that runs this task, but the task is not enabled.
    At the end of my dataload, I initiate a call to the Reporting Server to run the task (Batch file that does dataload and runs the task in italics).
    REM DATALOAD.CMD
    ESSCMD F:\DataLoads\Scripts\SCR\Load_and_AGG.ESSSCRIPT
    C:\WINDOWS\system32\schtasks.exe /run /tn Run_Scheduled_Batch /s <<REPORTING_SERVER>> /u <<DOMAIN>>\<<DOMAIN_USER>> /p <<USER_PASSWORD>>
    REM END_DATALOAD.CMD
    I don't know if I did anything else to make this work (did this a while ago).
    Hope this helps.
    Thanks
    Dan

  • Clients not getting DHCP from external server

    Hi,
    I have a 4402 (version 7.0.235) working with 10 units of 1121 APs connected to it. The WLC is not configured to work in LAG mode. Physical portt #1 is connected to the Main Switch (trunk). I have 3 WLAN mapped to 3 Different VLAN and Everything (security and internal, external DHCP) is working swell...
    Now- I have connected Physical port #2 directly to an ADSL Router (giga port), Configured Port 2 as untaggedwith the proper IP details.
    I have configured this interface to receive DHCP from the ADSL Router and for some reason, Clients are not getting addresses.
    When I assign a Static address to my laptop I get internet access and all is nice. I tried configuring The WLC internal DHCP server (instead of the ADSL router) and that didn't help. It seems like a DHCP problem but I dont understand the source of the problem of think of the solution.
    When turning off the proxy settings I noticed that it helped. Is there anything to do with that? The problem was that after a while the other WLANs starting causing DHCP issues as well.
    What is supposed to be configured? Any Expert is the House?
    I attached a crappy drawing..

    Hi Scott,
    Thanks for your answer.
    So what you are basicly saying is that I have 2 choices: 1 - disable the Proxy option on the WLC and work with external DHCP servers (internal will not work when this is enabled). 2 - Enable the Proxy option and only work with the WLC internal DHCP.
    I have installed many WLCs this way, having Different DHCP Servers (external and internal)  for multiple WLANs.
    What do you think may be different this time? The router that I am using isn't the most expencive but it is providing DHCP to other clients (wired client) with no problems.
    Thanks!!!

  • Reg:: SharePoint2010 Migration from One server to another

    Hi Techys,
    Please help to getdown from the below scenario.
    Scanario:: I have one sharepoint 2010 server (2tier), i want to prepare one more server as the same.
    Completed Activities:
    1) I have prepared the New SharePoint server with same patch level.
    2) I'm using the same DB server but prepared a Named Instance for new SP2010.(Installation success with SP2)
    3) I want tomigrate the data from SPSRVR1 to SPSRVR.
    ex: -->SPSRVR is Present Prod server(4 Webapps and 6 site collections)
          -->SPSRVR1 is Newly prepared server
    4) I have done the Database Backup and restore successfully.
    but the web app urls also has been changed. that is not my task.
    present url like http://spsrvr:10000/, syntax: http://<Oldservername>:portnumber     but the url 
    I expected the url http://spsrvr1:10000, syntax: http://<NewServername>:portnumber
    Note: While doing the database restore i have used the Overwrite the checkbox option. If i'm not using the option database restoration is failed.
    Please give me ur valuable guidance.
    Many Thanks,
    Madhu

    Hi Madhu,
    According to your description, my understanding is that you want to migrate SharePoint 2010 to a new server with the new URL of the web application.
    I recommend to create a new web application with the URL you expected in the new server and then attach the database to the new web application.
    Use the following PowerShell command to attach the restored database: Mount-SPContentDatabase "MyDatabase" -DatabaseServer "MyServer" –WebApplication http://sitename.
    More reference:
    http://technet.microsoft.com/en-us/library/cc825317(v=office.14).aspx
    http://technet.microsoft.com/en-us/library/ff607581(v=office.14).aspx
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Network adapter could not establish a connect from external server

    hi,
    I've set up a jdbc thin driver properly using
    the following input:
    "jdbc:oracle:thin:@ipaddress:1521:DBname",
    "username", "password"
    When outside users try to connect externally (outside the network) there is a different ipaddress. Although they are able to ping,
    telnet, run jsp etc... using the external address, they get the following error when they try the thin driver connection:
    i/o exception: network adapter could not establish a connection
    They change the ipaddress in the connection string to match the external ip. We are using oracle 8i, JRun on Linux. I have a feeling it has something to do with the tnsnames.ora file but I can't be sure.
    Any ideas?
    Thanks in advance!

    this is expected behavior ...
    the jdbc thin driver requires the use of an ip address that the calling program has acces to ...
    internally you have one ip address exposed.
    apparently you have another ip address set up for the external customer.
    fyi
    jdbc thin driver don'ts use the tnsnames.ora file -- they use "host:port:sid" because they are required to be platform independent and not access local datafiles or environment variables on the execution platform.
    jdbc oci drivers do use tnsnames.ora which provides the host:port:sid info in their entries.

  • Integrating JSPs from external server into Aqualogic BPM

    I need some help with the following issue I am facing with BEA Aqualogic BPM 5.7.
    I was able to successfully implement the tutorial on ?Integrating Java Server Pages?.
    I am stuck up with the action, using which, on submit of JSP embedded using screenflow, the JSP should return back and activity should be changed and taken to the next activity.
    The way I did this is:
    <form action="<f:postResults/>" method="post" name="mainform_1">
    For this, I need to add a URI at the top of the URI.
    <%@ taglib uri="http://fuego.com/jsp/ftl" prefix="f" %>
    This works fine if I am using the JSP which is deployed on Fuego application server. But for the scenario, where I have a wrapper JSP embedded inside the screenflow and through the JSP(on Fuego) I make a call to JSP which is deployed on my application, it doesn't work and gives me exception.
    My Application uses Tomcat 5.5.17.
    Exception Stack Trace:
    org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[prd_dart].[jsp] 2006-12-07 17:18:50,953 ERROR [http-9000-Processor25] (StandardWrapperValve.java:253) - Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: The absolute uri: http://fuego.com/jsp/ftl cannot be resolved in either web.xml or the jar files deployed with this application
    at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:50)
    at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
    at org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:114)
    at org.apache.jasper.compiler.TagLibraryInfoImpl.generateTLDLocation(TagLibraryInfoImpl.java:316)
    at org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:147)
    at org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:423)
    at org.apache.jasper.compiler.Parser.parseDirective(Parser.java:492)
    at org.apache.jasper.compiler.Parser.parseElements(Parser.java:1552)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:126)
    at org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
    at org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
    at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:155)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:295)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:276)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:264)
    at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:303)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:534)
    Please reply with a solution or any more information you need on this.
    Thanks,
    Gaurav
    Edited by gaurav.j.shah at 12/12/2006 4:40 AM

    Hi Gaurav,
    I hope by now you would have surely found a solution to this problem. If you don't mind please post it here for others help.
    Regards,
    Manoj

  • Fetching properties from external LDAP

    Hi,
    I have configured ActiveDirectoryAunthenticator to link to my external LDAP
    provider. I am trying to fetch some properties/attributes related to the
    profile such as company and other contact details.
    I have not configured UUP as Im using weblogic's default user store.
    Now, when I access "com.bea.p13n.controls.profile.UserProfileControl", to
    fetch the properties I get null values.
    Is there some other configuration required ?
    Please let me know the solution or the approach.
    Thanks in advance ,
    Regards,
    Arun

    Hi Arun
    Migration of data is possible
    Export the data from external server and import into your domain server
    Here is the steps
    To export and import security data:
    1.     Expand the Security-->Realms nodes.
    2.     Click the name of the realm you are configuring (for example, TestRealm).
    3.     Click the Migration-->Export tab.
    4.     Specify the directory and filename in which to export the security data in
    the Export Directory on Server attribute.
    Note: You can specify a directory and file location on another server.
    5.     Click Export.
    6.     Expand the Realms node.
    7.     Click the name of the security realm in which the security data is to be imported.
    8.     Click the Migration-->Import tab.
    9.     Specify the directory location and file name of the file that contains the
    exported security data in the Import Directory on Server attribute.
    10.     Click Import.
    To verify the security data was imported correctly:
    1.     Expand the Security-->Realms nodes.
    2.     Click the name of the realm into which the security data was imported.
    3.     Click Users.
    4.     Users from the security realm from which you exported the security data should
    appear in the Users table.
    Cheers
    Surya
    "Arun A.G." <[email protected]> wrote:
    Hi,
    I have configured ActiveDirectoryAunthenticator to link to my external
    LDAP
    provider. I am trying to fetch some properties/attributes related to
    the
    profile such as company and other contact details.
    I have not configured UUP as Im using weblogic's default user store.
    Now, when I access "com.bea.p13n.controls.profile.UserProfileControl",
    to
    fetch the properties I get null values.
    Is there some other configuration required ?
    Please let me know the solution or the approach.
    Thanks in advance ,
    Regards,
    Arun

  • Seeded LOV in OA Page works on internal server, does not in external server

    I am using the appraisal creation page '/oracle/apps/per/selfservice/appraisals/webui/MASetupDetailsPG'. Here we have a LOV that lists the appraisal template.
    The LOV returns records when Pressing 'Go' from the LOV Search page while accessing from internal server.
    However, while performing the same steps from external server, on clicking 'Go' , we get 'No Search Conducted'. ideally , we'll expect the records to come up (or) no results match the chosen criteria. However in this case, it simply gives 'No Search Conducted'.
    The 'About this Page' on LOV Page does not show the VO/AM details from external server.
    I have checked the following:
    1. Class path is same while accessing from both external and internal server
    2. Page personalisations are fairly starightforward, just prompts,instruction text changes etc
    3. There is no VO/AM customisation. This was done by checking jdr_utils from apps. i suppose this is just application-wide and cannot be checked at server level. pls validate my statement.
    4. I have tried 'Diagnostics' using 'About this Page'. It works internally and gives the LOV query with bind parameters. However when I try to do 'Diagnostics'-->Show log on Screen, the screen just hangs before i can see the 'log Level' list on the screen. So I am unable to take trace even from external server.
    5. Few other LOVs work from external server. But this one does not.
    What could be the cause and how do i debug further?
    Any help is appreciated.
    Thanks,
    LN

    As far as I know, if he does what you suggest he won't be able to resolve the "main" domainname.
    The internal DNS will think it is the SOA for the "whole" domainname, including subdomain or not, and woun't ask any other DNS. So he needs to add all public IPs/names in his DNS if using the same domainname.
    Delegation of a subdomain, this requires both DNS using public IPs:
    http://www.zytrax.com/books/dns/ch9/delegate.html
    I guess this is "wishful thinking":
    IF he (most likely woun't happen) could/be allowed to do zone transfers from a DNS hosting the "main" domainname and run that zone as a slave/secondary on his internal DNS it should work. It wouldn't be ugly if it can be done without adding his internal DNS IP as a NS record. I don't know about notifying the slave about changes to the main domain then though.
    If running your own public DNS to separate between public and internal only/private IP lookups depending on what IP the request is coming from:
    http://www.zytrax.com/books/dns/ch7/acl.html

  • How to send a file from FTP to external server

    My requirement is to send a file from FTP to D3(External) server.
    Now I am able to store the file in Appln server.
    I want to send the file created by the program thru FTP to D3 server.
    I know the username,Password,HostID,RFC destination details.
    How to send the file from FTP to D3.
    If u have any program,Plz send it...
    I dont want the function modules name...I want the example code ....
    Thanks in advance.

    Hi Sumi,
    You could do it so that you create a .bat or .cmd script to your server which does your ftp transfer.
    To do this you must use sm69 to create a external operating system command which you can call from FM SXPG_COMMAND_EXECUTE. To SXPG_COMMAND_EXECUTE you the file you need to transfer as a parameter.
    What happens is that your abap program passes the file to windows batch script (.bat .cmd) which will then do the transfer for you.
    Here's a sample of ftp-script for windows:
    echo open IP_ADDRESS_TO_YOUR_SERVER > c:zftp_transfer.ftp
    echo USERNAME>> c:zftp_transfer.ftp
    echo PASSWORD>> c:zftp_transfer.ftp
    echo put YOUR_FILE>> c:zftp_transfer.ftp
    echo quit>> c:zftp_transfer.ftp
    ftp -s:c:zftp_transfer.ftp
    also take a look here for more details:
    http://support.microsoft.com/?kbid=96269
    Ok, this might be a bit trivial but if your server is unix/aix etc.. Instead of using batch script you must do a shell script.
    Regards,
    Ville

  • How to connect to external server using router from VLAN's

    Hi, I am newbie. I am trying to build network system in Packet Tracer.
    Now I have such network layout.
    I have different VLAN's Accounting and Sales. I have configured this using subinterface in router to allow computers from different vlan's communicate with each other. Everything works.
    Let's assume that there are next subnets and VLAN's. Acct. VLAN (2) (ip's 172.168.0.1-172.168.0.254/24) and Sales VLAN (4) (ip's 172.168.1.1-172.168.1.254/24).
    But I need to connect all this computers to the external server.  That has ip , for instance 192.168.20.13/24. Like this.
    I don't know hot to correctly configure router to make it possible for computers to connect to this server. I have connected switch to the another router interface. And than connected server to the switch and specified ip 192.168.20.13/24. Than I tried to set ip to the router interface from the same subnet like 192.168.20.22/24. So now router can communicate with server.
    But how to allow computers to communicate with the server. Please help. I am newbie.
    I would be grateful for any help.

    Hi Androgen,
    One question for you..How does the sales VLAN computers communicate with the accounting VLAN machines? It's through the inter-VLAN routing that you have already setup.
    Communicating to the external server is also similar to this.
    The computer's in the VLAN should be configured with the default gateway IP which is the the L3 sub-interface IP for that subnet.
    Also, the external server needs to have a default gateway to communicate with other remote subnet. The default gateway of that server would be 192.168.20.22 which is the L3 interface for your external subnet.
    CF

  • Can I merge or combine 2 "album artwork" folders? I have saved music onto an external server from 2 computers but the artwork that I have manually imported remains in the default folder in the music/itunes/album artwork folder on the respective PCs. Thx

    Can I merge or combine 2 "album artwork" folders? I have saved music onto an external server from 2 computers but the artwork that I have manually imported remains in the default folder in the music/itunes/"album artwork" folder on their respective PCs.
    i.e. artwork uploaded on one PC won't apppear on the other PC because it is saved locally...
    I'm confident that i won't beable to just merge the 2 because thy'll have the same folder names.
    On the same note: can I have iTunes create these files on the external server/Hard drive also so that either computer can use them at the same time?
    (like I have my library- can the other files be saved remotely)
    Thx

    i'm using iTunes 10 BTW

  • How to call an external server from Webdynpro program?

    Hi All,
    i have a requirement in which i have to call an external server from Webdynpro ABAP program.
    how to imp

    hi ,
    do u mean u need to call the external link from ur WD ABAP application ?
    if so , u either create
    1 a Link to URL ( LTU ) UI element  and call the external link using that
    2 if u wish to use some other fuctionality and thn wish to call the URL in ur application ,u write this piece of code in ur relevant on Action method :
    data:  lo_window_manager type ref to if_wd_window_manager.
    data:  lo_api_component  type ref to if_wd_component.
    data:  lo_window         type ref to if_wd_window.
    data:  ld_url type string.
    lo_api_component  = wd_comp_controller->wd_get_api( ).
    lo_window_manager = lo_api_component->get_window_manager( ).
    ld_url =  ''.  // ur external sever link here
    CALL METHOD lo_window_manager->CREATE_EXTERNAL_WINDOW     
    EXPORTING     URL                = ld_url           
    RECEIVING     WINDOW         = lo_window.
    lo_window->open( ).
    I hope u wud be able to create URL now .
    regards,
    amit
    Edited by: amit saini on Oct 13, 2009 11:25 AM

Maybe you are looking for

  • Help: How do i set up Raid 0 on a 970a-g46 board

    Hello everyone I have been Building my own computers since 1997.  (Remember Windows 3.11 and Dos 6.22  LOL) but i have never tried to use Raid. i just got 2 SanDisk 128GB SSD drives, i have read other things on this forum "970A-G46 raid issues" But e

  • EA1 - SQL DDL Tab not working for 10.2.0.3 Oracle Apps DB

    I just downloaded the EA1 SQL Developer 1.5.0.51.70 for evaluation purposes. I am connecting to various types of databases - all databases are version 10.2.0.3. When I am connected to an Oracle Applications 11i database (10.2.0.3 version) as the apps

  • Hidden EVDRE range unhides itself

    Hi experts, I have a complex input schedule with 6 EVDREs, 2 EVDREs are creating an actual input schedule and the other 4 are used to dynamically populate drop down boxes in the 2 input schedules I want to hide the code of all 6 EVDREs and the expans

  • Download problem on iTunes

    I have a question.  I jsut purchased to own "The Ghost Writer HD" on iTuens,  but its also downloading the regular version as well.  why is it doning this and will I be charged for both the HD and regular version?

  • How to get videos in icloud

    if you select Add to iCloud when highlighting a video in the iTunes menu, i would presume it would be in there!??!  i can't access the movie from my iphone or macbook..anyone know what gives?