Application that receives algorithms as input

I'm developing a trading platform for a cryptocurrency. I'm building several algorithms, based on personal experience, college eduction or reading in books and on the Internet. I can test these algorithms on real money, with a real account. But there are
a lot of risks. So I will develop a test environment were every new algorithm can be imported and tested on several time periods that have happened in the  last year. But how do I import these if the test application is finished, is it somehow possible
to import classes, I have heard that it could be done using dll files. And if so, are there certain guidelines that need to be respected so it can be integrated?
So it's an application with a browse button, click on it, you search a file with the algorithm on your computer, you select the algorithm, and it uses it to run over data. That's basically what it should do. Without the need re open the project in visual
studio, add the files, rebuild the project.

Hi Massie92,
Thank you for visiting the MSDN forum.This forum is discuss and ask questions about the C# programming language, IDE, libraries, samples, and tools. I’m afraid that it is not the correct forum about this issue, I am moving your question to the moderator
forum ("Where is the forum for..?"). The owner of the forum will direct you to a right forum. Thanks for your understanding.
Best regards,
Kristin
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.

Similar Messages

  • Application that receive SOAP and normal http request

    Hi Guys,
    I've been working onto web service right now using Spring. Been using this for receiving SOAP requests... Right now its working smoothly. But I want my application to cater both SOAP request and normal http request. Is that possible? If yes, can you guide me how?

    Sorry for the formatting above.  I interspersed lines between the questions, but they seem to have mostly disappeared.

  • I need help whenever I want to install a new application I receive a message that I cannot be connected to I tunes store although I am connected to the Internet Help

    I need help whenever I want to install a new application I receive a message that I cannot be connected to I tunes store although I am connected to the Internet Help

    Click here and follow the instructions to change the iTunes Store country.
    (85848)

  • I need an application that will enable my ipad to receive calls, make calls , send sms and receive sms. line2 is not available in south africa

    i need an application that will enable my ipad to receive calls, make calls send sms and receive sms. line2 is not available in south africa

    Skype would be a possibility for phone calls, though I don't know if it's available in SA. Search the iTunes Store for "SMS" and you'll quickly see if there are any SMS apps you can try.
    Regards.

  • Application for receiving application not working..

    Hi..experts.
    i m new to j2me programming. plese help me.
    I got an application for receiving SMS from net. i nstalled it on nokia N73. but it's not working.
    this is the code of that app...
    package receivedemo.sms;
    import javax.microedition.lcdui.*;
    import javax.microedition.io.*;
    import javax.microedition.midlet.*;
    import java.io.*;
    public final class ReceiveMidlet extends MIDlet
    //The data we expect to receive.
    private static final String TEST_DATA = "This is just a test";
    public ReceiveMidlet()
    //Signals the MIDlet that it has entered the Active state.
    public void startApp()
    //Get the display object for this MIDlet.
    Display d = Display.getDisplay(this);
    //Create and start a new WorkerThread.
    Thread t = new WorkerThread();
    t.start();
    //Create a new Alert.
    Alert alert = new Alert("Starting DynamicPushRegisry");
    //Display the alert for 2 seconds.
    alert.setTimeout(2000);
    d.setCurrent(alert);
    private class WorkerThread extends Thread
    public void run()
    //Get all connections registered with the PushRegistry
    //for the current MIDlet suite.
    String[] connections = PushRegistry.listConnections(true);
    if ( connections.length == 0 )
    //Nothing is registered, register a connection.
    try
    //Dynamically register a socket connection
    //on port 50000.
    PushRegistry.registerConnection("socket://:50000",
    "receivedemo.sms.ReceiveMidlet","*");
    } catch (ConnectionNotFoundException e)
    message(e.toString());
    } catch (ClassNotFoundException e)
    message(e.toString());
    } catch (IOException e)
    message(e.toString());
    else
    //A connection is already registered and data is arriving.
    //Fetch the incoming data.
    fetchData(connections[0]);
    //Shut down to wait for data.
    message("Done");
    System.out.println("correct till here");
    notifyDestroyed();
    //Fetches the incoming data.
    private void fetchData(String connection)
    try
    //Open the connection.
    Connection c = Connector.open(connection);
    if ( c instanceof StreamConnectionNotifier )
    //Open an InputStream.
    StreamConnectionNotifier scn = (StreamConnectionNotifier)c;
    StreamConnection sc = scn.acceptAndOpen();
    InputStream input = sc.openInputStream();
    //Extract the data from the InputStream.
    StringBuffer sb = new StringBuffer();
    byte[] data = new byte[256];
    int chunk = 0;
    while ( -1 != (chunk = input.read(data)) )
    sb.append(new String(data, 0, chunk));
    //Close the InputStream and StreamConnection.
    input.close();
    sc.close();
    String s = sb.toString();
    //Test the data for validity.
    //If invalid an exception is thrown.
    Assert.assertTrue(TEST_DATA.equals(s),
    "Failed to receive proper string: " + s);
    //Display the received data.
    message("Received: " + sb.toString());
    } catch (IOException e)
    message(e.toString());
    //Display a String message to the user.
    private void message(String msg)
    //Create a new Alert with the message.
    Alert alert = new Alert(msg);
    //Display the alert for 5 seconds.
    alert.setTimeout(5000);
    Display.getDisplay(this).setCurrent(alert);
    //Signals the MIDlet to stop and enter the Pause state.
    public void pauseApp()
    //Signals the MIDlet to terminate and enter the Destroyed state.
    //Unconditional when set to true. The MIDlet must cleanup and release
    //all resources. Otherwise, the MIDlet may throw a
    //MIDletStateChangeException to indicate it does not want to be
    //destroyed at this time.
    public void destroyApp(boolean unconditional)
    //Throws an IllegalStateException with the supplied error message.
    final class Assert
    private Assert()
    static public void assertTrue(boolean exp, String failmsg)
    if (!exp)
    throw new IllegalStateException(failmsg);
    plzz help me...it's important for me. Thanks a lot

    when i send a SMS there is no reaction from application.
    i don't know how is this failing.
    i am very troubling about this.
    i have to receive the SMS that comes to the inbox.
    if you have any working source code please give me.
    Thank you so much.
    Edited by: RavindraDiwakar on Sep 14, 2008 8:17 PM

  • Adding an External Application that uses J2EE Form Based Security

    I'm trying to add an External application that uses the J2EE Form based security. i.e. uses j_username, j_password and posts to j_security_check.
    I don't really see how Oracle SSO will support this. The container needs to take control of a clients request and determines when the "Login" page is presented to establish credentials. Posting directly to j_security_check isn't working for me.
    I'm using Sybase EAServer 4.12 as the external application.
    Is this supported in Oracle SSO?
    Do I need to provide a different mechanism for logging user's in?
    Also, can someone explain what the benefit would be if I configured the EAServer app as a "Partner" app? I would still have to provide an interface for login. The input would be different but the end result would be the same I guess. What advantages does a Partner app have?
    Lastly, is there an NNTP server for these forums?
    Thanks.
    Darrell

    The cure for the symtops described below was to simply add a welcome-file-list
    element with appropriate welcome pages to the web.xml descriptor. It makes sense
    now that I have worked it out.
    Todd
    "Todd Gould" <[email protected]> wrote:
    >
    I have an application comprised of several JSPs that are protected via
    Form based
    security and enforce an SSL connection via the appropriate declarations
    in the
    web.xml. This aspect of the application seems to be working with the
    exception
    of one small quirk.
    If a user presses that back button until such time as the receive the
    container
    provided login page once again, and subsequently provide a valid user
    id and password,
    they are NOT successfully logged in. Rather, they receive the ugly 403
    Forbidden
    error that states that the server understood the request, but is refusing
    to fufill
    it. This only seems to happen given the above course of events involving
    the
    use of a back button in the browser (or selection of an item from the
    history
    list). I suspect that this has something to do with the session id being
    cached
    or something, but I'm not sure? Can anyone offer any assistance on this
    one?
    Also, does anyone know of a way of preventing the user from bookmarking
    this container
    provided login page as this also seems to be causing problems for users.
    If they
    bookmark the first protected page of the application all is fine, but
    if they
    bookmark the login page they receive the 403 error.
    Thanks in advance!

  • I would like to uninstall or otherwise safely remove any applications that make my MB Pro run slowly.

    I would like to uninstall or otherwise safely remove any applications that make my MB Pro run slowly. I will have to keep a few apps such as CrossWeb and Veraport due to having to use secure banking and government websites in Korea. I also need the LogMeIn app to access a server in the USA, but I realise that some people recommend getting rid of it.
    I tried but apparently have been unsuccessful in removing a McAfee VirusScan application completely. I can still see some files in the HD Library. Any ideas here on how to safely uninstall/remove?
    Also any suggestions on how to get rid of my incompatible virtualbox? I think it's 4.0.4.
    Also, if you see anything else I should uninstall/remove from the EtreCheck below, by all means please make suggestions.
    Thanks so much for your help, suggestions, and advice!
    Hardware Information:
        MacBook Pro (15-inch, Mid 2010)
        MacBook Pro - model: MacBookPro6,2
        1 2.53 GHz Intel Core i5 CPU: 2 cores
        4 GB RAM
    Video Information:
        Intel HD Graphics - VRAM: 288 MB
        NVIDIA GeForce GT 330M - VRAM: 256 MB
    System Software:
        OS X 10.9.2 (13C1021) - Uptime: 0 days 1:55:49
    Disk Information:
        ST9500325ASG disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted>: 209.7 MB
            Macintosh HD (disk0s2) / [Startup]: 499.25 GB (295.55 GB free)
            Recovery HD (disk0s3) <not mounted>: 650 MB
        MATSHITADVD-R   UJ-898 
    USB Information:
        Apple Internal Memory Card Reader
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. Built-in iSight
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
    Gatekeeper:
        Anywhere
    Kernel Extensions:
        [not loaded]    com.cisco.cscotun (1.0) Support
        [kext loaded]    com.logmein.hamachi (1.0) Support
        [kext loaded]    org.virtualbox.kext.VBoxDrv (4.0.4) Support
        [not loaded]    org.virtualbox.kext.VBoxNetAdp (4.0.4) Support
        [not loaded]    org.virtualbox.kext.VBoxNetFlt (4.0.4) Support
        [kext loaded]    org.virtualbox.kext.VBoxUSB (4.0.4) Support
    Startup Items:
        KeyAccess: Path: /Library/StartupItems/KeyAccess
        VirtualBox: Path: /Library/StartupItems/VirtualBox
    Launch Daemons:
        [failed]    com.adobe.fpsaud.plist Support
        [loaded]    com.adobe.SwitchBoard.plist Support
        [running]    com.cisco.anyconnect.vpnagentd.plist Support
        [loaded]    com.google.keystone.daemon.plist Support
        [running]    com.logmein.hamachi.plist Support
        [running]    com.sassafras.KeyAccess.plist Support
        [loaded]    com.tunnelbear.mac.tbeard.plist Support
    Launch Agents:
        [not loaded]    com.adobe.AAM.Updater-1.0.plist Support
        [loaded]    com.cisco.anyconnect.gui.plist Support
        [loaded]    com.google.keystone.agent.plist Support
        [running]    com.logmein.hamachimb.plist Support
        [loaded]    com.sassafras.KeyAccess.plist Support
    User Launch Agents:
        [loaded]    com.adobe.AAM.Updater-1.0.plist Support
        [loaded]    com.adobe.ARM.[...].plist Support
        [loaded]    com.adobe.ARM.[...].plist Support
        [running]    com.spotify.webhelper.plist Support
        [not loaded]    org.virtualbox.vboxwebsrv.plist Support
    User Login Items:
        GrowlHelperApp
        GrowlHelperApp
        iTunesHelper
        SuperDrive Update 2.1
        Google Drive
        Dropbox
        DaumLiveAgent
        KeyAccess
    Internet Plug-ins:
        npCrossWebPlugin: Version: 1.0 - SDK 10.5 Support
        o1dbrowserplugin: Version: 5.3.1.18536 Support
        Google Earth Web Plug-in: Version: 6.1 Support
        Default Browser: Version: 537 - SDK 10.9
        Flip4Mac WMV Plugin: Version: 2.4.1.4 Support
        OfficeLiveBrowserPlugin: Version: 12.3.6 Support
        RealPlayer Plugin: Version: (null) Support
        AdobePDFViewerNPAPI: Version: 10.1.10 Support
        FlashPlayer-10.6: Version: 13.0.0.214 - SDK 10.6 Support
        DivXBrowserPlugin: Version: 2.0 Support
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
        Flash Player: Version: 13.0.0.214 - SDK 10.6 Support
        iPhotoPhotocast: Version: 7.0
        googletalkbrowserplugin: Version: 5.3.1.18536 Support
        QuickTime Plugin: Version: 7.7.3
        AdobePDFViewer: Version: 10.1.10 Support
        Veraport: Version: 1.1.0.2 - SDK 10.7 Support
        JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    Audio Plug-ins:
        BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
        AirPlay: Version: 2.0 - SDK 10.9
        AppleAVBAudio: Version: 203.2 - SDK 10.9
        iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
        Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
        DivX  Support
        Flash Player  Support
        Flip4Mac WMV  Support
        Growl  Support
        KeyAccess  Support
        Symantec\nQuickMenu  Support
    Time Machine:
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            Macintosh HD: Disk size: 464.96 GB Disk used: 189.71 GB
        Destinations:
            Data [Network] (Last used)
            Total size: 2 
            Total number of backups: 30
            Oldest backup: 2012-08-12 07:49:57 +0000
            Last backup: 2014-05-05 04:48:48 +0000
            Size of backup disk: Excellent
                Backup size 2  > (Disk size 464.96 GB X 3)
        Time Machine details may not be accurate.
        All volumes being backed up may not be listed.
    Top Processes by CPU:
             3%    WindowServer
             0%    fontd
             0%    PluginProcess
             0%    Google Drive
             0%    com.apple.WebKit.Networking
    Top Processes by Memory:
        188 MB    com.apple.IconServicesAgent
        143 MB    Finder
        143 MB    mds_stores
        102 MB    Safari
        98 MB    WindowServer
    Virtual Memory Information:
        53 MB    Free RAM
        1.55 GB    Active RAM
        1.50 GB    Inactive RAM
        787 MB    Wired RAM
        537 MB    Page-ins
        316 KB    Page-outs

    You have so much junk, and I doubt that you know how to uninstall it.
    It's up to you what you do, I know what I would do  (but then I wouldn't stuff my Mac with junk in the first place)
    Good luck.

  • I am facing a caching problem in the Web-Application that I've developed us

    Dear Friends,
    I am facing a caching problem in the Web-Application that I've developed using Java/JSP/Servlet.
    Problem Description: In this application when a hyperlink is clicked it is supposed to go the Handling Servlet and then servlet will fetch the data (using DAO layer) and will store in the session. After this the servlet will forward the request to the view JSP to present the data. The JSP access the object stored in the session and displays the data.
    However, when the link is clicked second time then the request is not received by our servlet and the cached(prev data) page is shown. If we refresh the page then request come to the servlet and we get correct data. But as you will also agree that we don't want the users to refresh the page again and again to get the updated data.
    We've included these lines in JSPs also but it does no good:
    <%
    response.setHeader("Expires", "0");
    response.setHeader("Cache-Control" ,"no-cache, must-revalidate");
    response.setHeader("Pragma", "no-cache");
    response.setHeader("Cache-Control","no-store");
    %>
    Request you to please give a solution for the same.
    Thanks & Regards,
    Mohan

    However, when the link is clicked second time then the request is not received by our servlet Impossible mate.. can you show your code. You sure there are no javascript errors ?
    Why dont you just remove your object from the session after displaying the data from it and see if your page "automatically" hits the servlet when the link is clicked.
    cheers..
    S

  • "iTunesSetup.exe is not a valid 32bit application" error received.

    "iTunesSetup.exe is not a valid 32bit application" error received.  I'm on dial up (no flames or stupid comments in reference to this please) with Toast using IE9.  I've uninstalled, deleted, and restarted my computer after each attempt.  I've tried with 32bit and 64bit.  I've tried at the local library using their WiFi connection and at home with the dial up.  I've tried running program and saving before running both download types.  This has been 3 days of work since the 24th all so my son can try and use his iPod Touch.  Is there no way of accessing iTunes with the iPod Touch without having it installed on the computer?  I'm sick of this and so disgusted with Apple right now.  I'm sorry that I'm on dial up, but out where I live, everyone is because there is no reception for phones or satelite.  And even coming to town to use the quicker internet here, it still was a 6hour plus download time.  And right when I click 'Run', it gives me this error message each time.
    My son and my whole family and neighborhood after I've asked everyone's help with this problem has become fed up with Apple cause there is no disc they can mail me to get iTunes onto my computer and no one else we've asked can download it either.  One person has the program but its iTunes 7 and they can't upgrade because of dial up.  His iPod Touch will not even go to any other screen but the one that shows the plug and iTunes icon on it.  I would really appreciate some kind of help from someone cause we are all sick of this, my son is not happy, and this was supposed to be a Christmas present that he could use.  I can not even remotely begin to....well, I could fill this page with gripes but I would just really appreciate a knowledgeable answer that I can use to quickly fix this for my son's Christmas.  Please help.

    Karen, this is far off-topic in a sense.  But I have a sister in the wilds of central MI.  No access to cable no way. And limited 3G minutes.
    She finally opted for MiFi and can get much faster online access.  She is able to download to her iTouch, iPad and Mac laptop (3 y.o.) much faster than her old dialup.
    It's worth checking if it might help. Hers is Verizon (http://www.verizonwireless.com/b2c/mobilebroadband/?page=products_mifi)
    AT&T also has MiFi (http://www.wireless.att.com/businesscenter/devices/att-mobile-hotspot-mifi-2372. jsp).
    There may be others as well.
    I am spoiled w/ cable but it's been great  for her.  If this is out of line or you've explored it to no avail please ignore.
    Best wishes and hope these bumps get smoothed out.  Hope you have a good New Year and your son's iTouch problems get worked out.

  • Building an Application that reads html filename

    I want to build an application that displays html files on the screen and when the user presses a button that gives a cue to the PCI-DIO-96 to give an o/p to external connected modular distribution panel that uses shift registers and from the panel (that's fed from a DC P.S.) to some bulbs. each html filename will be corresponding to a specific bulb.

    Hello Taher,
    I apologize for the long delay in responding to your support request. We've had a restructuring and I unfortunately misplaced our thread in the shuffle.
    There are a lot of great resources for each portion of the program you are wanting to develop. It sounds like you have several components:
    1)displaying an HTML file
    2)conditional logic
    3)digital output to DIO-96
    You could display the HTML file in an embedded ActiveX control with a web browser (like Internet Explorer), if you are using Windows. There are several examples in LabVIEW that can help you do this, and you might take a look at the example at the following link:
    http://sine.ni.com/apps/we/niepd_web_display.display_epd4?p_guid=B123AE0CB9AD111EE034080020E74861&p_nod
    e=DZ52051
    To accomplish the conditional logic that you need, you will probably want to use a loop and/or a case structure to determine which output port to pass to. To learn more about these structures, navigate to Help >> LabVIEW Bookshelf, and look at the Getting Started with LabVIEW manual. You can also find some great examples that use these structures by going to Help >> Find Examples and navigating to Fundamentals >> Loops and Structures.
    The last requirement of your program, writing to the digital lines of your DIO card, offers a lot of possibilities. The best place to look when getting started with this type of program is again, to the example code. If you go to Help >> Find Examples, and navigate to Hardware Input and Output >> Traditional DAQ >> Digital Input and Output, there are quite a number of pre-written, working applications that you can start from.
    I hope this helps! Please let me know if you would like help on any specific aspect of your application.
    Good luck!
    Liz F
    National Instruments

  • LabVIEW 8.6 propositions on how to build application that acts like reader form specified field dependent on which values been selected

    Hello everyone!
    I am newbie to LabVIEW with some previous experience programming in different languages.
    My goal is to build the application that upon my selection needs to give specific values from previously filled and prepared file.
    For example, I have different types of operations (milling, drilling, turning..) and different grades (type) of steels (Uddeholm steel grades: NIMAX, IMPAX...and about 40 of them). For every operation there are different input data (Coated insert, uncoated). Based of those information application should give out cutting speed and feed rate data that are stored in some file. I understand I can do it in Excel spreadsheet or LV spreadsheet, I would prefer LV because of portability to systems without Office installed on them. I also understand that all those issues concerning input data for output results I can easily solve with case scenario.
    Main issue is decision between different types of files that I can easily address like 2D matrix to get required data, which and how to do it.
    I would like to know what I should acknowledge first before doing any further work?
    And does someone have some simply prepared VI on which I can work my way on?
    If you are willing to help me with guides I would be happy to answer any of your questions.
    Vedran Galeta

    Thank you very much for your reply.
    This application that I am working on is completely static due to communication. It simply needs to provide entry in table depending on selected inputs in front panel, and of course display it front panel. I know what I need to do, as well as the structure. Only thing that I don't know yet how to do it in LabVIEW.
    When I mentioned "LV spreadsheet" I meant on read from file option, you got that right.. The thing is that now I have large amounts (not large in acquisition data point of view, 5 spread sheets, with 45 rows and 15 columns) of data saved in Excell, and my goal would be to get that data in LabVIEW application, for the ease of access. And still leave that xls file as is, due to all connections that he have with smaller xls files. So in compact version of the story I am going to use save as comma separated (or tab, that depends of course) values from Excell with or without extra editing of created file in order to load that file into prepared program structure in LabVIEW. After I manage to do that, of course I will work my way for all other extras that I am gonna put eventually in program structure. So this would be like a backbone, I know it sounds simple. As a matter of fact I would probably be finnished allready in VB but highest demand is to do this in LabVIEW, and I am fully down with that.
    Regards,
    Vedran

  • How to design and implement an application that reads a string from the ...

    How to design and implement an application that reads a string from the user and prints it one character per line???

    This is so trivial that it barely deserves the words "design" or "application".
    You can use java.util.Scanner to get user input from the command line.
    You can use String.getChars to convert a String into an array of characters.
    You can use a loop to get all the characters individually.
    You can use System.out.println to print data on its own line.
    Good luck on your homework.

  • Changing the application that a file type opens with

    I have MSFT Excel and Subethaedit installed...
    I want Subethaedit to open all "*.spad" files
    I go to "Get Info" then go to "Open with:" then choose Subethaedit
    Then I press "Change All...", a dialog pops up and asks if I want to apply the change to all documents of the form "*.spad", and I answer "continue" and then...
    It ignores me; it drops Subethaedit from the list of apps to "Open with" and doesn't change the default format.
    How do I force the type to change to the app I want? Is there a text-file I can munge somewhere?
    mac mini   Mac OS X (10.4.8)  

    Hi, thechao. Welcome to the Discussions.
    It's possible your launch services database is corrupted. See my "Resetting Launch Services" FAQ. Then try the procedure you defined earlier, which is also described in "Mac OS X 10.4 Help: Changing the application that opens a document."
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Rich-client Java application that is client to WLS6.1 but behind corporate proxy server

    We have a rich-client Java application that is a client to WLS6.1 that can't
    connect to the WLS6.1 server when the client is behind a corporate proxy
    server. What is a remedy for this?
    Thanks,
    Jim Weavere

    Found solution. Followed Part 2 of the solution as explained in http://support.bea.com/application?namespace=askbea&origin=ask_bea_answer.jsp&event=link.view_answer_page_solution&answerpage=solution&page=wlw/S-19283.htm
    What surprises me is that this solution to a common problem is hidden and hard
    to find. If I am correct, no part of WLS 8.1 documentation suggests this. Rather
    the doc says, set the system properties for the standard JDK 1.4 network properties
    and it should work fine. If it is actually supposed to work like this, is it a
    bug then?
    "Naveen Kumar" <[email protected]> wrote:
    >
    Hi,
    I have a web application deployed on WebLogic server 8.1 sp1. And my
    server is
    behind a http proxy server. Now one of the components in the application
    makes
    a web service call to a service located external to the system, and it
    always
    throws "java.net.UnknownHostException". I have set the Java system properties
    http.proxyHost = my proxy server, http.proxySet = true and http.proxyPort
    = 80
    and it still does not help.
    If I try to evaluate the web service component as a stand alone client
    using WebLogic's
    webserviceclient.jar, everything works fine. I can't figure what I have
    to do
    to get this component working from within the WebLogic server. Can anybody
    provide
    me with inputs, comments or suggestions.
    Naveen.

  • Search  application that can handle regular expressions

    I am desperately seeking for my PhD an OSX 10.6 application that can search through all my data. That application need to have *efficient search algorithms* for complex pattern searching.
    For example I want to search all my documents having the word cancer inside the file.
    Not only search for the filename cancer BUT search inside the documents with all the extensions (pdf, rtf, doc, etc.)
    In Windows I use +Filelocator Pro+.
    Is there a Mac OSX application like +Filelocator Pro+ for search?
    An application that can handle regular expression support, with any of the following options:
    +Export results to Text, command line options, Network drive searching, Boolean searches (e.g. AND, OR, and NOT), Perl compatible regexp option, Built in file viewer, Word, Excel and PDF searching, Open Office, Word Perfect option using IFilters, Unicode support, support for: ZIP, RAR, CAB, 7-Zip, ARJ, Bzip, CHM, CPIO, DEB, DMG, GZIP, HFS, ISO, LZH, MSI, NSIS, RPM, TAR, UDF, WIM, XAR, Z formats, Active Scripting support, Export as Text, CSV, XML, HTML, or XSLT custom format, File attribute searching , Relative date/time searches, Repositionable contents pane, Search within search, Exclude folders list,+ etc

    You might try the freeware EasyFind. It allows boolean and wildcard searches. How many of the other features in your "wish list" it offers I haven't checked. If EasyFind doesn't offer sufficient power, take a look at FoxTrot Personal Search or FoxTrot Professional Search.
    And of course there's always grep which can be incredibly powerful once you learn all its ins and outs.
    Regards.

Maybe you are looking for