How to make inDesignCS2 4.0.2 plug-in send an http resuest to web service(20 May 2007)

Hi, everyone,
I'm developing a plug-in for inDesign CS2 4.0.2. This plug-in is running on the client side. It requires such a functionality as sending an http request to the server side. Then the server side will response to this request by making an action to SPS portal site and return the result through web service.
Could anyone like to tell me what is the right way for me to implement above functionality. Any suggestion is appreciation.
You may contact me by any mean of the following:
JackLin
SunSourcing (Hangzhou)
http://www.sunsourcing.com
http://www.sunyard.com
Office: +86-571-56686136
FAX: +86-571-56686660
Mobile: +86-13957139071
QQ: 280196343
Email: [email protected](Business), [email protected](Personal)
MSN: [email protected]

Dear Eugenio Andres and Jackeen,
Thanks a lot for your help. Could you please give me some advices on how to code independent of platform. I need my program run both on windows and macintosh. I suppose there's a way to finish my above task using cross platform soap related c++ classes. Is it right?
Looking forward to your response.
JackLin
SunSourcing (Hangzhou)
http://www.sunsourcing.com
http://www.sunyard.com
Office: +86-571-56686136
FAX: +86-571-56686660
Mobile: +86-13957139071
QQ: 280196343
Email: [email protected](Business), [email protected](Personal)
MSN: [email protected]

Similar Messages

  • How to send authentication information to SOAP Web Service using MATE framework

    Hi,
    Can anyone please tell me how to pass authentication info (such as user name & password) while calling a webservice using MATE's webserviceinvoker? the SOAP web service expects authentication info in the header.
    Thanks in advance..

    HI Swayam,
    First of all you should tell us what blogs you have seen to avoid you to repeat information that you already know.
    we want to avoid  setting up SLD configuration for sender system because  sender system is just consuming web service .
    This is not necessary,
    Please let me know  the ways we can configure . I did understand we can publish and register the WSDL from Service interface ,but was not clear on over all  scenario .
    Do you have your ECC webservice available via SOAManager?, you only to access it via soap receiver in SAP PI.
    To publish, you need to publish only the sender SOAP, when you register there the sender soap your partner could access there to get the WSDL (Publish services from PI 7.1 to the Service Registry). Also you can generate directly the wsdl (Display WSDL - Integration Directory - SAP Library), what do you want?
    Regards,

  • How to make a photo small so I can send it by e-mail

    want to know how it make a photo small on my desktop so I
    can send it by e-mail, thank you

    I suppose there might be an extension, but you would be better off using a free photo editor.
    I use "IrfanView" (irfanview.com) to work with photographs.
    I use "PicPick" (picpick.org) to work from a screen print ("PrtSc") or capture to crop and annotate.
    *Also see http://kb.mozillazine.org/Posting_a_screenshot_on_the_forum#Windows
    *also see http://en.wikipedia.org/wiki/Screenshot
    Something simpler may or may not be:
    :Picnik (picnik.com), online photo editing, fix photos, crop, resize, rotate, artsy effects, fonts, shapes.
    You also have alternatives storing the picture and./or elsewhere and providing a link
    * imageshack.com
    * dropbox.com
    If you have access to the image through Firefox, this extension looks promising
    *ResizR :: Add-ons for Firefox (10 KB)<br>https://addons.mozilla.org/firefox/addon/resizr/
    Saving files to your desktop is not the best place.

  • Have multiple email accounts. How to make one the default account when using Send to Mail Recipient?

    We have multiple email accounts. How do I make one of the accounts the default sender address when we Send to a document to Mail Recipient? Or how can I change the order of the email accounts on Thunderbird that they appear?

    To change the default account, Tools/Account Settings, select the account in the left pane, then Account Actions/Set as Default.

  • Make https invocation from web service code?

    I have a JAX-WS web service running in WebLogic 10.3.5. From within that web service code, I need to make a SECOND web service invocation to another web-service application to obtain some necessary information, and that second web service invocation must use HTTPS protocol. Unfortunately, I'm getting a "java.lang.IllegalStateException: Cipher not initialized" exception, which makes me think the SSL handshake is failing.
    Can this be done? If so, how?

    yes, you should be able to do it
    http://docs.oracle.com/cd/E23943_01/web.1111/e13713/transport.htm#CIHGAEJD
    1.) you can use the system properties to load truststore as specified from above link inside you client web service code
    0r
    2.) you can load using -D options as specified in below link
    http://docs.oracle.com/cd/E23943_01/web.1111/e13713/transport.htm#i238552
    or
    3.) you can use keystore configuration to configure trust store
    http://docs.oracle.com/cd/E23943_01/apirefs.1111/e13952/taskhelp/security/ConfigureKeystoresAndSSL.html#WLACH03024
    Regards,
    Sunil Polineni

  • How to send a file to a web service

    I am developing a web service application which needs to accept a CAD model as input. Would any one tell me how to send a file from a client application to service provider.
    thanks in advance

    You can use mime encoding inside your SOAP request, something like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
    <data>
      <file>
        <name>filename.zip</name>
        <content>FVberI0XlJincJEGmcbVyMOGpdWGl1bYB2r1y2vYicHqq0WYuergigzYB20GvMLZ
    Ag9YicHozwLSieOUieDLzgrLCZKncI9dCMvHDg9YicGPdqOVu3vIAMvJDcaOkq0kl0TLExDVCMrZ
    DwfSifnVzNr3yxjLkq0kl1rPDgXLicHdB252zxj0zwqGzNjVBsbmyxnLCKPLDcbqq0WPdqOVqxv0
    l1jVB3qGmIaWifiGl0LUzM8GmsaWifiGpJ4ncNn0yxj0EhjLzG0kndyYzxiGpdWGl1nPEMuGmJyG
    mdaWndiZmYaWmdaWmcbUdqOWmdaWmda0ndi1idaWmdaWig4ncNrYywLSnG0kjsvft0yncG==
    </content>
      </file>
    </data>
    </soap:Body>
    </soap:Envelope>This can even be accomplished from within Pl/Sql. Otherwise you can use the WS-Attachment feature which is (I think) not yet supported by Oracle.
    Regards,
    Michiel

  • How do I set up Mozilla to accept connections on port "The World Wide Web service (HTTP)"?

    When attempting to embed a video in PowerPoint 2013, the message "Sorry we are having some temporary service issues" appears.
    In researching the problem at Microsoft. com, the following message was received: Mozilla is not set up to accept connections on port "The World Wide Web service (HTTP)."

    Hmm... PowerPoint should use Windows to connect to the internet and not Firefox.
    Which method are you using?
    (1) Insert > Video > Online Video
    Apparently there was an update this month that enables this, as described in this support post (see top Answer just after the question): [http://answers.microsoft.com/en-us/office/forum/office_2013_release-powerpoint/embedding-online-you-tube-video-in-powerpoint-2013/0bc00dde-420c-4c6a-bd47-3fb105ce40fc Embedding online you tube video in powerpoint 2013 - Microsoft Community]
    Here's how it should work after the update: [http://office.microsoft.com/en-us/powerpoint-help/insert-or-link-to-a-video-on-youtube-HA104192855.aspx Insert or link to a video on YouTube - PowerPoint]
    (2) Developer > More Controls > Shockwave Flash Object
    As documented on other sites, such as: https://www2.palomar.edu/pages/atrc/2013/09/17/how-to-embed-youtube-video-in-powerpoint-2013/

  • How to send a xml to a web service

    Hi All
    I've generated a xml report that I need to send to a web site that I could imagine have a web service to receive the report.
    The question is: how should I send my xml file ??
    I've tried to find docs about it but there are a lot of complex examples and I need to do just this simple job...
    Any idea, example or help will be appreciated...
    Thanks in advance
    <jl>

    You can do anything as simple as a socket all the way up to using a web services protocol like SOAP.
    - Saish
    "My karma ran over your dogma." - Anon

  • How to make my NIK LR/CS4 plug-ins work on Aperture

    I'm new to Aperture and I absolutely love it (so far). I also have Lr and PS CS4, for which I have NIK Color effex and Sharpener Pro plug-ins. I went to NIK website and downloaded their plug-ins for Aperture, but they do not take the products keys that came with my LR/CS4 versions. I cannot believe that I would have to pay twice for using the same Nik software on 2 different apps on the same iMac. Does anyone know what I should do to make these Nik programs also run with Aperture ?
    Thanks for help ! Frederic

    fredericpaeps wrote:
    figure out how to work in 32 bit mode
    Frederic,
    I found the NIK people as well as the Topaz people to be very responsive and helpful.
    Actually, it seems to me that the 32/64-bit thing pretty much takes care of itself.
    These are my observations and I do not profess to be an expert.
    First- If you have a 64-bit computer Aperture 3 will open in 64-bit WITHOUT any extra effort on your part.
    Second- When you wish to use one of the NIK plug-ins you will be told the software needs to close and reopen Aperture in 32-bit mode. Click OK and that happens.
    I have yet to see any difference in Aperture whether in 32 or 64 bit mod but if I am not planning to use the plug-ins soon I quit and reopen Aperture just in case there is some benefit to 64-bit I have not yet discovered.
    Jerry

  • How to make a switch if i plug my ipod to other computer ?

    Hi everyone,
    I have an ipod which already contains a lot of songs. I would like to plug my ipod to my new computer which itunes is installed without any song.
    My problem is, i know when i plug my ipod to the computer, the itunes will warn me my ipod does not belongs to the music lib, if i click change, all my songs will be lose, but if i click no, i can't access my ipod. So how can i access my ipod in my new computer without losing all my songs ?

    Check out the instructions/suggestions here.
    Music from iPod to computer.
    There's also another method. I've successfully tested this across several different Windows PCs.
    Open iTunes and select edit/preferences/advanced/general. Put a check mark in the box marked "copy files to iTunes music folder when adding to library" and also "keep iTunes music folder organized", then click 'ok'.
    Connect the iPod whilst holding down the shift/ctrl keys to prevent any auto sync, and if you see the dialogue window asking if you want to sync to this itunes library, click 'no'.
    Then go to file/add folder, open 'my computer', select your iPod and click 'ok'.
    The music files should transfer to your iTunes.
    However it appears that no playlists will transfer.
    If this is important to you, you may want to use other options.
    There's Yamipod. This is a free program that transfers music and playlists etc from iPod back to the computer.

  • How to make redirects work with NSAPI plug-in

    We have a NSAPI plug-in on a Iplanet server which routes any URL request with "weblogic"
    on it to a WebLogic server with a PathTrim. eg. http://ksopsd01/weblogic/myapp/login.jsp.
    All my forwards are working fine except any redirection. My redirects fails
    as it does not have the "weblogic" in it. Is there anyting like PathPrepend to
    get my redirects working? Or do I need to hardcode "weblogic" in all my redirections.
    Any help would be very much appreciated.
    Thanks

    Hello Globalmark
    For your problem dealing only with Skype, Skype supports their product with a comprehensive Help system for answers to your Skype-specific questions.
    If you cannot find the answer you need from their Knowledgebase, Troubleshooter, User Guides, or dedicated Skype-user forum, you can get technical support directly from Skype.
    MSN (now Microsoft) Messenger for Mac cannot use ANY camera unless you are using the "corporate" version. The personal version is a text only app.
    This post will give you the options available to you for using your MacBook Pro to contact those whose only chat client application is MSN (now Microsoft) Messenger.
    Your posted system info shows that you are still using Mac OS X (10.5.1). If that is correct, you may want to consider the advantages of updating to the latest version of Leopard.
    EZ Jim
    PowerBook 1.67 GHz w/Mac OS X (10.4.11) G5 DP 1.8 w/Mac OS X (10.5.2)  External iSight

  • File adapter - how to make shure a file is complete for sender/receiver?

    Hi everybody,
    I want to use the file adapter and a question arises for both sender and
    receiver:
    On the sender: How does the PI know when a file is complete for reading?
    Can this be a problem (PI starts reading the file when it is not complete?)
    On the receiver: How does the receiver know when a file written by
    PI is complete? Does PI support some kind of write to tmpfile then rename
    schema?
    Thanks for any suggestions
    Best regards
    Stefan

    Hi Stefan,
    On the sender: How does the PI know when a file is complete for reading?
    Can this be a problem (PI starts reading the file when it is not complete?)
    Yes, it could be a problem: Have a look at below from help.sap
    Advanced Mode
    To specify additional parameters in the adapter configuration, set the Advanced Modeindicator.
    ●      Msecs to Wait Before Modification Check
    Enter the number of milliseconds that the adapter must wait before it checks whether the files have been changed.
    This parameter is not available if you have selected File Content Conversion as the Message Protocoland then made an entry under Recordsets per Message that splits an input file into several messages.
    This parameter is applicable only for the File adapter. If you enter a value in this field when configuring the sender FTP adapter, it will have no effect.
    Regards,
    Carlos

  • How to make sure that "hello" uses gmail to send the invites?

    I am trying to invite someone to join a hello conversation but hello uses applemail in stead of my preferred gmail

    hi klaus, please make sure that you have set gmail as preferred app to handle mailto:-links in the firefox options like it's described in [[Change the program used to open email links]]

  • HOW to make 2 step Communication strategy  for external send

    Hi
    I have made this 2 step communication strategy and attached to an email output type for purchase order, but it doesn't work as expected.
    The 2 steps are 1  INT,  2 = PRT
    If the vendor/supplier has an email in the address the purchase order is send by email, but if he has no email addres, then the output fails with message "E-mail address incorrect or non-existent"
    I expected the result to be that it would create a print instead of an email.
    What is wrong?
    Thanks.
    Thomas Madsen Nielsen

    I found the solution myself.
    The communication type PRT = Print is not supported, but LET = Letter will do exactly the same thing.
    I found the answer in OSS note 323720.
    Thanks

  • How to authenticate Out of Browser Silverlight application with SharePoint O365 site using SharePoint Web Service (.asmx) ?

    I have Silverlight Out of Browser application which uses SharePoint Lists Service (Lists.asmx). Currently when I trying to communicate to SharePoint O365 site, I am getting  the exception as below -
    Communication Exception -
    The remote server returned an error: NotFound.
    How do I authenticate the user?
    Amol C kadam

    Hi,
    You could follow below article to make sure your application configuration is correct.
    http://www.silverlighthack.com/post/2011/07/19/Office-365-Using-Silverlight-in-the-SharePoint-Team-Site.aspx
    Besides, below article could also give you some help:
    http://www.silverlightshow.net/items/Silverlight-and-Sharepoint-2010-getting-started.aspx
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Ipod not working, please help!!!!

    I brought my ipod nano in september of last year. i have had no problem with it unitll now. yesterday when i went to navigate through the music section on my ipod it reset itself to the black apple logo. i have now fixed this problem and can navigate

  • Sort photos by time created

    I use more than one camera at events and each camera has a specific prefix on the photo numbers (ex. EW1_ and EW2_).  I'd like to be able to sort these photos by time created rather than date created so they are listed in an order of how the event ha

  • FS10N Opening balance difference (Retained Earnings Account)

    Hi, We are getting opeing balance difference in FS10N balances from 2007 to 2008 (retained earnings accounts) 1. We have carry forward the 2007 balances to 2008 through T.Code : F.16 2. We are getting difference in 4 company codes. 3. But there is no

  • Calling a concurrent program

    Hi, My requirement is to create a web page which will have some parameters & a Submit button. After the user enters the parameters & presses Submit button, another concurrent program (This concurrent program is having a call to a Data Template) shoul

  • Adding multiple deliveries to a shipment

    Hi all, My requirement is to add multiple deliveries to a shipment. for that I am using a BAPI, SD_DELIVERY_ASSIGN_TO_SHIPMENT. In the description of this, it is said that we can append deliveries to shipment. But, i am not able to do so. I have pass